:root {
    --ink: #18242b;
    --night: #202d35;
    --paper: #f4efe4;
    --muted: #66716e;
    --orange: #f47b3d;
    --yellow: #f7c94b;
    --cream: #fffaf0;
    --line: rgba(24,36,43,.16);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Space Grotesk", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: 0;
    opacity: .32;
    pointer-events: none;
    background-image: radial-gradient(rgba(24,36,43,.25) .7px, transparent .7px);
    background-size: 8px 8px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.page-shell {
    max-width: 1320px;
    min-height: 100vh;
    margin: auto;
    padding: 0 54px 24px;
    display: flex;
    flex-direction: column;
}

.hazard-bar {
    height: 11px;
    margin: 0 -54px;
    display: flex;
    overflow: hidden;
    background: var(--ink);
}

.hazard-bar span {
    flex: 0 0 44px;
    height: 100%;
    background: var(--yellow);
    transform: skewX(-28deg);
}

.hazard-bar span:nth-child(even) {
    background: var(--ink);
}

.topbar, .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar {
    padding-top: 28px;
}

.brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: inherit;
    font-family: "Syne", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -.05em;
    text-decoration: none;
}

.brand b {
    color: var(--orange);
}

.brand-mark {
    position: relative;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
}

.brand-sun {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--orange);
}

.brand-ray {
    position: absolute;
    width: 2px;
    height: 42px;
    background: var(--ink);
}

.ray-one {
    transform: rotate(45deg);
}

.ray-two {
    transform: rotate(-45deg);
}

.status-pill {
    padding: 9px 13px;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 99px;
    font: .62rem "DM Mono", monospace;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.status-dot, .live-dot, .pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(244,123,61,.15);
}

.status-dot {
    animation: blink 1.8s ease-in-out infinite;
}

.hero {
    flex: 1;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
    padding: 70px 0 54px;
}

.hero-copy {
    padding-bottom: 12px;
    animation: rise-in .8s ease both;
}

.eyebrow {
    display: flex;
    gap: 11px;
    align-items: center;
    margin: 0 0 24px;
    color: var(--muted);
    font: .68rem "DM Mono", monospace;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.eyebrow-line {
    width: 31px;
    height: 2px;
    background: var(--orange);
}

h1 {
    max-width: 600px;
    margin: 0;
    font-family: "Syne", sans-serif;
    font-size: clamp(3.5rem, 6vw, 6.9rem);
    font-weight: 700;
    line-height: .91;
    letter-spacing: -.085em;
}

h1 em {
    color: var(--orange);
    font-style: normal;
}

.intro {
    max-width: 405px;
    margin: 29px 0 30px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.build-status {
    max-width: 360px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-left: 3px solid var(--orange);
    background: rgba(255,250,240,.68);
    font-size: .8rem;
}

.build-status .pulse-dot {
    flex: 0 0 auto;
    animation: blink 1.4s ease-in-out infinite;
}

.build-status b, .build-status small {
    display: block;
}

.build-status small {
    margin-top: 3px;
    color: var(--muted);
    font: .64rem "DM Mono", monospace;
    text-transform: uppercase;
}

.status-arrow {
    margin-left: auto;
    color: var(--orange);
    font-size: 1.4rem;
}

.visual {
    position: relative;
    min-height: 515px;
    overflow: hidden;
    background: var(--night);
    box-shadow: 16px 16px 0 var(--yellow);
    animation: rise-in .8s .15s ease both;
}

.visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(247,201,75,.13), transparent 40%, rgba(244,123,61,.12));
}

.visual-grid {
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image: linear-gradient(rgba(247,201,75,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(247,201,75,.45) 1px, transparent 1px);
    background-size: 48px 48px;
}

.skyline-word {
    position: absolute;
    top: 18px;
    left: 19px;
    z-index: 2;
    color: rgba(255,250,240,.62);
    font: .62rem "DM Mono", monospace;
    letter-spacing: .13em;
}

.moon {
    position: absolute;
    top: 58px;
    right: 68px;
    width: 77px;
    height: 77px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 55px rgba(247,201,75,.28);
}

.crane {
    position: absolute;
    z-index: 3;
    top: 83px;
    left: 11%;
    width: 75%;
    height: 290px;
}

.crane-mast {
    position: absolute;
    bottom: 0;
    left: 16%;
    width: 25px;
    height: 245px;
    background: repeating-linear-gradient(0deg, transparent 0 21px, rgba(247,201,75,.75) 22px 24px), repeating-linear-gradient(90deg, #f7c94b 0 4px, transparent 4px 21px);
    border: 2px solid var(--yellow);
}

.mast-ladder {
    position: absolute;
    inset: 0;
    background: linear-gradient(28deg, transparent 47%, rgba(247,201,75,.65) 48% 52%, transparent 53%) 0 0/25px 26px;
}

.crane-top {
    position: absolute;
    top: 0;
    left: 5%;
    width: 89%;
    height: 22px;
    border-top: 5px solid var(--yellow);
}

.crane-jib {
    position: absolute;
    left: 18%;
    top: -5px;
    width: 82%;
    height: 5px;
    background: var(--yellow);
    transform-origin: left;
}

.counter-jib {
    position: absolute;
    left: -7%;
    top: -5px;
    width: 25%;
    height: 5px;
    background: var(--yellow);
}

.crane-cabin {
    position: absolute;
    left: 14%;
    top: 1px;
    width: 42px;
    height: 35px;
    background: var(--orange);
    border: 3px solid var(--yellow);
}

.cable {
    position: absolute;
    top: 18px;
    left: 68%;
    width: 2px;
    height: 175px;
    background: var(--yellow);
    animation: sway 3.8s ease-in-out infinite;
    transform-origin: top;
}

.hook {
    position: absolute;
    bottom: 1px;
    left: -5px;
    width: 12px;
    height: 15px;
    border: 2px solid var(--yellow);
    border-top: 0;
    border-radius: 0 0 8px 8px;
}

.load {
    position: absolute;
    bottom: -30px;
    left: -19px;
    width: 40px;
    height: 28px;
    background: var(--orange);
    border: 2px solid var(--yellow);
}

.building {
    position: absolute;
    z-index: 2;
    right: 13%;
    bottom: 64px;
    width: 43%;
    height: 275px;
    padding: 13px 13px 0;
    background: #31434a;
    border: 3px solid var(--yellow);
    border-bottom: 0;
}

.building::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .14;
    background: repeating-linear-gradient(135deg, transparent 0 22px, var(--yellow) 23px 25px);
}

.floor {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
    height: 70px;
    margin-bottom: 11px;
    border-bottom: 3px solid var(--yellow);
}

.floor i {
    flex: 1;
    height: 46px;
    background: #f2b94b;
    border: 6px solid #1f3036;
    animation: window-shine 3s ease-in-out infinite;
}

.floor i:nth-child(2) {
    animation-delay: .8s;
}

.floor i:nth-child(3) {
    animation-delay: 1.6s;
}

.building-cap {
    position: absolute;
    top: -15px;
    left: -13px;
    width: calc(100% + 26px);
    height: 15px;
    background: var(--orange);
}

.ground {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66px;
    background: var(--orange);
    border-top: 5px solid var(--yellow);
}

.ground::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .75;
    background: repeating-linear-gradient(-45deg, var(--ink) 0 16px, transparent 16px 32px);
}

.ground span {
    position: absolute;
    bottom: 17px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--yellow);
    animation: float-dust 3s ease-in-out infinite;
}

.ground span:nth-child(1) {
    left: 15%;
}

.ground span:nth-child(2) {
    left: 27%;
    animation-delay: .8s;
}

.ground span:nth-child(3) {
    right: 23%;
    animation-delay: 1.5s;
}

.ground span:nth-child(4) {
    right: 12%;
    animation-delay: 2.1s;
}

.signal-beacon {
    position: absolute;
    z-index: 4;
    bottom: 61px;
    left: 10%;
    width: 42px;
    height: 134px;
}

.signal-glow {
    position: absolute;
    top: -17px;
    left: -24px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--yellow);
    filter: blur(23px);
    opacity: .38;
    animation: glow 2.2s ease-in-out infinite;
}

.signal-head {
    position: absolute;
    top: 0;
    left: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 22px var(--yellow);
}

.signal-pole {
    position: absolute;
    bottom: 0;
    left: 18px;
    width: 6px;
    height: 112px;
    background: var(--yellow);
}

.dust {
    position: absolute;
    z-index: 2;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--yellow);
    animation: float-dust 4s ease-in-out infinite;
}

.dust-one {
    left: 42%;
    bottom: 130px;
}

.dust-two {
    left: 56%;
    bottom: 104px;
    animation-delay: 1.4s;
}

.dust-three {
    right: 8%;
    bottom: 155px;
    animation-delay: 2.4s;
}

.visual-label {
    position: absolute;
    z-index: 5;
    right: 19px;
    bottom: 18px;
    margin: 0;
    color: var(--cream);
    font: .6rem "DM Mono", monospace;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.visual-label .live-dot {
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(247,201,75,.16);
}

.visual-label b {
    margin-left: 15px;
    color: var(--yellow);
}

.footer {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    color: var(--muted);
    font: .62rem "DM Mono", monospace;
}

.footer-note i {
    color: var(--orange);
    font-style: normal;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 0 0 96px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-card {
    min-height: 205px;
    padding: 24px 25px 22px;
    background: rgba(255,250,240,.6);
}

.feature-card-accent {
    color: var(--cream);
    background: var(--night);
}

.feature-number {
    float: right;
    color: var(--orange);
    font: .62rem "DM Mono", monospace;
}

.feature-icon {
    display: grid;
    width: 36px;
    height: 36px;
    margin-bottom: 35px;
    place-items: center;
    color: var(--ink);
    border: 1px solid var(--orange);
    border-radius: 50%;
    font-size: 1.35rem;
}

.feature-card-accent .feature-icon {
    color: var(--yellow);
    border-color: var(--yellow);
}

.feature-card h2 {
    margin: 0 0 9px;
    font: 600 1.25rem "Syne", sans-serif;
    letter-spacing: -.04em;
}

.feature-card p {
    max-width: 230px;
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.55;
}

.feature-card-accent p {
    color: rgba(255,250,240,.65);
}

.subscribe-section {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: end;
    gap: 60px;
    padding: 0 0 92px;
}

.subscribe-section h2 {
    margin: 0;
    font: 700 clamp(2.7rem, 5vw, 5.4rem)/.9 "Syne", sans-serif;
    letter-spacing: -.08em;
}

.subscribe-section h2 em {
    color: var(--orange);
    font-style: normal;
}

.subscribe-section .eyebrow {
    margin-bottom: 18px;
}

.subscribe-form {
    position: relative;
    display: flex;
    padding: 6px 6px 6px 18px;
    border: 1px solid var(--line);
    background: rgba(255,250,240,.65);
}

.subscribe-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font: .82rem "Space Grotesk", sans-serif;
}

.subscribe-form button {
    flex: 0 0 auto;
    padding: 14px 17px;
    color: var(--ink);
    border: 0;
    background: var(--yellow);
    cursor: pointer;
    font: 600 .75rem "Space Grotesk", sans-serif;
    transition: background .2s, transform .2s;
}

.subscribe-form button:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.subscribe-form button span {
    margin-left: 8px;
    font-size: 1rem;
}

.form-message {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    margin: 0;
    color: var(--orange);
    font: .62rem "DM Mono", monospace;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 19px;
}

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

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

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    50% {
        opacity: .35;
    }
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes window-shine {
    0%, 100% {
        background: #f2b94b;
    }

    50% {
        background: #ffe39a;
    }
}

@keyframes glow {
    50% {
        opacity: .68;
        transform: scale(1.13);
    }
}

@keyframes float-dust {
    50% {
        opacity: .25;
        transform: translateY(-18px);
    }
}

@media (max-width: 800px) {
    .page-shell {
        padding: 0 22px 18px;
    }

    .hazard-bar {
        margin: 0 -22px;
    }

    .topbar {
        padding-top: 22px;
    }

    .status-pill {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 52px;
        padding: 78px 0 55px;
    }

    .hero-copy {
        padding: 0;
    }

    h1 {
        max-width: 600px;
        font-size: clamp(3.5rem, 12vw, 5.8rem);
    }

    .visual {
        min-height: 430px;
        box-shadow: 9px 9px 0 var(--yellow);
    }

    .feature-strip {
        margin-bottom: 74px;
    }

    .subscribe-section {
        gap: 35px;
        padding-bottom: 75px;
    }

    .footer {
        gap: 12px;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .feature-strip {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .feature-icon {
        margin-bottom: 20px;
    }

    .subscribe-section {
        display: block;
    }

    .subscribe-form {
        margin-top: 30px;
    }
}

@media (max-width: 470px) {
    .brand {
        font-size: 1rem;
    }

    .status-pill {
        max-width: 36px;
        padding: 9px 10px;
        font-size: 0;
    }

    .status-dot {
        margin: 0;
    }

    .hero {
        padding-top: 66px;
    }

    h1 {
        font-size: clamp(3.1rem, 15vw, 4.3rem);
    }

    .intro {
        font-size: .92rem;
    }

    .visual {
        min-height: 355px;
    }

    .moon {
        top: 43px;
        right: 30px;
        width: 52px;
        height: 52px;
    }

    .crane {
        top: 66px;
        left: 3%;
        transform: scale(.77);
        transform-origin: top left;
        width: 95%;
    }

    .building {
        right: 8%;
        bottom: 55px;
        width: 49%;
        height: 195px;
        padding: 9px 9px 0;
    }

    .floor {
        gap: 5px;
        height: 50px;
        margin-bottom: 6px;
    }

    .floor i {
        height: 31px;
        border-width: 4px;
    }

    .signal-beacon {
        left: 7%;
        bottom: 52px;
        transform: scale(.78);
        transform-origin: bottom left;
    }

    .ground {
        height: 56px;
    }

    .footer-note {
        display: none;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

/* Scenic coming-soon presentation */
body {
    overflow: hidden;
    background: #11191b;
}

.scene-page {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: #fff;
    background: #11191b;
    isolation: isolate;
}

.scene-image, .scene-wash, .scene-lines {
    position: absolute;
    inset: 0;
}

.scene-image {
    z-index: -3;
    background: url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=2200&q=85") center/cover;
    animation: landscape-drift 18s ease-in-out infinite alternate;
}

.scene-wash {
    z-index: -2;
    background: linear-gradient(90deg, rgba(5,12,14,.68), rgba(5,12,14,.18) 52%, rgba(5,12,14,.58)), linear-gradient(0deg, rgba(5,12,14,.48), transparent 45%, rgba(5,12,14,.25));
}

.scene-wash::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: radial-gradient(rgba(255,255,255,.7) .6px, transparent .6px);
    background-size: 5px 5px;
    mix-blend-mode: soft-light;
}

.scene-lines {
    z-index: -1;
    right: 12%;
    left: 20%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    opacity: .2;
    pointer-events: none;
}

.scene-lines span {
    border-left: 1px solid rgba(255,255,255,.75);
}

.scene-lines span:last-child {
    border-right: 1px solid rgba(255,255,255,.75);
}

.scene-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 29px 35px;
}

.scene-brand {
    color: #fff;
    font: 700 1.15rem "Space Grotesk", sans-serif;
    letter-spacing: -.06em;
    text-decoration: none;
}

.scene-brand b {
    color: #e7c26e;
}

.menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px 9px;
    place-content: center;
    gap: 5px;
    border: 0;
    background: rgba(9,16,18,.25);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform .2s;
}

.menu-button span:nth-child(2) {
    width: 16px;
    margin-left: auto;
}

.scene-menu {
    position: absolute;
    z-index: 6;
    top: 90px;
    right: 35px;
    display: none;
    flex-direction: column;
    min-width: 150px;
    padding: 8px 0;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(13,22,24,.86);
    backdrop-filter: blur(12px);
}

.scene-menu.is-visible {
    display: flex;
    animation: scene-enter .25s ease both;
}

.scene-menu a {
    padding: 12px 18px;
    color: #fff;
    font: .65rem "DM Mono", monospace;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.scene-menu a:hover {
    color: #e7c26e;
    background: rgba(255,255,255,.08);
}

.scene-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(1100px, calc(100% - 48px));
    text-align: center;
    transform: translate(-50%, -47%);
    animation: scene-enter 1.1s ease both;
}

.scene-kicker {
    margin: 0 0 18px;
    color: rgba(255,255,255,.75);
    font: .64rem "DM Mono", monospace;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.scene-content h1 {
    max-width: none;
    margin: 0 auto;
    color: #fff;
    white-space: nowrap;
    font: 600 clamp(3.5rem, 10vw, 10rem)/.88 "Yellowtail", cursive;
    letter-spacing: .01em;
    text-shadow: 0 5px 28px rgba(0,0,0,.22);
}

.scene-intro {
    margin: 50px 0 27px;
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    line-height: 1.65;
}

.subscribe-button {
    padding: 14px 28px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.75);
    background: rgba(20,26,27,.16);
    cursor: pointer;
    font: 700 .68rem "DM Mono", monospace;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: background .25s, transform .25s;
}

.subscribe-button:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-2px);
}

.subscribe-button span {
    margin-left: 10px;
    font-size: 1rem;
}

.scene-form {
    display: none;
    width: min(350px, 100%);
    margin: 15px auto 0;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.65);
    background: rgba(0,0,0,.22);
}

.scene-form.is-visible {
    display: flex;
    animation: scene-enter .35s ease both;
}

.scene-form input {
    min-width: 0;
    flex: 1;
    padding: 9px 10px;
    color: #fff;
    border: 0;
    outline: 0;
    background: transparent;
    font: .75rem "Space Grotesk", sans-serif;
}

.scene-form input::placeholder {
    color: rgba(255,255,255,.7);
}

.scene-form > button {
    width: 38px;
    color: #182124;
    border: 0;
    background: #e7c26e;
    cursor: pointer;
}

.scene-form .form-message {
    position: absolute;
    width: 100%;
    margin: 44px 0 0 -4px;
    color: #fff;
    font: .62rem "DM Mono", monospace;
}

.social-rail {
    position: absolute;
    right: 25px;
    bottom: 45px;
    display: flex;
    flex-direction: column;
    gap: 31px;
    align-items: center;
}

.social-rail a {
    color: rgba(255,255,255,.68);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font: .58rem "DM Mono", monospace;
    letter-spacing: .2em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s;
}

.social-rail a:hover {
    color: #e7c26e;
}

.scene-footer {
    position: absolute;
    right: 35px;
    bottom: 27px;
    left: 35px;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.55);
    font: .6rem "DM Mono", monospace;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.scene-footer b {
    color: #e7c26e;
}

@keyframes landscape-drift {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes scene-enter {
    from {
        opacity: 0;
        transform: translate(-50%, -42%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -47%);
    }
}

@media (max-width: 600px) {
    .scene-header {
        padding: 22px 20px;
    }

    .scene-brand {
        font-size: 1rem;
    }

    .scene-menu {
        top: 76px;
        right: 20px;
    }

    .scene-content {
        width: calc(100% - 38px);
    }

    .scene-content h1 {
        font-size: clamp(4.5rem, 20vw, 7rem);
    }

    .scene-intro {
        font-size: .83rem;
    }

    .social-rail {
        right: 11px;
        bottom: 91px;
        gap: 20px;
    }

    .scene-footer {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .scene-footer span:last-child {
        display: none;
    }

    .scene-lines {
        right: 30px;
        left: 30px;
    }
}
