
:root {
    --ink: #09070f;
    --ink-soft: #100d18;
    --paper: #f5f1f7;
    --muted: #aaa3b3;
    --line: rgba(255, 255, 255, .14);
    --violet: #a763ff;
    --magenta: #ea4bad;
    --acid: #d9ff63;
    --display: "Segoe UI", Arial, sans-serif;
    --body: "Segoe UI", Arial, sans-serif;
    --pad: clamp(22px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
    margin: 0;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--acid); }

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 10px 16px;
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 92px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 var(--pad);
    border-bottom: 1px solid transparent;
    transition: height .35s ease, background .35s ease, border-color .35s ease, transform .35s ease;
}
.site-header.is-scrolled {
    height: 72px;
    background: rgba(9, 7, 15, .88);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}
.brand { width: 142px; z-index: 2; }
.brand img {
    width: 100%;
    height: auto;
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(167, 99, 255, .32));
}
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 50px); }
.desktop-nav a, .language-switcher a {
    position: relative;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 1px;
    background: var(--paper);
    transition: right .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 24px; z-index: 2; }
.language-switcher { display: flex; gap: 12px; color: #77717f; }
.language-switcher a { transition: color .2s ease; }
.language-switcher a:hover, .language-switcher a[aria-current="true"] { color: var(--paper); }
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 16px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform .25s ease;
}
.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    padding: 140px var(--pad) 40px;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu a {
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    font-family: var(--display);
    font-size: clamp(34px, 10vw, 60px);
    line-height: 1.1;
}
.mobile-menu[aria-hidden="false"] { visibility: visible; opacity: 1; }

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 140px var(--pad) 100px;
    overflow: hidden;
    isolation: isolate;
}
.hero-video {
    position: absolute;
    inset: 0;
    z-index: -4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .44;
    filter: saturate(.75) contrast(1.12);
}
.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(9,7,15,.97) 0%, rgba(9,7,15,.58) 54%, rgba(9,7,15,.28) 100%),
        linear-gradient(0deg, var(--ink) 0%, transparent 30%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .16;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(90deg, black, transparent 80%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(1px); z-index: -2; }
.orb-one {
    width: 360px;
    height: 360px;
    right: 8vw;
    top: 18vh;
    border: 1px solid rgba(217,255,99,.35);
    box-shadow: inset 0 0 100px rgba(167,99,255,.12), 0 0 90px rgba(167,99,255,.08);
}
.orb-two {
    width: 12px;
    height: 12px;
    right: 27vw;
    top: 28vh;
    background: var(--acid);
    box-shadow: 0 0 28px var(--acid);
}
.hero-content { position: relative; z-index: 2; max-width: 1080px; }
.eyebrow, .section-label {
    margin: 0 0 26px;
    color: var(--acid);
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 1px; margin: 0 12px 4px 0; background: currentColor; }
.hero h1 {
    max-width: 1000px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(60px, 9.6vw, 148px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .83;
}
.hero h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px var(--paper); }
.hero-copy {
    max-width: 610px;
    margin: 38px 0 0;
    color: #d3cdd8;
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.65;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 23px;
    border: 1px solid var(--line);
    border-radius: 2px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { border-color: var(--acid); background: var(--acid); color: #11100d; }
.button-primary:hover, .button-primary:focus-visible { background: var(--paper); border-color: var(--paper); }
.button-ghost { background: rgba(9,7,15,.22); backdrop-filter: blur(8px); }
.button-ghost:hover, .button-ghost:focus-visible { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.scroll-cue {
    position: absolute;
    left: var(--pad);
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #918b97;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.scroll-cue i { position: relative; width: 50px; height: 1px; background: #5b5660; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--paper); animation: scan 2.2s ease-in-out infinite; }

.section { padding: clamp(90px, 11vw, 170px) var(--pad); }
.section-heading { display: grid; grid-template-columns: 1fr 1.4fr; column-gap: 7vw; align-items: start; }
.section-heading .section-label { grid-column: 1 / -1; }
.section-label span { display: inline-block; min-width: 48px; color: #6d6772; }
.section h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(46px, 6.4vw, 96px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .98;
}
.section-heading > p:last-child {
    max-width: 670px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.75;
}
.manifesto { background: var(--ink); }
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(70px, 10vw, 140px);
    border-top: 1px solid var(--line);
}
.pillar { min-height: 260px; padding: 26px clamp(10px, 2vw, 34px) 20px 0; border-right: 1px solid var(--line); }
.pillar + .pillar { padding-left: clamp(20px, 3vw, 50px); }
.pillar:last-child { border-right: 0; }
.pillar > span { color: var(--magenta); font: 11px/1 var(--display); letter-spacing: .15em; }
.pillar h3 { margin: 75px 0 14px; font-family: var(--display); font-size: clamp(22px, 2vw, 30px); line-height: 1.2; }
.pillar p { max-width: 330px; margin: 0; color: var(--muted); font-size: 14px; }

.featured { position: relative; background: #ede8ef; color: #120f17; overflow: hidden; }
.featured::after {
    content: "PLAY";
    position: absolute;
    right: -2vw;
    bottom: -7vw;
    color: transparent;
    font: 600 min(26vw, 400px)/.8 var(--display);
    letter-spacing: -.08em;
    -webkit-text-stroke: 1px rgba(18,15,23,.08);
    pointer-events: none;
}
.featured .section-label { color: #7a349b; }
.featured .section-label span { color: #958c99; }
.game-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); align-items: center; gap: clamp(30px, 6vw, 110px); }
.game-visual { position: relative; min-height: clamp(500px, 61vw, 770px); }
.game-glow { position: absolute; width: 70%; aspect-ratio: 1; left: 12%; top: 15%; border-radius: 50%; background: radial-gradient(circle, rgba(167,99,255,.52), rgba(234,75,173,.18) 48%, transparent 70%); filter: blur(20px); }
.game-phone { position: absolute; z-index: 2; width: 82%; max-width: 720px; left: 0; top: 2%; filter: drop-shadow(0 35px 38px rgba(35,14,43,.28)); transform: rotate(-6deg); }
.game-shot { position: absolute; z-index: 1; width: 25%; border: 6px solid #17121d; border-radius: 14px; box-shadow: 0 25px 45px rgba(22,14,25,.3); }
.shot-one { right: 2%; top: 12%; transform: rotate(8deg); }
.shot-two { right: 8%; bottom: 13%; transform: rotate(-3deg); }
.game-copy { position: relative; z-index: 3; }
.game-number { color: #7b7180; font: 700 11px/1 var(--display); letter-spacing: .16em; }
.game-copy h2 { margin-top: 26px; max-width: 520px; }
.game-copy > p:not(.game-number) { max-width: 580px; margin: 32px 0; color: #5c5360; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.75; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.tags li { padding: 7px 12px; border: 1px solid rgba(18,15,23,.17); border-radius: 99px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.game-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 38px; }
.game-actions .button-primary { background: #16101b; border-color: #16101b; color: var(--paper); }
.game-actions .button-primary:hover { background: #5f347d; border-color: #5f347d; }
.text-link { display: inline-flex; gap: 14px; border-bottom: 1px solid #aaa1ac; padding: 8px 0; font-size: 13px; font-weight: 700; }

.quantic {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 38%, rgba(38, 204, 224, .12), transparent 34%),
        radial-gradient(circle at 20% 80%, rgba(167, 99, 255, .11), transparent 32%),
        #050911;
}
.quantic::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    background-image: linear-gradient(rgba(102, 224, 232, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(102, 224, 232, .12) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, transparent, black 55%, transparent);
}
.quantic-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: clamp(55px, 8vw, 140px);
}
.quantic-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.quantic-status {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 11px;
    border: 1px solid rgba(102, 224, 232, .25);
    color: #92dfe4;
    font: 700 9px/1 var(--display);
    letter-spacing: .14em;
    text-transform: uppercase;
}
.quantic-status i { width: 6px; height: 6px; border-radius: 50%; background: #66e0e8; box-shadow: 0 0 12px #66e0e8; animation: status-pulse 2s ease-in-out infinite; }
.quantic .section-label { color: #66e0e8; }
.quantic-copy h2 { font-size: clamp(60px, 7.5vw, 116px); line-height: .79; }
.quantic-copy h2 em {
    display: inline-block;
    color: transparent;
    font-style: normal;
    transform: translateX(-.075em);
    -webkit-text-stroke: 1px rgba(245, 241, 247, .72);
}
.quantic-tagline { margin: 42px 0 16px; color: var(--paper); font: 500 clamp(20px, 2vw, 29px)/1.25 var(--display); letter-spacing: -.025em; }
.quantic-text { max-width: 620px; margin: 0; color: #9ea8b1; font-size: 16px; line-height: 1.75; }
.quantic-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 0; padding: 0; list-style: none; }
.quantic-tags li { padding: 7px 11px; border: 1px solid rgba(102, 224, 232, .2); color: #b7c6cc; font: 700 10px/1 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.quantic-factions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.quantic-factions > span { color: #65717a; font: 700 9px/1.4 var(--display); letter-spacing: .13em; text-transform: uppercase; }
.quantic-factions > div { display: flex; align-items: center; gap: 10px; }
.quantic-factions img { width: 42px; height: 42px; object-fit: contain; opacity: .78; filter: grayscale(.3); }
.quantic-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; min-width: 210px; min-height: 54px; margin-top: 30px; padding: 0 20px; border: 1px solid rgba(255,255,255,.22); font: 700 12px/1 var(--display); transition: background .2s ease, border-color .2s ease; }
.quantic-link:hover { border-color: transparent; background: linear-gradient(90deg,#c33764,#722f88,#1d2671); }
.quantic-visual { position: relative; min-width: 0; padding: 7vw 0; }
.quantic-frame { position: relative; z-index: 2; width: min(100%, 920px); margin: 0 auto; overflow: hidden; border: 1px solid rgba(102, 224, 232, .32); background: #02050a; box-shadow: 0 38px 90px rgba(0,0,0,.55), 0 0 60px rgba(77, 189, 204, .08); transform: perspective(1400px) rotateY(-5deg) rotateX(1deg); }
.frame-bar { height: 36px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; border-bottom: 1px solid rgba(102, 224, 232, .2); color: #74aeb7; font: 700 8px/1 var(--display); letter-spacing: .15em; }
.quantic-frame > img { width: 100%; height: auto; object-fit: contain; object-position: center; }
.frame-scan { position: absolute; inset: 36px 0 auto; height: 1px; background: rgba(102, 224, 232, .75); box-shadow: 0 0 12px #66e0e8; opacity: .45; animation: qr-scan 5s ease-in-out infinite; }
.phase-orbit { position: absolute; z-index: 0; border: 1px solid rgba(102, 224, 232, .17); border-radius: 50%; }
.orbit-one { width: 78%; aspect-ratio: 1; right: 2%; top: 0; }
.orbit-two { width: 52%; aspect-ratio: 1; right: 15%; top: 13%; border-color: rgba(167,99,255,.2); }
.quantic-coordinate { position: absolute; z-index: 3; color: #66e0e8; font: 700 8px/1 var(--display); letter-spacing: .18em; }
.coordinate-one { left: -18px; bottom: 4vw; writing-mode: vertical-rl; transform: rotate(180deg); }
.coordinate-two { right: -9px; top: 4vw; }
.worlds { background: var(--ink-soft); }
.worlds-head { display: grid; grid-template-columns: 1fr 1.4fr; align-items: end; margin-bottom: 70px; }
.worlds-head .section-label { align-self: start; }
.world-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.world-card { position: relative; min-height: clamp(520px, 56vw, 780px); overflow: hidden; isolation: isolate; }
.world-card > img, .clock-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .8s ease; }
.world-card:hover > img, .world-card:hover .clock-art { transform: scale(1.035); filter: saturate(1.2); }
.world-sc .sc-image { transform: none; }
.world-sc:hover .sc-image { transform: none; }
.world-sc .sc-wire {
    z-index: -2;
    clip-path: inset(0 100% 0 0);
    animation: wire-slide 8s cubic-bezier(.65, 0, .35, 1) infinite;
}
.wire-scan {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: -1;
    width: 2px;
    background: rgba(217, 255, 99, .9);
    box-shadow: 0 0 18px rgba(217, 255, 99, .75);
    opacity: 0;
    animation: wire-scan 8s cubic-bezier(.65, 0, .35, 1) infinite;
}
.world-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(7,5,12,.96) 0%, rgba(7,5,12,.08) 70%), linear-gradient(90deg, rgba(7,5,12,.35), transparent); }
.world-status { position: absolute; top: 24px; right: 24px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.28); border-radius: 99px; background: rgba(0,0,0,.25); backdrop-filter: blur(8px); font: 700 9px/1 var(--display); letter-spacing: .14em; text-transform: uppercase; }
.world-copy { position: absolute; inset: auto 38px 42px; max-width: 510px; }
.world-copy p { margin: 0 0 8px; color: var(--acid); font: 700 11px/1 var(--display); letter-spacing: .16em; text-transform: uppercase; }
.world-copy h3 { margin: 0 0 15px; font: 500 clamp(36px, 4vw, 64px)/1 var(--display); letter-spacing: -.045em; }
.world-copy span { color: #c0bac5; font-size: 14px; }
.clock-art { background: radial-gradient(circle at 50% 48%, #503067 0, #1b1224 42%, #0e0a15 73%); }
.clock-art img { position: absolute; inset: 50% auto auto 50%; width: min(88%, 680px); transform: translate(-50%, -50%); opacity: .82; }
.clock-art .needle { opacity: .9; }
.needle-big { animation: clock-turn 28s linear infinite; }
.needle-small { animation: clock-turn 95s linear infinite; }



.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: #0b0910; }
.contact-intro h2 { max-width: 740px; }
.contact-intro > p:not(.section-label) { color: var(--muted); font-size: 18px; }
.direct-mail { display: flex; flex-direction: column; gap: 6px; margin-top: 70px; }
.direct-mail span { color: #77717c; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.direct-mail a { width: fit-content; border-bottom: 1px solid #77717c; font: 500 clamp(20px, 2vw, 30px)/1.5 var(--display); }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.contact-form label > span { display: flex; justify-content: space-between; color: #cec8d1; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-form small { color: #68616d; font-size: 9px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #3d3741;
    border-radius: 0;
    outline: 0;
    padding: 14px 0;
    background: transparent;
    color: var(--paper);
    transition: border-color .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--acid); }
.submit-button { align-self: flex-start; min-width: 220px; border: 0; }

.site-footer {
    min-height: 128px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding: 24px var(--pad);
    border-top: 1px solid var(--line);
    color: #79737e;
    font-size: 11px;
}
.footer-brand {
    width: 128px;
    height: 64px;
    display: flex;
    align-items: center;
}
.footer-brand img {
    width: 128px;
    height: auto;
    max-height: 64px;
    object-fit: contain;
    object-position: left center;
    opacity: .9;
}
.site-footer p { text-align: center; }
.site-footer > div { justify-self: end; display: flex; gap: 24px; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--paper); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes scan { 0% { transform: translateX(-110%); } 55%, 100% { transform: translateX(110%); } }
@keyframes qr-scan { 0%, 12% { top: 36px; opacity: 0; } 18% { opacity: .45; } 78% { top: calc(100% - 1px); opacity: .45; } 84%, 100% { top: calc(100% - 1px); opacity: 0; } }
@keyframes status-pulse { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }
@keyframes clock-turn { to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes wire-slide {
    0%, 12% { clip-path: inset(0 100% 0 0); }
    40%, 62% { clip-path: inset(0 0 0 0); }
    90%, 100% { clip-path: inset(0 100% 0 0); }
}
@keyframes wire-scan {
    0%, 10% { left: 0; opacity: 0; }
    12% { left: 0; opacity: 1; }
    40%, 62% { left: calc(100% - 2px); opacity: 1; }
    64% { opacity: 0; }
    66% { left: calc(100% - 2px); opacity: 1; }
    90% { left: 0; opacity: 1; }
    92%, 100% { left: 0; opacity: 0; }
}

@media (max-width: 900px) {
    .site-header { grid-template-columns: 1fr auto; }
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .mobile-menu { display: flex; }
    .hero { min-height: 860px; }
    .section-heading, .worlds-head { grid-template-columns: 1fr; gap: 30px; }
    .section-heading .section-label { grid-column: auto; }
    .pillars { grid-template-columns: 1fr; }
    .pillar, .pillar + .pillar { min-height: 0; padding: 28px 0 36px; border-right: 0; border-bottom: 1px solid var(--line); }
    .pillar h3 { margin-top: 38px; }
    .game-layout { grid-template-columns: 1fr; }
    .quantic-grid { grid-template-columns: 1fr; }
    .quantic-copy { max-width: 760px; }
    .quantic-visual { padding: 30px 4vw 55px; }
    .game-copy { max-width: 680px; }
    .world-grid { grid-template-columns: 1fr; }
    .contact { grid-template-columns: 1fr; }
    .contact-form { max-width: 700px; }
}

@media (max-width: 620px) {
    .site-header { height: 72px; }
    .brand { width: 118px; }
    .header-actions { gap: 13px; }
    .language-switcher { gap: 7px; }
    .language-switcher a { font-size: 10px; }
    .hero { min-height: 760px; padding-top: 120px; align-items: flex-start; }
    .hero h1 { line-height: .9; }
    .hero-copy { margin-top: 28px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .button { justify-content: space-between; }
    .orb-one { right: -50%; top: 34%; }
    .scroll-cue span { display: none; }
    .section-heading > p:last-child { margin-top: 0; }
    .game-visual {
        min-height: 390px;
        margin: 10px 0 28px;
        overflow: hidden;
        border-radius: 18px;
        background: linear-gradient(145deg, #ddd4e4, #c8b8d2);
    }
    .game-glow {
        width: 110%;
        left: -5%;
        top: 5%;
        opacity: .65;
    }
    .game-phone { display: none; }
    .game-shot {
        z-index: 2;
        width: 48%;
        border: 4px solid #17121d;
        border-radius: 13px;
        box-shadow: 0 22px 34px rgba(22,14,25,.28);
    }
    .shot-one {
        left: 5%;
        right: auto;
        top: 22px;
        transform: rotate(-3deg);
    }
    .shot-two {
        right: 5%;
        bottom: 22px;
        transform: rotate(3deg);
    }
    .quantic { padding-top: 95px; padding-bottom: 95px; }
    .quantic-topline { display: block; }
    .quantic-status { margin: 0 0 34px 48px; }
    .quantic-copy h2 { font-size: clamp(56px, 17vw, 78px); }
    .quantic-tagline { margin-top: 32px; }
    .quantic-factions { align-items: flex-start; flex-direction: column; }
    .quantic-link { width: 100%; }
    .quantic-factions img { width: 48px; height: 48px; }
    .quantic-visual { margin-top: 36px; padding: 30px 0 45px; }
    .quantic-frame { width: 100%; transform: none; }
    .frame-bar { height: 30px; }
    .coordinate-one { left: -12px; }
    .coordinate-two { right: 0; top: 12px; }
    .world-card { min-height: 590px; }
    .world-copy { inset: auto 24px 28px; }
    .contact { gap: 70px; }
    .direct-mail { margin-top: 40px; }
    .h-captcha { transform: scale(.9); transform-origin: left center; }
    .site-footer { grid-template-columns: 1fr; justify-items: start; }
    .site-footer p { text-align: left; }
    .site-footer > div { justify-self: start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .hero-video { display: none; }
    .reveal { opacity: 1; transform: none; }
}
