:root {
    --black: #070a08;
    --black-soft: #0c110e;
    --surface: #111713;
    --surface-2: #172019;
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.2);
    --white: #f5f7f5;
    --text: #f3f6f3;
    --muted: #a7b0a9;
    --green: #35e875;
    --green-dark: #1fc861;
    --green-soft: rgba(53, 232, 117, 0.12);
    --content: 1220px;
    --gutter: clamp(20px, 4vw, 56px);
    --header-height: 76px;
    --radius: 18px;
    --ease: cubic-bezier(.2, .7, .2, 1);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

::selection { background: var(--green); color: #041008; }

html { background: var(--black); }

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--black);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

.skip-link {
    position: fixed;
    z-index: 1000;
    left: 18px;
    top: 18px;
    transform: translateY(-180%);
    background: var(--white);
    color: var(--black);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.section-inner {
    width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section-anchor { scroll-margin-top: calc(var(--header-height) + 16px); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid var(--line);
    background: rgba(7, 10, 8, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    background: rgba(7, 10, 8, 0.98);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.nav-shell {
    width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
    height: 100%;
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: minmax(190px, 1fr) auto auto;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
    color: #fff;
}
.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    white-space: nowrap;
    line-height: 1;
}
.brand-wordmark strong {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.04em;
}
.brand-wordmark small {
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
}
.desktop-nav a {
    position: relative;
    padding: 9px 0;
    color: #bdc5bf;
    font-size: 14px;
    font-weight: 600;
    transition: color .2s ease;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: var(--green);
    transition: right .25s var(--ease);
}
.desktop-nav a:hover,
.desktop-nav a.is-active { color: #fff; }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { right: 0; }

.header-cta {
    justify-self: end;
    min-height: 42px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green);
    border-radius: 10px;
    background: var(--green);
    color: #061009;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: #52f28a; }

.header-actions {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
}
.menu-toggle span {
    position: absolute;
    left: 9px;
    right: 9px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform .25s ease, top .25s ease;
}
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
.mobile-nav { display: none; }

.button {
    min-height: 52px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    cursor: pointer;
    transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}
.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #061009; }
.button-primary:hover { background: #52f28a; }
.button-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.035); color: #fff; }
.button-secondary:hover { border-color: var(--green); background: var(--green-soft); }
.button-dark { background: #071009; color: #fff; }
.button-dark:hover { background: #000; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.eyebrow span { color: var(--green); }

.hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 100px) 0 112px;
    background:
        radial-gradient(circle at 84% 30%, rgba(53, 232, 117, 0.13), transparent 30%),
        linear-gradient(180deg, #080c09 0%, #070a08 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: var(--line);
}
.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    align-items: end;
    gap: clamp(56px, 9vw, 120px);
}
.hero-copy { max-width: 780px; }
.hero-context {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: #c2cac4;
    font-size: 15px;
    font-weight: 500;
}
.signal-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(53, 232, 117, 0.1);
}
.context-divider { color: #657067; }
.hero h1 {
    margin-top: 28px;
    max-width: 850px;
    font-size: clamp(58px, 7vw, 98px);
    line-height: .94;
    letter-spacing: -0.065em;
    font-weight: 800;
}
.hero h1 span { color: var(--green); }
.hero-lead {
    margin-top: 30px;
    max-width: 680px;
    color: #aeb8b0;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 54px;
}
.hero-metric {
    position: relative;
    min-width: 0;
    padding: 15px 16px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
    transition: border-color .25s ease, transform .25s var(--ease), background .25s ease;
}
.hero-metric:hover {
    transform: translateY(-3px);
    border-color: rgba(53,232,117,.3);
    background: linear-gradient(145deg, rgba(53,232,117,.08), rgba(255,255,255,.018));
}
.hero-metric-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(53,232,117,.24);
    border-radius: 10px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}
.hero-metric > div { min-width: 0; display: grid; gap: 3px; }
.hero-metric strong { color: #fff; font-size: 22px; line-height: 1; letter-spacing: -.035em; }
.hero-metric .hero-metric-word { font-size: 17px; }
.hero-metric > div > span { color: #9faaa2; font-size: 11px; line-height: 1.25; font-weight: 650; text-transform: uppercase; letter-spacing: .055em; }

.hero-status {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.hero-status-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 18px;
}
.hero-status-title { min-width: 0; }
.hero-status-label,
.hero-status-subtitle {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}
.hero-status-subtitle { margin-top: 5px; color: var(--green); }
.status-live { display: inline-flex; align-items: center; gap: 7px; color: #d6f9e0; font-size: 12px; font-weight: 650; }
.status-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 1.8s ease infinite; }
.hero-status h2 { margin-top: 4px; font-size: clamp(25px, 2.4vw, 34px); line-height: 1; letter-spacing: -.04em; }
.hero-status > p { margin-top: 20px; color: var(--muted); font-size: 14px; }
.hero-status > a {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
}
.hero-status > a svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.games,
.studio,
.team,
.community { padding: clamp(88px, 10vw, 140px) 0; }

.section-heading { margin-bottom: clamp(42px, 6vw, 72px); }
.heading-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
    gap: clamp(34px, 7vw, 90px);
    align-items: end;
}
.section-heading h2,
.community h2 {
    font-size: clamp(42px, 5.5vw, 76px);
    line-height: .99;
    letter-spacing: -.055em;
    font-weight: 800;
}
.heading-row > p,
.studio-copy,
.community-panel > div > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}
.studio-copy { display: grid; gap: 16px; }

.games {
    background: var(--white);
    color: #0b100c;
}
.games .eyebrow { color: #667168; }
.games .heading-row > p { color: #58635a; }
.games-list { display: grid; gap: 22px; }
.games-list > * { width: 100%; }
.game-card {
    width: min(100%, 1160px);
    margin-inline: auto;
    padding: 18px 0 18px 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(410px, .88fr);
    align-items: center;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #0b110d;
    color: #fff;
    box-shadow: 0 30px 90px rgba(7, 16, 9, .16);
}

.game-media {
    position: relative;
    min-width: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    background: #020302;
    box-shadow: 0 22px 55px rgba(0,0,0,.34);
}
.game-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.game-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to top, rgba(0,0,0,.34), transparent 42%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
    pointer-events: none;
}
.game-media-label {
    position: absolute;
    z-index: 2;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #fff;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.game-media-label span {
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(4,8,5,.72);
    backdrop-filter: blur(8px);
}
.game-media-label-single { justify-content: flex-end; }
.game-cover-fallback { height: 100%; display: grid; place-items: center; color: var(--green); font-size: 34px; font-weight: 800; }
.game-content {
    min-width: 0;
    padding: 30px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.game-status-row { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 8px; }
.status-pill,
.data-pill {
    min-height: 26px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #c4cdc6;
    font-size: 11px;
    font-weight: 600;
}
.status-pill { border-color: rgba(53,232,117,.35); background: var(--green-soft); color: #c9f9d8; }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.game-title-block {
    display: block;
    min-width: 0;
}
.game-title-block > div:last-child { min-width: 0; }
.game-title-block > div:last-child > p { color: var(--green); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .055em; }
.game-title-block h3 { margin-top: 3px; font-size: clamp(31px, 3vw, 43px); line-height: .98; letter-spacing: -.05em; overflow-wrap: normal; }
.game-description {
    margin-top: 19px;
    color: #b8c2ba;
    font-size: 14px;
    line-height: 1.67;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 22px;
}
.stat {
    min-width: 0;
    padding: 12px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255,255,255,.115);
    border-radius: 12px;
    background: #111713;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.stat-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(53,232,117,.2);
    border-radius: 10px;
    background: var(--green-soft);
    color: var(--green);
}
.stat-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.stat > div { min-width: 0; }
.stat dt {
    color: #aab5ac;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .065em;
}
.stat dd {
    margin-top: 4px;
    color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 21px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: antialiased;
}
.game-footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.game-actions { margin-top: 0; }
.game-actions .button { min-height: 46px; padding-inline: 18px; }
.data-status {
    margin-top: 13px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #c0cac2;
    font-size: 11px;
    line-height: 1.3;
}
.data-updated,
.api-message {
    min-height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
}
.data-updated svg { width: 14px; height: 14px; flex: 0 0 auto; fill: none; stroke: var(--green); stroke-width: 1.8; }
.api-message::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #9ba59d;
}
.api-message.is-pending { color: #c5cec7; }
.api-message.is-pending::before { animation: pulse 1.8s ease infinite; }
.api-message.is-ok { border-color: rgba(53,232,117,.22); background: rgba(53,232,117,.075); color: #a9edbd; }
.api-message.is-ok::before { background: var(--green); }
.api-message.is-error { border-color: rgba(219,177,121,.24); background: rgba(219,177,121,.075); color: #e1bf91; }
.api-message.is-error::before { background: #dbb179; }

.skeleton { position: relative; }
.skeleton:not(.is-ready)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(90deg, rgba(255,255,255,.025), rgba(255,255,255,.09), rgba(255,255,255,.025));
    transform: translateX(-100%);
    animation: shimmer 1.4s infinite;
}

.next-project-card {
    padding: clamp(28px, 4vw, 44px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    border: 1px solid #d4dcd6;
    border-radius: 18px;
    background: #fff;
    color: #0b100c;
    box-shadow: 0 18px 48px rgba(12, 24, 15, .055);
}
.next-project-card h3 { margin-top: 15px; font-size: clamp(29px, 4vw, 46px); line-height: 1.05; letter-spacing: -.04em; }
.next-project-card > div:first-child > p:last-child { margin-top: 15px; max-width: 760px; color: #5c675e; }
.next-project-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.next-project-meta span { padding: 7px 10px; border: 1px solid #cbd5cd; border-radius: 999px; background: #f4f8f5; color: #3e4b41; font-size: 12px; }

.studio { border-block: 1px solid var(--line); background: var(--black-soft); }
.principles { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle-card { min-width: 0; padding: 30px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-card > span { color: var(--green); font-size: 12px; font-weight: 700; }
.principle-card h3 { margin-top: 42px; font-size: 22px; line-height: 1.1; letter-spacing: -.03em; }
.principle-card p { margin-top: 14px; color: var(--muted); font-size: 14px; }

.team { background: var(--white); color: #0b100c; }
.team .eyebrow { color: #657067; }
.team .heading-row > p { color: #59635b; }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.member-card {
    min-width: 0;
    min-height: 390px;
    padding: clamp(25px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    border: 1px solid #d4dcd6;
    border-radius: 18px;
    background: #fff;
    transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}
.member-card:hover { transform: translateY(-5px); border-color: #aebbb1; box-shadow: 0 22px 50px rgba(12, 24, 15, 0.09); }
.member-card-lead {
    grid-column: 1 / -1;
    min-height: 360px;
    background: #0b110d;
    color: #fff;
    border-color: #0b110d;
}
.member-head { display: flex; align-items: center; gap: 14px; }
.member-avatar,
.member-photo { width: 70px; height: 70px; flex: 0 0 auto; border-radius: 16px; object-fit: cover; }
.member-avatar { display: grid; place-items: center; background: #111713; color: var(--green); font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.member-card-lead .member-avatar { background: var(--green); color: #061009; }
.member-status { display: inline-flex; align-items: center; gap: 7px; color: #6c786e; font-size: 12px; font-weight: 600; }
.member-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.member-card-lead .member-status { color: #a9b5ac; }
.member-copy { margin-top: auto; padding-top: 38px; }
.member-copy h3 { font-size: clamp(35px, 4vw, 54px); line-height: 1; letter-spacing: -.055em; }
.member-copy h3 a { color: inherit; transition: color .2s ease; }
.member-copy h3 a:hover { color: #149544; }
.member-card-lead .member-copy h3 a:hover { color: var(--green); }
.member-copy .role { margin-top: 9px; color: #149544; font-size: 14px; font-weight: 750; }
.member-card-lead .member-copy .role { color: var(--green); }
.member-copy > p:not(.role) { margin-top: 18px; max-width: 760px; color: #5b665d; }
.member-card-lead .member-copy > p:not(.role) { color: #aeb8b0; font-size: 16px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.tag-list span { padding: 6px 9px; border: 1px solid #d2dad4; border-radius: 999px; color: #59645b; font-size: 11px; font-weight: 600; }
.member-card-lead .tag-list span { border-color: rgba(255,255,255,.14); color: #c4cec6; }
.member-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.member-links a {
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #bfcac1;
    border-radius: 10px;
    color: #0b6f31;
    font-size: 13px;
    font-weight: 750;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.member-links a:hover { transform: translateY(-2px); border-color: #149544; background: #f0faf3; }
.member-links svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.member-card-lead .member-links a { border-color: var(--green); background: var(--green); color: #061009; }
.member-card-lead .member-links a:hover { background: #52f28a; }

.community { background: var(--white); padding-top: 0; }
.community-panel {
    min-height: 420px;
    padding: clamp(42px, 6vw, 76px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 50px;
    border-radius: 22px;
    background: var(--green);
    color: #061009;
}
.community .eyebrow { color: rgba(6,16,9,.65); }
.community .eyebrow span { color: #061009; }
.community-panel > div > p:not(.eyebrow) { max-width: 680px; margin-top: 24px; color: rgba(6,16,9,.72); }

.site-footer { border-top: 1px solid var(--line); background: #050705; }
.footer-main { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; padding-top: 72px; padding-bottom: 72px; }
.footer-brand-block p { max-width: 430px; margin-top: 20px; color: var(--muted); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-links div { display: grid; align-content: start; gap: 9px; }
.footer-links h2 { margin-bottom: 6px; color: #fff; font-size: 13px; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color .2s ease; }
.footer-links a:hover { color: var(--green); }
.footer-bottom {
    min-height: 76px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 28px;
    color: #788179;
    font-size: 12px;
}
.footer-bottom a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 650; }
.footer-bottom svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; transform: rotate(-90deg); }

.legal-page main { padding: calc(var(--header-height) + 72px) 0 110px; }
.legal-page article,
.legal-content { max-width: 850px; margin-inline: auto; }
.legal-page h1 { margin-top: 16px; font-size: clamp(45px, 7vw, 82px); line-height: .98; letter-spacing: -.055em; }
.legal-page h2 { margin-top: 40px; font-size: 25px; }
.legal-page p,
.legal-page li { margin-top: 14px; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes pulse {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(53,232,117,.35); }
    50% { opacity: .65; box-shadow: 0 0 0 7px rgba(53,232,117,0); }
}
@keyframes shimmer { to { transform: translateX(100%); } }

:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }
