:root {
  --bg: #050508;
  --bg2: #0a0916;
  --purple: #8B5CF6;
  --purple-d: #6D28D9;
  --orange: #FB923C;
  --white: #fff;
  --w70: rgba(255, 255, 255, .7);
  --w40: rgba(255, 255, 255, .4);
  --w15: rgba(255, 255, 255, .15);
  --w08: rgba(255, 255, 255, .08);
  --w04: rgba(255, 255, 255, .04);
  --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-p: 'Manrope', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1)
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: auto
}

body {
  font-size: 1rem;
  background: var(--bg);
  color: var(--white);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
  overflow-x: hidden
}

p,
li,
.desc,
.sub-text,
.cta-sub,
.hero-h2,
.feat-desc,
.how-step-desc,
.tst-info-role,
.cta-note,
.footer-desc,
.faq-a,
button,
.btn,
label,
input,
textarea,
select,
.nav-link,
a:not(h1 a):not(h2 a):not(h3 a):not(h4 a):not(h5 a):not(h6 a) {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif
}

h1,
h2,
h3,
h4,
h5,
h6,
[class*="-h1"],
[class*="-h2"],
[class*="-h3"],
[class*="sec-h"],
[class*="hero-h1"],
[class*="feat-title"],
[class*="how-step-title"] {
  font-family: var(--font);
  line-height: 1.15;
  letter-spacing: -0.025em
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: #6D28D9;
  border-radius: 2px
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

/* ══════════════════════════════════════════
   GLOBAL DESIGN TOKENS & UTILITIES
   All repeating patterns live here — never
   write the same inline style twice.
══════════════════════════════════════════ */

/* ── GRADIENT TEXT ── */
.grad {
  background: linear-gradient(135deg, #A78BFA, #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.grad-orange {
  background: linear-gradient(135deg, #FB923C, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.grad-purple {
  background: linear-gradient(135deg, #6D28D9, #4F46E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ── LAYOUT ── */
/* Standard section padding */
.sec {
  padding: 7rem 0;
  position: relative;
  overflow: hidden
}

.sec--lg {
  padding: 9rem 0
}

.sec--sm {
  padding: 5rem 0
}

/* Max-width content wrapper */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem
}

/* Section background variants */
.sec--dark {
  background: var(--bg)
}

.sec--dark2 {
  background: linear-gradient(180deg, #07041A 0%, #0D0829 50%, #07041A 100%)
}

.sec--white {
  background: #FFFFFF;
  border-top: 1px solid #EDE9FE
}

.sec--slate {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-top: 1px solid #E2E8F0
}

/* ── GRID SYSTEM ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem
}

.grid-auto--sm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem
}

@media(max-width:900px) {

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-2-1 {
    grid-template-columns: 1fr !important;
    gap: 2rem !important
  }
}

/* ── SECTION HEADER (centered block) ── */
/* .sec-header already exists below — keep it */

/* ── TYPOGRAPHY HIERARCHY ── */

/* --- Labels / eyebrow tags --- */
/* Dark bg label (existing .label) */
.label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem .9rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e1d9ff;
  background: rgba(139, 92, 246, .12);
  border: 1px solid rgb(255 255 255);
}

/* Light bg label */
.label-light {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e1d9ff;
  background: rgba(109, 40, 217, .07);
  border: 1px solid rgb(255 255 255)
}

/* --- Section headings (consistent clamp scale) --- */
/* H2 dark bg sections */
.sec-h {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: .875rem 0 0;
  color: #fff
}

/* H2 light bg sections */
.sec-h-dark {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: .875rem 0 0;
  color: #0F172A
}

/* H3 for cards / sub-sections */
.sec-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: .5rem
}

.sec-h3-dark {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0F172A;
  margin-bottom: .5rem
}

/* FAQ question text */
.faq-q {
  font-weight: 700;
  font-size: 1rem;
  color: #F8FAFC;
  letter-spacing: -.01em;
  line-height: 1.4
}

/* FAQ answer text */
.faq-ans {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  line-height: 1.8;
  font-family: 'Manrope', system-ui, sans-serif
}

/* --- Body paragraphs (ALL at 1rem / 16px base) --- */
/* Dark bg — main body text */
.sec-p {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: rgba(255, 255, 255, .7);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 400
}

/* Dark bg — lead/intro (slightly larger, for hero sub or section intro) */
.sec-lead {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1.5rem
}

/* Light bg — main body text */
.light-p {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 400
}

/* Light bg — muted / card description text */
.light-muted {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: #64748B;
  line-height: 1.75;
  font-size: .9375rem;
  font-weight: 400
}

/* Centered section subheadline under heading */
.sec-sub {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  margin-top: .875rem;
  line-height: 1.75;
  font-family: 'Manrope', system-ui, sans-serif
}

.sec-sub-dark {
  color: #64748B;
  font-size: 1rem;
  margin-top: .875rem;
  line-height: 1.75;
  font-family: 'Manrope', system-ui, sans-serif
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .25s var(--ease);
  border: none;
  text-decoration: none;
  font-family: 'Manrope', system-ui, sans-serif
}

.btn-primary {
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, .3)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(109, 40, 217, .4), 0 0 0 1px rgba(139, 92, 246, .5);
  color: #fff
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--w15)
}

.btn-outline:hover {
  background: var(--w08);
  border-color: var(--w40);
  transform: translateY(-2px);
  color: #fff
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: 10px
}

/* ── CARDS ── */
/* Dark glass card */
.card {
  background: var(--w04);
  border: 1px solid var(--w08);
  border-radius: 20px;
  transition: border-color .3s, background .3s, transform .3s
}

.card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(139, 92, 246, .3);
  transform: translateY(-5px)
}

/* Light card */
.card-light {
  background: #FAFAFF;
  border: 1.5px solid #EDE9FE;
  border-radius: 20px;
  transition: all .25s
}

.card-light:hover {
  background: #F5F3FF;
  border-color: #C4B5FD;
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(109, 40, 217, .10)
}

/* ── STAT NUMBER ── */
.stat-num {
  font-family: var(--font);
  font-size: 2.75rem;
  font-weight: 900;
  color: #4C1D95;
  line-height: 1;
  letter-spacing: -.04em
}

.stat-num-dark {
  font-family: var(--font);
  font-size: 2.75rem;
  font-weight: 900;
  color: #A78BFA;
  line-height: 1;
  letter-spacing: -.04em
}

.stat-unit {
  font-size: .9rem;
  font-weight: 600;
  color: #7C3AED;
  margin-left: .3rem;
  opacity: .8
}

.stat-unit-dark {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  margin-left: .3rem
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--w15), transparent)
}


/* ── HERO ── */
#hero{position:relative;min-height:100svh;display:flex;flex-direction:column;align-items:center;overflow:hidden;background:linear-gradient(175deg,#6B4CA0 0%,#7C3AED 12%,#5B21B6 28%,#3B1F7A 45%,#1A0D42 65%,#0A0520 82%,#050508 100%)}
.hero-text-block{position:relative;z-index:3;text-align:center;max-width:820px;width:100%;padding:7rem 1.5rem 2rem;animation:fadeUp .6s .1s both}
.hero-label{display:inline-block;margin-bottom:1rem;animation:fadeUp .6s .05s both}
.hero-h1{font-family:var(--font-display);font-size:clamp(2.6rem,6vw,5.25rem);font-weight:700;line-height:1.07;letter-spacing:-.025em;margin:0 0 .75rem;animation:fadeUp .7s .2s both;color:#fff}
.hero-h2{font-size:clamp(.95rem,1.6vw,1.15rem);color:rgba(255,255,255,.6);font-weight:400;line-height:1.55;margin-bottom:2rem;animation:fadeUp .7s .32s both}
.hero-cta-btn{display:inline-flex;align-items:center;gap:.625rem;padding:.875rem 1.625rem;background:rgba(10,6,22,.8);color:#fff;border-radius:999px;font-size:.95rem;font-weight:600;text-decoration:none;animation:fadeUp .7s .44s both;border:1px solid rgba(255,255,255,.2);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);transition:all .3s;box-shadow:0 0 0 1px rgba(139,92,246,.25),0 8px 32px rgba(0,0,0,.5)}
.hero-cta-btn:hover{background:rgba(109,40,217,.25);border-color:rgba(139,92,246,.55);box-shadow:0 0 0 1px rgba(139,92,246,.55),0 20px 50px rgba(109,40,217,.3);transform:translateY(-2px);color:#fff}
.hero-cta-icon{width:30px;height:30px;border-radius:50%;background:linear-gradient(135deg,#7C3AED,#4F46E5);display:flex;align-items:center;justify-content:center;flex-shrink:0}
/* ── HERO VISUAL GRID ── */
.hero-visuals{position:relative;z-index:2;width:100%;max-width:1200px;display:grid;grid-template-columns:280px 1fr 280px;grid-template-rows:auto auto;column-gap:1.5rem;row-gap:1rem;padding:0 1.5rem 4rem;align-items:start}
.hero-cards-left{grid-column:1;grid-row:1;display:flex;flex-direction:column;gap:1rem;animation:fadeUp .7s .65s both}
.hero-person-center{grid-column:2;grid-row:1 / span 2;display:flex;justify-content:center;align-items:flex-end;overflow:hidden;min-height:460px}
.hero-cards-right{grid-column:3;grid-row:1;display:flex;flex-direction:column;gap:1rem;animation:fadeUp .7s .7s both}
.hero-cards-bottom{grid-column:1 / -1;grid-row:2;display:flex;gap:1rem;align-items:flex-end;animation:fadeUp .7s .85s both}
/* Person image */
.hero-person-fig{margin:0;padding:0;display:flex;align-items:flex-end;height:100%}
.hero-person-fig img{width:auto;max-width:100%;height:480px;object-fit:cover;object-position:top center;display:block;mask-image:linear-gradient(to bottom,black 55%,transparent 100%);-webkit-mask-image:linear-gradient(to bottom,black 55%,transparent 100%)}
/* Floating cards */
.h-card{background:rgba(14,9,32,.82);backdrop-filter:blur(20px) saturate(180%);-webkit-backdrop-filter:blur(20px) saturate(180%);border:1px solid rgba(255,255,255,.13);border-radius:16px;padding:1rem 1.125rem;color:#fff;font-size:.78rem;line-height:1.55}
.h-card-tool{display:flex;align-items:center;gap:.625rem;padding:.625rem 1.125rem;background:rgba(14,9,32,.82);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,.13);border-radius:999px;font-size:.78rem;font-weight:500;color:rgba(255,255,255,.85);white-space:nowrap}
.h-card-icon{width:22px;height:22px;border-radius:6px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#7C3AED,#4F46E5);flex-shrink:0;font-size:.65rem;color:#fff}
.h-chat-msg{padding:.5rem .625rem;border-radius:10px;background:rgba(255,255,255,.06);font-size:.73rem;color:rgba(255,255,255,.75);margin-bottom:.375rem;line-height:1.5}
.h-chat-user{background:rgba(109,40,217,.3);color:rgba(255,255,255,.9)}
.h-chip{display:inline-flex;align-items:center;gap:.35rem;padding:.25rem .625rem;border-radius:999px;background:rgba(255,255,255,.08);font-size:.68rem;color:rgba(255,255,255,.6);border:1px solid rgba(255,255,255,.1)}
.h-inbox-row{display:flex;align-items:center;gap:.625rem;padding:.4rem 0;border-bottom:1px solid rgba(255,255,255,.06)}
.h-inbox-row:last-child{border:none;padding-bottom:0}
.h-inbox-av{width:24px;height:24px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:.58rem;font-weight:700;color:#fff}
.h-inbox-name{font-size:.72rem;font-weight:600;color:rgba(255,255,255,.85);white-space:nowrap;min-width:72px}
.h-inbox-preview{font-size:.68rem;color:rgba(255,255,255,.4);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex:1;min-width:0}
/* Responsive hero grid */
@media(max-width:1100px){.hero-visuals{grid-template-columns:220px 1fr 220px}}
@media(max-width:800px){.hero-visuals{grid-template-columns:1fr;grid-template-rows:auto}.hero-cards-left,.hero-cards-right,.hero-cards-bottom{display:none}.hero-person-center{grid-column:1;min-height:360px}.hero-person-fig img{height:360px}}
.hero-h1{font-family:var(--font-display);font-size:clamp(2.8rem,6.5vw,5.5rem);font-weight:700;line-height:1.06;letter-spacing:-.025em;margin:.875rem 0 .625rem;animation:fadeUp .7s .2s both;color:#fff}
.hero-h2{font-size:clamp(1rem,1.8vw,1.2rem);color:rgba(255,255,255,.65);font-weight:400;line-height:1.5;margin-bottom:2rem;animation:fadeUp .7s .32s both}
/* Hero CTA btn (Superhuman dark pill style) */
.hero-cta-btn{display:inline-flex;align-items:center;gap:.625rem;padding:.875rem 1.625rem;background:rgba(15,10,30,.85);color:#fff;border-radius:999px;font-size:.95rem;font-weight:600;text-decoration:none;animation:fadeUp .7s .44s both;border:1px solid rgba(255,255,255,.15);backdrop-filter:blur(12px);transition:all .3s;box-shadow:0 0 0 1px rgba(139,92,246,.3),0 8px 32px rgba(0,0,0,.4)}
.hero-cta-btn:hover{background:rgba(109,40,217,.3);border-color:rgba(139,92,246,.5);box-shadow:0 0 0 1px rgba(139,92,246,.6),0 16px 48px rgba(109,40,217,.3);transform:translateY(-1px);color:#fff}
.hero-cta-icon{width:30px;height:30px;border-radius:50%;background:linear-gradient(135deg,#7C3AED,#4F46E5);display:flex;align-items:center;justify-content:center;flex-shrink:0}
/* Hero text block (top center) */
.hero-text-block{position:relative;z-index:3;text-align:center;max-width:820px;padding:6.5rem 1.5rem 2.5rem;animation:fadeUp .6s .1s both;width:100%}
.hero-label{animation:fadeUp .6s .05s both}
/* Hero visuals container */
.hero-visuals{position:relative;z-index:2;width:100%;max-width:1200px;min-height:520px;display:flex;justify-content:center;align-items:flex-start;padding:0 1.5rem 4rem;flex:1}
/* Person image (center) */
.hero-person-fig{position:absolute;left:50%;transform:translateX(-50%);bottom:0;width:auto;height:100%;max-height:560px;z-index:1;pointer-events:none}
.hero-person-fig img{height:100%;width:auto;object-fit:cover;object-position:top;mask-image:linear-gradient(to bottom,rgba(0,0,0,1) 60%,transparent 100%);-webkit-mask-image:linear-gradient(to bottom,rgba(0,0,0,1) 60%,transparent 100%)}
/* Floating card groups */
.hero-cards-left{position:absolute;left:0;top:0;display:flex;flex-direction:column;gap:1rem;z-index:4;max-width:320px}
.hero-cards-right{position:absolute;right:0;top:0;display:flex;flex-direction:column;gap:1rem;z-index:4;max-width:300px;align-items:flex-end}
.hero-cards-bottom{position:absolute;left:50%;transform:translateX(-50%);bottom:2rem;display:flex;gap:1rem;z-index:4;width:min(680px,80%)}
/* Floating hero card */
.h-card{background:rgba(18,12,40,.75);backdrop-filter:blur(20px) saturate(180%);-webkit-backdrop-filter:blur(20px) saturate(180%);border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:1rem 1.125rem;color:#fff;font-size:.78rem;line-height:1.55}
.h-card-tool{display:flex;align-items:center;gap:.625rem;padding:.625rem 1rem;background:rgba(18,12,40,.75);backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,.12);border-radius:999px;font-size:.78rem;font-weight:500;color:rgba(255,255,255,.8);white-space:nowrap}
.h-card-icon{width:22px;height:22px;border-radius:6px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#7C3AED,#4F46E5);flex-shrink:0;font-size:.7rem}
/* Chat card */
.h-chat-msg{padding:.5rem .625rem;border-radius:10px;background:rgba(255,255,255,.06);font-size:.73rem;color:rgba(255,255,255,.75);margin-bottom:.375rem;line-height:1.5}
.h-chat-user{background:rgba(109,40,217,.3);color:rgba(255,255,255,.9)}
.h-chip{display:inline-flex;align-items:center;gap:.35rem;padding:.25rem .625rem;border-radius:999px;background:rgba(255,255,255,.08);font-size:.68rem;color:rgba(255,255,255,.6);border:1px solid rgba(255,255,255,.1)}
/* Inbox card */
.h-inbox-row{display:flex;align-items:center;gap:.625rem;padding:.4rem 0;border-bottom:1px solid rgba(255,255,255,.06)}
.h-inbox-row:last-child{border:none}
.h-inbox-av{width:24px;height:24px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:.6rem;font-weight:700}
.h-inbox-name{font-size:.72rem;font-weight:600;color:rgba(255,255,255,.85);white-space:nowrap}
.h-inbox-preview{font-size:.68rem;color:rgba(255,255,255,.4);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex:1;min-width:0}
/* Card stagger animations */
.h-card-1{animation:fadeUp .7s .7s both}
.h-card-2{animation:fadeUp .7s .85s both}
.h-card-3{animation:fadeUp .7s 1s both}
.h-card-4{animation:fadeUp .7s .75s both}
.h-card-5{animation:fadeUp .7s .9s both}
.h-card-6{animation:fadeUp .7s 1.05s both}
/* ── MARQUEE ── */
#marquee-section{padding:2.5rem 0;overflow:hidden;border-top:1px solid var(--w08);border-bottom:1px solid var(--w08);background:rgba(255,255,255,.015)}
.marquee-label{text-align:center;font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--w40);margin-bottom:1.5rem}
.marquee-track{display:flex;gap:4rem;width:max-content;animation:marqueeScroll 28s linear infinite}
.marquee-wrap{-webkit-mask-image:linear-gradient(90deg,transparent,black 15%,black 85%,transparent);mask-image:linear-gradient(90deg,transparent,black 15%,black 85%,transparent)}
.marquee-item{display:flex;align-items:center;gap:.5rem;font-size:1rem;font-weight:700;color:rgba(255,255,255,.3);white-space:nowrap;transition:color .3s;letter-spacing:-.01em}
/* ── IMPACT STAT ── */
#impact{position:relative;padding:7rem 0;overflow:hidden;background:linear-gradient(180deg,var(--bg),#0D0920 50%,var(--bg))}
.impact-bg-num{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);font-size:clamp(8rem,20vw,18rem);font-weight:900;color:rgba(139,92,246,.06);letter-spacing:-.05em;pointer-events:none;white-space:nowrap;line-height:1;user-select:none}
.impact-content{position:relative;z-index:1;text-align:center;max-width:700px;margin:0 auto;padding:0 1.5rem}
.impact-text{font-size:clamp(1.5rem,3.5vw,2.5rem);font-weight:700;line-height:1.35}
/* ── FEATURES ── */
#features{padding:7rem 0;position:relative}
.feat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;max-width:1200px;margin:0 auto;padding:0 1.5rem}
.feat-card{padding:2.25rem;border-radius:20px;background:var(--w04);border:1px solid var(--w08);transition:all .3s;position:relative;overflow:hidden}
.feat-card::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--accent-color,rgba(139,92,246,.5)),transparent);opacity:0;transition:opacity .3s}
.feat-card:hover{background:rgba(255,255,255,.06);border-color:rgba(139,92,246,.25);transform:translateY(-4px)}
.feat-card:hover::before{opacity:1}
.feat-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.25rem;margin-bottom:1.5rem}
.feat-title{font-size:1.1rem;font-weight:700;margin-bottom:.625rem}
.feat-desc{font-size:.9375rem;color:var(--w70);line-height:1.75}
/* ── HOW IT WORKS ── */
#how{padding:7rem 0;background:linear-gradient(180deg,var(--bg),#0A0720 50%,var(--bg))}
.how-inner{max-width:1200px;margin:0 auto;padding:0 1.5rem}
.how-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:2rem;margin-top:3.5rem;counter-reset:steps}
.how-step{counter-increment:steps;position:relative;padding-left:1.25rem}
.how-step::before{content:counter(steps,decimal-leading-zero);display:block;font-size:.7rem;font-weight:800;letter-spacing:.12em;color:#8B5CF6;margin-bottom:.875rem}
.how-step-title{font-size:1.05rem;font-weight:700;margin-bottom:.5rem}
.how-step-desc{font-size:.9375rem;color:var(--w70);line-height:1.75}
.how-line{position:absolute;top:10px;right:-1rem;width:calc(100% - 1.5rem);height:1px;background:linear-gradient(90deg,rgba(139,92,246,.3),transparent);display:none}
/* ── TESTIMONIAL ── */
#testimonial{padding:7rem 0;text-align:center;position:relative;overflow:hidden}
.tst-glow{position:absolute;width:600px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(109,40,217,.15),transparent 70%);left:50%;top:50%;transform:translate(-50%,-50%);pointer-events:none;filter:blur(60px)}
.tst-inner{max-width:780px;margin:0 auto;padding:0 1.5rem;position:relative;z-index:1}
.tst-quote{font-size:clamp(1.3rem,3vw,2rem);font-weight:700;line-height:1.4;margin:2rem 0}
.tst-author{display:flex;align-items:center;justify-content:center;gap:.875rem}
.tst-av{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,#7C3AED,#4F46E5);display:flex;align-items:center;justify-content:center;font-size:.8rem;font-weight:700}
.tst-info-name{font-weight:700;font-size:.9rem}
.tst-info-role{font-size:.8rem;color:var(--w40)}
/* ── CTA BANNER ── */
#cta-banner{padding:7rem 0;text-align:center;position:relative;overflow:hidden;background:radial-gradient(ellipse 80% 60% at 50% 100%,#1E0B3E,var(--bg) 70%)}
.cta-inner{max-width:700px;margin:0 auto;padding:0 1.5rem;position:relative;z-index:1}
.cta-h{font-size:clamp(2rem,4.5vw,3.5rem);font-weight:800;line-height:1.1;letter-spacing:-.03em;margin:1.25rem 0}
.cta-sub{color:var(--w70);font-size:1rem;line-height:1.75;margin-bottom:2.5rem}
.cta-form{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center}
.cta-input{padding:.875rem 1.25rem;border-radius:8px;background:rgba(255,255,255,.06);border:1px solid var(--w15);color:#fff;font-size:.9rem;font-family:var(--font);flex:1 1 240px;max-width:320px;outline:none;transition:border-color .25s}
.cta-input::placeholder{color:var(--w40)}
.cta-input:focus{border-color:rgba(139,92,246,.6)}
.cta-note{margin-top:1.25rem;font-size:.78rem;color:var(--w40)}
/* ── FOOTER ── */
#site-footer{padding:4rem 0 2.5rem;border-top:1px solid var(--w08);background:var(--bg)}
.footer-inner{max-width:1200px;margin:0 auto;padding:0 1.5rem;display:grid;grid-template-columns:1.6fr repeat(3,1fr);gap:3rem;margin-bottom:3rem}
.footer-brand{display:flex;flex-direction:column}
.footer-links{display:flex;gap:3rem;justify-content:flex-end}
.footer-col{display:flex;flex-direction:column;gap:.625rem}
.footer-col-title{font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--w40);margin-bottom:.625rem;display:block}
.footer-col a{font-size:.875rem;color:var(--w70);text-decoration:none;transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-bottom{max-width:1200px;margin:0 auto;padding:1.75rem 1.5rem 0;border-top:1px solid var(--w08);display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap}
.footer-bottom p{font-size:.8rem;color:var(--w40)}
.footer-bottom div{display:flex;gap:1.5rem}
.footer-bottom div a{font-size:.8rem;color:var(--w40);text-decoration:none;transition:color .2s}
.footer-bottom div a:hover{color:var(--w70)}
/* ── SECTION HEADER (shared) ── */
.sec-header{text-align:center;margin-bottom:4rem;max-width:700px;margin-left:auto;margin-right:auto;padding:0 1.5rem}
.sec-h{font-size:clamp(2rem,4vw,3rem);font-weight:800;line-height:1.1;letter-spacing:-.03em;margin:.875rem 0 0}
.sec-sub{color:var(--w70);font-size:1rem;margin-top:.875rem;line-height:1.75}
/* ── PAGE HERO (about/services/contact) ── */
.page-hero{margin-top:-140px;padding:12rem 0 5rem;text-align:center;position:relative;overflow:hidden;background:radial-gradient(ellipse 80% 50% at 50% 0%,#1E0B3E,var(--bg) 65%)}
.page-hero-inner{max-width:780px;margin:0 auto;padding:0 1.5rem;position:relative;z-index:1}
.page-h{font-size:clamp(2.5rem,5vw,4rem);font-weight:800;line-height:1.08;letter-spacing:-.03em;margin:.875rem 0 1rem}
.page-sub{font-size:1rem;color:var(--w70);line-height:1.75;max-width:560px;margin:0 auto}
/* ── ABOUT PAGE ── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;max-width:1200px;margin:0 auto;padding:7rem 1.5rem}
.about-grid-img{border-radius:24px;background:linear-gradient(135deg,rgba(109,40,217,.2),rgba(79,70,229,.1));border:1px solid var(--w08);aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;font-size:4rem}
.values-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.25rem;max-width:1200px;margin:0 auto;padding:0 1.5rem}
.value-card{padding:1.75rem;border-radius:16px;background:var(--w04);border:1px solid var(--w08)}
.value-num{font-size:.7rem;font-weight:800;letter-spacing:.12em;color:#8B5CF6;margin-bottom:.75rem}
.value-title{font-weight:700;margin-bottom:.5rem;font-size:1.05rem}
.value-desc{font-size:.9375rem;color:var(--w70);line-height:1.7}
/* ── SERVICES PAGE ── */
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:1.5rem;max-width:1200px;margin:0 auto;padding:0 1.5rem}
.svc-card{padding:2.25rem;border-radius:20px;background:var(--w04);border:1px solid var(--w08);transition:all .3s;position:relative;overflow:hidden}
.svc-card:hover{transform:translateY(-4px);border-color:rgba(139,92,246,.3);background:rgba(255,255,255,.06)}
.svc-icon{width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:1.5rem}
.svc-title{font-size:1.15rem;font-weight:700;margin-bottom:.625rem}
.svc-desc{font-size:.9375rem;color:var(--w70);line-height:1.75;margin-bottom:1.25rem}
.svc-link{font-size:.82rem;font-weight:600;display:inline-flex;align-items:center;gap:.4rem;transition:gap .25s}
.svc-link:hover{gap:.7rem}
/* ── CONTACT PAGE ── */
.contact-grid{display:grid;grid-template-columns:1fr 1.5fr;gap:5rem;max-width:1200px;margin:0 auto;padding:0 1.5rem 7rem}
.contact-info-item{display:flex;gap:1rem;margin-bottom:2rem}
.contact-info-icon{width:44px;height:44px;border-radius:10px;background:rgba(139,92,246,.12);border:1px solid rgba(139,92,246,.2);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#A78BFA;font-size:1.1rem}
.contact-form{background:var(--w04);border:1px solid var(--w08);border-radius:24px;padding:2.5rem}
.form-group{margin-bottom:1.25rem}
.form-label{display:block;font-size:.8rem;font-weight:600;color:var(--w70);margin-bottom:.5rem;letter-spacing:.04em}
.form-control{width:100%;padding:.875rem 1rem;border-radius:8px;background:rgba(255,255,255,.05);border:1px solid var(--w08);color:#fff;font-size:.9rem;font-family:var(--font);outline:none;transition:border-color .25s;resize:none}
.form-control::placeholder{color:var(--w40)}
.form-control:focus{border-color:rgba(139,92,246,.5);background:rgba(255,255,255,.07)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
/* ── CONTACT PAGE ── */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;max-width:1200px;margin:0 auto;padding:0 1.5rem}
.contact-info-item{display:flex;align-items:flex-start;gap:1rem;padding:1.25rem 0;border-bottom:1px solid rgba(255,255,255,.06)}
.contact-info-item:last-of-type{border:none;margin-bottom:1.5rem}
.contact-info-icon{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;font-size:.95rem;color:rgba(255,255,255,.6);flex-shrink:0}
/* ── KEYFRAMES ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
@keyframes pulseDot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}
@keyframes marqueeScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
/* ── RESPONSIVE ── */
/* 1100px: hide phone in header, start condensing footer to 2 cols */
@media(max-width:1100px){
  .footer-inner{grid-template-columns:1fr 1fr;gap:2.5rem}
  .footer-links{justify-content:flex-start;gap:2rem;flex-wrap:wrap}
  .about-grid{grid-template-columns:1fr;gap:3rem}
  .contact-grid{grid-template-columns:1fr;gap:2.5rem}
}
/* 1024px: general layout tightening */
@media(max-width:1024px){
  .nav-inner{height:56px}
  [style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr !important}
  [style*="gap:5rem"]{gap:3rem !important}
}
/* 850px: switch to mobile header (burger) */
@media(max-width:850px){
  #sh-announce{display:none !important}
  .sh-nav,.sh-action-link,.sh-cta-pill{display:none !important}
  .sh-burger{display:flex !important}
  #site-header{margin-top:0}
  .nav-inner{height:52px;padding:0 1.25rem}
  .hero-split-grid,[style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr !important}
  [style*="gap:4rem"]{gap:2rem !important}
  [style*="gap:5rem"]{gap:2.5rem !important}
}
/* 768px: footer to single column, footer bottom stack */
@media(max-width:768px){
  .footer-inner{grid-template-columns:1fr;gap:2rem;margin-bottom:2rem}
  .footer-links{flex-direction:column;gap:0}
  .footer-col{margin-bottom:1.5rem}
  .footer-bottom{flex-direction:column;text-align:center;gap:.75rem;padding-top:1.25rem}
  .footer-bottom div{justify-content:center;flex-wrap:wrap;gap:.75rem 1.25rem}
  .form-row{grid-template-columns:1fr}
  [style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr !important}
}
/* 576px: small mobile fixes */
@media(max-width:576px){
  .hero-text-block{padding:6rem 1rem 1.5rem}
  .hero-split-grid{padding-top:8rem !important;padding-bottom:3rem !important}
  .hero-stat-num{font-size:2.2rem !important}
  .hero-buttons{flex-direction:column;width:100%}
  .hero-buttons .btn{justify-content:center;width:100%}
  .footer-inner{padding:0 1rem}
  .footer-bottom{padding:1.25rem 1rem 0}
  .nav-inner{padding:0 1rem}
}
/* 380px: tiny screens */
@media(max-width:380px){
  .sh-logo img{height:44px !important}
  .nav-inner{padding:0 .875rem}
  .cta-h{font-size:1.8rem}
}

.hero-text-block {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  width: 100%;
  padding: 7rem 1.5rem 2rem;
  animation: fadeUp .6s .1s both
}

.hero-label {
  display: inline-block;
  margin-bottom: 1rem;
  animation: fadeUp .6s .05s both
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -.025em;
  margin: 0 0 .75rem;
  animation: fadeUp .7s .2s both;
  color: #fff
}

.hero-h2 {
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, .6);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 2rem;
  animation: fadeUp .7s .32s both
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .875rem 1.625rem;
  background: rgba(10, 6, 22, .8);
  color: #fff;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  animation: fadeUp .7s .44s both;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all .3s;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, .25), 0 8px 32px rgba(0, 0, 0, .5)
}

.hero-cta-btn:hover {
  background: rgba(109, 40, 217, .25);
  border-color: rgba(139, 92, 246, .55);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, .55), 0 20px 50px rgba(109, 40, 217, .3);
  transform: translateY(-2px);
  color: #fff
}

.hero-cta-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

/* ── HERO VISUAL GRID ── */
.hero-visuals {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: 1rem;
  padding: 0 1.5rem 4rem;
  align-items: start
}

.hero-cards-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp .7s .65s both
}

.hero-person-center {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  min-height: 460px
}

.hero-cards-right {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp .7s .7s both
}

.hero-cards-bottom {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  animation: fadeUp .7s .85s both
}

/* Person image */
.hero-person-fig {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  height: 100%
}

.hero-person-fig img {
  width: auto;
  max-width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%)
}

/* Floating cards */
.h-card {
  background: rgba(14, 9, 32, .82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  padding: 1rem 1.125rem;
  color: #fff;
  font-size: .78rem;
  line-height: 1.55
}

.h-card-tool {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1.125rem;
  background: rgba(14, 9, 32, .82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  white-space: nowrap
}

.h-card-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  flex-shrink: 0;
  font-size: .65rem;
  color: #fff
}

.h-chat-msg {
  padding: .5rem .625rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  font-size: .73rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: .375rem;
  line-height: 1.5
}

.h-chat-user {
  background: rgba(109, 40, 217, .3);
  color: rgba(255, 255, 255, .9)
}

.h-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .625rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: .68rem;
  color: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .1)
}

.h-inbox-row {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.h-inbox-row:last-child {
  border: none;
  padding-bottom: 0
}

.h-inbox-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  font-weight: 700;
  color: #fff
}

.h-inbox-name {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  white-space: nowrap;
  min-width: 72px
}

.h-inbox-preview {
  font-size: .68rem;
  color: rgba(255, 255, 255, .4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0
}

/* Responsive hero grid */
@media(max-width:1100px) {
  .hero-visuals {
    grid-template-columns: 220px 1fr 220px
  }
}

@media(max-width:800px) {
  .hero-visuals {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .hero-cards-left,
  .hero-cards-right,
  .hero-cards-bottom {
    display: none
  }

  .hero-person-center {
    grid-column: 1;
    min-height: 360px
  }

  .hero-person-fig img {
    height: 360px
  }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: .875rem 0 .625rem;
  animation: fadeUp .7s .2s both;
  color: #fff
}

.hero-h2 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, .65);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 2rem;
  animation: fadeUp .7s .32s both
}

/* Hero CTA btn (Superhuman dark pill style) */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .875rem 1.625rem;
  background: rgba(15, 10, 30, .85);
  color: #fff;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  animation: fadeUp .7s .44s both;
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  transition: all .3s;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, .3), 0 8px 32px rgba(0, 0, 0, .4)
}

.hero-cta-btn:hover {
  background: rgba(109, 40, 217, .3);
  border-color: rgba(139, 92, 246, .5);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, .6), 0 16px 48px rgba(109, 40, 217, .3);
  transform: translateY(-1px);
  color: #fff
}

.hero-cta-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

/* Hero text block (top center) */
.hero-text-block {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 6.5rem 1.5rem 2.5rem;
  animation: fadeUp .6s .1s both;
  width: 100%
}

.hero-label {
  animation: fadeUp .6s .05s both
}

/* Hero visuals container */
.hero-visuals {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 1.5rem 4rem;
  flex: 1
}

/* Person image (center) */
.hero-person-fig {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: auto;
  height: 100%;
  max-height: 560px;
  z-index: 1;
  pointer-events: none
}

.hero-person-fig img {
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: top;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, transparent 100%)
}

/* Floating card groups */
.hero-cards-left {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 4;
  max-width: 320px
}

.hero-cards-right {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 4;
  max-width: 300px;
  align-items: flex-end
}

.hero-cards-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 4;
  width: min(680px, 80%)
}

/* Floating hero card */
.h-card {
  background: rgba(18, 12, 40, .75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 1rem 1.125rem;
  color: #fff;
  font-size: .78rem;
  line-height: 1.55
}

.h-card-tool {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1rem;
  background: rgba(18, 12, 40, .75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  white-space: nowrap
}

.h-card-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  flex-shrink: 0;
  font-size: .7rem
}

/* Chat card */
.h-chat-msg {
  padding: .5rem .625rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  font-size: .73rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: .375rem;
  line-height: 1.5
}

.h-chat-user {
  background: rgba(109, 40, 217, .3);
  color: rgba(255, 255, 255, .9)
}

.h-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .625rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: .68rem;
  color: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .1)
}

/* Inbox card */
.h-inbox-row {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.h-inbox-row:last-child {
  border: none
}

.h-inbox-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 700
}

.h-inbox-name {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  white-space: nowrap
}

.h-inbox-preview {
  font-size: .68rem;
  color: rgba(255, 255, 255, .4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0
}

/* Card stagger animations */
.h-card-1 {
  animation: fadeUp .7s .7s both
}

.h-card-2 {
  animation: fadeUp .7s .85s both
}

.h-card-3 {
  animation: fadeUp .7s 1s both
}

.h-card-4 {
  animation: fadeUp .7s .75s both
}

.h-card-5 {
  animation: fadeUp .7s .9s both
}

.h-card-6 {
  animation: fadeUp .7s 1.05s both
}

/* ── MARQUEE ── */
#marquee-section {
  padding: 2.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--w08);
  border-bottom: 1px solid var(--w08);
  background: rgba(255, 255, 255, .015)
}

.marquee-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--w40);
  margin-bottom: 1.5rem
}

.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite
}

.marquee-wrap {
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent)
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
  white-space: nowrap;
  transition: color .3s;
  letter-spacing: -.01em
}

/* ── IMPACT STAT ── */
#impact {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), #0D0920 50%, var(--bg))
}

.impact-bg-num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  color: rgba(139, 92, 246, .06);
  letter-spacing: -.05em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  user-select: none
}

.impact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.impact-text {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35
}

/* ── FEATURES ── */
#features {
  padding: 7rem 0;
  position: relative
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.feat-card {
  padding: 2.25rem;
  border-radius: 20px;
  background: var(--w04);
  border: 1px solid var(--w08);
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color, rgba(139, 92, 246, .5)), transparent);
  opacity: 0;
  transition: opacity .3s
}

.feat-card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(139, 92, 246, .25);
  transform: translateY(-4px)
}

.feat-card:hover::before {
  opacity: 1
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem
}

.feat-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .625rem
}

.feat-desc {
  font-size: .9375rem;
  color: var(--w70);
  line-height: 1.75
}

/* ── HOW IT WORKS ── */
#how {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg), #0A0720 50%, var(--bg))
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  counter-reset: steps
}

.how-step {
  counter-increment: steps;
  position: relative;
  padding-left: 1.25rem
}

.how-step::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #8B5CF6;
  margin-bottom: .875rem
}

.how-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.how-step-desc {
  font-size: .9375rem;
  color: var(--w70);
  line-height: 1.75
}

.how-line {
  position: absolute;
  top: 10px;
  right: -1rem;
  width: calc(100% - 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, .3), transparent);
  display: none
}

/* ── TESTIMONIAL ── */
#testimonial {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.tst-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, .15), transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(60px)
}

.tst-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1
}

.tst-quote {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 2rem 0
}

.tst-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .875rem
}

.tst-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700
}

.tst-info-name {
  font-weight: 700;
  font-size: .9rem
}

.tst-info-role {
  font-size: .8rem;
  color: var(--w40)
}

/* ── CTA BANNER ── */
#cta-banner {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, #1E0B3E, var(--bg) 70%)
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1
}

.cta-h {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 1.25rem 0
}

.cta-sub {
  color: var(--w70);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center
}

.cta-input {
  padding: .875rem 1.25rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--w15);
  color: #fff;
  font-size: .9rem;
  font-family: var(--font);
  flex: 1 1 240px;
  max-width: 320px;
  outline: none;
  transition: border-color .25s
}

.cta-input::placeholder {
  color: var(--w40)
}

.cta-input:focus {
  border-color: rgba(139, 92, 246, .6)
}

.cta-note {
  margin-top: 1.25rem;
  font-size: .78rem;
  color: var(--w40)
}

/* ── FOOTER ── */
#site-footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--w08);
  background: var(--bg)
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-brand {
  display: flex;
  flex-direction: column
}

.footer-links {
  display: flex;
  gap: 3rem;
  justify-content: flex-end
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: .625rem
}

.footer-col-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--w40);
  margin-bottom: .625rem;
  display: block
}

.footer-col a {
  font-size: .875rem;
  color: var(--w70);
  text-decoration: none;
  transition: color .2s
}

.footer-col a:hover {
  color: #fff
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 0;
  border-top: 1px solid var(--w08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--w40)
}

.footer-bottom div {
  display: flex;
  gap: 1.5rem
}

.footer-bottom div a {
  font-size: .8rem;
  color: var(--w40);
  text-decoration: none;
  transition: color .2s
}

.footer-bottom div a:hover {
  color: var(--w70)
}

/* ── SECTION HEADER (shared) ── */
.sec-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem
}

.sec-h {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: .875rem 0 0
}

.sec-sub {
  color: var(--w70);
  font-size: 1rem;
  margin-top: .875rem;
  line-height: 1.75
}

/* ── PAGE HERO (about/services/contact) ── */
.page-hero {
  margin-top: -140px;
  padding: 12rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, #1E0B3E, var(--bg) 65%)
}

.page-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1
}

.page-h {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: .875rem 0 1rem
}

.page-sub {
  font-size: 1rem;
  color: var(--w70);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 1.5rem
}

.about-grid-img {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(109, 40, 217, .2), rgba(79, 70, 229, .1));
  border: 1px solid var(--w08);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.value-card {
  padding: 1.75rem;
  border-radius: 16px;
  background: var(--w04);
  border: 1px solid var(--w08)
}

.value-num {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #8B5CF6;
  margin-bottom: .75rem
}

.value-title {
  font-weight: 700;
  margin-bottom: .5rem;
  font-size: 1.05rem
}

.value-desc {
  font-size: .9375rem;
  color: var(--w70);
  line-height: 1.7
}

/* ── SERVICES PAGE ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.svc-card {
  padding: 2.25rem;
  border-radius: 20px;
  background: var(--w04);
  border: 1px solid var(--w08);
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, .3);
  background: rgba(255, 255, 255, .06)
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem
}

.svc-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .625rem
}

.svc-desc {
  font-size: .9375rem;
  color: var(--w70);
  line-height: 1.75;
  margin-bottom: 1.25rem
}

.svc-link {
  font-size: .82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .25s
}

.svc-link:hover {
  gap: .7rem
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 7rem
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(139, 92, 246, .12);
  border: 1px solid rgba(139, 92, 246, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #A78BFA;
  font-size: 1.1rem
}

.contact-form {
  background: var(--w04);
  border: 1px solid var(--w08);
  border-radius: 24px;
  padding: 2.5rem
}

.form-group {
  margin-bottom: 1.25rem
}

.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--w70);
  margin-bottom: .5rem;
  letter-spacing: .04em
}

.form-control {
  width: 100%;
  padding: .875rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--w08);
  color: #fff;
  font-size: .9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color .25s;
  resize: none
}

.form-control::placeholder {
  color: var(--w40)
}

.form-control:focus {
  border-color: rgba(139, 92, 246, .5);
  background: rgba(255, 255, 255, .07)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.contact-info-item:last-of-type {
  border: none;
  margin-bottom: 1.5rem
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  flex-shrink: 0
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.8)
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* ── RESPONSIVE ── */
/* 1100px: hide phone in header, start condensing footer to 2 cols */
@media(max-width:1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem
  }

  .footer-links {
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }
}

/* 1024px: general layout tightening */
@media(max-width:1024px) {
  .nav-inner {
    height: 56px
  }

  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important
  }

  [style*="gap:5rem"] {
    gap: 3rem !important
  }
}

/* 850px: switch to mobile header (burger) */
@media(max-width:850px) {
  #sh-announce {
    display: none !important
  }

  .sh-nav,
  .sh-action-link,
  .sh-cta-pill {
    display: none !important
  }

  .sh-burger {
    display: flex !important
  }

  #site-header {
    margin-top: 0
  }

  .nav-inner {
    height: 52px;
    padding: 0 1.25rem
  }

  .hero-split-grid,
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important
  }

  [style*="gap:4rem"] {
    gap: 2rem !important
  }

  [style*="gap:5rem"] {
    gap: 2.5rem !important
  }
}

/* 768px: footer to single column, footer bottom stack */
@media(max-width:768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem
  }

  .footer-links {
    flex-direction: column;
    gap: 0
  }

  .footer-col {
    margin-bottom: 1.5rem
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: .75rem;
    padding-top: 1.25rem
  }

  .footer-bottom div {
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem 1.25rem
  }

  .form-row {
    grid-template-columns: 1fr
  }

  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important
  }
}

/* 576px: small mobile fixes */
@media(max-width:576px) {
  .hero-text-block {
    padding: 6rem 1rem 1.5rem
  }

  .hero-split-grid {
    padding-top: 8rem !important;
    padding-bottom: 3rem !important
  }

  .hero-stat-num {
    font-size: 2.2rem !important
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%
  }

  .footer-inner {
    padding: 0 1rem
  }

  .footer-bottom {
    padding: 1.25rem 1rem 0
  }

  .nav-inner {
    padding: 0 1rem
  }
}

/* 380px: tiny screens */
@media(max-width:380px) {
  .sh-logo img {
    height: 44px !important
  }

  .nav-inner {
    padding: 0 .875rem
  }

  .cta-h {
    font-size: 1.8rem
  }
}

/* ── CONTACT PAGE MOBILE FIXES ── */
@media(max-width:768px) {
  .contact-grid {
    padding: 0 1rem;
    box-sizing: border-box;
    overflow: hidden;
    max-width: 100%;
  }

  .contact-form {
    padding: 1.5rem;
    border-radius: 18px;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
  }
}

@media(max-width:576px) {
  .contact-grid {
    padding: 0 .75rem;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.25rem;
    border-radius: 16px;
  }

  /* Scale reCAPTCHA to fit small screens */
  .g-recaptcha {
    transform: scale(0.88);
    transform-origin: left top;
  }
}

@media(max-width:380px) {
  .contact-form {
    padding: 1rem;
    border-radius: 14px;
  }

  .g-recaptcha {
    transform: scale(0.77);
    transform-origin: left top;
  }
}