:root {
    --bg: #050b05;
    --bg-alt: #0b160d;
    --surface: rgba(10, 22, 12, 0.72);
    --surface-strong: rgba(14, 30, 16, 0.92);
    --surface-soft: rgba(149, 255, 143, 0.05);
    --line: rgba(138, 255, 135, 0.16);
    --line-strong: rgba(202, 255, 118, 0.3);
    --text: #f7fff4;
    --muted: #adc4a9;
    --accent: #89ff39;
    --accent-2: #4bf26a;
    --accent-3: #deff72;
    --accent-deep: #1d4e22;
    --danger: #ff7d86;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.22);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, rgba(137, 255, 57, 0.18), transparent 24%),
        radial-gradient(circle at 90% 14%, rgba(75, 242, 106, 0.12), transparent 20%),
        radial-gradient(circle at 50% 55%, rgba(222, 255, 114, 0.06), transparent 26%),
        linear-gradient(180deg, #030603 0%, #071007 36%, #0d1a0f 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 86%);
    opacity: 0.45;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-shell {
    position: relative;
    overflow: hidden;
}

.hero,
.section {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
}

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

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0 30px;
}

.brand,
.eyebrow,
h1,
h2,
h3,
.toggle-chip,
.button,
.feature-list li::before,
.bullet-list li::before {
    font-family: "Space Grotesk", sans-serif;
}

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

.brand-logo {
    display: block;
    height: 38px;
    width: auto;
    border-radius: 8px;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 4px 12px rgba(137, 255, 57, 0.15));
}

.brand-name {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-2);
    background: rgba(75, 242, 106, 0.08);
    border: 1px solid rgba(75, 242, 106, 0.15);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 0 rgba(75, 242, 106, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(75, 242, 106, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(75, 242, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(75, 242, 106, 0); }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--muted);
    font-size: 0.96rem;
    transition: color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--text);
    transform: translateY(-1px);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-card,
.prestige-card,
.step-card,
.price-card,
.academy-card,
.info-panel,
.cta-card,
.edge-card,
.chain-pill {
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
        var(--surface);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.hero-copy,
.hero-card {
    position: relative;
    border-radius: var(--radius-xl);
}

.hero-copy {
    padding: 42px;
    overflow: hidden;
}

.hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 12%, rgba(222, 255, 114, 0.08), transparent 20%),
        radial-gradient(circle at 88% 84%, rgba(75, 242, 106, 0.1), transparent 26%);
    pointer-events: none;
}

.hero-copy::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -54px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(137, 255, 57, 0.22), rgba(75, 242, 106, 0.02));
    filter: blur(10px);
}

.eyebrow {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.76rem;
    color: var(--accent-2);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 11ch;
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 5.5vw, 5.9rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
}

h2 {
    max-width: 14ch;
    margin-bottom: 14px;
    font-size: clamp(2.1rem, 4vw, 3.7rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.28rem;
}

.hero-text,
.section-heading p:last-child,
.academy-card p,
.cta-card p,
.bullet-list,
.feature-list,
.step-card p,
.price-card p,
.info-panel p,
.pricing-meta,
.nav-link,
.prestige-card p,
.edge-card p,
.chain-pill span {
    color: var(--muted);
}

.hero-text {
    max-width: 60ch;
    margin-bottom: 24px;
    font-size: 1.03rem;
    line-height: 1.76;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button:not(.button-secondary):not(.button-ghost) {
    color: #091108;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow: 0 18px 36px rgba(137, 255, 57, 0.16);
}

.button-secondary,
.button-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-color: var(--line);
}

.button-secondary:hover,
.button-ghost:hover,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-soft);
}

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

.hero-metrics article {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-metrics strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.18rem;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-card {
    padding: 18px;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(137, 255, 57, 0.1), transparent 28%);
    pointer-events: none;
}

.screen-header {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.screen-header span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.hero-card-body {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08)),
        linear-gradient(135deg, rgba(137, 255, 57, 0.13), rgba(75, 242, 106, 0.05));
}

.signal,
.account-panel,
.pnl-row,
.chain-pill {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.signal,
.account-panel,
.pnl-row {
    align-items: center;
}

.signal {
    margin-bottom: 22px;
}

.signal p,
.account-panel span,
.pnl-row span,
.progress-stack label {
    color: var(--muted);
    font-size: 0.92rem;
}

.signal strong {
    color: var(--accent-3);
}

.account-panel {
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 18px;
}

.account-panel strong,
.pnl-row strong {
    font-size: 1.04rem;
}

.pnl-row {
    margin-bottom: 18px;
}

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

.progress-bar {
    width: 100%;
    height: 10px;
    margin-top: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-3), var(--accent-2));
}

.progress-bar.danger span {
    background: linear-gradient(90deg, #f4b05e, var(--danger));
}

.feature-list,
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.feature-list li,
.bullet-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    line-height: 1.6;
}

.feature-list li::before,
.bullet-list li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
}

.section {
    padding: 14px 0 90px;
}

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

.prestige-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.prestige-card,
.edge-card,
.step-card,
.price-card,
.academy-card,
.info-panel,
.cta-card {
    border-radius: var(--radius-lg);
}

.prestige-card {
    padding: 24px;
}

.prestige-card span,
.edge-card span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent-3);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.prestige-card p {
    margin: 0;
    line-height: 1.65;
}

.edge-grid,
.steps-grid,
.pricing-grid,
.standards-section {
    display: grid;
    gap: 18px;
}

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

.edge-card,
.step-card,
.info-panel {
    padding: 28px;
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(137, 255, 57, 0.2), rgba(75, 242, 106, 0.1));
    color: var(--text);
    font-weight: 700;
}

.pricing-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.pricing-toggle {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.toggle-chip {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    cursor: pointer;
    transition: all 160ms ease;
}

.toggle-chip.active,
.toggle-chip:hover,
.toggle-chip:focus-visible {
    color: #091108;
    background: var(--accent-2);
    border-color: transparent;
}

.pricing-meta {
    min-height: 24px;
    margin-bottom: 18px;
}

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

.price-card {
    position: relative;
    padding: 24px;
    display: grid;
    gap: 18px;
    overflow: hidden;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -35% auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(137, 255, 57, 0.16), transparent 60%);
    pointer-events: none;
}

.price-card.featured {
    border-color: var(--line-strong);
    background:
        linear-gradient(180deg, rgba(137, 255, 57, 0.1), rgba(255, 255, 255, 0.02)),
        var(--surface-strong);
}

.price-card header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
}

.price-card strong {
    font-size: 2rem;
}

.price-card small {
    color: var(--muted);
}

.price-badge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(137, 255, 57, 0.14);
    color: var(--accent-3);
    font-size: 0.8rem;
    white-space: nowrap;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.price-card ul li {
    padding-left: 18px;
    position: relative;
}

.price-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent-2);
}

.academy-card {
    margin-top: 18px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.academy-card strong {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--accent-3);
}

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

.info-panel.accent {
    background:
        radial-gradient(circle at top right, rgba(137, 255, 57, 0.14), transparent 32%),
        var(--surface);
}

.rule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.rule-card {
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.03);
}

.rule-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.rule-card strong {
    font-size: 1.2rem;
}

.chain-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.chain-pill {
    align-items: center;
    padding: 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.chain-pill strong {
    font-size: 1rem;
}

.chain-pill span {
    font-size: 0.9rem;
}

.cta-section {
    padding-bottom: 96px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    background:
        radial-gradient(circle at 20% 20%, rgba(222, 255, 114, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        var(--surface-strong);
}

@media (max-width: 1080px) {
    .hero-grid,
    .prestige-strip,
    .edge-grid,
    .steps-grid,
    .pricing-grid,
    .standards-section,
    .chain-row {
        grid-template-columns: 1fr;
    }

    .pricing-heading,
    .academy-card,
    .cta-card {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 720px) {
    .hero,
    .section {
        width: min(100% - 24px, 1220px);
    }

    .topbar,
    .nav-actions {
        flex-direction: column;
        align-items: start;
    }

    .brand-logo {
        width: min(240px, 72vw);
    }

    .hero-copy,
    .hero-card,
    .prestige-card,
    .edge-card,
    .step-card,
    .price-card,
    .academy-card,
    .info-panel,
    .cta-card,
    .chain-pill {
        padding: 22px;
        border-radius: 24px;
    }

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

    .button,
    .button-secondary,
    .button-ghost {
        width: 100%;
    }
}
