:root {
    --bg: #0b0c14;
    --surface: #14172b;
    --ink: #0b0c14;
    --text: #f4f5fa;
    --muted: #9ba0bf;
    --line: #262b4a;
    --blue: #3f8fe0;
    --yellow: #ffc233;
    --red: #e8564f;
    --green: #7ec850;
    --font-display: "Bungee", sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --shadow-pop: 6px 6px 0 rgba(0, 0, 0, 0.55);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, .btn {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

a {
    color: var(--blue);
    text-decoration: none;
}

::selection {
    background: var(--yellow);
    color: var(--ink);
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

.container {
    width: min(1140px, 100% - 3rem);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 200;
    background: var(--yellow);
    color: var(--ink);
    padding: 0.5rem 1rem;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn {
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    padding: 0.85rem 1.8rem;
    border: 3px solid var(--ink);
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-cta {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: var(--shadow-pop);
}

.btn-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.55);
}

.btn-cta:active {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.55);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}

.btn-ghost:hover {
    background: var(--text);
    color: var(--ink);
}

.btn-lg {
    font-size: 1.1rem;
    padding: 1rem 2.4rem;
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 12, 20, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--line);
}

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

.brand img {
    height: 80px;
    width: auto;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 1.6rem;
}

.nav-links a {
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions .btn {
    padding: 0.55rem 1.3rem;
    font-size: 0.85rem;
}

.social-link {
    color: var(--muted);
    display: inline-flex;
}

.social-link:hover {
    color: var(--text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: none;
    border: 3px solid var(--line);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 3px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: calc(100svh - 74px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-image: url("../img/game-hero-desktop.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(11, 12, 20, 0.1) 0%, rgba(11, 12, 20, 0.95) 75%);
}

.hero-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4.5rem 0 6rem;
    gap: 1.5rem;
}

.hero-eyebrow {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--yellow);
    background: rgba(11, 12, 20, 0.7);
    border: 2px solid var(--yellow);
    padding: 0.35rem 1rem;
}

.hero h1 {
    font-size: clamp(4rem, 14vw, 10.5rem);
    text-transform: uppercase;
    line-height: 0.95;
    display: flex;
    flex-direction: column;
}

.hero h1 .line-1 {
    color: var(--text);
    text-shadow: 6px 6px 0 var(--blue);
}

.hero h1 .line-2 {
    color: var(--yellow);
    text-shadow: 6px 6px 0 var(--red);
}

.hero-sub {
    max-width: 56ch;
    font-size: 1.1rem;
    color: var(--text);
    background: rgba(11, 12, 20, 0.6);
    padding: 0.25rem 0.75rem;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.marquee {
    position: relative;
    background: var(--yellow);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    overflow: hidden;
    padding: 0.7rem 0;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.section {
    padding: 6.5rem 0;
}

.steps-section {
    border-bottom: 3px solid var(--line);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: step;
}

.step {
    text-align: center;
    padding: 2.25rem 1.5rem;
    background: var(--surface);
    border: 3px solid var(--line);
    box-shadow: var(--shadow-pop);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--ink);
    border: 3px solid var(--ink);
    margin-bottom: 1.25rem;
}

.num-blue { background: var(--blue); }
.num-yellow { background: var(--yellow); }
.num-green { background: var(--green); }

.step h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.step p {
    color: var(--muted);
}

.rig-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.rig-photo {
    position: relative;
}

.rig-photo img {
    border: 3px solid var(--text);
    box-shadow: var(--shadow-pop);
    rotate: -2deg;
}

.rig-photo .rig-photo-small {
    position: absolute;
    width: 55%;
    right: -1.5rem;
    bottom: -2.5rem;
    rotate: 3deg;
    border-color: var(--yellow);
}

.rig-copy h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.rig-copy > p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.spec-sheet {
    display: flex;
    flex-direction: column;
    border: 3px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-pop);
}

.spec-sheet li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.8rem 1.25rem;
}

.spec-sheet li + li {
    border-top: 2px solid var(--line);
}

.spec-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--yellow);
}

.spec-value {
    font-weight: 700;
    text-align: right;
}

.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(170px, auto);
    gap: 1.25rem;
}

.bento-card {
    padding: 1.75rem;
    border: 3px solid var(--ink);
    box-shadow: var(--shadow-pop);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.4rem;
    transition: transform 0.15s ease;
}

.bento-card:hover {
    transform: translate(-3px, -3px);
}

.bento-card h3 {
    font-size: 1.15rem;
    text-transform: uppercase;
}

.bento-featured {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    padding: 0;
    border-color: var(--text);
}

.bento-featured img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-overlay {
    position: relative;
    margin-top: auto;
    padding: 1.75rem;
    background: linear-gradient(180deg, rgba(11, 12, 20, 0) 0%, rgba(11, 12, 20, 0.95) 55%);
}

.bento-overlay h3 {
    font-size: 1.6rem;
    color: var(--yellow);
    margin-bottom: 0.4rem;
}

.card-blue {
    background: var(--blue);
    color: #eaf3fd;
}

.card-blue h3 { color: #ffffff; }

.card-yellow {
    background: var(--yellow);
    color: #4a3800;
}

.card-yellow h3 { color: var(--ink); }

.card-green {
    background: var(--green);
    color: #17300a;
}

.card-green h3 { color: var(--ink); }

.card-red {
    background: var(--red);
    color: #ffecea;
}

.card-red h3 { color: #ffffff; }

.pricing-section {
    background: var(--surface);
    border-block: 3px solid var(--line);
}

.power-picker {
    max-width: 640px;
    margin: 0 auto 3rem;
    background: var(--bg);
    border: 3px solid var(--text);
    box-shadow: var(--shadow-pop);
    padding: 2.5rem 2.25rem;
    text-align: center;
}

.picker-readout {
    margin-bottom: 1.75rem;
}

.package-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--text);
}

.package-price {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4.5rem);
    line-height: 1;
    color: var(--yellow);
}

.package-hours {
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

#hours-range {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    height: 12px;
    background: var(--line);
    border: 2px solid var(--ink);
    cursor: pointer;
}

#hours-range::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    background: var(--yellow);
    border: 3px solid var(--ink);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.55);
    cursor: grab;
}

#hours-range::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 0;
    background: var(--yellow);
    border: 3px solid var(--ink);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.55);
    cursor: grab;
}

.range-scale {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.8rem;
    margin: 0.5rem 0 1.75rem;
}

.picker-note {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 1.25rem;
}

.package-list {
    max-width: 640px;
    margin: 0 auto 3rem;
    border: 3px solid var(--line);
}

.package-list li + li {
    border-top: 2px solid var(--line);
}

.package-list a {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    color: var(--text);
    transition: background 0.12s ease;
}

.package-list a:hover {
    background: rgba(255, 194, 51, 0.08);
}

.pkg-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.pkg-hours {
    color: var(--muted);
    font-size: 0.9rem;
    flex: 1;
}

.pkg-price {
    font-weight: 700;
    color: var(--yellow);
}

.included-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 860px;
    margin: 0 auto;
}

.included-chip {
    background: var(--bg);
    border: 3px solid var(--line);
    border-left: 8px solid var(--green);
    padding: 1.4rem 1.6rem;
}

.included-chip:last-child {
    border-left-color: var(--blue);
}

.included-chip h3 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.included-chip p {
    color: var(--muted);
    font-size: 0.95rem;
}

.mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    grid-auto-flow: dense;
    gap: 1rem;
}

.mosaic-item {
    border: 3px solid var(--line);
    background: var(--surface);
    padding: 0;
    cursor: zoom-in;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.mosaic-item:hover {
    border-color: var(--yellow);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.mosaic-item:hover img {
    transform: scale(1.05);
}

.mosaic-item.wide {
    grid-column: span 2;
}

.mosaic-item.tall {
    grid-row: span 2;
}

.cta-banner {
    padding: 7rem 0;
    text-align: center;
    background: var(--blue);
    border-block: 3px solid var(--ink);
}

.cta-banner h2 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 5px 5px 0 var(--ink);
    margin-bottom: 1rem;
}

.cta-banner .accent-yellow {
    color: var(--yellow);
}

.cta-banner p {
    color: #eaf3fd;
    font-weight: 700;
    margin-bottom: 2.25rem;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner .btn-ghost {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-banner .btn-ghost:hover {
    background: #ffffff;
    color: var(--ink);
}

footer {
    padding: 5rem 0 2rem;
    background: var(--bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    width: 180px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 34ch;
}

.footer-col h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.footer-col li + li {
    margin-top: 0.5rem;
}

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

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

.footer-social {
    display: flex;
    gap: 0.9rem;
    padding-top: 0.5rem;
}

footer hr {
    border: none;
    border-top: 2px solid var(--line);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-links-inline {
    display: flex;
    gap: 1.25rem;
}

.footer-links-inline a {
    color: var(--muted);
}

.footer-links-inline a:hover {
    color: var(--text);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(11, 12, 20, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: min(1000px, 88vw);
    max-height: 84vh;
    border: 3px solid var(--text);
    box-shadow: var(--shadow-pop);
}

.lightbox button {
    position: absolute;
    background: var(--bg);
    color: var(--text);
    border: 3px solid var(--text);
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    cursor: pointer;
}

.lightbox button:hover {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--ink);
}

.lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
}

.lightbox-prev {
    left: 1.25rem;
    top: 50%;
    translate: 0 -50%;
}

.lightbox-next {
    right: 1.25rem;
    top: 50%;
    translate: 0 -50%;
}

.legal {
    max-width: 800px;
    padding: 4rem 1.5rem 6rem;
}

.legal h1 {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2.5rem;
}

.legal h2 {
    font-size: 1.15rem;
    text-transform: uppercase;
    margin: 2.25rem 0 0.65rem;
    color: var(--yellow);
}

.legal p {
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.legal ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.legal li + li {
    margin-top: 0.35rem;
}

html.js .reveal {
    opacity: 0;
    translate: 0 22px;
    transition: opacity 0.55s ease, translate 0.55s ease;
}

html.js .reveal.visible {
    opacity: 1;
    translate: 0 0;
}

@media (max-width: 960px) {
    .nav-toggle {
        display: flex;
    }

    .site-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        background: var(--bg);
        display: none;
        overflow-y: auto;
        z-index: 40;
    }

    .site-menu.open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .nav-links a {
        font-family: var(--font-display);
        font-size: 1.4rem;
    }

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

    .rig-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .rig-photo .rig-photo-small {
        right: 0;
    }

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

    .bento-featured {
        grid-column: span 2;
    }

    .mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

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

@media (max-width: 600px) {
    .section {
        padding: 4.5rem 0;
    }

    .hero-backdrop {
        background-image: url("../img/hero-mobile.webp");
    }

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

    .bento-featured {
        grid-column: span 1;
    }

    .included-strip {
        grid-template-columns: 1fr;
    }

    .mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 130px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }

    .marquee-track {
        animation: none;
    }

    html.js .reveal {
        opacity: 1;
        translate: 0 0;
    }
}
