@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url("fonts/inter-latin.woff2") format("woff2");
}

@font-face {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600 800;
    font-display: swap;
    src: url("fonts/outfit-latin.woff2") format("woff2");
}

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

:root {
    --cyan: #00d9ff;
    --cyan-bright: #57e8ff;
    --purple: #7c3aed;
    --purple-bright: #a78bfa;
    --green: #48c78e;
    --bg: #05050d;
    --bg-elevated: #090913;
    --bg-card: rgba(255, 255, 255, 0.025);
    --border: rgba(255, 255, 255, 0.065);
    --border-accent: rgba(0, 217, 255, 0.18);
    --text: #e2e8f0;
    --text-strong: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --nav-height: 72px;
    --page-width: 1100px;
    --section-padding: 112px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 72%);
    pointer-events: none;
}

a {
    color: inherit;
}

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

button,
input {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--text-strong);
    color: var(--bg);
    font-weight: 600;
    text-decoration: none;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(0, 217, 255, 0.78);
    outline-offset: 4px;
}

.container {
    width: min(100% - 48px, var(--page-width));
    margin-inline: auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple-bright) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section {
    position: relative;
    padding: var(--section-padding) 0;
}

.section-header {
    max-width: 680px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--cyan);
    font-size: 0.79rem;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 14px;
    color: var(--text-strong);
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 750;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.04rem;
}

.eyebrow {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 26px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 999px;
    background: rgba(0, 217, 255, 0.055);
    color: var(--cyan-bright);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px rgba(72, 199, 142, 0.9);
    animation: status-pulse 2.4s ease-in-out infinite;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--cyan), #35aeea 45%, var(--purple));
    box-shadow: 0 12px 34px rgba(0, 170, 255, 0.19);
    color: #030711;
}

.button-primary:hover {
    box-shadow: 0 15px 42px rgba(0, 170, 255, 0.28);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
}

.button-secondary:hover {
    border-color: var(--border-accent);
    background: rgba(0, 217, 255, 0.05);
}

.button svg {
    width: 17px;
    height: 17px;
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: var(--nav-height);
    border-bottom: 1px solid var(--border);
    background: rgba(5, 5, 13, 0.84);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
    display: flex;
    width: min(100% - 48px, var(--page-width));
    height: 100%;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
}

.nav-logo {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 1.06rem;
    font-weight: 750;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.nav-mark {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(0, 217, 255, 0.22);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.14), rgba(124, 58, 237, 0.17));
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 800;
}

.nav-game {
    color: var(--text-muted);
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

#menu-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.menu-btn {
    position: relative;
    z-index: 3;
    display: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.menu-btn span {
    position: absolute;
    left: 10px;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
}

.menu-btn span:nth-child(1) { top: 13px; }
.menu-btn span:nth-child(2) { top: 20px; }
.menu-btn span:nth-child(3) { top: 27px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links > a {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 160ms ease;
}

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

.nav-links .nav-cta {
    padding: 9px 13px;
    border: 1px solid rgba(0, 217, 255, 0.22);
    border-radius: 8px;
    background: rgba(0, 217, 255, 0.07);
    color: var(--cyan);
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    place-items: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + 70px) 24px 84px;
    text-align: center;
}

.hero::before,
.hero::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    pointer-events: none;
    filter: blur(2px);
}

.hero::before {
    top: 50%;
    left: 50%;
    width: min(760px, 85vw);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.095), transparent 67%);
    transform: translate(-50%, -50%);
    animation: hero-glow 7s ease-in-out infinite alternate;
}

.hero::after {
    top: 39%;
    left: 56%;
    width: min(560px, 70vw);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.11), transparent 67%);
    transform: translate(-50%, -50%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 890px);
    min-width: 0;
}

.hero-title {
    margin-bottom: 25px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: clamp(3.15rem, 8.5vw, 6.6rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.hero-title .hero-line {
    display: block;
}

.hero-subtitle {
    max-width: 720px;
    margin: 0 auto 34px;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-subtitle strong {
    color: var(--text);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.hero-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.hero-note svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

.trust-strip {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 7vw, 76px);
    padding: 25px 24px;
    border-block: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.012);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--cyan);
}

.demo-section {
    overflow: hidden;
}

.demo-section::before {
    position: absolute;
    top: 11%;
    left: 50%;
    z-index: -1;
    width: 760px;
    height: 520px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.08), transparent 68%);
    content: "";
    transform: translateX(-50%);
}

.demo-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px minmax(220px, 0.38fr);
    align-items: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.media-panel {
    min-width: 0;
}

.media-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 11px;
    color: var(--text-muted);
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.media-label span:last-child {
    color: rgba(148, 163, 184, 0.65);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.source-frame,
.output-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #020207;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.source-frame {
    aspect-ratio: 16 / 9;
    border-radius: 13px;
}

.source-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.source-frame::after,
.output-frame::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.output-frame {
    width: min(100%, 252px);
    aspect-ratio: 9 / 16;
    margin-inline: auto;
    border-color: rgba(0, 217, 255, 0.22);
    border-radius: 14px;
}

.output-frame video {
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: rgba(5, 5, 13, 0.78);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.live-badge::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fb7185;
    box-shadow: 0 0 10px rgba(251, 113, 133, 0.8);
    content: "";
}

.demo-arrow {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.06);
    color: var(--cyan);
}

.demo-arrow svg {
    width: 16px;
    height: 16px;
}

.demo-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-align: center;
}

.demo-note svg {
    width: 15px;
    height: 15px;
    color: var(--cyan);
}

.features-section {
    border-block: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

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

.card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
    transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.38), transparent);
    content: "";
    opacity: 0;
    transition: opacity 200ms ease;
}

.card:hover {
    border-color: rgba(0, 217, 255, 0.15);
    background: rgba(255, 255, 255, 0.035);
    transform: translateY(-4px);
}

.card:hover::before {
    opacity: 1;
}

.icon-box {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--cyan);
}

.icon-box svg {
    width: 22px;
    height: 22px;
}

.card h3,
.integrity-item h3,
.step h3 {
    margin-bottom: 10px;
    color: var(--text-strong);
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
}

.card p,
.integrity-item p,
.step p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.mode-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 30px;
}

.mode-chip {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-family: ui-monospace, "Cascadia Code", monospace;
    font-size: 0.69rem;
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.steps::before {
    position: absolute;
    top: 23px;
    right: 16%;
    left: 16%;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.22), rgba(124, 58, 237, 0.22), transparent);
    content: "";
}

.step {
    text-align: center;
}

.step-num {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin: 0 auto 22px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50%;
    background: var(--bg);
    color: var(--cyan);
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 0.79rem;
    font-weight: 700;
    box-shadow: 0 0 24px rgba(0, 217, 255, 0.07);
}

.beta-section {
    padding-top: 56px;
}

.beta-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    overflow: hidden;
    padding: 56px;
    border: 1px solid rgba(0, 217, 255, 0.17);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(0, 217, 255, 0.055), rgba(124, 58, 237, 0.045)),
        rgba(255, 255, 255, 0.014);
}

.beta-card::after {
    position: absolute;
    top: -160px;
    right: -120px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.13), transparent 65%);
    content: "";
    pointer-events: none;
}

.beta-copy,
.beta-aside {
    position: relative;
    z-index: 1;
}

.beta-copy h2 {
    max-width: 620px;
    margin-bottom: 17px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: clamp(2rem, 4.3vw, 3.15rem);
    font-weight: 760;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.beta-copy p {
    max-width: 580px;
    margin-bottom: 27px;
    color: var(--text-secondary);
}

.beta-list {
    display: grid;
    gap: 13px;
    align-content: center;
    list-style: none;
}

.beta-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.beta-list svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--cyan);
}

.integrity-section {
    border-block: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

.integrity-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.014);
}

.integrity-item {
    padding: 34px;
}

.integrity-item + .integrity-item {
    border-left: 1px solid var(--border);
}

.inline-link {
    color: var(--cyan);
    text-decoration: none;
}

.inline-link:hover {
    text-decoration: underline;
}

.faq-inner {
    max-width: 800px;
    margin-inline: auto;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-list details {
    border-bottom: 1px solid var(--border);
}

.faq-list summary {
    position: relative;
    padding: 23px 52px 23px 0;
    color: var(--text);
    cursor: pointer;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 650;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::before,
.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 14px;
    height: 1px;
    background: var(--cyan);
    content: "";
    transition: transform 180ms ease;
}

.faq-list summary::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary::after {
    transform: rotate(0);
}

.faq-list details[open] summary {
    color: var(--cyan-bright);
}

.faq-list details p {
    max-width: 720px;
    padding: 0 52px 23px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.requirements {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 54px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--border);
}

.requirement {
    padding: 20px;
    background: var(--bg);
    text-align: center;
}

.requirement strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 0.77rem;
    font-weight: 600;
}

.requirement span {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.site-footer {
    padding: 72px 0 36px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 1.15rem;
    font-weight: 750;
    text-decoration: none;
}

.footer-about {
    max-width: 430px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-col h3 {
    margin-bottom: 14px;
    color: var(--text);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    width: fit-content;
    margin-bottom: 9px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--cyan);
}

.footer-divider {
    height: 1px;
    margin: 48px 0 24px;
    background: var(--border);
}

.footer-disclaimer {
    max-width: 940px;
    color: #4b5563;
    font-size: 0.7rem;
    line-height: 1.65;
}

.footer-copy {
    margin-top: 17px;
    color: #3f4754;
    font-size: 0.7rem;
}

.legal-body {
    line-height: 1.75;
}

.access-panel {
    padding: 30px;
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.055), rgba(124, 58, 237, 0.045));
}

.access-panel h2 {
    margin: 0 0 10px;
    padding: 0;
    border: 0;
}

.access-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.email-card {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(5, 5, 13, 0.72);
}

.email-card span {
    display: block;
    margin-bottom: 3px;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.email-card a {
    color: var(--cyan);
    font-size: 1rem;
    font-weight: 600;
    word-break: break-all;
    text-decoration: none;
}

.application-template {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.application-template h3 {
    margin-top: 0;
}

.application-template code {
    color: var(--text-secondary);
    font-family: ui-monospace, "Cascadia Code", monospace;
    font-size: 0.83rem;
    white-space: pre-wrap;
}

.legal-main {
    max-width: 760px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 64px) 24px 96px;
}

.legal-header {
    margin-bottom: 44px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.legal-header .section-label {
    margin-bottom: 10px;
}

.legal-header h1 {
    margin-bottom: 8px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: clamp(2.3rem, 7vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.legal-summary {
    margin-bottom: 36px;
    padding: 20px 22px;
    border: 1px solid var(--border-accent);
    border-left: 3px solid var(--cyan);
    border-radius: 10px;
    background: rgba(0, 217, 255, 0.035);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.legal-content h2 {
    margin: 36px 0 11px;
    padding-top: 31px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-strong);
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.legal-content h3 {
    margin: 22px 0 8px;
    color: var(--text);
    font-size: 0.96rem;
    font-weight: 600;
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.legal-content p {
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 11px 0 16px;
    list-style: none;
}

.legal-content li {
    position: relative;
    padding: 5px 0 5px 21px;
}

.legal-content li::before {
    position: absolute;
    left: 1px;
    color: var(--cyan);
    content: "—";
    opacity: 0.75;
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}

.legal-note {
    margin-top: 38px;
    padding: 20px 22px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-size: 0.82rem;
}

.legal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.75rem;
}

.legal-footer-links {
    display: flex;
    gap: 18px;
}

.legal-footer a {
    color: var(--text-muted);
    text-decoration: none;
}

.legal-footer a:hover {
    color: var(--cyan);
}

@keyframes status-pulse {
    0%, 100% { opacity: 0.55; transform: scale(0.86); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes hero-glow {
    from { opacity: 0.72; transform: translate(-50%, -50%) scale(0.94); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

@media (max-width: 980px) {
    :root {
        --section-padding: 92px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links > a {
        font-size: 0.77rem;
    }

    .demo-stage {
        grid-template-columns: minmax(0, 1fr) 26px minmax(190px, 0.4fr);
        gap: 17px;
    }

    .beta-card {
        gap: 36px;
        padding: 46px;
    }
}

@media (max-width: 800px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 12px 24px 20px;
        border-bottom: 1px solid var(--border);
        background: rgba(5, 5, 13, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-links > a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        font-size: 0.85rem;
    }

    .nav-links .nav-cta {
        margin-top: 12px;
        border: 1px solid var(--border-accent);
        text-align: center;
    }

    #menu-toggle:checked ~ .menu-btn span:nth-child(1) {
        top: 20px;
        transform: rotate(45deg);
    }

    #menu-toggle:checked ~ .menu-btn span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .menu-btn span:nth-child(3) {
        top: 20px;
        transform: rotate(-45deg);
    }

    #menu-toggle:checked ~ .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

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

    .integrity-item + .integrity-item {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

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

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

    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr;
        gap: 38px;
    }
}

@media (max-width: 680px) {
    :root {
        --section-padding: 80px;
    }

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

    .nav-game {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--nav-height) + 72px) 18px 84px;
    }

    .hero-title {
        font-size: clamp(3.2rem, 15vw, 4.8rem);
    }

    .hero-title .hero-line {
        display: inline;
    }

    .hero-title .hero-line + .hero-line::before {
        content: " ";
    }

    .hero-actions {
        flex-direction: column;
        max-width: 310px;
        margin-inline: auto;
    }

    .hero-note {
        align-items: flex-start;
    }

    .trust-strip {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        padding: 26px 28px;
    }

    .demo-stage {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 18px;
    }

    .demo-arrow {
        margin: -2px auto;
        transform: rotate(90deg);
    }

    .output-frame {
        width: min(72vw, 270px);
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps::before {
        display: none;
    }

    .beta-section {
        padding-top: 28px;
    }

    .beta-card {
        gap: 32px;
        padding: 34px 25px;
    }

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

    .footer-grid > :first-child {
        grid-column: 1 / -1;
    }

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

@media (max-width: 430px) {
    .eyebrow {
        padding: 7px 11px;
        font-size: 0.66rem;
        letter-spacing: 0.08em;
    }

    .section-header {
        margin-bottom: 42px;
    }

    .card,
    .integrity-item {
        padding: 25px;
    }

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

    .access-panel {
        padding: 23px;
    }

    .access-actions {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
