@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
    --bg: #060b15;
    --bg-soft: #0b1424;
    --surface: rgba(12, 20, 36, 0.9);
    --surface-strong: #101a2d;
    --surface-soft: rgba(255, 255, 255, 0.04);
    --surface-glass: rgba(13, 21, 37, 0.72);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #f4f8ff;
    --text-soft: rgba(228, 236, 249, 0.78);
    --text-muted: rgba(228, 236, 249, 0.56);
    --text-dark: #08111e;
    --brand: #42e4c5;
    --brand-strong: #21c6ab;
    --accent: #8ca2ff;
    --accent-soft: rgba(140, 162, 255, 0.14);
    --highlight: #ffd780;
    --danger: #ff7d8f;
    --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.34);
    --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.24);
    --shadow-sm: 0 18px 34px rgba(0, 0, 0, 0.2);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: min(1180px, calc(100vw - 40px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(66, 228, 197, 0.16), transparent 24%),
        radial-gradient(circle at top right, rgba(140, 162, 255, 0.18), transparent 22%),
        radial-gradient(circle at 50% 22%, rgba(255, 215, 128, 0.08), transparent 16%),
        linear-gradient(180deg, #050a14 0%, #08101c 26%, #09111f 100%);
}

body.menu-open {
    overflow: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}

main,
section,
footer {
    position: relative;
}

section[id] {
    scroll-margin-top: 110px;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
}

.section-block {
    padding: 76px 0;
}

.section-heading {
    max-width: 740px;
    margin-bottom: 28px;
}

.section-heading h2,
.cta-copy h2,
.about-copy h2,
.comparison-heading h2,
.results-head h3,
.showcase-heading h3,
.access-band h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 3.4vw, 3.3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.results-head h3,
.showcase-heading h3,
.access-band h3 {
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    line-height: 1.08;
}

.section-heading p,
.cta-copy p,
.about-copy p,
.comparison-heading p,
.results-head p,
.showcase-heading p,
.access-band p {
    margin: 14px 0 0;
    font-size: 1.04rem;
    line-height: 1.78;
    color: var(--text-soft);
}

.section-heading.is-inline {
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.section-heading.is-inline > div {
    max-width: 760px;
}

.section-heading.is-inline .button {
    white-space: nowrap;
    align-self: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-size: 0.97rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    touch-action: manipulation;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.button:focus-visible {
    transform: translateY(-2px);
}

@media (hover: hover) and (pointer: fine) {
    .button:hover {
        transform: translateY(-2px);
    }
}

.button-primary {
    color: var(--text-dark);
    background: linear-gradient(135deg, #ffd780, #ffb35f);
    box-shadow: 0 18px 42px rgba(255, 179, 95, 0.24);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 18px 0;
    transition: padding 0.2s ease;
}

.site-header.is-scrolled {
    padding: 10px 0;
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(7, 12, 22, 0.72);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled .header-shell {
    background: rgba(7, 12, 22, 0.88);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-logo {
    position: relative;
    display: block;
    width: clamp(156px, 18vw, 224px);
}

.brand-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.nav-toggle {
    display: none;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    flex: 0 0 auto;
    min-width: 48px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    color: var(--text);
    align-items: center;
    justify-content: center;
    line-height: 0;
    overflow: hidden;
    touch-action: manipulation;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 18px;
    height: 2.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.nav-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 6px));
}

.nav-toggle span:nth-child(2) {
    width: 18px;
    transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 6px));
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 0;
    transform: translate(-50%, -50%);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.94rem;
    font-weight: 700;
    touch-action: manipulation;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

@media (hover: hover) and (pointer: fine) {
    .nav-links a:hover {
        color: var(--text);
        background: rgba(255, 255, 255, 0.05);
    }
}

.header-cta {
    min-height: 46px;
    padding: 0 20px;
    white-space: nowrap;
}

.hero {
    padding: 26px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 44px;
    align-items: center;
}

.hero-copy {
    padding: 10px 0 34px;
}

.hero-copy h1 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.hero-lead {
    max-width: 660px;
    margin: 22px 0 0;
    font-size: clamp(1rem, 1.85vw, 1.18rem);
    line-height: 1.85;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    font-size: 0.93rem;
    font-weight: 700;
}

.hero-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.metric-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.metric-card strong {
    display: block;
    margin-bottom: 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.16rem;
    letter-spacing: -0.03em;
}

.metric-card span {
    display: block;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-visual-mobile {
    display: none;
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.hero-visual::before {
    top: 44px;
    right: 12px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(66, 228, 197, 0.22), transparent 72%);
}

.hero-visual::after {
    left: 8px;
    bottom: 16px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(140, 162, 255, 0.2), transparent 72%);
}

.visual-main {
    position: relative;
    overflow: hidden;
    width: min(100%, 720px);
    aspect-ratio: 1536 / 1024;
    margin: 34px 18px 32px auto;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(14, 23, 40, 0.94), rgba(8, 13, 24, 0.96)),
        linear-gradient(135deg, rgba(66, 228, 197, 0.08), rgba(140, 162, 255, 0.08));
    box-shadow: var(--shadow-lg);
    transform: none;
}

.visual-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-shot {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, rgba(18, 31, 54, 0.98), rgba(7, 15, 28, 0.98)),
        radial-gradient(circle at top right, rgba(80, 122, 255, 0.18), transparent 28%);
}

.platform-topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(26, 39, 63, 0.88);
}

.platform-brandline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.platform-candles {
    display: inline-flex;
    align-items: flex-end;
    gap: 5px;
}

.platform-candle {
    position: relative;
    width: 12px;
    border-radius: 3px;
}

.platform-candle::before,
.platform-candle::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    background: currentColor;
    transform: translateX(-50%);
}

.platform-candle::before {
    top: -10px;
    height: 10px;
}

.platform-candle::after {
    bottom: -10px;
    height: 10px;
}

.platform-candle.is-up {
    height: 32px;
    background: linear-gradient(180deg, #18d6a5, #0fb889);
    color: #18d6a5;
}

.platform-candle.is-down {
    height: 24px;
    background: linear-gradient(180deg, #ff4d79, #ff204f);
    color: #ff365f;
}

.platform-brandcopy strong,
.platform-brandcopy small {
    display: block;
}

.platform-brandcopy strong {
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
    letter-spacing: -0.04em;
}

.platform-brandcopy small {
    margin-top: 2px;
    color: var(--text-soft);
    font-size: 0.74rem;
}

.platform-navline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: rgba(236, 242, 255, 0.76);
    font-size: 0.76rem;
    font-weight: 700;
}

.platform-navline span {
    position: relative;
    padding-bottom: 10px;
}

.platform-navline .is-active {
    color: var(--text);
}

.platform-navline .is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5f8fff, #6b52ff);
}

.platform-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
    font-weight: 800;
}

.platform-surface {
    margin: 22px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(37, 49, 79, 0.92), rgba(31, 42, 68, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.platform-surface-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.platform-surface-head small {
    display: block;
    margin-bottom: 8px;
    color: rgba(211, 222, 246, 0.7);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.platform-surface-head strong {
    display: block;
    max-width: 420px;
    font-family: "Sora", sans-serif;
    font-size: 1.24rem;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.platform-status,
.platform-cta-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(57, 105, 232, 0.98), rgba(49, 98, 224, 0.92));
    color: #e9f0ff;
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}

.platform-fields {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.platform-field {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(18, 29, 51, 0.9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.platform-field label,
.platform-field span {
    display: block;
}

.platform-field label {
    margin-bottom: 7px;
    color: rgba(209, 219, 240, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.platform-field span {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
}

.platform-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.platform-option,
.platform-pro-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(18, 29, 51, 0.9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    color: rgba(234, 239, 250, 0.86);
    font-size: 0.92rem;
    font-weight: 800;
}

.platform-option.is-active {
    background: linear-gradient(135deg, #3c73f2, #2f64da);
    color: #ffffff;
}

.platform-pro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.platform-pro-card {
    min-height: 54px;
    background:
        linear-gradient(135deg, rgba(255, 209, 102, 0.08), rgba(255, 209, 102, 0.02)),
        rgba(18, 29, 51, 0.92);
}

.platform-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.platform-mini-stat strong,
.platform-mini-stat span {
    display: block;
}

.platform-mini-stat strong {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
}

.platform-mini-stat span {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 0.8rem;
}

.glass-card {
    position: absolute;
    max-width: 250px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(10, 16, 29, 0.9);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.glass-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.glass-card strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.glass-card p {
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.58;
}

.glass-card.card-top {
    top: 20px;
    right: 0;
}

.glass-card.card-bottom {
    left: 12px;
    bottom: 14px;
}

.steps-grid,
.compare-grid,
.platform-grid,
.video-grid,
.about-grid {
    display: grid;
    gap: 24px;
}

.steps-grid,
.platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card,
.platform-card,
.compare-card,
.video-copy,
.video-frame,
.about-copy,
.cta-shell,
.faq-item {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(16, 26, 45, 0.88), rgba(9, 15, 27, 0.94));
    box-shadow: var(--shadow-sm);
}

.step-card,
.platform-card {
    padding: 28px;
}

.step-number,
.platform-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(66, 228, 197, 0.18), rgba(140, 162, 255, 0.18));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
}

.platform-icon::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.step-card h3,
.platform-card h3,
.compare-card h3,
.video-copy h2,
.about-copy h2 {
    margin: 18px 0 12px;
    font-family: "Sora", sans-serif;
    font-size: 1.42rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.step-card p,
.platform-card p,
.compare-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.74;
}

.step-card .button {
    margin-top: 30px;
}

.showcase-panel,
.comparison-shell,
.faq-shell,
.access-band {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(13, 21, 37, 0.96), rgba(8, 13, 24, 0.98));
    box-shadow: var(--shadow-lg);
}

.showcase-panel::before,
.comparison-shell::before,
.faq-shell::before,
.access-band::before {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(8px);
}

.showcase-panel::before {
    top: -120px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(66, 228, 197, 0.14), transparent 72%);
}

.showcase-panel.is-photo::before {
    left: auto;
    right: -60px;
    background: radial-gradient(circle, rgba(140, 162, 255, 0.16), transparent 72%);
}

.showcase-panel,
.faq-shell,
.comparison-shell {
    padding: 30px;
}

.results-head,
.showcase-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    margin-bottom: 24px;
}

.results-head > div,
.showcase-heading > div {
    max-width: 700px;
}

.panel-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.panel-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.panel-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.panel-chip.is-muted::before {
    background: var(--highlight);
}

.marquee-stack {
    display: grid;
    gap: 16px;
}

.marquee-row {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.marquee-track {
    --marquee-gap-offset: 8px;
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
    animation: marquee-left 94s linear infinite;
}

.marquee-row.is-reverse .marquee-track {
    animation-name: marquee-right;
    animation-duration: 108s;
}

.showcase-panel.is-proof .marquee-track {
    animation-duration: 118s;
}

.showcase-panel.is-proof .marquee-row.is-reverse .marquee-track {
    animation-duration: 132s;
}

.marquee-row:active .marquee-track {
    animation-play-state: paused;
}

@media (hover: hover) and (pointer: fine) {
    .marquee-row:hover .marquee-track,
    .marquee-row:focus-within .marquee-track {
        animation-play-state: paused;
    }
}

.marquee-group {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.marquee-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.22);
}

.marquee-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.marquee-card.is-media-error::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(66, 228, 197, 0.08), transparent 44%),
        linear-gradient(180deg, rgba(16, 26, 45, 0.96), rgba(8, 14, 24, 0.98));
    z-index: 0;
}

.marquee-card.is-media-error img,
.marquee-card.is-media-error video {
    opacity: 0;
}

.showcase-panel.is-proof .marquee-card {
    flex: 0 0 clamp(184px, 17vw, 238px);
    aspect-ratio: 4 / 5;
    padding: 0;
    background: linear-gradient(180deg, #101a2d, #0a1220);
}

.showcase-panel.is-proof .marquee-card img,
.showcase-panel.is-proof .marquee-card video {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.showcase-panel.is-proof .marquee-card img {
    object-fit: cover;
    object-position: center top;
    background: linear-gradient(180deg, #f3f6fb, #e7edf7);
}

.showcase-panel.is-proof .marquee-card.is-video {
    padding: 0;
}

.showcase-panel.is-proof .marquee-card.is-video video {
    object-fit: cover;
    background: #040a14;
    border-radius: inherit;
}

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 0;
    background: rgba(6, 10, 18, 0.68);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
    transition: opacity 0.2s ease;
}

.video-play::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #ffffff;
    transform: translate(-35%, -50%);
}

.marquee-card.is-playing .video-play,
.marquee-card.has-played .video-play {
    opacity: 0;
}

.showcase-panel.is-photo .marquee-card {
    flex: 0 0 clamp(184px, 17vw, 238px);
    aspect-ratio: 4 / 5;
    background: #0f182a;
}

.showcase-panel.is-photo .marquee-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - var(--marquee-gap-offset, 8px)));
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(calc(-50% - var(--marquee-gap-offset, 8px)));
    }
    to {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track,
    .fade-up {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.platform-card p strong {
    color: var(--text);
}

.access-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 30px;
}

.access-band::before {
    top: -120px;
    right: -40px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 215, 128, 0.14), transparent 72%);
}

.access-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.access-list li {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.access-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.comparison-shell {
    padding: 34px;
}

.comparison-shell::before {
    top: -120px;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(140, 162, 255, 0.14), transparent 72%);
}

.comparison-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-card {
    padding: 28px;
}

.compare-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.compare-card li {
    position: relative;
    padding-left: 28px;
    color: var(--text-soft);
    line-height: 1.75;
}

.compare-card li + li {
    margin-top: 12px;
}

.compare-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.compare-card.is-positive li::before {
    background: linear-gradient(135deg, var(--brand), #8bf2df);
}

.compare-card.is-neutral li::before {
    background: linear-gradient(135deg, var(--danger), #ffb7c2);
}

.video-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
}

.video-copy,
.video-frame {
    padding: 30px;
}

.video-copy ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.video-copy li {
    position: relative;
    padding-left: 28px;
    color: var(--text-soft);
    line-height: 1.82;
}

.video-copy li + li {
    margin-top: 12px;
}

.video-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--highlight), #fff0c0);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
    border-radius: calc(var(--radius-xl) - 10px);
}

.faq-shell {
    padding: 28px;
}

.faq-shell::before {
    top: -100px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(66, 228, 197, 0.12), transparent 72%);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    padding: 24px 72px 24px 24px;
    cursor: pointer;
    list-style: none;
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before,
.faq-item summary::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 50%;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.faq-item summary::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(0deg);
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--text-soft);
    line-height: 1.8;
}

.faq-content p {
    margin: 0;
}

.faq-content a {
    color: var(--brand);
    font-weight: 800;
}

.about-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    align-items: start;
}

.about-copy {
    padding: 34px;
}

.about-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.founder-note {
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    font-weight: 700;
    line-height: 1.72;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.final-cta {
    padding: 0 0 110px;
}

.cta-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
    background:
        radial-gradient(circle at top left, rgba(66, 228, 197, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(140, 162, 255, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(16, 26, 45, 0.94), rgba(9, 15, 27, 0.98));
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.site-footer {
    padding: 0 0 110px;
}

.footer-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(8, 13, 24, 0.84);
    color: var(--text-muted);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.footer-shell p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.72;
}

.footer-shell p + p {
    margin-top: 8px;
}

.footer-legal-head {
    display: grid;
    gap: 10px;
}

.footer-legal-label {
    color: rgba(215, 223, 240, 0.6);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-legal-intro {
    max-width: 860px;
    color: rgba(228, 236, 249, 0.68);
}

.footer-legal-note {
    max-width: 860px;
    color: rgba(244, 248, 255, 0.84);
    font-weight: 700;
}

.footer-legal-details {
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.footer-legal-details summary {
    position: relative;
    padding-right: 24px;
    cursor: pointer;
    list-style: none;
    color: rgba(244, 248, 255, 0.86);
    font-size: 0.88rem;
    font-weight: 700;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.footer-legal-details summary::-webkit-details-marker {
    display: none;
}

.footer-legal-details summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    color: var(--brand);
    font-size: 1rem;
    font-weight: 700;
    transform: translateY(-50%);
}

.footer-legal-details[open] summary::after {
    content: "-";
}

.footer-legal-body {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.footer-copy {
    margin-top: 22px;
    padding-top: 0;
    padding-bottom: 8px;
    border-top: 0;
    color: rgba(215, 223, 240, 0.72);
    font-size: 0.84rem;
}

.mobile-cta {
    position: fixed;
    left: 50%;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    z-index: 70;
    display: none;
    width: min(calc(100vw - 20px), 480px);
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(7, 12, 22, 0.9);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 24px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.mobile-cta .button {
    width: 100%;
    pointer-events: auto;
}

.mobile-cta.is-visible {
    opacity: 1;
    pointer-events: none;
    transform: translate(-50%, 0);
}

.fade-up {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.75s ease forwards;
}

.fade-up.delay-1 {
    animation-delay: 0.1s;
}

.fade-up.delay-2 {
    animation-delay: 0.2s;
}

.fade-up.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .header-shell {
        position: relative;
        border-radius: 30px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 28px;
        background: rgba(7, 12, 22, 0.96);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.26);
    }

    .site-nav.is-open {
        display: flex;
    }

    .mobile-cta {
        display: block;
    }

    .nav-links,
    .hero-actions,
    .cta-actions,
    .about-actions,
    .access-actions {
        flex-wrap: wrap;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .nav-links a {
        padding: 12px 14px;
    }

    .header-cta {
        width: 100%;
    }

    .hero-grid,
    .steps-grid,
    .video-grid,
    .about-grid,
    .cta-shell,
    .access-band,
    .compare-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid > .hero-visual {
        display: none;
    }

    .hero-visual-mobile {
        display: none;
    }

    .hero-visual-mobile::before {
        top: -14px;
        right: -10px;
        width: 160px;
        height: 160px;
        opacity: 0.8;
    }

    .hero-visual-mobile::after {
        left: -12px;
        bottom: 112px;
        width: 140px;
        height: 140px;
        opacity: 0.72;
    }

    .hero-visual-mobile .visual-main {
        width: 100%;
        margin: 0;
        aspect-ratio: 1536 / 1024;
        border-radius: 24px;
    }

    .hero-visual-mobile .glass-card {
        position: relative;
        max-width: none;
        width: 100%;
        padding: 16px 18px;
    }

    .hero-visual-mobile .glass-card.card-top,
    .hero-visual-mobile .glass-card.card-bottom {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .hero-visual {
        min-height: 470px;
    }

    .section-heading.is-inline,
    .results-head,
    .showcase-heading,
    .cta-shell {
        align-items: flex-start;
    }

    .section-heading.is-inline .button {
        align-self: center;
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(100vw - 24px, 100%);
        --radius-xl: 28px;
        --radius-lg: 22px;
        --radius-md: 18px;
    }

    .fade-up {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .site-header {
        padding-top: 12px;
    }

    .header-shell {
        padding: 12px 14px;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-copy {
        padding-top: 8px;
    }

    .hero-copy h1 {
        font-size: clamp(1.9rem, 8.5vw, 2.7rem);
    }

    .hero-actions,
    .cta-actions,
    .about-actions,
    .access-actions {
        flex-direction: column;
    }

    .hero-actions .button,
    .cta-actions .button,
    .about-actions .button,
    .access-actions .button {
        width: 100%;
    }

    .hero-points {
        flex-direction: column;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-visual-mobile {
        display: none;
    }

    .section-block {
        padding: 58px 0;
    }

    .showcase-panel,
    .comparison-shell,
    .faq-shell,
    .video-copy,
    .video-frame,
    .about-copy,
    .cta-shell,
    .footer-shell,
    .access-band,
    .step-card,
    .platform-card,
    .compare-card {
        padding: 22px;
    }

    .section-heading.is-inline,
    .results-head,
    .showcase-heading {
        flex-direction: column;
    }

    .marquee-stack {
        gap: 12px;
    }

    .marquee-track,
    .marquee-group {
        gap: 12px;
    }

    .marquee-row {
        overflow: hidden;
        overflow-y: hidden;
        padding-bottom: 6px;
        -webkit-mask-image: none;
        mask-image: none;
        overscroll-behavior-x: contain;
        overscroll-behavior-y: auto;
        scrollbar-width: none;
        touch-action: pan-y;
    }

    .marquee-row::-webkit-scrollbar {
        display: none;
    }

    .showcase-panel.is-proof .marquee-card {
        flex-basis: min(52vw, 210px);
        border-radius: 22px;
        padding: 0;
    }

    .marquee-track {
        --marquee-gap-offset: 6px;
        width: max-content;
        padding-right: 0;
        animation: none;
        will-change: auto;
        transform: translate3d(0, 0, 0);
    }

    .marquee-row.is-reverse .marquee-track {
        animation: none;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .showcase-panel.is-proof .marquee-card img,
    .showcase-panel.is-proof .marquee-card video {
        border-radius: 16px;
    }

    .showcase-panel.is-proof .marquee-card.is-video video {
        pointer-events: none;
    }

    .showcase-panel.is-proof .marquee-card.is-video.is-playing video {
        pointer-events: auto;
    }

    .showcase-panel.is-photo .marquee-card {
        flex-basis: min(52vw, 210px);
        border-radius: 22px;
    }

    .marquee-card {
        flex-shrink: 0;
    }

    .platform-topbar {
        grid-template-columns: 1fr auto;
        gap: 14px;
    }

    .platform-brandcopy strong {
        font-size: 1.04rem;
    }

    .platform-navline {
        display: none;
    }

    .platform-surface,
    .platform-topbar {
        padding-left: 16px;
        padding-right: 16px;
    }

    .platform-surface {
        margin: 16px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .platform-surface-head strong {
        font-size: 1.02rem;
    }

    .platform-field span {
        font-size: 0.9rem;
    }

    .platform-options,
    .platform-pro-grid {
        grid-template-columns: 1fr;
    }

    .platform-surface-head,
    .platform-foot {
        flex-direction: column;
        align-items: stretch;
    }

    .platform-status,
    .platform-cta-chip {
        width: 100%;
    }

    .platform-option,
    .platform-pro-card {
        min-height: 44px;
        font-size: 0.86rem;
    }

    .hero-visual-mobile .glass-card {
        display: block;
    }

    .video-frame iframe {
        min-height: 260px;
    }

    .site-footer {
        padding-bottom: 120px;
    }
}
