:root {
    --ink: #080b17;
    --ink-soft: #12182b;
    --paper: #ffffff;
    --paper-soft: #f5f7fc;
    --text: #11162a;
    --muted: #60677a;
    --muted-dark: #aeb7cd;
    --line: rgba(18, 27, 54, .11);
    --line-dark: rgba(255, 255, 255, .12);
    --blue: #3f7cff;
    --cyan: #20c8bb;
    --pink: #ff37c7;
    --purple: #a64ff3;
    --gradient: linear-gradient(100deg, var(--pink), var(--purple) 35%, var(--blue) 68%, var(--cyan));
    --shadow: 0 28px 80px rgba(27, 41, 89, .12);
    --radius: 24px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }
body {
    margin: 0;
    background: var(--ink);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 {
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(3rem, 6vw, 5.55rem);
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: .98;
}
h2 {
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 4.5vw, 4.35rem);
    font-weight: 900;
    letter-spacing: -.052em;
    line-height: 1.02;
}
h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 850;
    letter-spacing: -.025em;
    line-height: 1.2;
}
p { margin-bottom: 18px; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section-dark { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.section-light { background: var(--paper-soft); color: var(--text); }
.section-white { background: var(--paper); color: var(--text); }
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #8eb8ff;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .14em;
    line-height: 1.25;
    text-transform: uppercase;
}
.eyebrow span {
    border: 1px solid rgba(255, 55, 199, .42);
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(255, 55, 199, .11);
    color: #ff8ee1;
}
.eyebrow-dark { color: #3768d0; }
.section-lead { max-width: 790px; color: var(--muted-dark); font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.55; }
.dark-lead { color: var(--muted); }
.section-heading { max-width: 880px; margin: 0 auto 58px; text-align: center; }
.narrow-center { max-width: 990px; margin-inline: auto; text-align: center; }
.narrow-center .section-lead { margin-inline: auto; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.centered-buttons { justify-content: center; }
.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #89aaff; outline-offset: 4px; }
.button-primary {
    background: linear-gradient(110deg, #3176ff, #655bf4 55%, #a64ff3);
    box-shadow: 0 16px 42px rgba(63, 124, 255, .32);
    color: #fff;
}
.button-primary:hover { box-shadow: 0 22px 54px rgba(63, 124, 255, .43); }
.button-secondary { border-color: rgba(255, 255, 255, .24); background: rgba(255, 255, 255, .06); color: #fff; }
.button-secondary:hover { border-color: rgba(255, 255, 255, .46); background: rgba(255, 255, 255, .1); }
.button-small { min-height: 44px; border-radius: 10px; padding: 11px 18px; font-size: .9rem; }
.skip-link {
    position: fixed;
    left: 18px;
    top: -90px;
    z-index: 100001;
    border-radius: 8px;
    padding: 12px 18px;
    background: #fff;
    color: #050a18;
    font-weight: 800;
    transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, rgba(8, 11, 23, .95), rgba(8, 11, 23, .68), transparent);
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { border-color: var(--line-dark); background: rgba(8, 11, 23, .9); backdrop-filter: blur(18px); }
.header-inner { display: flex; min-height: 80px; align-items: center; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 184px; height: auto; }
.header-nav { display: flex; margin-left: auto; align-items: center; gap: 28px; }
.header-nav a { color: rgba(255, 255, 255, .76); font-size: .92rem; font-weight: 700; text-decoration: none; }
.header-nav a:hover { color: #fff; }
.button-header { margin-left: 6px; background: #fff; color: #0b1020; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line-dark); border-radius: 10px; background: rgba(255, 255, 255, .05); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 2px; background: #fff; }
.mobile-nav { border-top: 1px solid var(--line-dark); padding: 18px 24px 24px; background: rgba(8, 11, 23, .98); }
.mobile-nav a:not(.button) { display: block; border-bottom: 1px solid var(--line-dark); padding: 13px 2px; color: #fff; font-weight: 750; text-decoration: none; }
.mobile-nav .button { width: 100%; margin-top: 18px; background: #fff; color: #0b1020; }

/* Hero */
.hero { min-height: 920px; padding: 164px 0 110px; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000, transparent 78%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
.hero-copy { max-width: 720px; }
.hero-lead { max-width: 690px; color: #c5cce0; font-size: clamp(1.16rem, 2vw, 1.42rem); line-height: 1.54; }
.check-list.hero-list { margin: 28px 0 0; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .08em; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 999px; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; font-size: 12px; font-weight: 900; box-shadow: 0 0 18px rgba(32, 200, 187, .28); }
.hero-list li { color: rgba(255, 255, 255, .86); font-size: 1.03rem; font-weight: 650; }
.hero-copy .button-row { margin-top: 32px; }
.microcopy { margin: 16px 0 0; color: #8c96ae; font-size: .82rem; font-weight: 650; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow-one { width: 650px; height: 650px; right: -240px; top: -130px; background: radial-gradient(circle, rgba(89, 76, 255, .26), transparent 67%); }
.hero-glow-two { width: 540px; height: 540px; left: -270px; bottom: -220px; background: radial-gradient(circle, rgba(255, 55, 199, .16), transparent 67%); }
.hero-visual { position: relative; min-width: 0; perspective: 1200px; }
.hero-dashboard { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: linear-gradient(145deg, rgba(27, 35, 66, .98), rgba(8, 13, 29, .98)); box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 70px rgba(63,124,255,.17); transform: rotateY(-6deg) rotateX(2deg); }
.dashboard-top { display: flex; height: 46px; align-items: center; gap: 7px; border-bottom: 1px solid rgba(255,255,255,.08); padding: 0 16px; }
.dashboard-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.18); }
.dashboard-label { margin-left: auto; color: #8aa2d8; font-size: .64rem; font-weight: 850; letter-spacing: .12em; }
.dashboard-body { display: grid; grid-template-columns: 58px 1fr; min-height: 430px; }
.dashboard-sidebar { display: grid; align-content: start; justify-content: center; gap: 20px; border-right: 1px solid rgba(255,255,255,.07); padding-top: 32px; }
.dashboard-sidebar span { width: 22px; height: 22px; border-radius: 7px; background: rgba(255,255,255,.08); }
.dashboard-sidebar .active { background: var(--gradient); box-shadow: 0 0 22px rgba(63,124,255,.38); }
.dashboard-content { padding: 34px 26px; }
.dashboard-heading { width: 48%; height: 15px; margin-bottom: 24px; border-radius: 6px; background: rgba(255,255,255,.14); }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dashboard-metrics div { border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 15px; background: rgba(255,255,255,.035); }
.dashboard-metrics strong { display: block; color: #fff; font-size: 1.3rem; }
.dashboard-metrics span { color: #7f8aa4; font-size: .7rem; }
.dashboard-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.dashboard-cards article { min-height: 112px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 16px; background: linear-gradient(145deg, rgba(77, 89, 156, .14), rgba(255,255,255,.025)); }
.dashboard-cards strong, .dashboard-cards small { display: block; }
.dashboard-cards strong { margin-top: 9px; color: #fff; }
.dashboard-cards small { color: #7f8aa4; }
.service-icon { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 9px; background: linear-gradient(135deg, rgba(63,124,255,.8), rgba(166,79,243,.8)); color: #fff; font-size: .57rem; font-weight: 900; }
.hero-orbit { position: absolute; z-index: 0; width: 115%; aspect-ratio: 1; left: 50%; top: 50%; border: 1px solid rgba(63,124,255,.14); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 90px rgba(63,124,255,.1) inset; }
.floating-badge { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 11px 15px; background: rgba(13,19,39,.9); box-shadow: 0 18px 44px rgba(0,0,0,.35); color: #fff; font-size: .76rem; font-weight: 800; backdrop-filter: blur(12px); }
.floating-badge span { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.floating-badge-one { left: -30px; top: 25%; }
.floating-badge-two { right: -22px; bottom: 17%; }

/* Proof and video */
.proof-strip { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: #0c1020; color: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid div { display: grid; min-height: 118px; align-content: center; border-right: 1px solid var(--line-dark); padding: 20px 30px; text-align: center; }
.proof-grid div:first-child { border-left: 1px solid var(--line-dark); }
.proof-grid strong { font-size: 1.35rem; font-weight: 900; }
.proof-grid span { color: #858fa9; font-size: .76rem; }
.video-section { padding: 118px 0 124px; }
.video-section::before { content: ""; position: absolute; width: 850px; height: 560px; left: 50%; top: 52%; background: radial-gradient(ellipse, rgba(92,78,255,.2), rgba(255,55,199,.08) 45%, transparent 72%); transform: translate(-50%,-50%); }
.video-section .container { position: relative; z-index: 1; }
.video-card { position: relative; display: block; overflow: hidden; width: 100%; aspect-ratio: 16/9; margin: 48px 0 32px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; padding: 0; background: #030711; box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 55px rgba(63,124,255,.2); cursor: pointer; text-align: left; }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.video-card:hover img { transform: scale(1.025); }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,8,20,.24), rgba(5,8,20,.08)); }
.play-button { position: absolute; z-index: 3; left: 50%; top: 50%; display: grid; width: 84px; height: 84px; place-items: center; border-radius: 50%; background: #fff; box-shadow: 0 20px 50px rgba(0,0,0,.35); color: var(--blue); transform: translate(-50%,-50%); transition: transform .22s ease; }
.video-card:hover .play-button { transform: translate(-50%,-50%) scale(1.06); }

/* Opportunity */
.opportunity { padding: 120px 0; }
.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.opportunity h2 { max-width: 600px; }
.opportunity-copy { padding-top: 35px; color: var(--muted); font-size: 1.12rem; }
.opportunity-copy blockquote { position: relative; margin: 34px 0 0; border-left: 4px solid var(--blue); border-radius: 0 14px 14px 0; padding: 24px 26px; background: #fff; box-shadow: var(--shadow); color: #171e35; font-size: 1.12rem; font-weight: 750; }

/* Services */
.services { padding: 120px 0 130px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 330px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; padding: 28px 24px 24px; background: #fff; box-shadow: 0 14px 38px rgba(23,34,70,.06); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.service-card:hover { border-color: rgba(63,124,255,.32); box-shadow: 0 24px 58px rgba(23,34,70,.11); transform: translateY(-5px); }
.card-number { position: absolute; right: 20px; top: 15px; color: #dfe4ef; font-size: 2rem; font-weight: 900; }
.card-icon { display: grid; width: 48px; height: 48px; margin-bottom: 28px; place-items: center; border-radius: 14px; background: linear-gradient(135deg, rgba(63,124,255,.12), rgba(166,79,243,.11)); color: #3768d0; font-size: .68rem; font-weight: 900; }
.service-card p { color: var(--muted); font-size: .93rem; line-height: 1.55; }
.service-card > strong { display: block; margin-top: 24px; color: #2e3f66; font-size: .82rem; line-height: 1.45; }
.service-card-accent { display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, #121a35, #0b1021); color: #fff; }
.service-card-accent .card-icon { background: var(--gradient); color: #fff; }
.service-card-accent p { color: #aeb7cd; }
.service-card-accent a { margin-top: auto; color: #8eb8ff; font-weight: 850; text-decoration: none; }

/* Steps */
.steps { padding: 122px 0; }
.steps::after { content: ""; position: absolute; width: 600px; height: 600px; left: -260px; top: 20%; border-radius: 50%; background: radial-gradient(circle, rgba(255,55,199,.16), transparent 68%); }
.steps .container { position: relative; z-index: 1; }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.steps-grid::before { content: ""; position: absolute; left: 8%; right: 8%; top: 40px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink)); opacity: .45; }
.steps-grid li { position: relative; min-height: 270px; border: 1px solid var(--line-dark); border-radius: 20px; padding: 28px 24px; background: rgba(255,255,255,.035); }
.steps-grid li > span { position: relative; z-index: 1; display: grid; width: 50px; height: 50px; margin-bottom: 52px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: #10172e; color: #94b8ff; font-weight: 900; }
.steps-grid h3 { color: #fff; }
.steps-grid p { color: #9da7be; font-size: .94rem; }
.centered-cta { margin-top: 48px; text-align: center; }
.centered-cta p { margin: 14px 0 0; color: #7f8aa4; font-size: .82rem; }

/* Engine */
.engine { padding: 128px 0; }
.engine-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 74px; align-items: center; }
.engine-tabs { display: grid; gap: 9px; margin-top: 34px; }
.engine-tabs article { display: grid; grid-template-columns: 42px 1fr; gap: 15px; border: 1px solid transparent; border-radius: 14px; padding: 15px 16px; transition: border-color .2s ease, background .2s ease; }
.engine-tabs article:hover { border-color: var(--line); background: #fff; }
.engine-tabs article > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; background: rgba(63,124,255,.1); color: #3768d0; font-size: .7rem; font-weight: 900; }
.engine-tabs h3 { margin: 0 0 3px; font-size: 1rem; }
.engine-tabs p { margin: 0; color: var(--muted); font-size: .86rem; }
.product-visual { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(63,124,255,.2); border-radius: 22px; padding: 9px; background: #10172e; box-shadow: 0 36px 90px rgba(21,36,81,.2); }
.product-visual img { display: block; width: 100%; height: auto; border-radius: 15px; }
.product-visual figcaption { display: flex; align-items: center; gap: 8px; padding: 12px 8px 4px; color: #9da7be; font-size: .72rem; }
.product-visual figcaption span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px rgba(32,200,187,.8); }

/* White label */
.white-label { padding: 126px 0; }
.white-label::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(63,124,255,.08), transparent 42%, rgba(255,55,199,.08)); }
.white-label-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .85fr; gap: 90px; align-items: center; }
.white-label h2 { max-width: 700px; }
.white-label .button { margin-top: 18px; }
.brand-stack { position: relative; display: grid; gap: 14px; }
.brand-stack::before { content: ""; position: absolute; width: 2px; left: 31px; top: 50px; bottom: 50px; background: var(--gradient); opacity: .5; }
.brand-stack article { position: relative; z-index: 1; display: grid; grid-template-columns: 64px 1fr; gap: 18px; border: 1px solid var(--line-dark); border-radius: 18px; padding: 22px; background: rgba(255,255,255,.045); backdrop-filter: blur(10px); }
.brand-stack article > span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; background: #141d3b; color: #91b4ff; font-weight: 900; }
.brand-stack h3 { margin: 2px 0 4px; color: #fff; }
.brand-stack p { margin: 0; color: #9da7be; font-size: .9rem; }

/* Audience */
.audience { padding: 120px 0 128px; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1050px; margin: 0 auto; }
.audience-grid article { border: 1px solid var(--line); border-radius: var(--radius); padding: 42px; background: linear-gradient(145deg, #fff, #f8faff); box-shadow: var(--shadow); }
.audience-label { display: inline-block; margin-bottom: 28px; border-radius: 999px; padding: 7px 12px; background: rgba(63,124,255,.09); color: #3768d0; font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.audience-grid h3 { font-size: 1.8rem; }
.audience-grid p { color: var(--muted); }
.audience-grid .check-list { margin: 24px 0 30px; }
.audience-grid a { color: #3768d0; font-weight: 850; text-decoration: none; }

/* Testimonials */
.testimonials { padding: 120px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-grid article { display: flex; min-height: 300px; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; padding: 30px; background: #fff; box-shadow: 0 18px 48px rgba(27,41,89,.07); }
.stars { margin-bottom: 22px; color: #00a876; letter-spacing: .12em; }
.testimonial-grid blockquote { margin: 0 0 28px; color: #202740; font-size: 1.06rem; font-weight: 650; line-height: 1.6; }
.testimonial-grid footer { margin-top: auto; }
.testimonial-grid footer strong, .testimonial-grid footer span { display: block; }
.testimonial-grid footer strong { font-size: .9rem; }
.testimonial-grid footer span { color: var(--muted); font-size: .75rem; }
.review-source { margin: 30px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }
.review-source a { color: #3768d0; font-weight: 800; }

/* Offer */
.offer { padding: 110px 0; }
.offer-card { position: relative; display: grid; grid-template-columns: 1.05fr .9fr .65fr; gap: 48px; align-items: center; overflow: hidden; border: 1px solid var(--line-dark); border-radius: 28px; padding: 54px; background: linear-gradient(135deg, rgba(63,124,255,.13), rgba(166,79,243,.08) 50%, rgba(32,200,187,.08)); }
.offer-card::after { content: ""; position: absolute; width: 420px; height: 420px; right: -220px; top: -240px; border-radius: 50%; background: radial-gradient(circle, rgba(255,55,199,.25), transparent 70%); }
.offer-card > * { position: relative; z-index: 1; }
.offer-card h2 { font-size: clamp(2rem, 3.5vw, 3.3rem); }
.offer-card > div:first-child > p:last-child { color: #9da7be; }
.offer-list li { color: #d7dcef; font-size: .92rem; }
.offer-action { text-align: center; }
.offer-action p { margin: 14px 0 0; color: #7f8aa4; font-size: .75rem; }

/* FAQ */
.faq { padding: 124px 0; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p:last-child { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; cursor: pointer; font-size: 1.07rem; font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: rgba(63,124,255,.09); }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 2px; background: #3768d0; transform: translate(-50%,-50%); }
.faq-list summary span::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s ease; }
.faq-list details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.faq-list details p { margin: -4px 50px 26px 4px; color: var(--muted); }

/* Final CTA and footer */
.final-cta { padding: 130px 0 140px; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { max-width: 990px; }
.final-glow { position: absolute; width: 900px; height: 700px; left: 50%; top: 50%; background: radial-gradient(ellipse, rgba(63,124,255,.2), rgba(166,79,243,.12) 38%, rgba(255,55,199,.07) 55%, transparent 72%); transform: translate(-50%,-50%); }
.site-footer { border-top: 1px solid var(--line-dark); background: #050711; color: #fff; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; min-height: 116px; align-items: center; gap: 30px; }
.footer-inner img { width: 178px; }
.footer-inner p { margin: 0; color: #717b93; font-size: .78rem; }
.footer-inner nav { display: flex; gap: 20px; }
.footer-inner nav a { color: #8d96aa; font-size: .75rem; text-decoration: none; }
.footer-inner nav a:hover { color: #fff; }

/* Video modal */
.video-modal[hidden] { display: none; }
.video-modal { position: fixed; inset: 0; z-index: 100000; display: grid; place-items: center; padding: 30px; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(1,4,13,.88); backdrop-filter: blur(12px); }
.video-modal-dialog { position: relative; z-index: 1; width: min(1120px, 96vw); overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: #050711; box-shadow: 0 40px 120px rgba(0,0,0,.72); }
.video-modal-header { display: flex; min-height: 60px; align-items: center; gap: 20px; padding: 12px 14px 12px 22px; }
.video-modal-header h2 { margin: 0; color: #fff; font-size: clamp(.9rem, 2vw, 1.1rem); letter-spacing: -.02em; }
.video-modal-close { display: grid; width: 38px; height: 38px; margin-left: auto; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: rgba(255,255,255,.07); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; }
.video-frame { position: relative; aspect-ratio: 16/9; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Motion */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .78s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
    .header-nav { display: none; }
    .button-header { margin-left: auto; }
    .nav-toggle { display: block; }
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 80px; }
    .hero-copy { max-width: 850px; }
    .hero-visual { width: min(760px, 94%); margin: 0 auto; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .engine-grid { grid-template-columns: 1fr; }
    .product-visual { width: min(820px, 100%); margin-inline: auto; }
    .offer-card { grid-template-columns: 1fr 1fr; }
    .offer-action { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 32px, var(--container)); }
    h1 { font-size: clamp(2.7rem, 13vw, 4.3rem); letter-spacing: -.058em; }
    h2 { font-size: clamp(2.15rem, 10vw, 3.2rem); }
    .header-inner { min-height: 68px; }
    .brand img { width: 150px; }
    .button-header { display: none; }
    .nav-toggle { margin-left: auto; }
    .hero { padding: 124px 0 80px; }
    .hero-grid { gap: 58px; }
    .hero-lead { font-size: 1.12rem; }
    .hero-copy .button-row { margin-top: 24px; }
    .button-row { align-items: stretch; }
    .button-row .button { width: 100%; }
    .hero-visual { width: 100%; }
    .hero-dashboard { border-radius: 15px; transform: none; }
    .dashboard-body { grid-template-columns: 38px 1fr; min-height: 300px; }
    .dashboard-sidebar { gap: 14px; padding-top: 22px; }
    .dashboard-sidebar span { width: 15px; height: 15px; border-radius: 5px; }
    .dashboard-content { padding: 22px 14px; }
    .dashboard-metrics { gap: 6px; }
    .dashboard-metrics div { padding: 10px 8px; }
    .dashboard-metrics strong { font-size: .96rem; }
    .dashboard-metrics span { font-size: .54rem; }
    .dashboard-cards { gap: 7px; margin-top: 12px; }
    .dashboard-cards article { min-height: 86px; padding: 10px; }
    .dashboard-cards strong { font-size: .72rem; }
    .dashboard-cards small { font-size: .58rem; }
    .service-icon { width: 25px; height: 25px; border-radius: 7px; font-size: .46rem; }
    .floating-badge { padding: 8px 10px; font-size: .61rem; }
    .floating-badge span { width: 18px; height: 18px; }
    .floating-badge-one { left: -6px; top: 20%; }
    .floating-badge-two { right: -5px; bottom: 10%; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid div { min-height: 100px; border-bottom: 1px solid var(--line-dark); padding: 18px 12px; }
    .proof-grid div:nth-child(odd) { border-left: 1px solid var(--line-dark); }
    .proof-grid strong { font-size: 1.1rem; }
    .video-section, .services, .steps, .engine, .white-label, .audience, .testimonials, .faq { padding: 82px 0; }
    .video-card { margin-top: 34px; border-radius: 15px; }
    .play-button { width: 62px; height: 62px; }
    .opportunity { padding: 84px 0; }
    .split-layout, .white-label-grid, .faq-grid { grid-template-columns: 1fr; gap: 38px; }
    .opportunity-copy { padding-top: 0; }
    .section-heading { margin-bottom: 40px; text-align: left; }
    .section-heading h2 { overflow-wrap: anywhere; }
    .service-grid, .steps-grid, .audience-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 0; }
    .steps-grid li { min-height: 240px; }
    .steps-grid li > span { margin-bottom: 36px; }
    .engine-tabs article { padding-inline: 0; }
    .brand-stack article { grid-template-columns: 52px 1fr; padding: 18px; }
    .brand-stack article > span { width: 42px; height: 42px; }
    .audience-grid article { padding: 30px 24px; }
    .offer { padding: 74px 0; }
    .offer-card { grid-template-columns: 1fr; gap: 28px; border-radius: 22px; padding: 34px 24px; }
    .offer-action { grid-column: auto; }
    .faq-intro { position: static; }
    .faq-list summary { min-height: 74px; font-size: 1rem; }
    .final-cta { padding: 92px 0 100px; }
    .footer-inner { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; text-align: center; }
    .footer-inner img { margin-inline: auto; }
    .footer-inner nav { justify-content: center; flex-wrap: wrap; }
    .video-modal { padding: 12px; }
    .video-modal-dialog { border-radius: 12px; }
    .video-modal-header { min-height: 54px; padding-left: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .hero-dashboard { transform: none; }
}
