:root {
  --bg: #090a0c;
  --bg-2: #0c0e12;
  --panel: #0f1217;
  --panel-2: #131720;
  --line: rgba(255,255,255,.08);
  --line-soft: rgba(255,255,255,.05);
  --text: #f4f5f7;
  --muted: #9598a3;
  --faint: #6b6e78;
  --accent: #6b7cff;     /* muted periwinkle */
  --accent-2: #8e7bff;   /* soft violet */
  --accent-3: #4fd1e0;   /* soft cyan, used sparingly */
  --r: 16px;
  --r-lg: 24px;
  --maxw: 1140px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.011em;
}

::selection {
  background: rgba(107,124,255,.32);
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 600;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--accent);
}

.grad-text {
  background: linear-gradient(100deg, #fff 30%, #9aa6ff 70%, #67d6e6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 11px;
  font-weight: 550;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 100%);
  color: #090a0c;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, .35);
}

.btn-ghost {
  background: rgba(255, 255, 255, .04);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

.btn-accent {
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 100%);
  color: #090a0c;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(245, 158, 11, .35);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--accent);
  margin-bottom: 16px;
}

.sec-head {
  max-width: 660px;
  margin: 0 auto 56px;
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(28px, 4.2vw, 46px);
  margin-bottom: 16px;
  font-weight: 600;
}

.sec-head p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}

/* backdrop: rich prominently visible ambient light variation blobs */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: #05070a;
  overflow: hidden;
}

/* Moving Glowing Color Orbs (Violet, Cyan, Amber, Indigo) */
.bg-fx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
}

.bg-fx-orb-1 {
  top: 5%;
  left: 10%;
  width: 50vw;
  height: 50vh;
  background: radial-gradient(circle, rgba(142, 123, 255, 0.6) 0%, rgba(99, 102, 241, 0.25) 50%, transparent 75%);
  animation: orbMove1 18s ease-in-out infinite alternate;
}

.bg-fx-orb-2 {
  top: 40%;
  right: 5%;
  width: 55vw;
  height: 55vh;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.55) 0%, rgba(14, 165, 233, 0.2) 50%, transparent 75%);
  animation: orbMove2 22s ease-in-out infinite alternate;
}

.bg-fx-orb-3 {
  bottom: 5%;
  left: 15%;
  width: 45vw;
  height: 45vh;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, rgba(217, 119, 6, 0.12) 50%, transparent 75%);
  animation: orbMove3 20s ease-in-out infinite alternate;
}

.bg-fx-orb-4 {
  top: 60%;
  left: 40%;
  width: 40vw;
  height: 40vh;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.45) 0%, rgba(126, 34, 206, 0.15) 50%, transparent 75%);
  animation: orbMove4 25s ease-in-out infinite alternate;
}

@keyframes orbMove1 {
  0% { transform: translate(0px, 0px) scale(1) rotate(0deg); }
  33% { transform: translate(120px, 150px) scale(1.25) rotate(120deg); }
  66% { transform: translate(-80px, 220px) scale(0.9) rotate(240deg); }
  100% { transform: translate(40px, -60px) scale(1.1) rotate(360deg); }
}

@keyframes orbMove2 {
  0% { transform: translate(0px, 0px) scale(1) rotate(0deg); }
  33% { transform: translate(-160px, -120px) scale(1.3) rotate(-120deg); }
  66% { transform: translate(-220px, 80px) scale(0.85) rotate(-240deg); }
  100% { transform: translate(60px, 100px) scale(1.15) rotate(-360deg); }
}

@keyframes orbMove3 {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(180px, -160px) scale(1.35); }
  100% { transform: translate(-100px, -80px) scale(0.95); }
}

@keyframes orbMove4 {
  0% { transform: translate(0px, 0px) scale(0.9); }
  50% { transform: translate(-140px, 140px) scale(1.3); }
  100% { transform: translate(160px, -100px) scale(1); }
}

/* SECTION BACKGROUND VARIATIONS */
section:nth-of-type(odd) {
  background: radial-gradient(80% 60% at 50% 20%, rgba(15, 23, 42, 0.65) 0%, rgba(8, 11, 18, 0.85) 100%);
}

section:nth-of-type(even) {
  background: radial-gradient(80% 60% at 50% 80%, rgba(13, 19, 36, 0.7) 0%, rgba(6, 8, 14, 0.9) 100%);
}

#manifesto {
  background: radial-gradient(90% 70% at 50% 50%, rgba(20, 24, 48, 0.75) 0%, rgba(9, 11, 20, 0.9) 100%) !important;
  border-top: 1px solid rgba(142, 123, 255, 0.12);
  border-bottom: 1px solid rgba(142, 123, 255, 0.12);
}

#pricing, .testimonials-section, section:has(.sec-head) {
  background: radial-gradient(80% 60% at 50% 40%, rgba(10, 28, 45, 0.75) 0%, rgba(5, 10, 18, 0.9) 100%);
}

/* Floating Color Particles Across Sections */
.bg-particles-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.bg-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes floatParticle {
  0% {
    transform: translateY(105vh) translateX(0) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 0.95;
  }
  90% {
    opacity: 0.95;
  }
  100% {
    transform: translateY(-10vh) translateX(120px) scale(1.3);
    opacity: 0;
  }
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 65% 32% at 50% 0%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 65% 32% at 50% 0%, #000 20%, transparent 100%);
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(14px);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Floating Curved Cutout Pill Navbar (Matching Screenshot Style) */
header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 20px;
}

header .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  background: #040810;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(56, 189, 248, 0.15);
  transition: all 0.35s ease;
  position: relative;
}

header.scrolled nav {
  background: #000000;
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(56, 189, 248, 0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.logo .mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #8e7bff);
  position: relative;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.5);
}

.logo .mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #ffffff;
}

.nav-links {
  display: flex;
  gap: 6px;
  font-size: 14.5px;
  color: #ffffff;
  align-items: center;
}

/* Single-Line Curved Elevated Tab Buttons matching Screenshot */
.nav-links > a,
.dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 40px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover & Active State Smooth Capsule Highlight */
.nav-links > a:hover,
.nav-links > a.active,
.dropdown:hover .dropdown-trigger,
.dropdown-trigger.active {
  color: #ffffff;
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Concave Cutout Dip Indicator Dot */
.nav-links > a:hover::after,
.nav-links > a.active::after,
.dropdown:hover .dropdown-trigger::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-caret {
  transition: transform 0.3s ease;
  color: #94a3b8;
  width: 9px;
  height: 7px;
  fill: currentColor;
}

.dropdown:hover .dropdown-caret {
  transform: rotate(180deg);
  color: #38bdf8;
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.96);
  background: rgba(5, 13, 20, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 12px 10px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(251, 191, 36, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-content a {
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.35;
  position: relative;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding-left: 22px;
  border-left-color: #fbbf24;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  .nav-cta .ghost-hide {
    display: none;
  }
}

/* hero */
.hero {
  padding: 148px 0 70px;
  text-align: center;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.badge b {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: .02em;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -.035em;
  margin-bottom: 22px;
}

.hero p.lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--faint);
}

/* product mockup frame (huly-style) */
.shot {
  position: relative;
  margin: 64px auto 0;
  max-width: 1000px;
}

.shot::after {
  content: "";
  position: absolute;
  inset: -6% -4% -30% -4%;
  background: radial-gradient(60% 60% at 50% 0%, rgba(107,124,255,.22), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

.frame {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
}

.frame-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
}

.frame-bar span {
  margin-left: 12px;
  font-size: 12px;
  color: var(--faint);
}

.app {
  display: grid;
  grid-template-columns: 188px 1fr;
  min-height: 340px;
}

.app-side {
  border-right: 1px solid var(--line-soft);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, .012);
}

.app-side .grp {
  font-size: 11px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 12px 8px 4px;
}

.app-side .it {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 13.5px;
  color: var(--muted);
}

.app-side .it.on {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

.app-side .it .d {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .1);
}

.app-side .it.on .d {
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
}

.app-main {
  padding: 20px;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.kpi {
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 14px;
}

.kpi .lab {
  font-size: 11.5px;
  color: var(--faint);
  margin-bottom: 6px;
}

.kpi .val {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.kpi .val small {
  font-size: 12px;
  color: var(--accent-3);
  font-weight: 550;
  margin-left: 6px;
}

.chart {
  height: 176px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
  padding: 14px;
}

.chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@media (max-width: 620px) {
  .app {
    grid-template-columns: 1fr;
  }
  .app-side {
    display: none;
  }
  .kpis {
    grid-template-columns: 1fr 1fr;
  }
}

/* logos */
.logos {
  padding: 60px 0 24px;
  text-align: center;
}

.logos p {
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 26px;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scrollx 32s linear infinite;
}

.marquee-track span {
  font-weight: 700;
  font-size: 19px;
  color: #ffffff;
  white-space: nowrap;
  opacity: 1;
}

@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}

section {
  position: relative;
}

.section {
  padding: 96px 0;
}

/* alternating feature rows */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.row+.row {
  margin-top: 108px;
}

.row.flip .copy {
  order: 2;
}

.copy .eyebrow {
  margin-bottom: 14px;
}

.copy h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 16px;
  font-weight: 600;
}

.copy p {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 22px;
}

.ticks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--muted);
}

.ticks li b {
  color: var(--text);
  font-weight: 550;
}

.ticks svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
  stroke: var(--accent);
  stroke-width: 2.2;
  fill: none;
}

.visual {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
  padding: 22px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(107,124,255,.1), transparent 70%);
}

@media (max-width: 840px) {
  .row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .row+.row {
    margin-top: 72px;
  }
  .row.flip .copy {
    order: 0;
  }
}

/* mini mock widgets inside visuals */
.mini {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini .bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  padding: 11px 13px;
}

.mini .bar .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.mini .bar .dot.c {
  background: var(--accent-3);
}

.mini .bar .dot.v {
  background: var(--accent-2);
}

.mini .bar .t {
  font-size: 13.5px;
  color: var(--text);
}

.mini .bar .t small {
  display: block;
  color: var(--faint);
  font-size: 11.5px;
}

.mini .bar .pill {
  margin-left: auto;
  font-size: 11px;
  color: var(--accent-3);
  background: rgba(79, 209, 224, .1);
  padding: 3px 9px;
  border-radius: 999px;
}

.mini .bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  padding: 6px 2px;
}

.mini .bars span {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--accent), rgba(107, 124, 255, .15));
}

/* feature grid (small icons) */
.grid6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.cell {
  background: var(--bg);
  padding: 30px 26px;
  transition: background .3s;
}

.cell:hover {
  background: var(--panel);
}

.cell .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(107, 124, 255, .12);
  border: 1px solid rgba(107, 124, 255, .2);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.cell .ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cell h3 {
  font-size: 16px;
  margin-bottom: 7px;
  font-weight: 600;
}

.cell p {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 840px) {
  .grid6 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .grid6 {
    grid-template-columns: 1fr;
  }
}

/* schema */
.schema-wrap {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% -10%, rgba(107,124,255,.1), transparent 60%), var(--bg-2);
  padding: 30px;
}

.schema-svg {
  width: 100%;
  height: auto;
  display: block;
}

.node-label {
  font-size: 13px;
  fill: var(--text);
  font-weight: 600;
}

.node-sub {
  font-size: 10px;
  fill: var(--muted);
}

.flow {
  stroke: rgba(255, 255, 255, .14);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
}

.flow-dash {
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}

.legend i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle;
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.stat {
  background: var(--bg);
  padding: 34px 22px;
  text-align: center;
}

.stat .num {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 600;
  letter-spacing: -.03em;
}

.stat .lab {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 8px;
}

@media (max-width: 680px) {
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 26px;
  font-size: 15px;
}

.quote p {
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 400;
}

.quote .who {
  display: flex;
  align-items: center;
  gap: 11px;
}

.quote .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  flex: none;
}

.quote .who b {
  font-size: 14px;
  display: block;
  font-weight: 600;
}

.quote .who span {
  font-size: 12.5px;
  color: var(--faint);
}

@media (max-width: 840px) {
  .quotes {
    grid-template-columns: 1fr;
  }
}

/* pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plan {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.plan.feature {
  border-color: rgba(107, 124, 255, .4);
  background: linear-gradient(180deg, rgba(107, 124, 255, .08), rgba(255, 255, 255, .012));
}

.plan .tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 13px;
  border-radius: 999px;
}

.plan h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 550;
}

.plan .price {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -.03em;
  margin: 8px 0;
}

.plan .price small {
  font-size: 14px;
  color: var(--faint);
  font-weight: 400;
}

.plan .desc {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 22px;
  min-height: 38px;
}

.plan ul {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.plan li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 14px;
  color: var(--muted);
}

.plan li svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 3px;
  stroke: var(--accent);
  stroke-width: 2.4;
  fill: none;
}

@media (max-width: 840px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}

/* cta */
.cta-box {
  position: relative;
  text-align: center;
  border-radius: 28px;
  border: 1px solid var(--line);
  padding: 76px 28px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 130%, rgba(107, 124, 255, .3), transparent 62%), var(--bg-2);
}

.cta-box h2 {
  font-size: clamp(30px, 4.6vw, 50px);
  margin-bottom: 16px;
  font-weight: 600;
}

.cta-box p {
  color: var(--muted);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 30px;
}

/* footer */
footer {
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 40px;
  margin-top: 30px;
}

.foot {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 32px;
}

.foot p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 14px;
  max-width: 270px;
}

.foot h4 {
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--faint);
  margin-bottom: 13px;
  font-weight: 600;
}

.foot a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 5px 0;
  transition: color .2s;
}

.foot a:hover {
  color: var(--text);
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--faint);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 680px) {
  .foot {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== manifesto (word-highlight scrub) ===== */
.manifesto {
  padding: 130px 0;
  text-align: center;
}

.manifesto .eyebrow {
  display: block;
  text-align: center;
}

.manifesto .big {
  font-size: clamp(26px, 4.6vw, 52px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -.03em;
  max-width: 940px;
  margin: 0 auto;
}

.manifesto .big .w {
  color: #33353d;
  transition: color .15s linear;
  will-change: color;
}

/* ===== pinned horizontal modules ===== */
.hscroll {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .012), transparent);
}

.hhead {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px 24px 0;
}

.hpin {
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.htrack {
  display: flex;
  gap: 22px;
  padding: 0 max(24px, calc((100vw - var(--maxw))/2 + 24px));
  will-change: transform;
}

.hcard {
  flex: 0 0 360px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 50% at 50% 0%, rgba(107,124,255,.1), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
}

.hcard:hover::before {
  opacity: 1;
}

.hcard .num {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.hcard .vis {
  position: relative;
  z-index: 1;
  height: 160px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .02);
  margin: 18px 0 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hcard .vis svg {
  width: 80%;
  height: 70%;
}

.hcard h3 {
  font-size: 21px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.hcard p {
  color: var(--muted);
  font-size: 14.5px;
  position: relative;
  z-index: 1;
}

@media (max-width: 840px) {
  .hpin {
    height: auto;
    display: block;
    padding: 30px 0 90px;
  }
  .htrack {
    transform: none !important;
    flex-direction: column;
    padding: 0 24px;
  }
  .hcard {
    flex: none;
    min-height: 0;
  }
}

/* ===== scrub timeline ===== */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 54px;
}

.tl-line {
  position: absolute;
  left: 18px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
  overflow: hidden;
}

.tl-line span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.tl-step {
  position: relative;
  padding: 0 0 52px;
}

.tl-step:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -45px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  transition: border-color .3s, box-shadow .3s, background .3s;
}

.tl-step.on .tl-dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(107, 124, 255, .18);
}

.tl-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.tl-step p {
  color: var(--muted);
  font-size: 15.5px;
}

.tl-step .k {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}

/* ===== How it works: unique "x-ray" timeline ===== */
.timeline.timeline-xray {
  padding-left: 64px;
}

.timeline.timeline-xray::before {
  content: "";
  position: absolute;
  inset: -18px -18px -18px -28px;
  border-radius: 26px;
  background: radial-gradient(70% 80% at 20% 0%, rgba(107,124,255,.12), transparent 55%), radial-gradient(60% 70% at 75% 20%, rgba(79,209,224,.08), transparent 60%);
  border: 1px solid rgba(255, 255, 255, .06);
  pointer-events: none;
}

.timeline.timeline-xray .tl-top {
  position: sticky;
  top: 84px;
  z-index: 3;
  margin: 0 0 20px -10px;
  padding: 10px 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  pointer-events: none;
}

.timeline.timeline-xray .tl-readout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.timeline.timeline-xray .tl-readout .t {
  font-size: 11.5px;
  color: var(--faint);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.timeline.timeline-xray .tl-readout .v {
  font-size: 12.5px;
  color: var(--muted);
}

.timeline.timeline-xray .tl-readout b {
  color: var(--text);
  font-weight: 600;
}

.timeline.timeline-xray .tl-readout .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-3);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(79, 209, 224, .45);
  animation: tlblink 1.4s infinite;
}

@keyframes tlblink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(79, 209, 224, .5);
  }
  50% {
    opacity: .45;
    box-shadow: 0 0 0 7px rgba(79, 209, 224, 0);
  }
}

.timeline.timeline-xray .tl-pulse {
  position: absolute;
  left: 18px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(107, 124, 255, 0), rgba(107, 124, 255, .25), rgba(79, 209, 224, 0));
  filter: blur(.2px);
  opacity: .75;
}

.timeline.timeline-xray .tl-scan {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(107,124,255,.10), rgba(79,209,224,.08), transparent);
  filter: blur(.1px);
  opacity: .55;
  transform: translateY(0);
}

.timeline.timeline-xray .tl-line {
  left: 22px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.timeline.timeline-xray .tl-line .tl-glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 22px;
  height: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 10%, rgba(107,124,255,.35), rgba(107,124,255,0) 60%);
  filter: blur(6px);
  opacity: .9;
  pointer-events: none;
}

.timeline.timeline-xray .tl-step {
  padding: 18px 18px 56px 0;
}

.timeline.timeline-xray .tl-step::before {
  content: "";
  position: absolute;
  left: -18px;
  right: 0;
  top: -10px;
  bottom: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .01);
  border: 1px solid rgba(255, 255, 255, .05);
  opacity: .0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease, border-color .35s ease, background .35s ease;
}

.timeline.timeline-xray .tl-step.on::before {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  border-color: rgba(107,124,255,.22);
}

.timeline.timeline-xray .tl-dot {
  left: -49px;
  top: 22px;
  width: 18px;
  height: 18px;
  background: var(--bg);
  border: 2px solid rgba(255, 255, 255, .14);
}

.timeline.timeline-xray .tl-step.on .tl-dot {
  border-color: rgba(107,124,255,.9);
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(107,124,255,.14), 0 0 24px rgba(107,124,255,.22);
}

.timeline.timeline-xray .tl-ghost {
  position: absolute;
  left: -6px;
  top: 10px;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -.06em;
  color: rgba(255, 255, 255, .04);
  pointer-events: none;
}

.timeline.timeline-xray .tl-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
}

.timeline.timeline-xray .tl-step.on .tl-chip {
  color: rgba(255, 255, 255, .82);
  border-color: rgba(107,124,255,.25);
  background: rgba(107,124,255,.08);
}

.timeline.timeline-xray .k {
  color: var(--accent);
  opacity: .95;
}

.timeline.timeline-xray h3 {
  font-size: 20px;
  letter-spacing: -.02em;
}

.timeline.timeline-xray p {
  color: var(--muted);
}

@media (max-width: 680px) {
  .timeline.timeline-xray {
    padding-left: 54px;
  }
  .timeline.timeline-xray .tl-top {
    top: 74px;
  }
}

/* ===== clip-path wipe comparison ===== */
.compare {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 420px;
  background: var(--bg-2);
}

.compare .layer {
  position: absolute;
  inset: 0;
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compare .before {
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .02) 0 12px, transparent 12px 24px), var(--bg-2);
}

.compare .after {
  background: radial-gradient(80% 90% at 50% 50%, rgba(107,124,255,.16), transparent 70%), var(--bg-2);
  clip-path: inset(0 100% 0 0);
}

.compare .tagx {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: max-content;
}

.compare .before .tagx {
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
}

.compare .after .tagx {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
}

.compare h3 {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 12px;
  max-width: 440px;
}

.compare p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 420px;
}

.compare .handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 16px var(--accent);
  z-index: 3;
}

.compare .handle::after {
  content: "⇆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
}

/* ===== integrations parallax grid ===== */
.integ {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.chip {
  aspect-ratio: 1;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
  transition: border-color .3s, color .3s, transform .3s;
  will-change: transform;
}

.chip:hover {
  border-color: rgba(107,124,255,.4);
  color: var(--text);
  transform: translateY(-4px);
}

.chip .d {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  opacity: .85;
}

@media (max-width: 680px) {
  .integ {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 440px) {
  .integ {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== FAQ ===== */
.faq {
  max-width: 780px;
  margin: 0 auto;
}

.qa {
  border-bottom: 1px solid var(--line-soft);
}

.qa button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 17px;
  font-weight: 550;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  position: relative;
  letter-spacing: -.01em;
}

.qa button::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent);
  transition: transform .3s;
  font-weight: 400;
}

.qa.open button::after {
  transform: translateY(-50%) rotate(45deg);
}

.qa .a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: var(--muted);
  font-size: 15px;
}

.qa .a p {
  padding: 0 0 22px;
}

/* ===== three.js hero canvas ===== */
#bgGL {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  display: block;
}

/* ===== compare split visuals ===== */
.compare .layer {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.compare .layer .txt {
  min-width: 0;
}

.cv-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: blur(4px);
}

.cv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--faint);
  margin-bottom: 14px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-3);
}

.live-badge .ld {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-3);
  animation: blink 1.4s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(79,209,224,.5);
  }
  50% {
    opacity: .4;
    box-shadow: 0 0 0 6px rgba(79, 209, 224, 0);
  }
}

.cv-card svg {
  display: block;
  width: 100%;
}

.flowmini {
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 5 8;
  animation: flowmove 1.4s linear infinite;
}

@keyframes flowmove {
  to {
    stroke-dashoffset: -26;
  }
}

.pulsem {
  transform-box: fill-box;
  transform-origin: center;
  animation: pulsem 1.5s ease-in-out infinite;
}

@keyframes pulsem {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.7);
    opacity: .45;
  }
}

.spark .ln {
  fill: none;
  stroke: url(#sgrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 7 7;
  animation: march 1s linear infinite;
}

@keyframes march {
  to {
    stroke-dashoffset: -14;
  }
}

.stale {
  filter: grayscale(.8);
  opacity: .62;
}

.bars2 {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 64px;
  margin-bottom: 6px;
}

.bars2 span {
  flex: 1;
  background: rgba(255, 255, 255, .16);
  border-radius: 4px 4px 0 0;
}

.prog {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
  margin-top: 14px;
}

.prog i {
  display: block;
  height: 100%;
  width: 42%;
  background: rgba(255, 255, 255, .28);
}

@media (max-width: 760px) {
  .compare .layer {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .compare .layer .cv {
    display: none;
  }
}

/* ===== kinetic typography fixed ===== */
.kinetic {
  padding: 128px 0;
  overflow: hidden;
}

.kinetic .lines {
  text-align: center;
}

.kinetic .line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: auto !important;
  max-width: none !important;
  font-size: clamp(46px, 13.5vw, 184px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
  perspective: 700px;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.kinetic .line::before,
.kinetic .line::after,
.kinetic .line.outline::before,
.kinetic .line.outline::after {
  content: none !important;
  display: none !important;
}

.kinetic .line .ch {
  display: inline-block;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.kinetic .line.fill .ch {
  background: linear-gradient(100deg, #8e7bff, #6b7cff 40%, #4fd1e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kinetic .line.outline .ch {
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(255, 255, 255, .32);
}

.kinetic .line.solid .ch {
  color: var(--text);
}

.vmarq {
  margin-top: 48px;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
}

.vtrack {
  display: inline-flex;
  gap: 0;
  will-change: transform;
}

.vtrack span {
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--muted);
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.vtrack span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.vtrack span.hl {
  color: var(--text);
}

/* ===== particle text canvas ===== */
.particles {
  padding: 120px 0;
  text-align: center;
}

.stage {
  position: relative;
  height: 400px;
  max-width: 1000px;
  margin: 0 auto;
}

.stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.stage .fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: clamp(54px, 15vw, 180px);
  font-weight: 800;
  letter-spacing: -.04em;
}

.no-js .stage canvas {
  display: none;
}

.no-js .stage .fallback {
  display: flex;
}

.particles .hint {
  margin-top: 20px;
  font-size: 13px;
  color: var(--faint);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

.no-js .compare .after {
  clip-path: none;
}

.no-js .compare .handle {
  display: none;
}

/* Additional specific helper styles from inline blocks */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bg-grid-pattern {
  background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

@keyframes pipeline-flow {
  0% { left: -20%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* ===== Contact Form Page Layout & Styling ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 40px;
  margin-top: 48px;
  align-items: stretch;
  position: relative;
  z-index: 10;
}

@media(max-width: 840px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact-info-card h3 {
  font-size: 24px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(107, 124, 255, 0.08);
  border: 1px solid rgba(107, 124, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.contact-item:hover .contact-ico {
  transform: scale(1.05);
  background: rgba(107, 124, 255, 0.15);
}

.contact-ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-det h4 {
  color: var(--accent-3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-det p {
  color: var(--text);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-form-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media(max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 8px;
  font-weight: 550;
  text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  font-family: var(--font);
  font-size: 14.5px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

/* Custom Blog Grid and Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.blog-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s, box-shadow 0.3s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(107, 124, 255, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(107, 124, 255, 0.1);
}

.blog-card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-tag {
  color: #ff9f43; /* warm orange/gold tag */
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card-title {
  color: var(--text);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.4;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.blog-card:hover .blog-card-title {
  color: #fff;
}

.blog-card-link {
  color: var(--accent-3); /* soft cyan link */
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s, color 0.2s;
}

.blog-card:hover .blog-card-link {
  gap: 10px;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Value Card styling and hovers */
.value-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
  .grid-3d {
    perspective: 1200px;
    transform-style: preserve-3d;
  }
  
  .value-card:nth-child(1) {
    transform: rotateY(12deg) scale(0.97);
    transform-origin: right center;
  }
  
  .value-card:nth-child(2) {
    transform: translateY(-28px) scale(1.02);
    z-index: 10;
  }
  
  .value-card:nth-child(3) {
    transform: rotateY(-12deg) scale(0.97);
    transform-origin: left center;
  }
  
  /* Hover States */
  .value-card:nth-child(1):hover {
    transform: rotateY(0deg) translateY(-12px) scale(1.04);
    z-index: 15;
  }
  
  .value-card:nth-child(2):hover {
    transform: translateY(-40px) scale(1.06);
    z-index: 15;
  }
  
  .value-card:nth-child(3):hover {
    transform: rotateY(0deg) translateY(-12px) scale(1.04);
    z-index: 15;
  }
}

/* Individual Card Hover Glow Effects */
.value-card:nth-child(1):hover {
  border-color: rgba(79, 209, 224, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 22px rgba(79, 209, 224, 0.15);
}
.value-card:nth-child(2):hover {
  border-color: rgba(107, 124, 255, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 22px rgba(107, 124, 255, 0.15);
}
.value-card:nth-child(3):hover {
  border-color: rgba(142, 123, 255, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 22px rgba(142, 123, 255, 0.15);
}

/* Philosophy Card Hover Effect */
.philosophy-card {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s, box-shadow 0.3s;
}
.philosophy-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(79, 209, 224, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 25px rgba(79, 209, 224, 0.15);
}

/* Yellow Button Styles */
.btn-yellow {
  background: #ffb800;
  color: #050d14 !important;
  font-weight: 600;
  border-radius: 999px;
  padding: 13px 32px;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 184, 0, 0.4), 0 0 15px rgba(255, 184, 0, 0.2);
  background: #ffa800;
}

/* State Cards in Areas We Serve */
.state-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
}

.state-card-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.state-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.state-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 12, 0.45) 0%, rgba(9, 10, 12, 0.85) 100%);
  z-index: 2;
  transition: background 0.3s;
}

.state-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  width: 100%;
  height: 100%;
}

.state-card-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.state-card-link {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-3); /* soft cyan */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover States */
.state-card:hover {
  border-color: rgba(107, 124, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(107, 124, 255, 0.15);
}

.state-card:hover .state-card-bg {
  transform: scale(1.06);
}

.state-card:hover .state-card-overlay {
  background: linear-gradient(180deg, rgba(9, 10, 12, 0.5) 0%, rgba(9, 10, 12, 0.9) 100%);
}

.state-card:hover .state-card-title {
  transform: translateY(-8px);
}

.state-card:hover .state-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* PURE BLACK GLOBAL FOOTER WITH WHITE TEXT (ALL PAGES) */
html {
  background-color: #000000 !important;
}
footer {
  position: relative !important;
  z-index: 10 !important;
  background: #000000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  padding: 70px 0 35px 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
footer .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
footer .foot {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer .logo {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
footer p {
  color: #94a3b8 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}
footer h4 {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.01em !important;
}
footer a {
  display: block;
  color: #cbd5e1 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  margin-bottom: 12px !important;
  transition: color 0.2s ease !important;
}
footer a:hover {
  color: #ffffff !important;
}

/* Newsletter Input Form */
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s ease;
}
.newsletter-input:focus {
  border-color: #fbbf24;
}
.newsletter-btn {
  background: #fbbf24;
  color: #0a111a;
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.newsletter-btn:hover {
  background: #f59e0b;
  transform: scale(1.05);
}

footer .foot-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 24px !important;
  margin-top: 40px !important;
  color: #94a3b8 !important;
  font-size: 13.5px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .foot-bot-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
footer .foot-bot-links a {
  display: inline-block !important;
  color: #cbd5e1 !important;
  font-size: 13.5px !important;
  margin-bottom: 0 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}
footer .foot-bot-links a:hover {
  color: #ffffff !important;
}

@media (max-width: 991px) {
  footer .foot {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  footer .foot {
    grid-template-columns: 1fr;
  }
}

@keyframes prismQuartzSpin {
  0% {
    transform: rotate3d(1, 1, 0, 0deg) scale(0.85);
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5)) drop-shadow(0 0 15px rgba(142, 123, 255, 0.3));
  }
  50% {
    transform: rotate3d(1, 1, 1, 180deg) scale(1.15);
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.8)) drop-shadow(0 0 25px rgba(56, 189, 248, 0.7));
  }
  100% {
    transform: rotate3d(0, 1, 1, 360deg) scale(0.85);
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5)) drop-shadow(0 0 15px rgba(142, 123, 255, 0.3));
  }
}

