:root {
    --bar-black: #0A0A0A;
    --steel: #1F2126;
    --volt: #D4FF3A;
    --bone: #F5F4F0;
    --smoke: #9A9A9A;
    --earned: #5BD992;
    --drop: #FF4D4F;
    --sweat: #FF8A00;
}

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

html, body {
    background: var(--bar-black);
    color: var(--bone);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter Tight", system-ui, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ─── Header ─── */
header {
    border-bottom: 1px solid var(--steel);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 10;
}

.wordmark {
    font-weight: 900;
    letter-spacing: 0.15em;
    font-size: 16px;
    color: var(--bone);
    text-decoration: none;
}

.wordmark .g-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--volt);
    margin-left: 4px;
    vertical-align: 2px;
}

header nav a {
    color: var(--smoke);
    text-decoration: none;
    margin-left: 24px;
    font-size: 14px;
}

header nav a:hover {
    color: var(--bone);
}

/* ─── Hero — two-column on desktop, stacked on mobile ─── */
.hero {
    position: relative;
    padding: 80px 32px;
    min-height: min(720px, 88vh);
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
}

.hero-inner {
    text-align: left;
    max-width: 640px;
}

.hero-art {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-art svg,
.hero-art img {
    width: 100%;
    max-width: 520px;
    height: auto;
    animation: floatY 6s ease-in-out infinite;
    filter: drop-shadow(0 16px 40px rgba(212, 255, 58, 0.18));
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.kicker {
    color: var(--smoke);
    font-size: 13px;
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.big-headline {
    font-size: clamp(48px, 8vw, 104px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--bone);
    margin-bottom: 28px;
}

.hero-lede {
    font-size: 19px;
    line-height: 1.45;
    color: var(--smoke);
    max-width: 540px;
    margin: 0 0 32px;
}

.hero-meta {
    color: var(--smoke);
    font-size: 12px;
    margin-top: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── Generic section + band ─── */
section {
    position: relative;
}

.section-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

.band {
    padding: 80px 32px;
    text-align: center;
}

.band--steel {
    background: var(--steel);
}

.band--inset {
    border-top: 1px solid var(--steel);
    border-bottom: 1px solid var(--steel);
    margin: 60px 0;
}

.pull-quote {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--bone);
    letter-spacing: -0.01em;
    max-width: 900px;
    margin: 0 auto;
}

.pull-quote .volt {
    color: var(--volt);
}

/* ─── Programs ─── */
.programs {
    padding: 100px 0 60px;
}

.programs h2 {
    text-align: center;
    margin-bottom: 48px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.program-card {
    background: var(--steel);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(212, 255, 58, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.program-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 255, 58, 0.25);
}

.program-art {
    width: 100%;
    aspect-ratio: 1;
    max-height: 200px;
    margin-bottom: 20px;
    background: rgba(10, 10, 10, 0.35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.program-art svg {
    width: 100%;
    height: 100%;
}

.program-num {
    color: var(--volt);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3em;
    margin-bottom: 6px;
    display: block;
}

.program-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--bone);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.program-meta {
    color: var(--smoke);
    font-size: 13px;
    margin-bottom: 14px;
}

.program-card p:last-child {
    color: var(--bone);
    font-size: 15px;
    line-height: 1.55;
}

/* ─── Manifesto ─── */
.manifesto {
    padding: 80px 0 100px;
}

.manifesto h2 {
    margin-bottom: 24px;
    max-width: 880px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.manifesto p {
    font-size: 20px;
    line-height: 1.55;
    color: var(--bone);
    max-width: 720px;
    margin: 0 auto 16px;
    text-align: center;
}

/* ─── Features ─── */
.features {
    padding: 60px 0 100px;
}

.features h2 {
    text-align: center;
    margin-bottom: 48px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature {
    background: var(--steel);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(212, 255, 58, 0.04);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    background: rgba(212, 255, 58, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature strong {
    display: block;
    color: var(--bone);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 6px;
}

.feature p {
    color: var(--smoke);
    font-size: 15px;
    line-height: 1.55;
}

/* ─── Pricing ─── */
.pricing {
    text-align: center;
    padding: 60px 0;
}

.pricing-inner {
    max-width: 540px;
}

.pricing h2 {
    margin-bottom: 24px;
}

.big-price {
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 900;
    line-height: 1;
    color: var(--volt);
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px rgba(212, 255, 58, 0.25);
}

.pricing .program-meta {
    margin-bottom: 28px;
    font-size: 15px;
}

/* ─── Closer ─── */
.closer {
    text-align: center;
    padding: 80px 0 60px;
}

.closer h2 {
    margin-bottom: 16px;
}

.closer p {
    color: var(--smoke);
    font-size: 20px;
}

/* ─── h2 shared ─── */
h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--bone);
}

h3 {
    color: var(--bone);
}

p {
    color: var(--bone);
}

/* ─── CTA button ─── */
.cta {
    display: inline-block;
    background: var(--volt);
    color: var(--bar-black);
    font-weight: 800;
    font-size: 17px;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 24px rgba(212, 255, 58, 0.18);
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(212, 255, 58, 0.32);
}

/* ─── Links ─── */
a {
    color: var(--volt);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ─── Footer ─── */
footer {
    border-top: 1px solid var(--steel);
    padding: 48px 32px;
    color: var(--smoke);
    font-size: 13px;
    text-align: center;
}

footer a {
    color: var(--smoke);
    margin: 0 12px;
}

footer a:hover {
    color: var(--bone);
}

footer .copy {
    margin-top: 18px;
}

/* ─── Legal / support pages (narrower column) ─── */
.page {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 32px 96px;
}

.page h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--bone);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page .lede {
    color: var(--smoke);
    font-size: 19px;
    margin-bottom: 40px;
}

.page .effective {
    color: var(--smoke);
    font-size: 12px;
    margin-bottom: 32px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page h2 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 12px;
}

.page h3 {
    font-size: 17px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 6px;
}

.page p {
    color: var(--bone);
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 16px;
}

.page ul, .page ol {
    padding-left: 22px;
    margin-bottom: 16px;
}

.page li {
    color: var(--bone);
    margin-bottom: 8px;
}

.card {
    background: var(--steel);
    border-radius: 20px;
    padding: 24px;
    margin: 16px 0;
}

/* ─── Tablet & narrow desktop — collapse hero to single column ─── */
@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        padding: 60px 32px;
        min-height: auto;
    }
    .hero-inner {
        text-align: center;
        max-width: 720px;
        margin: 0 auto;
        order: 1;
    }
    .hero-art {
        order: 2;
    }
    .hero-art svg {
        max-width: 360px;
    }
    .hero-lede {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ─── Mobile ─── */
@media (max-width: 720px) {
    header { padding: 16px 20px; }
    header nav a { margin-left: 14px; font-size: 13px; }
    .hero { padding: 48px 20px; }
    .hero-art svg, .hero-art img { max-width: 280px; }
    .section-inner, .band, .page { padding-left: 20px; padding-right: 20px; }
    .program-card { padding: 24px; }
    .feature { padding: 22px; }
    .big-headline { letter-spacing: -0.03em; }
    .programs, .features, .manifesto { padding: 60px 0; }
}
