/* ═══════════════════════════════════════════════════════════════
   VITARK.AI — Marketing Site
   Typography mirrors the app (vitark-agents):
   DM Sans throughout — single typeface, weight controls hierarchy.
   ═══════════════════════════════════════════════════════════════ */

:root {
    --navy-950: #061022;
    --navy-900: #0d1d36;
    --navy-800: #17345a;
    --navy-700: #274f7d;
    --slate-500: #7f96b2;
    --slate-300: #b8c8da;
    --gold-500: #c6a061;
    --gold-400: #e0be84;

    --bg-page: #f8f4ea;
    --bg-card: #ffffff;
    --bg-soft: #f1ead9;
    --text-heading: #173a64;
    --text-body: rgba(23, 58, 100, 0.84);
    --text-muted: rgba(23, 58, 100, 0.52);
    --text-light: rgba(23, 58, 100, 0.30);

    --border: rgba(23, 58, 100, 0.12);
    --border-soft: rgba(23, 58, 100, 0.08);
    --border-focus: rgba(198, 160, 97, 0.45);
    --success: #10b981;
    --error: #ef4444;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --shadow-card: 0 12px 30px rgba(6, 16, 34, 0.08), 0 2px 10px rgba(6, 16, 34, 0.04);
    --shadow-hover: 0 18px 44px rgba(6, 16, 34, 0.12);
    --shadow-btn: 0 8px 20px rgba(23, 58, 100, 0.25);
    --shadow-deep: 0 28px 70px rgba(6, 16, 34, 0.22);

    --grad-primary: linear-gradient(135deg, #0d1d36 0%, #061022 100%);
    --grad-primary-hover: linear-gradient(135deg, #17345a 0%, #0d1d36 100%);

    --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --container: 1120px;
    --container-narrow: 960px;
    --nav-h: 72px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 16px; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 20px); }
body {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-body);
    background: var(--bg-page);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: color 0.25s; }
ul { list-style: none; }
img, video { max-width: 100%; display: block; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; }

/* App-matching heading baseline (DM Sans, tight, heavy) */
h1, h2, h3, h4 {
    font-family: var(--font-body);
    color: var(--text-heading);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.03em;
}

::selection { background: rgba(198, 160, 97, 0.25); color: var(--navy-950); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--slate-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--slate-500); }

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}
.container-narrow {
    width: min(var(--container-narrow), calc(100% - 48px));
    margin: 0 auto;
}

/* ── Ambient atmosphere (mirrored from vitark-agents app) ── */
body::before {
    content: ""; position: fixed; inset: 0;
    pointer-events: none; z-index: -1; opacity: 0.3;
    background:
        radial-gradient(circle at 24% 18%, rgba(255,255,255,0.6) 0%, transparent 46%),
        radial-gradient(circle at 78% 32%, rgba(224,190,132,0.3) 0%, transparent 48%),
        linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(243,228,194,0.35) 62%, rgba(232,208,157,0.28) 100%);
}
body::after {
    content: ""; position: fixed; inset: -18%;
    pointer-events: none; z-index: -2; opacity: 0.18;
    background:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.58) 0%, transparent 44%),
        radial-gradient(circle at 86% 18%, rgba(214,171,99,0.36) 0%, transparent 52%),
        radial-gradient(circle at 62% 86%, rgba(239,215,167,0.42) 0%, transparent 50%);
    filter: blur(44px);
    animation: aurora-drift 22s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
    0%   { transform: translate3d(-3%,-2%,0) scale(1); }
    50%  { transform: translate3d(2%,2%,0) scale(1.04); }
    100% { transform: translate3d(4%,-1%,0) scale(1.02); }
}

.anim-reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.anim-reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION (shared across all pages)
   ═══════════════════════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center;
    background: rgba(248,244,234,0.72);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
    background: rgba(248,244,234,0.94);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
    box-shadow: 0 6px 24px -18px rgba(23,58,100,0.3);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { border-radius: 7px; width: 36px; height: 36px; }
.nav-wordmark {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: 1.6px;
    color: var(--text-heading);
    line-height: 1;
}
.nav-dot { color: var(--gold-500); }

.nav-links { display: flex; gap: 2.25rem; }
.nav-links a {
    font-size: 0.92rem; font-weight: 500; color: var(--text-muted);
    letter-spacing: 0.1px; position: relative; padding: 6px 0;
    transition: color 0.2s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold-500);
    border-radius: 1px;
    transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text-heading); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text-heading); font-weight: 600; }

.nav-cta {
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.9px; text-transform: uppercase;
    padding: 11px 22px; border-radius: var(--radius-sm);
    background: var(--grad-primary); color: #fff;
    box-shadow: var(--shadow-btn);
    transition: all 0.3s;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--grad-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(23,58,100,0.35);
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--text-heading); border-radius: 2px;
    transition: all 0.3s var(--ease); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(2.5px,2.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(2.5px,-2.5px); }

.drawer {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(248,244,234,0.96);
    backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }
.drawer-link {
    font-family: var(--font-body);
    font-size: clamp(1.6rem,4vw,2.2rem);
    font-weight: 700; letter-spacing: -0.03em;
    color: var(--text-heading); transition: color 0.25s;
}
.drawer-link:hover,
.drawer-link.active { color: var(--gold-500); }
.drawer-divider { width: 40px; height: 1px; background: var(--slate-300); }
.drawer-cta {
    font-family: var(--font-body) !important; font-size: 0.82rem !important;
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    color: #fff !important; background: var(--grad-primary);
    padding: 12px 28px; border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-sm);
    font-size: 0.88rem; font-weight: 600;
    letter-spacing: -0.005em;
    transition: all 0.3s var(--ease); cursor: pointer;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
    background: var(--grad-primary); color: #fff;
    box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
    background: var(--grad-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(23,58,100,0.3);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border); color: var(--text-heading);
}
.btn-outline:hover {
    border-color: rgba(23,58,100,0.35);
    background: rgba(23,58,100,0.04);
    transform: translateY(-2px);
}
.btn-gold {
    background: var(--gold-500); color: var(--navy-950);
    font-weight: 700; box-shadow: 0 8px 24px rgba(198,160,97,0.35);
}
.btn-gold:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(198,160,97,0.4);
}
.btn-ghost-light {
    background: rgba(255,255,255,0.06); color: #fff;
    border: 1px solid rgba(255,255,255,0.16);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.sec-header { margin-bottom: 3rem; max-width: 720px; }
.sec-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-header.center .sec-p { margin-left: auto; margin-right: auto; }
.sec-label {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.74rem; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 1.2rem;
}
.sec-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 6px;
    font-size: 0.7rem; font-weight: 700;
    background: rgba(198,160,97,0.12); color: var(--gold-500);
    border: 1px solid rgba(198,160,97,0.25);
}
.sec-h2 {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 800; line-height: 1.05;
    color: var(--text-heading);
    letter-spacing: -0.04em;
}
.sec-h2 em {
    font-style: normal; font-weight: 800;
    color: var(--text-heading);
}
.sec-p {
    font-size: 1.02rem; color: var(--text-muted);
    max-width: 620px; margin-top: 1rem; line-height: 1.75;
}

.section { padding: clamp(4rem,8vw,6.5rem) 0; }
.section-soft { background: var(--bg-soft); }

/* ═══════════════════════════════════════════════════════════════
   HERO (home)
   ═══════════════════════════════════════════════════════════════ */
.hero {
    min-height: calc(100vh - var(--nav-h));
    display: flex; align-items: center;
    padding: calc(var(--nav-h) + 3rem) 0 4rem;
    position: relative; overflow: hidden;
}
.hero-grid {
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
}
.hero-grid > * { min-width: 0; }
.hero-content { max-width: 560px; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.74rem; font-weight: 600;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: var(--gold-500); margin-bottom: 1.6rem;
    padding: 7px 14px; border-radius: 20px;
    background: rgba(198,160,97,0.08);
    border: 1px solid rgba(198,160,97,0.22);
}
.dot-pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold-500);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-h1 {
    font-family: var(--font-body);
    font-size: clamp(2.4rem, 5.4vw, 4.1rem);
    font-weight: 800; line-height: 1.0;
    color: var(--text-heading); margin-bottom: 1.4rem;
    letter-spacing: -0.045em;
}
.hero-h1 em {
    font-style: normal; font-weight: 800;
    color: var(--text-heading);
}
.hero-p {
    font-size: clamp(0.98rem, 1.3vw, 1.08rem);
    color: var(--text-muted); max-width: 520px;
    line-height: 1.75; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-meta {
    display: flex; gap: 1.8rem; flex-wrap: wrap;
    font-size: 0.78rem; color: var(--text-muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: var(--gold-500); }

/* Hero app preview */
.hero-preview {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--grad-primary);
    padding: 12px;
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(255,255,255,0.08);
    transform: rotate(0.4deg);
    transition: transform 0.6s var(--ease);
}
.hero-preview:hover { transform: rotate(0deg) translateY(-4px); }
.hero-preview::before {
    content: ''; position: absolute;
    inset: -2px; border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, rgba(224,190,132,0.35), rgba(198,160,97,0) 60%);
    z-index: -1; filter: blur(10px); opacity: 0.6;
}
.preview-topbar {
    display: flex; align-items: center; gap: 6px;
    padding: 3px 4px 9px;
}
.preview-topbar i {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.preview-topbar i:nth-child(1) { background: #ff5f57; }
.preview-topbar i:nth-child(2) { background: #febc2e; }
.preview-topbar i:nth-child(3) { background: #28c840; }
.preview-body {
    background: var(--bg-page); border-radius: var(--radius-md);
    overflow: hidden;
}
.hero-screenshot {
    width: 100%; height: auto;
    border-radius: var(--radius-md);
    display: block;
    background: var(--bg-soft);
}

.hero-float-card {
    position: absolute;
    bottom: 10%; left: -6%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    max-width: 240px;
    animation: floaty 6s ease-in-out infinite;
}
.hero-float-card strong {
    display: block; font-size: 0.84rem; color: var(--text-heading);
    font-weight: 700; letter-spacing: -0.01em;
}
.hero-float-card small { font-size: 0.72rem; color: var(--text-muted); }
.hero-float-card .fc-icon {
    width: 34px; height: 34px; border-radius: 10px;
    background: rgba(198,160,97,0.14); color: var(--gold-500);
    border: 1px solid rgba(198,160,97,0.22);
    display: grid; place-items: center; flex-shrink: 0;
}
@keyframes floaty {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HEADER (product, how-it-works, waitlist, contact)
   ═══════════════════════════════════════════════════════════════ */
.page-head {
    padding: calc(var(--nav-h) + 3rem) 0 2.5rem;
    position: relative;
}
.page-head-inner { max-width: 780px; }
.page-crumb {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 1.4rem;
}
.page-crumb .sep { color: var(--gold-500); }
.page-crumb a:hover { color: var(--text-heading); }
.page-h1 {
    font-family: var(--font-body);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800; line-height: 1.02;
    color: var(--text-heading); margin-bottom: 1.1rem;
    letter-spacing: -0.045em;
}
.page-h1 em {
    font-style: normal; font-weight: 800;
    color: var(--text-heading);
}
.page-lead {
    font-size: clamp(1rem,1.3vw,1.14rem);
    color: var(--text-muted); max-width: 640px; line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════════ */
.trust {
    padding: 3.2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-row {
    display: flex; align-items: center; justify-content: center;
    gap: clamp(1.5rem,4vw,3rem); flex-wrap: wrap;
}
.trust-stat { text-align: center; }
.trust-stat strong {
    display: block; font-family: var(--font-body);
    font-size: clamp(1.7rem,2.6vw,2.2rem); font-weight: 800;
    color: var(--text-heading); line-height: 1.1;
    letter-spacing: -0.045em;
}
.trust-stat span {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.8px; text-transform: uppercase;
    color: var(--text-muted);
}
.trust-sep { width: 1px; height: 36px; background: var(--border); }

/* ═══════════════════════════════════════════════════════════════
   VIDEO / MEDIA
   ═══════════════════════════════════════════════════════════════ */
.media-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--grad-primary);
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px;
}
.media-frame::before {
    content: ''; position: absolute; inset: -2px;
    background: linear-gradient(135deg, rgba(224,190,132,0.4), transparent 55%);
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: -1; filter: blur(12px); opacity: 0.55;
}
.media-topbar {
    display: flex; align-items: center; gap: 7px;
    padding: 4px 4px 10px;
}
.media-topbar i {
    width: 10px; height: 10px; border-radius: 50%;
}
.media-topbar i:nth-child(1) { background: #ff5f57; }
.media-topbar i:nth-child(2) { background: #febc2e; }
.media-topbar i:nth-child(3) { background: #28c840; }
.media-topbar .media-label {
    margin-left: auto; font-size: 0.68rem;
    color: rgba(255,255,255,0.5); letter-spacing: 1px;
    text-transform: uppercase; padding-right: 6px;
}
.media-frame video,
.media-frame img.media-img {
    width: 100%; display: block;
    border-radius: var(--radius-md);
    background: var(--bg-soft);
}
.media-frame .media-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-soft);
}
.media-frame .media-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════ */
.features-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem; margin-top: 2.5rem;
}
.feat-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2rem 1.7rem;
    box-shadow: var(--shadow-card);
    transition: all 0.45s var(--ease);
}
.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(198,160,97,0.3);
}
.feat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(198,160,97,0.1);
    border: 1px solid rgba(198,160,97,0.22);
    color: var(--gold-500); margin-bottom: 1.4rem;
}
.feat-card h3 {
    font-family: var(--font-body); font-size: 1.22rem;
    font-weight: 700; color: var(--text-heading); margin-bottom: 0.6rem;
    letter-spacing: -0.025em;
}
.feat-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* Feature-detail (alternating rows) — product page */
.detail-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem,5vw,4.5rem); align-items: center;
    margin-top: 4.5rem;
}
.detail-row:first-child { margin-top: 0; }
.detail-row.reverse .detail-text { order: 2; }
.detail-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold-500); margin-bottom: 1.1rem;
}
.detail-tag::before {
    content: ''; width: 22px; height: 1.5px; background: var(--gold-500);
}
.detail-text h3 {
    font-family: var(--font-body);
    font-size: clamp(1.7rem,3vw,2.3rem);
    font-weight: 800; line-height: 1.08;
    color: var(--text-heading); margin-bottom: 1rem;
    letter-spacing: -0.04em;
}
.detail-text p {
    font-size: 1rem; line-height: 1.75;
    color: var(--text-muted); margin-bottom: 1.3rem;
}
.detail-list { display: flex; flex-direction: column; gap: 0.7rem; }
.detail-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.93rem; color: var(--text-body);
}
.detail-list svg { color: var(--gold-500); flex-shrink: 0; margin-top: 3px; }

/* Capability card grid (2x2) */
.cap-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.3rem; margin-top: 2.5rem;
}
.cap-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.9rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.cap-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(198,160,97,0.3);
}
.cap-card h3 {
    font-family: var(--font-body);
    font-size: 1.28rem;
    font-weight: 800; line-height: 1.18;
    color: var(--text-heading); margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}
.cap-card > p {
    font-size: 0.92rem; line-height: 1.7;
    color: var(--text-muted); margin-bottom: 1.15rem;
}
.cap-card .detail-list li { font-size: 0.88rem; }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — steps
   ═══════════════════════════════════════════════════════════════ */
.steps-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem; margin-top: 2.5rem;
}
.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.4rem;
    box-shadow: var(--shadow-card);
    transition: all 0.35s var(--ease);
    position: relative;
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(198,160,97,0.3);
}
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
    background: var(--grad-primary); color: #fff;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-btn);
    letter-spacing: -0.02em;
}
.step h3 {
    font-family: var(--font-body); font-size: 1.12rem;
    font-weight: 700; color: var(--text-heading); margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}
.step p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-list {
    max-width: 760px; margin: 2.5rem auto 0;
    display: flex; flex-direction: column; gap: 0.6rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-item[open] { border-color: rgba(198,160,97,0.35); box-shadow: var(--shadow-card); }
.faq-item summary {
    list-style: none; cursor: pointer;
    padding: 1.15rem 1.4rem;
    font-family: var(--font-body);
    font-size: 1.02rem; font-weight: 700;
    color: var(--text-heading);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; letter-spacing: -0.02em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-family: var(--font-body);
    font-size: 1.4rem; font-weight: 400; color: var(--gold-500);
    transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
    padding: 0 1.4rem 1.2rem;
    font-size: 0.93rem; color: var(--text-muted); line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   WAITLIST
   ═══════════════════════════════════════════════════════════════ */
.waitlist-box {
    background: var(--grad-primary); border-radius: var(--radius-xl);
    padding: clamp(2.8rem,5.5vw,4.2rem) clamp(2rem,5vw,3.8rem);
    text-align: center;
    box-shadow: 0 24px 60px rgba(6,16,34,0.24);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative; overflow: hidden;
}
.waitlist-box::before {
    content: ''; position: absolute;
    top: -40%; right: -10%; width: 60%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(224,190,132,0.22), transparent 60%);
    pointer-events: none;
}
.waitlist-h2 {
    font-family: var(--font-body); font-size: clamp(1.9rem,4vw,2.8rem);
    font-weight: 800; color: #fff; line-height: 1.05; margin-bottom: 0.8rem;
    position: relative; letter-spacing: -0.04em;
}
.waitlist-p {
    font-size: 1rem; color: var(--slate-300); margin-bottom: 2rem;
    max-width: 520px; margin-left: auto; margin-right: auto;
    position: relative;
}
.waitlist-form { margin-bottom: 0.8rem; position: relative; }
.waitlist-row { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.waitlist-row input[type="email"] {
    flex: 1; padding: 13px 18px; font-size: 0.92rem;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm); color: #fff; outline: none;
    transition: border-color 0.3s, background 0.3s;
}
.waitlist-row input[type="email"]::placeholder { color: var(--slate-500); }
.waitlist-row input[type="email"]:focus {
    border-color: var(--gold-400);
    background: rgba(255,255,255,0.11);
}
.waitlist-note { font-size: 0.78rem; color: var(--slate-500); position: relative; }

/* Big waitlist page layout */
.wait-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem,5vw,4.5rem); align-items: start;
}
.wait-benefits { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.wait-benefit {
    display: flex; gap: 14px; align-items: flex-start;
}
.wait-benefit .wb-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(198,160,97,0.12); border: 1px solid rgba(198,160,97,0.25);
    color: var(--gold-500); display: grid; place-items: center; flex-shrink: 0;
}
.wait-benefit strong {
    display: block; font-family: var(--font-body);
    font-size: 1.02rem; font-weight: 700; color: var(--text-heading);
    margin-bottom: 3px; letter-spacing: -0.02em;
}
.wait-benefit p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.wait-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}
.wait-form-card h3 {
    font-family: var(--font-body); font-size: 1.35rem;
    font-weight: 700; color: var(--text-heading); margin-bottom: 0.3rem;
    letter-spacing: -0.03em;
}
.wait-form-card > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid; grid-template-columns: 0.95fr 1.1fr;
    gap: clamp(2.5rem,5vw,4.5rem);
}
.contact-h2 {
    font-family: var(--font-body); font-size: clamp(1.8rem,3.6vw,2.4rem);
    font-weight: 800; color: var(--text-heading); margin-bottom: 1rem;
    letter-spacing: -0.04em; line-height: 1.08;
}
.contact-sub { font-size: 0.98rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2.2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 1.1rem 1.3rem; border-radius: var(--radius-md);
    background: var(--bg-card); border: 1px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-item:hover {
    border-color: rgba(198,160,97,0.3);
    box-shadow: var(--shadow-card);
}
.contact-item .ci-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(198,160,97,0.12); border: 1px solid rgba(198,160,97,0.25);
    color: var(--gold-500); display: grid; place-items: center; flex-shrink: 0;
}
.ci-label {
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 3px;
}
.ci-value { font-size: 0.96rem; color: var(--text-heading); font-weight: 500; }
a.ci-value:hover { color: var(--gold-500); }
.ci-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.ci-links a {
    font-size: 0.95rem; color: var(--text-heading);
    position: relative;
}
.ci-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--gold-500);
    transition: width 0.3s var(--ease);
}
.ci-links a:hover { color: var(--gold-500); }
.ci-links a:hover::after { width: 100%; }

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted);
}
.field input, .field textarea, .field select {
    padding: 12px 15px; font-size: 0.92rem;
    background: var(--bg-page); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text-heading);
    outline: none; transition: border-color 0.3s, box-shadow 0.3s;
    resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(198,160,97,0.12);
}
.contact-form .btn { align-self: flex-start; margin-top: 0.3rem; }
.hp { position: absolute; left: -10000px; }

/* ═══════════════════════════════════════════════════════════════
   CTA banner (cross-page)
   ═══════════════════════════════════════════════════════════════ */
.cta-banner {
    background: var(--grad-primary);
    color: #fff; border-radius: var(--radius-xl);
    padding: clamp(2.6rem,5vw,3.8rem);
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem,4vw,3rem); align-items: center;
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute;
    top: -30%; right: -10%; width: 55%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(224,190,132,0.25), transparent 60%);
    pointer-events: none;
}
.cta-banner h2 {
    font-family: var(--font-body);
    font-size: clamp(1.7rem,3.2vw,2.4rem);
    font-weight: 800; color: #fff; line-height: 1.08;
    margin-bottom: 0.8rem; letter-spacing: -0.04em;
}
.cta-banner p { color: var(--slate-300); font-size: 0.98rem; line-height: 1.7; }
.cta-banner-actions {
    display: flex; flex-direction: column; gap: 10px;
    position: relative;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
    border-top: 1px solid var(--border);
    background: rgba(23, 58, 100, 0.025);
}
.footer-top {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    padding-bottom: 2.2rem;
    margin-bottom: 2.6rem;
    border-bottom: 1px solid var(--border);
}
.footer-brand {
    display: inline-flex; align-items: center; gap: 12px;
    text-decoration: none;
}
.footer-brand img { border-radius: 7px; width: 32px; height: 32px; }
.footer-wordmark {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: 1.6px;
    color: var(--text-heading);
    line-height: 1;
}
.footer-tagline {
    font-size: 0.92rem; color: var(--text-muted); font-weight: 500;
    font-style: italic;
    letter-spacing: 0.2px;
}
.footer-cols {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-bottom: 2.8rem;
}
.footer-col h4 {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: var(--text-heading); margin-bottom: 1.1rem;
    opacity: 0.75;
}
.footer-col a {
    display: block; font-size: 0.9rem; color: var(--text-body);
    padding: 4px 0; transition: color 0.25s, transform 0.25s;
    position: relative; width: fit-content;
}
.footer-col a::after {
    content: ''; position: absolute; left: 0; bottom: 2px;
    width: 0; height: 1px; background: var(--gold-500);
    transition: width 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold-500); }
.footer-col a:hover::after { width: 100%; }
.footer-bottom {
    display: flex; justify-content: space-between;
    padding-top: 1.8rem; border-top: 1px solid var(--border);
    font-size: 0.82rem; color: var(--text-muted);
    letter-spacing: 0.15px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
    :root { --container: 1040px; }
}
@media (max-width: 1100px) {
    :root { --container: 960px; }
    .features-row { gap: 1rem; }
    .steps-row { gap: 0.9rem; }
}
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-content { max-width: 640px; margin: 0 auto; text-align: center; }
    .hero-eyebrow { margin-left: auto; margin-right: auto; }
    .hero-p { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-meta { justify-content: center; }
    .hero-preview { max-width: 620px; margin: 0 auto; }
    .hero-float-card { left: auto; right: 0; bottom: -24px; }
    .features-row { grid-template-columns: 1fr 1fr; }
    .steps-row { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .wait-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .cta-banner { grid-template-columns: 1fr; text-align: center; }
    .cta-banner-actions { align-items: center; }
    .detail-row, .detail-row.reverse { grid-template-columns: 1fr; gap: 2rem; }
    .detail-row.reverse .detail-text { order: 0; }
    .cap-grid { grid-template-columns: 1fr; gap: 1.1rem; }
}
@media (max-width: 820px) {
    :root { --container: 100%; }
    .container, .container-narrow { width: calc(100% - 36px); }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .section { padding: clamp(3.2rem,7vw,5rem) 0; }
    .trust-sep { display: none; }
    .trust-row { gap: 1.5rem 2.2rem; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .hero-float-card { max-width: 220px; }
}
@media (max-width: 640px) {
    .container, .container-narrow { width: calc(100% - 28px); }
    .features-row { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; }
    .form-pair { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
    .waitlist-row { flex-direction: column; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { justify-content: center; }
    .hero-float-card { display: none; }
    .wait-form-card, .contact-form-card { padding: 1.5rem; }
    .footer-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .footer-cols { grid-template-columns: 1fr; }
    .wait-form-card, .contact-form-card { padding: 1.25rem; }
    .hero-eyebrow { font-size: 0.68rem; padding: 6px 12px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .anim-reveal { opacity: 1; transform: none; }
    body::after { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════
   SUCCESS OVERLAY
   ═══════════════════════════════════════════════════════════════ */
.success-overlay {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    padding: 1.25rem;
    background: rgba(6, 16, 34, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.28s ease;
}
.success-overlay.open { opacity: 1; pointer-events: auto; }
.success-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    max-width: 460px; width: 100%;
    padding: 2.4rem 2rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(224, 190, 132, 0.28);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.success-overlay.open .success-card { transform: translateY(0) scale(1); }
.success-icon {
    width: 56px; height: 56px; margin: 0 auto 1.1rem;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #f1ead9;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 28px rgba(13, 29, 54, 0.28);
}
.success-card h3 {
    font-size: 1.55rem; font-weight: 700;
    color: var(--text-heading); margin: 0 0 0.6rem;
    letter-spacing: -0.01em;
}
.success-card p {
    color: var(--text-body);
    font-size: 0.96rem; line-height: 1.55;
    margin: 0 0 0.75rem;
}
.success-card p.success-meta {
    font-size: 0.84rem; color: var(--text-muted);
    margin-bottom: 1.6rem;
}
.success-dismiss {
    width: 100%; justify-content: center;
}
.success-close {
    position: absolute; top: 14px; right: 14px;
    width: 34px; height: 34px;
    border: 0; padding: 0; cursor: pointer;
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.success-close:hover {
    background: rgba(23, 58, 100, 0.06);
    color: var(--text-heading);
}
@media (max-width: 480px) {
    .success-card { padding: 2rem 1.4rem 1.6rem; }
    .success-card h3 { font-size: 1.35rem; }
}

/* ═══════════════════════════════════════════════════════════════
   WHAT IT IS — plain-English bullets
   ═══════════════════════════════════════════════════════════════ */
.what-bullets {
    list-style: none; padding: 0; margin: 0 auto 2.4rem;
    max-width: 820px;
    display: grid; gap: 0.9rem;
}
.what-bullets li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 0.95rem 1.1rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.what-bullets li svg {
    flex-shrink: 0; margin-top: 3px;
    color: var(--gold-500);
}
.what-bullets li span {
    font-size: 0.98rem; color: var(--text-body); line-height: 1.6;
}
.what-bullets li strong {
    color: var(--text-heading); font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   BOLD CTA SLAB
   ═══════════════════════════════════════════════════════════════ */
.cta-slab-section {
    padding: clamp(3rem,6vw,5rem) 0;
}
.cta-slab {
    background: var(--grad-primary);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(2.6rem,5vw,4rem);
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: clamp(1.8rem,4vw,3rem);
    align-items: center;
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.cta-slab::before {
    content: ''; position: absolute;
    top: -30%; right: -10%; width: 55%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(224,190,132,0.28), transparent 60%);
    pointer-events: none;
}
.cta-slab-copy { position: relative; z-index: 1; }
.cta-slab-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    padding: 6px 12px; border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    margin-bottom: 1rem;
}
.cta-slab-title {
    font-family: var(--font-body);
    font-size: clamp(1.8rem,3.6vw,2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 0.8rem;
}
.cta-slab-title em {
    font-style: normal;
    background: linear-gradient(135deg, #e0be84 0%, #f1ead9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-slab-p {
    color: rgba(241,234,217,0.82);
    font-size: 1rem; line-height: 1.7;
    max-width: 560px;
}
.cta-slab-btn {
    position: relative; z-index: 1;
    white-space: nowrap;
    font-size: 1rem;
    padding: 0.95rem 1.6rem;
}
@media (max-width: 780px) {
    .cta-slab {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .cta-slab-btn { justify-self: start; }
}

/* Solo waitlist form (no benefits column) */
.wait-form-card-solo {
    max-width: 620px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   SOCIALS BAND (pre-footer)
   ═══════════════════════════════════════════════════════════════ */
.socials-band {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    border-top: 1px solid var(--border);
    background: transparent;
}
.socials-inner {
    display: flex; align-items: center; justify-content: center;
    gap: clamp(1rem, 3vw, 1.6rem);
    flex-wrap: wrap;
}
.socials-kicker {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 2.2px; text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}
.socials-rule {
    flex: 0 1 80px; height: 1px;
    background: var(--border);
    align-self: center;
}
.social-pills {
    display: inline-flex; align-items: center;
    gap: 10px; flex-wrap: wrap; justify-content: center;
}
.social-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px 10px 16px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-heading);
    font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.2px;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.social-pill .sp-mark { flex-shrink: 0; color: var(--text-muted); transition: color 0.25s ease; }
.social-pill .sp-arrow { flex-shrink: 0; color: var(--text-muted); transition: color 0.25s ease, transform 0.25s ease; }
.social-pill:hover {
    color: var(--gold-500);
    border-color: rgba(198,160,97,0.5);
    background: rgba(198,160,97,0.05);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -16px rgba(198,160,97,0.35);
}
.social-pill:hover .sp-mark,
.social-pill:hover .sp-arrow { color: var(--gold-500); }
.social-pill:hover .sp-arrow { transform: translate(2px, -2px); }
@media (max-width: 540px) {
    .socials-rule { display: none; }
    .socials-inner { gap: 1rem; }
    .social-pill { font-size: 0.82rem; padding: 9px 14px 9px 12px; }
}
