:root {
    --ink: #f5f7fb;
    --ink-soft: #c6cfdb;
    --muted: #8f9bab;
    --paper: #0b1020;
    --paper-2: #101827;
    --surface: #151d2c;
    --surface-2: #1b2638;
    --line: rgba(226, 232, 240, 0.14);
    --night: #050814;
    --night-2: #0f172a;
    --brand: #6aa7ff;
    --brand-dark: #16284a;
    --mint: #2dd4a4;
    --coral: #ef674f;
    --gold: #f0b84a;
    --violet: #9b87f5;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --radius: 8px;
    --container: 1180px;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

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

.narrow {
    max-width: 860px;
}

.section {
    padding: 96px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms ease;
    transition-delay: var(--delay, 0s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid transparent;
    background: rgba(11, 16, 32, 0.88);
    backdrop-filter: blur(18px);
}

.navbar.scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.nav-container {
    width: min(var(--container), calc(100% - 40px));
    height: 76px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #07111f;
    background: var(--brand);
    border: 2px solid rgba(255, 255, 255, 0.86);
    border-radius: var(--radius);
    font-size: 0.78rem;
    box-shadow: 4px 4px 0 var(--night);
}

.nav-links {
    justify-self: center;
    display: flex;
    gap: 26px;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 800;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--coral);
}

.nav-actions,
.hero-actions,
.hero-points {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    padding: 10px 16px;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #07111f;
    background: var(--mint);
    box-shadow: 5px 5px 0 var(--night);
}

.btn-primary:hover {
    box-shadow: 7px 7px 0 var(--night);
}

.btn-secondary,
.btn-ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.28);
}

.btn-large {
    min-height: 54px;
    padding: 14px 22px;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    cursor: pointer;
}

.menu-button span {
    width: 20px;
    height: 2px;
    background: var(--ink);
}

.mobile-cta {
    display: none;
}

.hero {
    padding: 72px 0 88px;
    background:
        radial-gradient(circle at 18% 8%, rgba(106, 167, 255, 0.2), transparent 32%),
        radial-gradient(circle at 82% 16%, rgba(45, 212, 164, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%),
        var(--paper);
}

.hero-grid,
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-copy h1,
.section-heading h2,
.final-cta h2 {
    max-width: 820px;
    font-size: clamp(2.7rem, 7vw, 5.7rem);
    font-weight: 950;
    line-height: 0.95;
    letter-spacing: 0;
}

.hero-subtitle {
    max-width: 660px;
    margin: 24px 0 28px;
    color: var(--ink-soft);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-points {
    margin-bottom: 24px;
}

.hero-points span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    font-weight: 850;
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fine-print,
.final-cta small {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.product-stage {
    position: relative;
    min-height: 560px;
    justify-self: end;
    width: min(100%, 520px);
}

.app-window,
.mini-card,
.soft-card,
.wow-card,
.price-card,
.character-card,
.comparison,
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 40px rgba(21, 20, 27, 0.07);
}

.main-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.82);
    box-shadow: 16px 16px 0 var(--night), var(--shadow);
}

.window-bar {
    display: grid;
    grid-template-columns: 10px 10px 10px 1fr;
    gap: 8px;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    background: var(--surface-2);
}

.app-window,
.mini-card,
.soft-card,
.wow-card,
.price-card,
.character-card,
.comparison,
.faq-item {
    background: var(--surface);
}

.soft-card,
.wow-card,
.price-card,
.character-card,
.comparison,
.faq-item {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.window-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--coral);
}

.window-bar span:nth-child(2) {
    background: var(--gold);
}

.window-bar span:nth-child(3) {
    background: var(--mint);
}

.window-bar strong {
    margin-left: 6px;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.chat-stack {
    display: grid;
    gap: 14px;
    padding: 20px;
    background: var(--night-2);
}

.mission-card,
.message,
.coach-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
}

.mission-card {
    background: rgba(45, 212, 164, 0.13);
}

.mission-card span,
.mini-card span,
.wow-card span,
.review-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.message.character {
    max-width: 88%;
    background: rgba(106, 167, 255, 0.14);
}

.message.user {
    max-width: 76%;
    justify-self: end;
    color: #fff;
    background: var(--night-2);
}

.coach-card {
    background: rgba(240, 184, 74, 0.16);
}

.coach-card p {
    margin-top: 6px;
    color: var(--ink-soft);
}

.mini-card {
    position: absolute;
    z-index: 3;
    width: 255px;
    padding: 18px;
    border: 2px solid var(--ink);
}

.improve-card {
    right: -14px;
    bottom: 56px;
    box-shadow: 7px 7px 0 var(--mint);
}

.memory-card {
    left: -18px;
    bottom: 0;
    box-shadow: 7px 7px 0 var(--coral);
}

.product-stage-video {
    min-height: 590px;
}

.video-window {
    max-width: 430px;
    margin-left: auto;
}

.video-library-preview,
.video-catalog,
.feedback-demo {
    display: grid;
    gap: 14px;
}

.video-library-preview {
    padding: 18px;
    background: var(--night-2);
}

.video-tile,
.catalog-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.video-tile {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
}

.video-tile video,
.locked-cover {
    width: 100%;
    aspect-ratio: 9 / 14;
    border-radius: var(--radius);
    object-fit: cover;
    background: #0f172a;
}

.locked-cover,
.premium-cover {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 950;
    text-align: center;
    filter: grayscale(1);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
        repeating-linear-gradient(45deg, #111827 0 12px, #1f2937 12px 24px);
}

.video-tile.premium {
    opacity: 0.82;
}

.video-tile.premium .locked-cover::before {
    content: "Locked";
    display: inline-flex;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 5px 9px;
    color: #07111f;
    background: var(--gold);
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.video-tile div span,
.catalog-copy span,
.exercise-panel span,
.answer-panel span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.video-tile div strong {
    display: block;
    line-height: 1.15;
}

.video-tile div small {
    display: block;
    margin-top: 5px;
    color: var(--ink-soft);
    line-height: 1.25;
}

.exercise-float {
    right: -18px;
    bottom: 72px;
    box-shadow: 7px 7px 0 var(--mint);
}

.exercise-float strong {
    display: block;
    margin-top: 10px;
    color: var(--mint);
    line-height: 1.25;
}

.feedback-float {
    left: -18px;
    bottom: 4px;
    box-shadow: 7px 7px 0 var(--brand);
}

.score-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(106, 167, 255, 0.13);
}

.score-row b {
    color: var(--brand);
    font-size: 1.5rem;
    line-height: 1;
}

.score-row small {
    color: var(--ink-soft);
    line-height: 1.15;
}

.bad {
    color: #ff9a8a;
    text-decoration: line-through;
}

.good {
    margin: 8px 0 12px;
    color: var(--mint);
    font-weight: 900;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading.left {
    margin: 0;
    text-align: left;
}

.section-heading h2,
.final-cta h2 {
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 1;
}

.section-heading p:not(.eyebrow) {
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.problem,
.position,
.demo,
.quick-session,
.features,
.practice,
.faq {
    background: var(--paper);
}

.how,
.characters,
.outcomes,
.pricing,
.method,
.comparison-section {
    background: var(--paper-2);
}

.wow {
    background: var(--paper);
}

.demo-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.live-demo {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 3px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius);
    background: var(--night-2);
    box-shadow: 14px 14px 0 var(--night), var(--shadow);
}

.demo-step {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.demo-step span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.demo-step strong {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.15;
}

.demo-step small {
    display: block;
    margin-top: 8px;
    color: var(--ink-soft);
}

.demo-step.before strong {
    color: #ff9a8a;
    text-decoration: line-through;
}

.demo-step.insight {
    background: rgba(240, 184, 74, 0.16);
}

.demo-step.after {
    border: 2px solid rgba(255, 255, 255, 0.78);
    background: rgba(45, 212, 164, 0.13);
    box-shadow: 7px 7px 0 var(--mint);
}

.demo-arrow {
    justify-self: center;
    width: fit-content;
    border-radius: 999px;
    padding: 7px 12px;
    color: #fff;
    background: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.three-grid,
.difference-grid,
.outcome-grid,
.session-grid,
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.soft-card,
.difference-card,
.outcome-card,
.session-card,
.price-card,
.character-card,
.wow-card {
    padding: 26px;
}

.soft-card h3,
.difference-card h3,
.outcome-card h3,
.session-card h3,
.price-card h3,
.character-card h3,
.wow-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.2;
}

.soft-card p,
.difference-card p,
.outcome-card p,
.session-card p,
.price-card p,
.character-card p,
.wow-card p,
.feature-list {
    color: var(--ink-soft);
}

.difference-grid {
    grid-template-columns: 0.95fr 1.1fr 0.95fr;
    align-items: stretch;
}

.difference-card,
.outcome-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.difference-card span,
.outcome-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.difference-card.winner {
    border: 3px solid rgba(255, 255, 255, 0.82);
    background: var(--night-2);
    color: #fff;
    box-shadow: 10px 10px 0 var(--mint);
    transform: translateY(-10px);
}

.difference-card.winner span {
    color: #07111f;
    background: var(--gold);
}

.difference-card.winner p {
    color: rgba(255, 255, 255, 0.78);
}

.outcome-grid {
    grid-template-columns: repeat(4, 1fr);
}

.outcome-card {
    min-height: 250px;
    border-top: 5px solid var(--brand);
}

.outcome-card:nth-child(2) {
    border-top-color: var(--mint);
}

.outcome-card:nth-child(3) {
    border-top-color: var(--coral);
}

.outcome-card:nth-child(4) {
    border-top-color: var(--gold);
}

.session-grid {
    grid-template-columns: repeat(4, 1fr);
    counter-reset: session;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.method-card {
    min-height: 260px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.method-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #07111f;
    background: var(--mint);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.method-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.2;
}

.method-card p {
    color: var(--ink-soft);
}

.session-card {
    position: relative;
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.session-card::after {
    counter-increment: session;
    content: "0" counter(session);
    position: absolute;
    right: 20px;
    bottom: 16px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 4rem;
    font-weight: 950;
    line-height: 1;
}

.session-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #07111f;
    background: var(--mint);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.card-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    color: #07111f;
    background: var(--brand);
    font-size: 0.9rem;
    font-weight: 900;
}

.steps {
    display: grid;
    gap: 12px;
}

.steps article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.steps span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--brand);
    font-weight: 900;
}

.steps p {
    color: var(--ink-soft);
}

.wow-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.wow-card {
    min-height: 250px;
}

.wow-card:nth-child(1),
.wow-card:nth-child(2) {
    grid-column: span 3;
}

.wow-card:nth-child(3),
.wow-card:nth-child(4),
.wow-card:nth-child(5) {
    grid-column: span 2;
}

.frame {
    margin-top: 18px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(106, 167, 255, 0.13);
    color: var(--ink);
}

.before-after {
    display: grid;
    gap: 12px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    box-shadow: 8px 8px 0 var(--mint);
}

.before-after div {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-2);
}

.before-after small {
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
}

.before-after p {
    color: var(--ink);
    font-weight: 900;
}

.recruiter-card {
    color: #fff;
    background: var(--night-2);
}

.recruiter-card span,
.recruiter-card p {
    color: rgba(255, 255, 255, 0.74);
}

.visual-panel {
    position: relative;
}

.comic-showcase {
    position: relative;
    display: grid;
    gap: 14px;
}

.comic-feature {
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 12px 12px 0 var(--night);
}

.comic-feature img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
}

.comic-label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius);
    background: rgba(11, 16, 32, 0.88);
    box-shadow: 5px 5px 0 var(--mint);
}

.comic-label span,
.comic-note span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.comic-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-left: 24px;
}

.comic-strip img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top center;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 5px 5px 0 rgba(21, 20, 27, 0.18);
}

.comic-strip img:nth-child(2) {
    transform: translateY(12px);
}

.comic-strip img:nth-child(3) {
    transform: translateY(-8px);
}

.comic-note {
    position: absolute;
    right: -18px;
    bottom: 92px;
    width: min(310px, 78%);
    padding: 18px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 7px 7px 0 var(--coral);
}

.comic-note p {
    color: var(--ink-soft);
}

.video-catalog {
    align-content: start;
}

.catalog-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: stretch;
    min-height: 170px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.catalog-card video,
.premium-cover {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    background: var(--night-2);
}

.catalog-free {
    border: 3px solid rgba(255, 255, 255, 0.82);
    box-shadow: 10px 10px 0 var(--mint), 0 12px 40px rgba(0, 0, 0, 0.18);
}

.catalog-premium {
    opacity: 0.88;
}

.premium-cover {
    position: relative;
    gap: 8px;
    padding: 18px;
    font-size: 1.05rem;
}

.premium-cover b {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 5px 9px;
    color: #07111f;
    background: var(--gold);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.catalog-copy {
    padding: 20px;
}

.catalog-copy h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
    line-height: 1.15;
}

.catalog-copy p {
    color: var(--ink-soft);
}

.feedback-demo {
    padding: 20px;
    border: 3px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius);
    background: var(--night-2);
    box-shadow: 14px 14px 0 var(--night), var(--shadow);
}

.exercise-panel,
.answer-panel,
.metric-grid div {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.exercise-panel,
.answer-panel {
    padding: 18px;
}

.exercise-panel strong {
    display: block;
    font-size: clamp(1.1rem, 2.4vw, 1.55rem);
    line-height: 1.18;
}

.answer-panel p {
    color: var(--ink-soft);
    font-weight: 800;
}

.answer-panel.weak p {
    color: #ff9a8a;
    text-decoration: line-through;
}

.answer-panel.strong {
    border: 2px solid rgba(255, 255, 255, 0.78);
    background: rgba(45, 212, 164, 0.13);
    box-shadow: 7px 7px 0 var(--mint);
}

.answer-panel.strong p {
    color: var(--ink);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metric-grid div {
    padding: 14px;
    text-align: center;
}

.metric-grid b {
    display: block;
    color: var(--brand);
    font-size: 1.65rem;
    line-height: 1;
}

.metric-grid small {
    display: block;
    margin-top: 6px;
    color: var(--ink-soft);
    font-size: 0.8rem;
    font-weight: 800;
}

.visual-panel img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 3px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: 12px 12px 0 var(--night);
}

.review-card {
    position: absolute;
    right: -18px;
    bottom: -28px;
    width: min(330px, 85%);
    border: 2px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius);
    padding: 18px;
    background: var(--surface);
    box-shadow: 7px 7px 0 var(--brand);
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    list-style: none;
}

.feature-list li {
    padding-left: 18px;
    border-left: 4px solid var(--mint);
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.character-card {
    min-height: 300px;
}

.portrait {
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    background: var(--night-2);
    box-shadow: 5px 5px 0 var(--night);
}

.character-card span {
    display: block;
    min-height: 46px;
    margin-top: 18px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
}

.offer-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    max-width: 900px;
    margin: 0 auto;
}

.value-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: -10px auto 34px;
}

.value-bar div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.value-bar strong {
    display: block;
    color: var(--brand);
    font-size: 1.5rem;
    line-height: 1;
}

.value-bar span {
    display: block;
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border: 3px solid rgba(255, 255, 255, 0.82);
    box-shadow: 10px 10px 0 var(--brand);
    transform: translateY(-12px);
}

.badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #fff;
    background: var(--coral);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.price {
    margin: 10px 0 8px;
    color: var(--ink);
    font-size: 3rem;
    font-weight: 950;
    line-height: 1;
}

.price span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 1rem;
}

.price-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 26px;
    color: var(--ink-soft);
    list-style: none;
}

.price-card li::before {
    content: "+";
    margin-right: 8px;
    color: var(--mint);
    font-weight: 950;
}

.price-card .btn {
    width: 100%;
    margin-top: auto;
}

.comparison {
    margin-top: 36px;
    padding: 24px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.96rem;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.comparison-table thead th {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.34);
}

.comparison-table tbody th {
    color: var(--ink);
    font-weight: 800;
    width: 42%;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.yes::before {
    content: "+ ";
    color: var(--mint);
    font-weight: 950;
}

.no {
    color: var(--muted);
}

.no::before {
    content: "- ";
}

.guarantee {
    margin-top: 18px;
    padding: 20px 24px;
    border: 1px solid rgba(49, 95, 159, 0.24);
    border-radius: var(--radius);
    background: rgba(106, 167, 255, 0.13);
    color: var(--ink-soft);
}

.guarantee strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 1.05rem;
}

.after-buy {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.after-buy .eyebrow {
    margin-bottom: 10px;
}

.after-buy h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.08;
}

.after-buy ol {
    display: grid;
    gap: 12px;
    list-style: none;
    counter-reset: buy;
}

.after-buy li {
    counter-increment: buy;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    color: var(--ink-soft);
}

.after-buy li::before {
    content: counter(buy);
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #07111f;
    background: var(--brand);
    font-weight: 900;
}

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

.faq-q {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    padding: 20px;
    color: var(--ink);
    font-weight: 850;
    cursor: pointer;
    text-align: left;
}

.faq-q span {
    flex: 0 0 auto;
    font-size: 1.2rem;
}

.faq-a {
    display: none;
    padding: 0 20px 20px;
    color: var(--ink-soft);
}

.faq-a.open {
    display: block;
}

.final-cta {
    padding: 100px 0;
    color: #fff;
    background:
        radial-gradient(circle at 50% 0%, rgba(45, 212, 164, 0.2), transparent 34%),
        var(--night);
    text-align: center;
}

.final-cta h2,
.final-cta p {
    margin-inline: auto;
}

.final-cta p {
    max-width: 620px;
    margin-top: 18px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
}

.final-cta .btn-primary {
    color: #07111f;
    background: var(--mint);
}

.final-cta small {
    color: rgba(255, 255, 255, 0.78);
}

.footer {
    padding: 32px 0;
    background: var(--night);
    color: #fff;
}

.footer .brand {
    color: #fff;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
}

.footer-links a {
    text-decoration: none;
}

@media (max-width: 980px) {
    .nav-container {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .menu-button {
        display: flex;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-links.open {
        position: absolute;
        top: 76px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 0;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface);
        box-shadow: var(--shadow);
    }

    .nav-links.open a {
        padding: 16px;
        border-bottom: 1px solid var(--line);
    }

    .hero-grid,
    .split,
    .demo-grid {
        grid-template-columns: 1fr;
    }

    .product-stage {
        justify-self: center;
    }

    .three-grid,
    .difference-grid,
    .outcome-grid,
    .session-grid,
    .method-grid,
    .value-bar,
    .offer-grid {
        grid-template-columns: 1fr;
    }

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

    .wow-card:nth-child(1),
    .wow-card:nth-child(2),
    .wow-card:nth-child(3),
    .wow-card:nth-child(4),
    .wow-card:nth-child(5) {
        grid-column: auto;
    }

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

    .price-card.popular {
        transform: none;
    }

    .difference-card.winner {
        transform: none;
    }

    .after-buy {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    body {
        padding-bottom: 78px;
    }

    .mobile-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 30;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(11, 16, 32, 0.92);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

    .mobile-cta .btn {
        min-height: 44px;
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .container,
    .nav-container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 70px 0;
    }

    .hero {
        padding: 48px 0 72px;
    }

    .hero-copy h1,
    .section-heading h2,
    .final-cta h2 {
        font-size: clamp(2.25rem, 12vw, 3.3rem);
    }

    .btn-large,
    .hero-actions .btn {
        width: 100%;
    }

    .product-stage {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .main-window {
        box-shadow: 8px 8px 0 var(--night), var(--shadow);
    }

    .live-demo {
        box-shadow: 8px 8px 0 var(--night), var(--shadow);
    }

    .feedback-demo {
        box-shadow: 8px 8px 0 var(--night), var(--shadow);
    }

    .mini-card {
        position: static;
        width: 100%;
    }

    .video-window {
        max-width: none;
        margin-left: 0;
    }

    .video-tile {
        grid-template-columns: 104px 1fr;
    }

    .catalog-card {
        grid-template-columns: 1fr;
    }

    .catalog-card video,
    .premium-cover {
        aspect-ratio: 16 / 9;
        height: auto;
        min-height: 180px;
    }

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

    .visual-panel img {
        box-shadow: 7px 7px 0 var(--night);
    }

    .comic-feature {
        box-shadow: 7px 7px 0 var(--night);
    }

    .comic-feature img {
        aspect-ratio: 4 / 4.8;
    }

    .comic-strip {
        margin-left: 0;
    }

    .comic-strip img:nth-child(2),
    .comic-strip img:nth-child(3) {
        transform: none;
    }

    .comic-note {
        position: static;
        width: 100%;
    }

    .review-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

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

    .comparison {
        padding: 16px;
    }

    .comparison-table {
        min-width: 620px;
    }

    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }
}
