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

:root {
  --dark:       #050505;
  --dark-2:     #0a0a0a;
  --dark-3:     #111111;
  --white:      #ffffff;
  --grey:       #f5f5f5;
  --grey-2:     #e8e8e8;
  --muted:      #888;
  --muted-lt:   rgba(255,255,255,.45);
  --border:     rgba(255,255,255,.08);
  --border-lt:  rgba(255,255,255,.06);
  --glow:       rgba(255,255,255,.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── ANIMATED BACKGROUND ────────────────────────────── */
.bg-wrap {
  position: fixed; inset: 0; z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
  will-change: transform;
}
.bg-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #ffffff 0%, transparent 70%);
  top: -10%; left: -5%;
  animation: orb-drift-1 22s ease-in-out infinite;
}
.bg-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #cccccc 0%, transparent 70%);
  bottom: -15%; right: -10%;
  animation: orb-drift-2 26s ease-in-out infinite;
}
.bg-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #aaaaaa 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: orb-drift-3 30s ease-in-out infinite;
}

@keyframes orb-drift-1 {
  0%,100% { transform: translate(0, 0) scale(1); }
  25%     { transform: translate(80px, 60px) scale(1.1); }
  50%     { transform: translate(40px, 120px) scale(.95); }
  75%     { transform: translate(-30px, 50px) scale(1.05); }
}
@keyframes orb-drift-2 {
  0%,100% { transform: translate(0, 0) scale(1); }
  25%     { transform: translate(-70px, -50px) scale(1.08); }
  50%     { transform: translate(-30px, -100px) scale(.92); }
  75%     { transform: translate(50px, -40px) scale(1.04); }
}
@keyframes orb-drift-3 {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%     { transform: translate(60px, -70px) scale(1.12); }
  66%     { transform: translate(-50px, 40px) scale(.9); }
}

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: grid-shift 40s linear infinite;
}
@keyframes grid-shift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(72px, 72px); }
}

#particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* ─── NOISE TEXTURE OVERLAY ──────────────────────────── */
.noise {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(.97);
  filter: blur(4px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1),
              transform .9s cubic-bezier(.16,1,.3,1),
              filter .9s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
.reveal-d4 { transition-delay: .48s; }
.reveal-d5 { transition-delay: .6s; }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px) scale(.97);
  filter: blur(4px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1),
              transform .9s cubic-bezier(.16,1,.3,1),
              filter .9s cubic-bezier(.16,1,.3,1);
}
.reveal-left.in { opacity: 1; transform: none; filter: none; }

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px) scale(.97);
  filter: blur(4px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1),
              transform .9s cubic-bezier(.16,1,.3,1),
              filter .9s cubic-bezier(.16,1,.3,1);
}
.reveal-right.in { opacity: 1; transform: none; filter: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(.88) translateY(30px);
  filter: blur(6px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1),
              transform .9s cubic-bezier(.16,1,.3,1),
              filter .9s cubic-bezier(.16,1,.3,1);
}
.reveal-scale.in { opacity: 1; transform: none; filter: none; }

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,5,5,0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--border);
  transition: padding .35s cubic-bezier(.16,1,.3,1), background .35s;
}
nav.stuck {
  padding: 8px 48px;
  background: rgba(5,5,5,.92);
}
nav.stuck .btn-nav-primary {
  padding: 6px 16px;
  font-size: .76rem;
  border-radius: 6px;
}
nav.stuck .nav-logo {
  font-size: 1.05rem;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: #fff; text-decoration: none;
  letter-spacing: -.03em;
  transition: opacity .2s, font-size .35s cubic-bezier(.16,1,.3,1);
}
.nav-logo:hover { opacity: .7; }
.nav-logo span {
  font-weight: 400;
  color: var(--muted-lt);
  margin-left: 2px;
}

.nav-links {
  display: flex; gap: 36px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  color: rgba(255,255,255,.45); font-size: .82rem; font-weight: 500;
  text-decoration: none; letter-spacing: .01em;
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: #fff;
  transition: width .3s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

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

.btn-nav-primary {
  background: #fff; color: #050505;
  padding: 9px 22px; border-radius: 8px;
  font-size: .82rem; font-weight: 600;
  text-decoration: none;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.btn-nav-primary:hover {
  background: rgba(255,255,255,.88);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,255,255,.12);
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 160px 48px 120px;
  position: relative; z-index: 2;
}

.hero-inner {
  max-width: 800px; margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 6px 18px 6px 8px;
  font-size: .72rem; font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .02em;
  margin-bottom: 36px;
  transition: all .3s;
  cursor: default;
  animation: badge-glow 3s ease-in-out infinite;
}
.hero-badge:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
@keyframes badge-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  50%     { box-shadow: 0 0 20px 0 rgba(255,255,255,.06); }
}

.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(.8); }
}

.hero-h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 28px;
}
/* Hero highlight glow effect */
.hero-highlight {
  position: relative;
  cursor: default;
  transition: text-shadow .4s ease, filter .4s ease;
}
.hero-highlight:hover {
  text-shadow:
    0 0 20px rgba(255,255,255,.5),
    0 0 40px rgba(255,255,255,.25),
    0 0 80px rgba(255,255,255,.1);
  filter: brightness(1.3);
}
.hero-highlight::after {
  content: '';
  position: absolute;
  inset: -4px -8px;
  border-radius: 8px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.06), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: -1;
}
.hero-highlight:hover::after {
  opacity: 1;
}
.hero-h1 .gradient-text {
  background: linear-gradient(135deg, #fff 0%, #888 50%, #fff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shimmer 6s ease-in-out infinite;
}
@keyframes gradient-shimmer {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

.hero-sub {
  color: rgba(255,255,255,.4);
  font-size: 1.15rem; font-weight: 300;
  line-height: 1.8;
  max-width: 540px; margin: 0 auto 48px;
  letter-spacing: .01em;
}

.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #050505;
  padding: 16px 36px; border-radius: 12px;
  font-size: .95rem; font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0,0,0,.04) 100%);
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,.15);
}
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.6);
  padding: 16px 36px; border-radius: 12px;
  font-size: .95rem; font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,.3);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,.06);
}
.btn-secondary svg {
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.btn-secondary:hover svg { transform: translateX(3px); }

/* ─── SCROLL ARROW ──────────────────────────────────── */
.scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  animation: arrow-bounce 2s ease-in-out infinite;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.scroll-arrow:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: #fff;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* Scroll offset for fixed nav */
#approach, #offerings, #cta {
  scroll-margin-top: 90px;
}

/* ─── DIVIDER ────────────────────────────────────────── */
.section-divider {
  height: 1px; max-width: 1200px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

/* ─── APPROACH SECTION (headstart-inspired) ──────────── */
.approach-sec {
  padding: 120px 48px;
  position: relative; z-index: 2;
}
.approach-inner {
  max-width: 900px; margin: 0 auto;
}

.approach-lead {
  margin-bottom: 72px;
  will-change: transform;
}
.approach-h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  will-change: transform, opacity;
  transform-origin: left center;
}
.approach-p {
  color: rgba(255,255,255,.38);
  font-size: 1.05rem; font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
  will-change: transform, opacity;
}

/* Headstart-style area rows */
.approach-areas {
  will-change: transform, opacity;
}
.areas-label {
  color: rgba(255,255,255,.25);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 20px;
}

.area-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 22px 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  margin-bottom: 12px;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.area-row:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
  transform: translateX(4px);
}

.area-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  min-width: 180px;
}
.area-step {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.3);
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 42px;
}
.area-arrow {
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
  transition: color .3s, transform .3s;
}
.area-row:hover .area-arrow {
  color: rgba(255,255,255,.6);
  transform: translateX(3px);
}
.area-title {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.area-desc {
  color: rgba(255,255,255,.35);
  font-size: .85rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ─── STATEMENT SECTION (tenex-inspired) ─────────────── */
.statement-sec {
  padding: 100px 48px;
  position: relative; z-index: 2;
}
.statement-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.statement-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -.02em;
}

/* ─── INTEGRATIONS CAROUSEL ──────────────────────────── */
.integrations-sec {
  padding: 40px 48px;
  position: relative; z-index: 2;
}
.integrations-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.integrations-label {
  color: rgba(255,255,255,.3);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 24px;
}

.logo-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: flex;
  animation: scroll-logos 35s linear infinite;
  width: max-content;
}

.logo-item {
  flex-shrink: 0;
  padding: 14px 40px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.2);
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color .3s;
}
.logo-item:hover {
  color: rgba(255,255,255,.5);
}

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── USE CASES (full section with visuals) ─────────── */
.use-cases-sec {
  padding: 100px 48px;
  position: relative; z-index: 2;
}
.use-cases-inner {
  max-width: 1100px; margin: 0 auto;
}

.use-cases-header {
  text-align: center;
  margin-bottom: 64px;
}
.use-cases-h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-top: 20px;
}

/* Feature cards — 3-col grid with side visuals */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex; flex-direction: row; gap: 16px;
  align-items: center;
  position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  cursor: default;
}
.feature-card::after {
  content: ''; position: absolute;
  inset: 0; border-radius: 16px;
  background: radial-gradient(200px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,.04), transparent 60%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.feature-card:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.feature-card:hover::after { opacity: 1; }

.feature-card-content {
  flex: 1; min-width: 0;
}

.feature-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 12px;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.feature-card:hover .feature-icon {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}

.feature-title {
  font-size: .9rem; font-weight: 600;
  color: #fff; margin-bottom: 6px;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.feature-desc {
  color: rgba(255,255,255,.35);
  font-size: .78rem; line-height: 1.6;
  font-weight: 300;
}

.feature-visual {
  flex-shrink: 0;
  width: 100px;
  opacity: .5;
  transition: opacity .4s;
}
.feature-card:hover .feature-visual {
  opacity: .8;
}
.feature-visual svg {
  width: 100%; height: auto;
}

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-sec {
  padding: 120px 48px;
  text-align: center;
  position: relative; z-index: 2;
}
.cta-inner {
  max-width: 640px; margin: 0 auto;
  position: relative;
}

.cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 70%);
  pointer-events: none;
  animation: cta-pulse 5s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50%     { transform: translate(-50%,-50%) scale(1.15); opacity: .6; }
}

.cta-h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  position: relative;
}
.cta-p {
  color: rgba(255,255,255,.35);
  font-size: 1.05rem; font-weight: 300;
  line-height: 1.75; margin-bottom: 44px;
  position: relative;
}
.cta-btns {
  display: flex; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  position: relative;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  padding: 60px 48px 36px;
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.06);
}
.foot-inner {
  max-width: 1100px; margin: 0 auto;
}
.foot-top {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 40px;
  flex-wrap: wrap; gap: 20px;
}
.foot-brand {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: #fff; letter-spacing: -.03em;
}
.foot-brand span {
  font-weight: 400; color: rgba(255,255,255,.45);
}
.foot-nav {
  display: flex; gap: 28px; list-style: none;
}
.foot-nav a {
  color: rgba(255,255,255,.3); font-size: .82rem;
  text-decoration: none; transition: color .25s;
}
.foot-nav a:hover { color: #fff; }

.foot-bottom {
  display: flex; justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .72rem; color: rgba(255,255,255,.2);
  flex-wrap: wrap; gap: 12px;
}
.foot-right-only {
  justify-content: flex-end;
}
.foot-legal {
  display: flex; gap: 20px;
}
.foot-legal a {
  color: rgba(255,255,255,.2); text-decoration: none;
  transition: color .25s;
}
.foot-legal a:hover { color: rgba(255,255,255,.5); }

/* ─── CONTACT PAGE ───────────────────────────────────── */
.page-header {
  padding: 160px 48px 80px;
  text-align: center;
  position: relative; z-index: 2;
}
.page-header-inner {
  max-width: 600px; margin: 0 auto;
}
.page-header .features-eyebrow { margin-bottom: 20px; }
.page-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: #fff;
  line-height: 1.12; letter-spacing: -.03em;
  margin-bottom: 16px;
}
.page-header p {
  color: rgba(255,255,255,.35);
  font-size: 1rem; font-weight: 300;
  line-height: 1.7;
}

.features-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.35);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 20px;
}
.features-eyebrow::before, .features-eyebrow::after {
  content: ''; width: 30px; height: 1px;
  background: rgba(255,255,255,.15);
}

/* Contact form */
.contact-sec {
  padding: 0 48px 120px;
  position: relative; z-index: 2;
}
.contact-inner {
  max-width: 560px; margin: 0 auto;
}
.contact-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 44px;
}

.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
  letter-spacing: .06em; text-transform: uppercase;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: .9rem;
  color: #fff;
  background: rgba(255,255,255,.04);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(255,255,255,.04);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255,255,255,.2);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: #111; color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%;
  background: #fff; color: #050505;
  padding: 16px 36px; border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.btn-submit:hover {
  background: rgba(255,255,255,.88);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,.12);
}

/* Checkbox grid */
.checkbox-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.checkbox-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  font-size: .82rem; color: rgba(255,255,255,.5);
  transition: all .25s cubic-bezier(.16,1,.3,1);
  user-select: none;
}
.checkbox-item:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
}
.checkbox-item input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.checkbox-box {
  width: 18px; height: 18px; border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.checkbox-box::after {
  content: '';
  width: 10px; height: 10px; border-radius: 3px;
  background: #fff;
  opacity: 0; transform: scale(0);
  transition: all .2s cubic-bezier(.16,1,.3,1);
}
.checkbox-item input:checked ~ .checkbox-box {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.1);
}
.checkbox-item input:checked ~ .checkbox-box::after {
  opacity: 1; transform: scale(1);
}
.checkbox-item input:checked ~ span:last-child {
  color: #fff;
}

/* ─── ABOUT PAGE ────────────────────────────────────── */
.about-hero {
  padding: 160px 48px 80px;
  text-align: center;
  position: relative; z-index: 2;
}
.about-hero-inner {
  max-width: 700px; margin: 0 auto;
}
.about-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: 24px;
}
.about-hero p {
  color: rgba(255,255,255,.4);
  font-size: 1.05rem; font-weight: 300;
  line-height: 1.8; max-width: 560px;
  margin: 0 auto;
}

.about-sec {
  padding: 80px 48px;
  position: relative; z-index: 2;
}
.about-inner {
  max-width: 900px; margin: 0 auto;
}

.about-block {
  margin-bottom: 80px;
}
.about-block:last-child {
  margin-bottom: 0;
}
.about-block-label {
  color: rgba(255,255,255,.25);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 20px;
}
.about-block h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: #fff;
  line-height: 1.2; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.about-block p {
  color: rgba(255,255,255,.38);
  font-size: .95rem; font-weight: 300;
  line-height: 1.85; max-width: 640px;
}
.about-block p + p {
  margin-top: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.about-value {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.about-value:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.about-value h3 {
  font-size: .95rem; font-weight: 600;
  color: #fff; margin-bottom: 8px;
  letter-spacing: -.01em;
}
.about-value p {
  color: rgba(255,255,255,.32);
  font-size: .82rem; line-height: 1.65;
  font-weight: 300;
  max-width: none;
}

.about-cta-sec {
  padding: 80px 48px 120px;
  text-align: center;
  position: relative; z-index: 2;
}
.about-cta-inner {
  max-width: 600px; margin: 0 auto;
}
.about-cta-inner h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: 20px;
}
.about-cta-inner p {
  color: rgba(255,255,255,.35);
  font-size: .95rem; font-weight: 300;
  line-height: 1.7; margin-bottom: 32px;
}

/* ─── CONTACT MODAL ──────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 44px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.modal-container.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s;
  font-size: 0;
}
.modal-close:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.modal-close svg {
  width: 16px; height: 16px;
}

.modal-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.modal-subtitle {
  color: rgba(255,255,255,.35);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal-success {
  text-align: center;
  padding: 40px 20px;
}
.modal-success h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.modal-success p {
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Confetti canvas */
#confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

/* ─── MAGNETIC CURSOR GLOW ───────────────────────────── */
.cursor-glow {
  position: fixed; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.03), transparent 60%);
  pointer-events: none; z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform .15s linear;
  will-change: transform;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width:1024px) {
  nav { padding: 16px 28px; }
  .nav-links { display: none; }
  .hero { padding: 140px 28px 90px; }
  .approach-sec { padding: 80px 28px; }
  .area-row { flex-direction: column; gap: 8px; }
  .area-left { min-width: unset; }
  .statement-sec { padding: 70px 28px; }
  .integrations-sec { padding: 30px 28px; }
  .use-cases-sec { padding: 60px 28px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { flex-direction: column; }
  .feature-visual { width: 100%; }
  .cta-sec { padding: 80px 28px; }
  footer { padding: 48px 28px 28px; }
  .page-header { padding: 130px 28px 60px; }
  .contact-sec { padding: 0 28px 80px; }
  .contact-card { padding: 32px; }
  .about-hero { padding: 130px 28px 60px; }
  .about-sec { padding: 60px 28px; }
  .about-values { grid-template-columns: 1fr; }
  .about-cta-sec { padding: 60px 28px 80px; }
}
@media (max-width:640px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.6rem; }
  .approach-h2 { font-size: 2rem; }
  .statement-text { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .foot-top { flex-direction: column; align-items: flex-start; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .about-values { grid-template-columns: 1fr; }
}
