/* === RESET & BASE === */
/* === GROWSILK DESIGN SYSTEM FOUNDATION === */
:root {
  --color-navy: #0D1B2E;
  --color-mint: #55BE94;
  --color-white: #FFFFFF;
  --color-off-white: #EEF2F7;
  --color-muted: #8A9BB0;
  --color-navy-mid: #162236;
  --color-navy-border: #1E3048;
  --color-ink: #162236;
  --color-soft-ink: #536174;
  --color-danger: #FF6B6B;
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow-soft: 0 24px 80px rgba(6,13,24,.18);
  --shadow-mint: 0 18px 48px rgba(85,190,148,.24);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --section-y: clamp(30px, 9vw, 60px);
  --nav-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-white);
  background: var(--color-navy);
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }

/* === HEADER === */
/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0A1624;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.brand-logo {
    display: block;
    height: auto;
}

/* === MOBILE MENU TOGGLE === */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #cbd5e1;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #0d1b2ec7;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 9999;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    position: relative;
}

.mobile-nav {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 100vh;
}

.mobile-nav-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #1e293b;
    margin-bottom: 0.5rem;
}

.mobile-nav-label {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0.75rem;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.875rem 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background-color: rgba(52, 211, 153, 0.1);
    color: #a7f3d0;
}

.mobile-nav-title {
    font-size: 15px;
    font-weight: 600;
    color: #f8fafc;
}

.mobile-nav-desc {
    font-size: 12px;
    color: #94a3b8;
}

.mobile-cta-button {
    margin-top: 1rem;
    padding: 0.875rem 1.5rem;
    background-color: #34d399;
    color: #020617;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 6px rgba(52, 211, 153, 0.3);
    display: block;
}

/* Hide desktop nav and CTA on mobile */
.main-nav,
.cta-button {
    display: none;
}

/* === DESKTOP STYLES === */
@media (min-width: 640px) {
    /* Hide mobile elements */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    /* Show desktop elements */
    .main-nav {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        display: inline-flex;
    }
}

/* Desktop Navigation */
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-link:hover {
    color: #a7f3d0;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    transition: transform 0.2s;
    color: #94a3b8;
}

.nav-dropdown-toggle:hover .dropdown-arrow {
    color: #a7f3d0;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 240px;
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.625rem 0.75rem;
    color: #e2e8f0;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.nav-dropdown-item:hover {
    background-color: rgba(52, 211, 153, 0.1);
}

.dropdown-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #f8fafc;
}

.dropdown-item-desc {
    font-size: 11px;
    color: #94a3b8;
}

/* CTA Button */
.cta-button {
    padding: 7px 1rem;
    background-color: #34d399;
    color: #020617;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(52, 211, 153, 0.3);
    transition: background-color 0.2s;
    border: none;
}

.cta-button:hover {
    background-color: #6ee7b7;
}

@media (min-width: 1024px) {
    .header-container {
        padding: 5px 2rem;
    }
}

.footer { background: #0A1624; border-top: 1px solid rgba(255,255,255,.08); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 34px; align-items: start; }
.footer-tagline { color: var(--color-muted); margin-top: 12px; max-width: 310px; }
.footer h4 { font-size: 14px; color: var(--color-white); margin-bottom: 14px; letter-spacing: .08em; text-transform: uppercase; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: var(--color-muted); font-size: 14px; transition: color .2s ease; }
.footer a:hover { color: var(--color-white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; gap: 18px; color: var(--color-muted); font-size: 13px; }


/* GROWSILK Email Modal */
.gs-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
.gs-modal[aria-hidden="true"] { display: none; }
.gs-modal-backdrop { position: absolute; inset: 0; background: rgba(13,27,46,.78); backdrop-filter: blur(8px); }
.gs-modal-panel { position: relative; background: #162236; color: #fff; border: 1px solid rgba(85,190,148,.28); border-radius: 22px; padding: 36px 32px; max-width: 480px; width: 100%; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.gs-modal-close { position: absolute; top: 12px; right: 16px; width: 36px; height: 36px; border: 0; background: transparent; color: rgba(255,255,255,.6); font-size: 28px; cursor: pointer; line-height: 1; padding: 0; }
.gs-modal-close:hover { color: #55BE94; }
.gs-modal-eyebrow { color: #55BE94; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.gs-modal-title { font-size: 22px; font-weight: 800; line-height: 1.25; margin: 0 0 12px; color: #fff; }
.gs-modal-sub { color: rgba(255,255,255,.72); font-size: 14.5px; line-height: 1.55; margin-bottom: 22px; }
.gs-modal-field { display: block; margin-bottom: 18px; }
.gs-modal-field > span { display: block; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.gs-modal-field input { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: #fff; font-size: 15px; font-family: inherit; box-sizing: border-box; }
.gs-modal-field input::placeholder { color: rgba(255,255,255,.4); }
.gs-modal-field input:focus { outline: 2px solid #55BE94; outline-offset: -1px; border-color: transparent; }
.gs-modal-submit { width: 100%; background: #55BE94; color: #0d1b2e; border: 0; border-radius: 50px; padding: 15px 28px; min-height: 52px; font-weight: 900; font-size: 15px; cursor: pointer; font-family: inherit; }
.gs-modal-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(85,190,148,.24); }
.gs-modal-submit[disabled] { opacity: .6; cursor: wait; }
.gs-modal-error { color: #ff6b6b; font-size: 13px; margin-top: 12px; }
.gs-modal-fineprint { color: rgba(255,255,255,.5); font-size: 12px; margin-top: 14px; text-align: center; }
body.gs-modal-open { overflow: hidden; }


/* Positioning / Alternative Section */

.positioning-top {
    text-align: center;
    margin-bottom: 30px;
}

.positioning-top .growth-system-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #f8fafc;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.positioning-top .growth-system-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Comparison Grid - 2 Columns */
.positioning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Positioning Cards */
.positioning-card {
    border-radius: 1.5rem;
    padding: 40px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Card - Left */
.positioning-card-light {
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.positioning-card-light:hover {
    border-color: #cbd5e1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Dark Card - Right */
.positioning-card-dark {
    border: 1px solid rgba(52, 211, 153, 0.2);
    box-shadow: 0 10px 25px rgba(52, 211, 153, 0.15);
}

.positioning-card-dark:hover {
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 15px 35px rgba(52, 211, 153, 0.25);
}

/* Card Titles */
.positioning-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 24px 0;
}

.positioning-card-title-dark {
    color: #f8fafc;
}

/* List Container */
.positioning-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* List Items */
.positioning-item {
    padding: 12px 16px;
    border-radius: 0.75rem;
    background-color: #f1f5f9;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.positioning-item:hover {
    background-color: #e2e8f0;
    color: #334155;
}

.positioning-item-dark {
    background-color: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border: 1px solid rgba(52, 211, 153, 0.1);
}

.positioning-item-dark:hover {
    background-color: rgba(52, 211, 153, 0.1);
    color: #f8fafc;
    border-color: rgba(52, 211, 153, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .positioning-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
 }

    @media (max-width: 768px) {

    .positioning-top .growth-system-title {
        font-size: 36px;
    }

    .positioning-card {
        padding: 32px 24px;
    }

    .positioning-card-title {
        font-size: 18px;
    }

    .positioning-item {
        font-size: 14px;
        padding: 10px 14px;
    }
     .growth-system-grid.how-we-work-grid
     {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 30px 0;
    }
    .feature-item-header {
        align-items: start;
    }
    .feature-item {
        font-size: 16px;
    }
    .hero-ctas {
        margin-bottom: 30px;
    }


}

    @media (max-width: 480px) {

    .positioning-top .growth-system-title {
        font-size: 28px;
    }

    .positioning-card {
        padding: 24px 20px;
    }

    .positioning-grid {
        gap: 20px;
    }
    .growsilk-pillars-section{
        padding: 0;
    }
    .growsilk-pillars-container{
        padding: 0;
    }
    .surge-section {
        padding: 40px 0;
    }
    .surge-section h2 {
        font-size: 28px;
    }
    .header-container{
        padding: 10px 10px;
    }
    .site-header .btn.btn-primary{
        min-height: 40px;
        padding: 0;
        width: 210px;
    }
 }
 
 
 
 /* === GROWSILK DESIGN SYSTEM FOUNDATION === */
:root {
  --color-navy: #0D1B2E;
  --color-mint: #55BE94;
  --color-white: #FFFFFF;
  --color-off-white: #EEF2F7;
  --color-muted: #8A9BB0;
  --color-navy-mid: #162236;
  --color-navy-border: #1E3048;
  --color-ink: #162236;
  --color-soft-ink: #536174;
  --color-danger: #FF6B6B;
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow-soft: 0 24px 80px rgba(6,13,24,.18);
  --shadow-mint: 0 18px 48px rgba(85,190,148,.24);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --section-y: clamp(30px, 9vw, 60px);
  --nav-h: 82px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--color-white); background: var(--color-navy); line-height: 1.6; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: var(--section-y) 0; position: relative; overflow: hidden; }
.section.dark { background: var(--color-navy); color: var(--color-white); }
.section.light { background: var(--color-off-white); color: var(--color-ink); }
.dark-grid { 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: 42px 42px; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; line-height: 1.05; letter-spacing: 0; }
 h1 { font-size: clamp(30px, 7.1vw, 44px); font-weight: 800; }
 h2 { font-size: clamp(24px, 5vw, 36px); font-weight: 800; }
  h3 { font-size: clamp(20px, 3vw, 26px); font-weight: 800; }
  h4 { font-size: 18px; font-weight: 800; }
p { margin: 0; }
.lead { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.7; color: inherit; opacity: 0.82; }
.muted { color: var(--color-muted); }
.light .muted { color: var(--color-soft-ink); }
.accent, h1 span, h2 span { color: var(--color-mint); }
.center { text-align: center; }
.mt-12{margin-top:12px}.mt-16{margin-top:16px}.mt-18{margin-top:18px}.mt-20{margin-top:20px}.mt-24{margin-top:24px}.mt-30{margin-top:30px}.mt-34{margin-top:34px}.mt-42{margin-top:42px}
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.section-head { max-width: 790px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-copy { display: grid; gap: 14px; font-size: 16px; color: inherit; opacity: .9; }
.light .section-copy { color: var(--color-soft-ink); opacity: 1; }
.section-kicker, .eyebrow-pill { max-width: fit-content; display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px; background: rgba(85,190,148,.08); border: 1px solid rgba(85,190,148,.18); border-left: 4px solid var(--color-mint); border-radius: 999px; color: var(--color-mint); font-size: 12px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 20px; }
.section-kicker::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--color-mint); box-shadow: 0 0 0 7px rgba(85,190,148,.1); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 50px; padding: 15px 28px; min-height: 52px; font-family: var(--font-heading); font-weight: 900; font-size: 15px; line-height: 1; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s; border: 0; white-space: nowrap; }
.btn-primary { background: var(--color-mint); color: var(--color-navy); }
.btn-primary:hover, .btn-primary:focus-visible { transform: translateY(-2px); box-shadow: var(--shadow-mint); outline: none; }
.btn-ghost { background: transparent; color: var(--color-white); border: 1.5px solid rgba(255,255,255,.42); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--color-white); background: rgba(255,255,255,.08); outline: none; }
.light .btn-ghost { color: var(--color-navy); border-color: rgba(13,27,46,.24); }
.light .btn-ghost:hover { border-color: var(--color-navy); background: rgba(13,27,46,.05); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-mint); font-weight: 900; }
.text-link:hover { text-decoration: underline; }
.card-dark { background: linear-gradient(145deg, rgba(22,34,54,.96), rgba(13,27,46,.98)); border: 1px solid var(--color-navy-border); border-radius: 22px; padding: 26px; box-shadow: 0 28px 90px rgba(0,0,0,.2); }
.card-light { background: var(--color-white); border: 1px solid rgba(13,27,46,.08); border-radius: 22px; padding: 26px; box-shadow: 0 18px 60px rgba(13,27,46,.08); }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border-radius: 999px; background: rgba(85,190,148,.1); border: 1px solid rgba(85,190,148,.22); color: var(--color-mint); font-weight: 900; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }


.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; background: rgba(13,27,46,.94); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,.08); transform: translateY(110%); opacity: 0; transition: transform .25s, opacity .25s; }
.sticky-cta.visible { transform: translateY(0); opacity: 1; }
.sticky-cta-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 0;}
.sticky-action-group { display: flex; align-items: center; gap: 12px; }
.sticky-dismiss { border: 0; background: transparent; color: var(--color-muted); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.marquee { display: grid; gap: 12px; overflow: hidden; margin: 26px 0; }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track.reverse { animation-direction: reverse; animation-duration: 34s; }
.marquee-track:hover { animation-play-state: paused; }
.marquee span { padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); color: var(--color-muted); background: rgba(255,255,255,.04); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.video-modal { position: fixed; inset: 0; z-index: 1300; display: none; }
.video-modal.open { display: block; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(10px); }
.video-modal-content { position: relative; z-index: 1; width: min(920px, calc(100% - 28px)); margin: 8vh auto; background: var(--color-navy); border: 1px solid var(--color-navy-border); border-radius: 24px; padding: 22px; box-shadow: 0 40px 110px rgba(0,0,0,.45); }
.video-modal-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.18); background: var(--color-navy-mid); color: var(--color-white); border-radius: 999px; cursor: pointer; }
.sticky-action-group .btn {
    padding: 0 15px;
    min-height: 45px;
    font-size: 13px;
}
/* CARDS */
.card-dark { background: var(--color-navy-mid); border: 1px solid var(--color-navy-border); border-radius: 24px; padding: 26px; box-shadow: 0 28px 90px rgba(0,0,0,.2); }
.card-light { background: var(--color-white); border: 1px solid rgba(13,27,46,.08); border-radius: 24px; padding: 26px; box-shadow: 0 18px 60px rgba(13,27,46,.08); }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border-radius: 999px; background: rgba(62,234,160,.1); border: 1px solid rgba(62,234,160,.22); color: var(--color-mint); font-weight: 900; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
/* PLACEHOLDERS */
.placeholder-image, .placeholder-illustration, .placeholder-video { background: linear-gradient(135deg,rgba(22,34,54,.98),rgba(13,27,46,.96)); border: 1.5px dashed var(--color-navy-border); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; min-height: 280px; padding: 24px; cursor: default; transition: border-color .2s,transform .2s,box-shadow .2s; position: relative; overflow: hidden; }
.placeholder-image::before, .placeholder-illustration::before, .placeholder-video::before { content: ''; position: absolute; inset: -35%; background: radial-gradient(circle at 35% 25%,rgba(62,234,160,.14),transparent 32%),radial-gradient(circle at 78% 64%,rgba(255,255,255,.06),transparent 28%); pointer-events: none; }
.placeholder-image:hover, .placeholder-illustration:hover, .placeholder-video:hover { border-color: var(--color-mint); transform: translateY(-2px); box-shadow: 0 20px 70px rgba(0,0,0,.18); }
.placeholder-inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.placeholder-inner svg { width: 34px; height: 34px; stroke: var(--color-muted); fill: none; stroke-width: 1.6; }
.placeholder-label { font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--color-mint); }
.placeholder-prompt { display: none; }
.placeholder-video { aspect-ratio: 16/9; min-height: 0; }
.visual-mini { min-height: 160px; border-radius: 16px; padding: 16px; }
.visual-mini .placeholder-prompt { display: none; }
/* SCROLL ANIMATIONS */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity .65s,transform .65s; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
[data-animate-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .5s,transform .5s; }
[data-animate-stagger].is-visible > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: none; }
[data-animate-stagger].is-visible > *:nth-child(2) { transition-delay: .15s; opacity: 1; transform: none; }
[data-animate-stagger].is-visible > *:nth-child(3) { transition-delay: .25s; opacity: 1; transform: none; }
[data-animate-stagger].is-visible > *:nth-child(4) { transition-delay: .35s; opacity: 1; transform: none; }
[data-animate-stagger].is-visible > *:nth-child(5) { transition-delay: .45s; opacity: 1; transform: none; }
[data-animate-stagger].is-visible > *:nth-child(6) { transition-delay: .55s; opacity: 1; transform: none; }
/* STAT CALLOUTS */
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 34px 0 0; }
.stat-callout { display: flex; align-items: center; text-align: center; padding: 7px 18px; background: rgba(62,234,160,.06); border: 1px solid rgba(62,234,160,.18); border-radius: 16px; justify-content: center; margin: 15px 0;}
.light .stat-callout { background: rgba(13,27,46,.035); border-color: rgba(13,27,46,.12); }
.stat-number { font-family: var(--font-heading); font-size: clamp(40px,6vw,64px); font-weight: 900; color: var(--color-mint); line-height: 1; margin-bottom: 8px; letter-spacing: -.04em; }
.stat-label { font-size: 13px; color: var(--color-muted); line-height: 1.45; max-width: 190px; }
.light .stat-label { color: var(--color-soft-ink); }
/* TRUST CHIPS */
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 700; }
.trust-chip i { width: 16px; height: 16px; color: var(--color-mint); }
.site-header .btn.btn-primary {
    min-height: 40px;
}

#roadmap a.btn.btn-primary {
    min-height: 40px;
    padding: 11px 28px;
    margin-top: 25px;
}
.final-cta-section .inline-visual {
    margin-top: 20px;
}
figure.image-frame.wide-visual.is-visible {
    margin-top: 30px;
}
 