﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
    --display-font: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
    --body-font: "Cormorant Garamond", "Times New Roman", serif;
    --bg: #08101c;
    --text: #f4f7ff;
    --muted: #cdd8ee;
    --accent: #f1c061;
    --accent-soft: #f9e2b2;
    --panel: rgba(10, 15, 26, 0.82);
    --panel-strong: rgba(8, 12, 21, 0.92);
    --border: rgba(205, 220, 250, 0.34);
    --glow: rgba(255, 219, 152, 0.28);
    --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.35);
    --shadow-deep: 0 24px 60px rgba(0, 0, 0, 0.48);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--text);
    background-color: var(--bg);
    background-image:
        linear-gradient(rgba(5, 9, 17, 0.62), rgba(5, 9, 17, 0.76)),
        image-set(
            url('finalimages/16x9_4K.webp') type('image/webp') 1x,
            url('finalimages/16x9_4K.jpg') type('image/jpeg') 2x
        );
    background-size: cover, cover;
    background-position: 75% 55%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    line-height: 1.55;
}

h1,
h2,
h3,
h4,
.brand-mark {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 700;
    letter-spacing: 0;
}

a {
    color: inherit;
}

.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

.narrow {
    max-width: 760px;
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 216, 248, 0.2);
    background: rgba(7, 11, 20, 0.86);
    backdrop-filter: blur(7px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 13px 0;
}

.brand-mark {
    font-size: clamp(1.46rem, 1.2rem + 1.14vw, 2.1rem);
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

nav a {
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    color: #ecf2ff;
    font-size: 0.98rem;
    font-weight: 600;
    transition: border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

nav a:hover,
nav a:focus-visible {
    color: var(--accent);
    border-color: rgba(255, 255, 255, 0.36);
    transform: translateY(-1px);
}

main {
    padding-bottom: 16px;
}

.hero-cinematic {
    min-height: clamp(560px, 80vh, 920px);
    display: flex;
    align-items: center;
    padding: 34px 0 50px;
    background: linear-gradient(rgba(5, 9, 17, 0.22), rgba(5, 9, 17, 0.5));
    border-bottom: 1px solid rgba(222, 232, 255, 0.12);
}

.hero-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    justify-content: start;
    max-width: 980px;
    margin: 0 auto;
}

.hero-copy,
.hero-media {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(150deg, var(--panel), rgba(9, 15, 25, 0.9));
    box-shadow: var(--shadow-deep);
}

.hero-copy {
    padding: clamp(28px, 4vw, 56px);
    width: 100%;
}

.eyebrow {
    margin: 0 0 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-soft);
}

.hero-copy h2 {
    font-size: clamp(2.4rem, 1.4rem + 3.6vw, 4.4rem);
    line-height: 1.02;
}

.hero-copy p {
    margin: 16px 0 0;
    font-size: clamp(1.06rem, 0.96rem + 0.64vw, 1.3rem);
    color: var(--muted);
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.action-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.action-button.primary {
    color: #161616;
    background: linear-gradient(135deg, #efbd60, #ffe09a);
    box-shadow: 0 10px 24px rgba(239, 189, 96, 0.28);
}

.action-button.ghost {
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.07);
}

.action-button:hover,
.action-button:focus-visible {
    transform: translateY(-1px);
}

.hero-media {
    padding: 10px;
    align-self: stretch;
}

.media-kicker {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.78rem;
    color: var(--accent-soft);
}

.media-frame {
    border: 1px solid rgba(218, 230, 255, 0.34);
    border-radius: 14px;
    min-height: 220px;
    background:
        radial-gradient(120% 100% at 20% 18%, rgba(122, 150, 236, 0.34), transparent 58%),
        linear-gradient(155deg, rgba(16, 24, 41, 0.92), rgba(10, 16, 28, 0.96));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 14px 32px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.media-frame:hover {
    transform: translateY(-3px);
    border-color: rgba(243, 200, 122, 0.62);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 38px rgba(0, 0, 0, 0.44), 0 0 0 1px var(--glow);
}

.media-stack {
    display: grid;
    gap: 14px;
}

.slot-video {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}


.media-frame p {
    margin: 0;
    padding: 16px;
    color: #dde5f8;
    font-size: 1rem;
}

.hero-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.intro-band,
.benefits-flow,
.impact-break,
.benefit-overlay,
.functions-modular,
.pricing-premium {
    padding: 16px 0;
}

.intro-band .narrow,
.benefits-flow .container,
.benefit-overlay .container,
.functions-modular .container,
.pricing-premium .container,
.checkout-shell .container,
footer .container {
    border-radius: 24px;
    border: 1px solid var(--border);
    background: linear-gradient(152deg, var(--panel), var(--panel-strong));
    box-shadow: var(--shadow-deep);
    padding: clamp(20px, 3.2vw, 40px);
}

.intro-band .narrow {
    text-align: center;
}

.intro-band h2 {
    font-size: clamp(1.95rem, 1.35rem + 2vw, 2.8rem);
    line-height: 1.08;
}

.intro-band p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.story-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(22px, 4.6vw, 64px);
    padding: clamp(30px, 6vw, 108px) 0;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
    max-width: 480px;
    border: 1px solid rgba(212, 225, 252, 0.3);
    border-radius: 18px;
    background: rgba(8, 13, 24, 0.84);
    box-shadow: var(--shadow-soft);
    padding: 20px;
}

.story-media {
    flex: 1.4;
}

.story-media .media-frame {
    min-height: clamp(220px, 36vh, 380px);
}

.micro-tag {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: var(--accent-soft);
}

.story-text h3 {
    margin: 8px 0 10px;
    font-size: clamp(1.6rem, 1.26rem + 0.9vw, 2.2rem);
}

.story-text p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--muted);
}

.story-text .micro-note {
    margin-top: 10px;
    font-size: 0.94rem;
    color: #e6ca95;
}

.impact-break .narrow {
    text-align: center;
    padding-top: clamp(70px, 14vw, 140px);
    padding-bottom: clamp(70px, 14vw, 140px);
}

.impact-break p {
    margin: 0;
    font-size: clamp(2rem, 1.2rem + 3vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.overlay-stage {
    position: relative;
    overflow: hidden;
    min-height: clamp(340px, 55vh, 620px);
}

.overlay-bg-frame {
    position: absolute;
    inset: 20px;
    border-radius: 18px;
    border: 1px solid rgba(219, 229, 253, 0.28);
    background:
        radial-gradient(120% 120% at 24% 20%, rgba(103, 138, 242, 0.3), transparent 60%),
        linear-gradient(160deg, rgba(12, 20, 34, 0.92), rgba(8, 14, 25, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #dae4fa;
    font-size: 1.05rem;
}

.overlay-card {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: clamp(120px, 20vh, 220px) 0 0;
    border-radius: 18px;
    border: 1px solid rgba(228, 238, 255, 0.34);
    background: rgba(8, 13, 24, 0.86);
    box-shadow: var(--shadow-deep);
    padding: 22px;
}

.overlay-card h3 {
    margin: 8px 0 10px;
    font-size: clamp(1.64rem, 1.3rem + 0.8vw, 2.1rem);
}

.overlay-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.functions-modular .section-head,
.pricing-head {
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: clamp(2rem, 1.35rem + 2vw, 3rem);
    line-height: 1.06;
}

.feature-dominant {
    border-radius: 20px;
    border: 1px solid rgba(213, 227, 255, 0.28);
    background: rgba(9, 14, 25, 0.84);
    box-shadow: var(--shadow-soft);
    padding: 20px;
}

.feature-text h3 {
    margin: 8px 0 10px;
    font-size: clamp(1.7rem, 1.3rem + 1vw, 2.3rem);
}

.feature-text p {
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.dominant-frame {
    margin-top: 14px;
    min-height: clamp(220px, 40vh, 380px);
}

.feature-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.feature-card {
    border-radius: 16px;
    border: 1px solid rgba(213, 227, 255, 0.28);
    background: rgba(9, 14, 25, 0.84);
    box-shadow: var(--shadow-soft);
    padding: 18px;
}

.feature-card h4 {
    margin: 8px 0 8px;
    font-size: 1.35rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.feature-card-media {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(213, 227, 255, 0.24);
}

.feature-card-media .slot-video {
    min-height: 160px;
}

.pricing-premium .container {
    background: linear-gradient(152deg, rgba(8, 12, 22, 0.82), rgba(8, 13, 24, 0.84));
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.pricing-card {
    position: relative;
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(213, 226, 252, 0.28);
    background: linear-gradient(155deg, rgba(13, 19, 34, 0.82), rgba(9, 14, 24, 0.82));
    box-shadow: var(--shadow-soft);
    padding: 26px 18px;
}

.pricing-card h3 {
    font-size: 1.65rem;
}

.price {
    margin: 12px 0 18px;
    font-size: 2.35rem;
    line-height: 1;
    color: var(--accent);
}

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

.pricing-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #151515;
    background: linear-gradient(135deg, #efbd5d, #ffe19e);
    box-shadow: 0 10px 24px rgba(239, 189, 93, 0.27);
    transition: transform 0.2s ease;
}

.pricing-cta:hover,
.pricing-cta:focus-visible {
    transform: translateY(-1px);
}

.pay-note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.save-note {
    margin: 6px 0 0;
    color: #f4d79e;
    font-size: 0.92rem;
}

.plan-note {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.best-value-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    padding: 4px 12px;
    background: var(--accent);
    color: #111;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-card.best-value {
    border-color: rgba(242, 194, 101, 0.9);
    background: linear-gradient(155deg, rgba(48, 36, 9, 0.76), rgba(14, 12, 8, 0.82));
}

/* Motion */
.reveal {
    --entry-x: 0px;
    --entry-y: 32px;
    --parallax-y: 0px;
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(var(--entry-x), var(--entry-y), 0);
    transition: opacity 0.82s ease, filter 0.82s ease, transform 0.82s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, var(--parallax-y), 0);
}

.from-left {
    --entry-x: -130px;
}

.from-right {
    --entry-x: 130px;
}

.from-up {
    --entry-y: 42px;
}

/* Checkout */
.content-section {
    padding: 20px 0;
}

.content-section.alt .container {
    background: linear-gradient(152deg, var(--panel), var(--panel-strong));
}

.checkout-main {
    padding: 30px 0 52px;
}

.checkout-intro {
    margin: 0;
    font-size: 1.1rem;
    color: var(--muted);
}

.checkout-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.plan-picker {
    display: grid;
    gap: 10px;
}

.plan-option {
    width: 100%;
    text-align: left;
    border-radius: 14px;
    border: 1px solid rgba(209, 222, 251, 0.26);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 12px 14px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.plan-option:hover,
.plan-option:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.42);
}

.plan-option.active {
    border-color: rgba(242, 194, 101, 0.9);
    background: rgba(242, 194, 101, 0.14);
}

.plan-name {
    display: block;
    font-weight: 700;
    font-size: 1.02rem;
}

.plan-amount {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.paypal-panel {
    border-radius: 14px;
    border: 1px solid rgba(209, 222, 251, 0.26);
    background: rgba(255, 255, 255, 0.05);
    padding: 14px;
}

.checkout-selection {
    margin: 0;
    font-size: 1.04rem;
}

#paypal-button-slot {
    margin-top: 12px;
    min-height: 148px;
}

.checkout-hint,
.checkout-lock,
.checkout-status {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.checkout-lock {
    color: #f4d79e;
}

.checkout-status.success {
    color: #9decbc;
}

.checkout-status.error {
    color: #ffb9b9;
}

footer {
    padding: 12px 0 34px;
}

footer .container {
    text-align: center;
    background: linear-gradient(152deg, rgba(10, 16, 29, 0.95), rgba(8, 13, 23, 0.95));
}

footer p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 1rem;
}

footer p:last-child {
    margin-bottom: 0;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
    text-decoration: underline;
}

.fine-print {
    font-size: 0.92rem;
}

@media (min-width: 800px) {
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .pricing-card.best-value {
        grid-column: span 2;
        max-width: 560px;
        margin: 0 auto;
    }

    .checkout-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 18px;
    }
}

@media (min-width: 1080px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pricing-card.best-value {
        grid-column: auto;
        max-width: none;
        transform: scale(1.05);
    }
}

@media (min-width: 900px) {
    body {
        background-image:
            linear-gradient(rgba(5, 9, 17, 0.56), rgba(5, 9, 17, 0.66)),
            image-set(
                url('finalimages/16x9_4K.webp') type('image/webp') 1x,
                url('finalimages/16x9_4K.jpg') type('image/jpeg') 2x
            );
        background-position: 75% 55%;
    }
}

@media (min-width: 1400px) {
    body {
        background-image:
            linear-gradient(rgba(5, 9, 17, 0.54), rgba(5, 9, 17, 0.64)),
            image-set(
                url('finalimages/21x9_ultrawide_4K.webp') type('image/webp') 1x,
                url('finalimages/21x9_ultrawide_4K.jpg') type('image/jpeg') 2x
            );
        background-position: 75% 55%;
    }
}

@media (max-width: 980px) {
    body {
        background-image:
            linear-gradient(rgba(5, 9, 17, 0.6), rgba(5, 9, 17, 0.7)),
            image-set(
                url('finalimages/4x3_4K.webp') type('image/webp') 1x,
                url('finalimages/4x3_4K.jpg') type('image/jpeg') 2x
            );
        background-position: 64% 56%;
        background-attachment: scroll;
    }

    .hero-cinematic {
        min-height: auto;
        padding-top: 44px;
    }

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

    .story-block,
    .story-block.reverse {
        flex-direction: column;
        align-items: stretch;
        padding: 26px 0;
        gap: 14px;
    }

    .story-text {
        max-width: none;
    }

    .overlay-card {
        margin-top: 180px;
    }
}

@media (max-width: 760px) {
    body {
        background-image:
            linear-gradient(rgba(5, 9, 17, 0.62), rgba(5, 9, 17, 0.72)),
            image-set(
                url('finalimages/9x16_mobile_4K.webp') type('image/webp') 1x,
                url('finalimages/9x16_mobile_4K.jpg') type('image/jpeg') 2x
            );
        background-position: 65% 55%;
        background-attachment: scroll;
    }

    .header-content {
        justify-content: center;
        text-align: center;
    }

    nav {
        width: 100%;
        justify-content: center;
    }

    .hero-cinematic {
        padding: 34px 0 24px;
    }

    .hero-copy,
    .hero-media,
    .intro-band .narrow,
    .benefits-flow .container,
    .benefit-overlay .container,
    .functions-modular .container,
    .pricing-premium .container,
    .checkout-shell .container,
    footer .container {
        border-radius: 18px;
    }

    .from-left {
        --entry-x: -56px;
    }

    .from-right {
        --entry-x: 56px;
    }
}

/* --- Layout revamp additions --- */
.section-pad {
    padding: 16px 0;
}

.panel-surface {
    border-radius: 24px;
    border: 1px solid var(--border);
    background-image:
        linear-gradient(152deg, var(--panel), var(--panel-strong)),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: auto, 28px 28px, 28px 28px;
    background-position: 0 0, 0 0, 0 0;
    box-shadow: var(--shadow-deep);
    padding: clamp(20px, 3.2vw, 40px);
}

.section-subcopy {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-highlights {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.hero-highlights li {
    position: relative;
    padding-left: 20px;
}

.hero-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
}

.hero-copy .hero-subnote {
    margin: 14px 0 0;
    font-size: 0.98rem;
    color: #f2d9a8;
}

.hero-meta {
    margin: 14px 0 0;
    font-size: 0.98rem;
    color: var(--accent-soft);
}

.loop-grid,
.system-grid,
.rail-grid,
.scale-grid,
.mode-grid,
.student-grid,
.setup-grid,
.overview-grid {
    display: grid;
    gap: 16px;
}

.overview-copy {
    border-radius: 16px;
    border: 1px solid rgba(213, 227, 255, 0.28);
    background: rgba(9, 14, 25, 0.84);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    display: grid;
    gap: 10px;
}

.overview-copy h3 {
    margin: 0;
    font-size: clamp(1.5rem, 1.15rem + 0.9vw, 2.05rem);
}

.reward-card {
    border-radius: 18px;
    border: 1px solid rgba(213, 227, 255, 0.2);
    background: rgba(8, 13, 24, 0.7);
    box-shadow: var(--shadow-soft);
    padding: clamp(16px, 2vw, 24px);
    overflow: hidden;
}

.mac-waitlist {
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.mac-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mac-form input {
    flex: 1;
    min-width: 220px;
    border-radius: 999px;
    border: 1px solid rgba(213, 227, 255, 0.28);
    background: rgba(9, 14, 25, 0.84);
    color: var(--text);
    padding: 10px 14px;
    font-size: 1rem;
    font-family: inherit;
}

.mac-form input:focus {
    outline: none;
    border-color: rgba(243, 200, 122, 0.68);
    box-shadow: 0 0 0 2px rgba(241, 192, 97, 0.18);
}

.mac-form button {
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    color: #151515;
    background: linear-gradient(135deg, #efbd5d, #ffe19e);
    box-shadow: 0 10px 22px rgba(239, 189, 93, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease;
    font-family: inherit;
}

.mac-form button:hover,
.mac-form button:focus-visible {
    transform: translateY(-1px);
}

.mac-count {
    margin: 0;
    color: #f2d9a8;
    font-size: 1rem;
}

.mac-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.proof-grid,
.faq-grid,
.trust-grid {
    display: grid;
    gap: 12px;
}

.trust-grid {
    margin-top: 18px;
}

.proof-card,
.faq-card {
    border-radius: 16px;
    border: 1px solid rgba(213, 227, 255, 0.28);
    background: rgba(9, 14, 25, 0.84);
    box-shadow: var(--shadow-soft);
    padding: 18px;
}

.proof-card p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 1.05rem;
}

.proof-name {
    color: #e6ca95;
    font-size: 0.95rem;
}

.risk-title {
    margin: 20px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--accent-soft);
}

.trust-item {
    border-radius: 999px;
    border: 1px solid rgba(240, 218, 160, 0.38);
    padding: 8px 14px;
    color: #f6e7c0;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    text-align: center;
}

.faq-question {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.faq-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.loop-card,
.system-card,
.mode-card,
.setup-card {
    border-radius: 16px;
    border: 1px solid rgba(213, 227, 255, 0.28);
    background: rgba(9, 14, 25, 0.84);
    box-shadow: var(--shadow-soft);
    padding: 18px;
}

.loop-step {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-soft);
    margin-bottom: 8px;
}

.loop-card h3,
.system-card h3,
.mode-card h3,
.setup-card h3 {
    margin: 6px 0 8px;
    font-size: 1.4rem;
}

.loop-card p,
.system-card p,
.mode-card p,
.setup-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.callout-stage {
    position: relative;
}

.callout-markers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.callout-marker {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(241, 192, 97, 0.92);
    color: #121212;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
    pointer-events: auto;
}

.callout-legend {
    border-radius: 16px;
    border: 1px solid rgba(213, 227, 255, 0.28);
    background: rgba(9, 14, 25, 0.84);
    box-shadow: var(--shadow-soft);
    padding: 18px;
}

.legend-title {
    margin: 0;
    font-size: 1.2rem;
}

.legend-list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 1.02rem;
}

.legend-list li {
    margin-bottom: 8px;
}

.legend-note {
    margin: 10px 0 0;
    color: #e6ca95;
    font-size: 0.95rem;
}

.system-card,
.mode-card {
    display: grid;
    gap: 16px;
    align-items: center;
}

.system-copy,
.mode-copy {
    display: grid;
    gap: 6px;
}

.rail-copy p,
.scale-copy p,
.student-copy p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 1.06rem;
}

.rail-list,
.setup-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 1rem;
}

.rail-list li,
.setup-list li {
    margin-bottom: 8px;
}

.scale-sets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.scale-sets span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(240, 218, 160, 0.38);
    padding: 6px 12px;
    font-size: 0.9rem;
    color: #f6e7c0;
    background: rgba(255, 255, 255, 0.05);
}

.placeholder {
    border-style: dashed;
    color: #d5def3;
    font-size: 0.98rem;
    text-align: center;
    padding: 24px;
    min-height: 220px;
}


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

.setup-card {
    min-height: 180px;
}

@media (min-width: 900px) {
    .overview-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: center;
    }

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

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

    .system-card {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    }

    .rail-grid,
    .scale-grid,
    .student-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: center;
    }

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

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

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

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

@media (min-width: 1100px) {
    .hero-stage {
        position: static;
        left: 0;
    }
}

@media (max-width: 900px) {
    .callout-marker {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}
