@font-face {
    font-family: "GothamThin";
    src: url("/assets/font/gotham-thin-webfont.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GothamBold";
    src: url("/assets/font/gotham-bold-webfont.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-base: #0a081d;
    --bg-panel: #11102a;
    --bg-panel-2: #141232;
    --text: #f6f7ff;
    --text-muted: #b6b9d1;
    --line: rgba(163, 175, 255, 0.22);
    --line-strong: rgba(163, 175, 255, 0.36);
    --blue: #5aa8ff;
    --violet: #8a63ff;
    --gold: #d7af58;
    --success: #3dd08b;
    --error: #ff7d89;
    --shadow-soft: 0 20px 45px rgba(5, 7, 24, 0.45);
    --radius-card: 18px;
    --radius-button: 12px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background:
        radial-gradient(900px 500px at -4% -10%, rgba(122, 97, 255, 0.24), transparent 66%),
        radial-gradient(820px 420px at calc(24% - 100px) 8%, rgba(75, 142, 255, 0.2), transparent 68%),
        linear-gradient(180deg, #090719 0%, var(--bg-base) 48%, #090716 100%);
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    width: min(1120px, 100% - 2.25rem);
    margin: 0 auto;
}

.narrow {
    width: min(720px, 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
    background: rgba(10, 8, 29, 0.68);
    border-bottom: 1px solid rgba(167, 175, 255, 0.14);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.58rem;
    text-decoration: none;
    color: var(--text);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
}

.brand-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 7px;
    box-shadow: 0 8px 18px rgba(17, 34, 101, 0.4);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-list a {
    color: #d3d7ed;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.82rem;
    border-radius: 999px;
    transition: 180ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a[aria-current='page'] {
    color: #ffffff;
    background: rgba(132, 152, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(142, 163, 255, 0.32);
}

.hero {
    padding: clamp(2.5rem, 5vw, 5.2rem) 0 clamp(2rem, 4vw, 3rem);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: clamp(0.8rem, 2.6vw, 2rem);
}

.hero-copy {
    max-width: 560px;
}

.hero-eyebrow {
    margin: 0 0 0.7rem;
    color: #c6b4ff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 700;
}

.hero h1 {
    margin: 0;
    display: grid;
    gap: 0.28rem;
}

.hero-kicker {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(2.8rem, 6.9vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #ffffff;
}

.hero-subhead {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.45rem, 2.9vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.012em;
    color: #f8f8ff;
    max-width: 15ch;
}

.hero-description {
    margin: 1.05rem 0 0;
    color: var(--text-muted);
    max-width: 52ch;
}

.hero-actions {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.35rem;
}

.btn {
    border: 1px solid transparent;
    border-radius: var(--radius-button);
    padding: 0.75rem 1.1rem;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}

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

.btn-primary {
    background: linear-gradient(135deg, #3563ff 0%, #7251ff 56%, #7f55eb 100%);
    border-color: rgba(163, 178, 255, 0.44);
    box-shadow: 0 12px 30px rgba(54, 81, 204, 0.44);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 14px 34px rgba(76, 105, 239, 0.46);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(176, 187, 255, 0.32);
    color: #dce1ff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: rgba(176, 187, 255, 0.56);
    background: rgba(255, 255, 255, 0.08);
}

.coming-soon p {
    margin: 0;
    color: #aeb5dc;
    font-size: 0.9rem;
    font-weight: 600;
}

.store-badges {
    margin-top: 0.55rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.store-badge {
    text-decoration: none;
    border-radius: 12px;
    border: 1.5px solid rgba(230, 235, 255, 0.86);
    background: #050608;
    color: #f9faff;
    min-width: 206px;
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.62rem;
    padding: 0.55rem 0.82rem;
    box-shadow: 0 8px 24px rgba(8, 11, 28, 0.42);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
    border-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(8, 11, 28, 0.52);
}

.store-badge-icon {
    width: 30px;
    flex: 0 0 30px;
    text-align: center;
    font-size: 1.7rem;
    line-height: 1;
}

.store-badge-text {
    display: grid;
    gap: 0.03rem;
    line-height: 1;
}

.store-badge-kicker {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    color: #edf0ff;
}

.store-badge-label {
    font-size: 1.56rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.play-icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.play-icon::before {
    content: '';
    position: absolute;
    inset: 2px 0 2px 4px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background:
        linear-gradient(180deg, #4fd7ff 0 34%, #48db5a 34% 66%, #ffcc00 66% 100%);
    border-radius: 2px;
}

.hero-art {
    position: relative;
    min-height: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-art::after {
    content: none;
}

.hero-art img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-position: center;
    filter: saturate(1.06) contrast(1.02);
}

.hero-art-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 1.5rem;
    color: #d1d7ff;
    background:
        radial-gradient(circle at 50% 10%, rgba(113, 177, 255, 0.2), transparent 45%),
        linear-gradient(180deg, rgba(10, 8, 29, 0.24), rgba(10, 8, 29, 0.7));
}

.hero-art-fallback code {
    color: #f7e2ba;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
}

.section {
    padding: clamp(1.4rem, 3.2vw, 2.1rem) 0;
}

.section-tight {
    padding-top: clamp(2rem, 3.2vw, 3rem);
    padding-bottom: 0.4rem;
}

.section-head h2,
.page-lead h1,
.policy-layout h2,
.glass-card h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: -0.015em;
}

.section-head h2,
.page-lead h1 {
    margin: 0;
    font-size: clamp(1.85rem, 2.8vw, 2.8rem);
    line-height: 1.1;
}

.page-lead p {
    margin: 0.8rem 0 0;
    color: var(--text-muted);
    max-width: 72ch;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

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

.glass-card,
.policy-layout,
form {
    background: linear-gradient(180deg, rgba(19, 18, 46, 0.84), rgba(13, 13, 34, 0.84));
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.glass-card {
    padding: 1.2rem;
}

.glass-card h3 {
    margin: 0;
    font-size: 1.22rem;
}

.glass-card p {
    margin: 0.72rem 0 0;
    color: var(--text-muted);
}

.feature-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.72rem;
}

.feature-list li {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(17, 17, 40, 0.65);
    padding: 0.85rem 0.95rem;
    color: #e6e8ff;
}

.section-editorial .editorial-inner {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(170, 178, 255, 0.2);
    background:
        radial-gradient(560px 220px at 8% 12%, rgba(113, 169, 255, 0.18), transparent 58%),
        radial-gradient(500px 220px at 90% 18%, rgba(138, 99, 255, 0.2), transparent 58%),
        linear-gradient(180deg, rgba(20, 18, 52, 0.95), rgba(13, 12, 34, 0.95));
    padding: clamp(1.3rem, 3vw, 2rem);
    overflow: hidden;
}

.section-editorial h2 {
    margin: 0;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.section-editorial p {
    color: var(--text-muted);
    max-width: 70ch;
}

.policy-layout {
    padding: clamp(1.1rem, 2vw, 1.8rem);
}

.policy-layout h2 {
    margin: 1.55rem 0 0.5rem;
    font-size: clamp(1.2rem, 1.95vw, 1.58rem);
}

.policy-layout h2:first-child {
    margin-top: 0;
}

.policy-layout h3 {
    margin: 0.85rem 0 0.45rem;
    font-size: 1.02rem;
}

.policy-layout p,
.policy-layout ul,
.policy-layout ol {
    margin: 0;
    color: #d8dbf3;
}

.policy-layout ul,
.policy-layout ol {
    padding-left: 1.2rem;
    margin-top: 0.45rem;
}

.policy-layout li + li {
    margin-top: 0.3rem;
}

.policy-layout a {
    color: #d6c4ff;
}

form {
    padding: 1.2rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-size: 0.94rem;
    font-weight: 600;
    color: #eff1ff;
}

input,
textarea,
button {
    font: inherit;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(165, 176, 255, 0.35);
    border-radius: 12px;
    background: rgba(12, 11, 33, 0.88);
    color: #f8f9ff;
    padding: 0.72rem 0.82rem;
}

input::placeholder,
textarea::placeholder {
    color: #99a3cd;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
    outline: 2px solid rgba(116, 168, 255, 0.8);
    outline-offset: 2px;
}

.honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.9rem;
    border: 1px solid transparent;
}

.alert.success {
    color: #d5ffe7;
    border-color: rgba(84, 196, 136, 0.6);
    background: rgba(30, 100, 66, 0.34);
}

.alert.error,
.field-error {
    color: #ffd6da;
}

.alert.error {
    border-color: rgba(255, 125, 137, 0.6);
    background: rgba(126, 39, 53, 0.34);
}

.field-error {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
}

.site-footer {
    margin-top: clamp(2.2rem, 4vw, 3.5rem);
    border-top: 1px solid rgba(161, 174, 255, 0.18);
    background: rgba(8, 7, 23, 0.8);
}

.footer-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #aeb6dd;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #ffffff;
}

@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-subhead {
        max-width: 20ch;
    }

    .hero-art {
        min-height: 0;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(1120px, 100% - 1.3rem);
    }

    .header-inner,
    .footer-inner {
        min-height: auto;
        padding: 0.8rem 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-list {
        flex-wrap: wrap;
    }

    .hero {
        padding-top: 0;
    }

    .hero-art {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .hero-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .store-badges {
        width: 100%;
        flex-direction: column;
    }

    .store-badge {
        width: 100%;
        min-height: 58px;
    }
}


/* Forge supporting strip */
.forge-strip {
    padding: clamp(2rem, 4vw, 3.2rem) 0;
}

.forge-strip-inner {
    position: relative;
    text-align: center;
    border-radius: 22px;
    border: 1px solid rgba(170, 178, 255, 0.18);
    background:
        radial-gradient(480px 180px at 50% 0%, rgba(138, 99, 255, 0.14), transparent 60%),
        linear-gradient(180deg, rgba(20, 18, 52, 0.92), rgba(13, 12, 34, 0.92));
    padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.2rem);
    overflow: hidden;
}

/* Brand lockup */
.forge-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
    margin-bottom: 1.1rem;
    transition: transform 180ms ease, opacity 180ms ease;
}

.forge-brand:hover,
.forge-brand:focus-visible {
    transform: translateY(-2px);
    opacity: 0.92;
}

.forge-brand__logo {
    height: 54px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 18px rgba(138, 99, 255, 0.35));
}

.forge-brand__text {
    display: grid;
    gap: 2px;
    text-align: left;
}

.forge-brand__title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.forge-brand__title .thin {
    font-family: "GothamThin", 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.forge-brand__title .bold {
    font-family: "GothamBold", 'Inter', sans-serif;
    font-weight: 700;
}

.forge-brand__subtitle {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.1;
}

/* Eyebrow + body */
.forge-eyebrow {
    margin: 0;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #c6b4ff;
}

.forge-body {
    margin: 0.55rem 0 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.forge-link {
    color: #ddd4ff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(198, 180, 255, 0.35);
    transition: color 180ms ease, border-color 180ms ease;
}

.forge-link:hover,
.forge-link:focus-visible {
    color: #ffffff;
    border-color: rgba(198, 180, 255, 0.7);
}

@media (max-width: 480px) {
    .forge-brand {
        flex-direction: column;
        gap: 8px;
    }

    .forge-brand__text {
        text-align: center;
    }
}
