:root {
    --ink: #f7f3e9;
    --muted: #a5a39b;
    --dim: #6f706c;
    --gold: #f4c542;
    --gold-hot: #ffd75e;
    --gold-dark: #9a7614;
    --black: #08090b;
    --panel: #101216;
    --panel-soft: #15181d;
    --line: rgba(255, 255, 255, 0.1);
    --gold-line: rgba(244, 197, 66, 0.25);
    --success: #b7ec82;
    --danger: #ff9c8d;
    --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 80% 8%, rgba(244, 197, 66, 0.1), transparent 29rem),
        radial-gradient(circle at 8% 38%, rgba(244, 197, 66, 0.035), transparent 26rem),
        var(--black);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 56px 56px;
    content: "";
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 76%);
    mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

img,
svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    padding: 0.7rem 1rem;
    color: var(--black);
    background: var(--gold);
    border-radius: 6px;
    font-weight: 800;
    transform: translateY(-150%);
}

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

.site-shell {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(244, 197, 66, 0.16));
}

.brand-name {
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    font-style: italic;
    letter-spacing: 0.025em;
    line-height: 1;
    text-transform: uppercase;
}

.brand-name span {
    color: var(--gold);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #cfcdc5;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-nav a {
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
    color: var(--gold);
}

.header-nav .nav-cta {
    padding: 0.72rem 1rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
    border-radius: 5px;
}

.header-nav .nav-cta:hover,
.header-nav .nav-cta:focus-visible {
    background: rgba(244, 197, 66, 0.08);
    border-color: var(--gold-line);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
    min-height: calc(100svh - 92px);
    padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1.25rem;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(244, 197, 66, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 9px rgba(244, 197, 66, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 197, 66, 0); }
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h1 {
    margin-bottom: 1.5rem;
    font-family: var(--display);
    font-size: clamp(4rem, 7.6vw, 7.9rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.84;
    text-transform: uppercase;
}

h1 span {
    color: var(--gold);
    text-shadow: 0 0 45px rgba(244, 197, 66, 0.1);
}

.hero-lede {
    max-width: 640px;
    margin-bottom: 2rem;
    color: #c1bfb7;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.7rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-height: 50px;
    padding: 0.8rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: #0c0d0f;
    background: var(--gold);
    box-shadow: 0 12px 38px rgba(244, 197, 66, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--gold-hot);
}

.button-quiet {
    background: rgba(255, 255, 255, 0.035);
    border-color: var(--line);
}

.button-quiet:hover,
.button-quiet:focus-visible {
    border-color: var(--gold-line);
}

.platform-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.platform-label {
    margin-right: 0.2rem;
    color: var(--dim);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.65rem;
    color: #c5c4bd;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
}

.platform-pill svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.platform-pill-site::before {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    content: "";
}

.command-preview {
    position: relative;
    isolation: isolate;
}

.preview-glow {
    position: absolute;
    inset: 8% 2% 2% 10%;
    z-index: -2;
    background: radial-gradient(circle, rgba(244, 197, 66, 0.18), transparent 67%);
    filter: blur(22px);
}

.hero-mark {
    position: absolute;
    right: -27%;
    bottom: -20%;
    z-index: -1;
    width: min(35vw, 540px);
    height: auto;
    opacity: 0.12;
    transform: rotate(8deg);
    filter: saturate(0.8);
}

.preview-window {
    position: relative;
    padding: 1px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(244, 197, 66, 0.47), rgba(255, 255, 255, 0.08) 36%, rgba(255, 255, 255, 0.03));
    border-radius: 14px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.54), 0 0 0 1px rgba(255, 255, 255, 0.03);
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}

.window-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 52px;
    padding: 0 1rem;
    color: var(--dim);
    background: #111318;
    border-radius: 13px 13px 0 0;
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    background: #373a40;
    border-radius: 50%;
}

.secure-tag {
    justify-self: end;
    color: var(--gold);
}

.preview-body {
    display: grid;
    grid-template-columns: 0.93fr 1.07fr;
    gap: 1rem;
    padding: 1rem;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        #0d0f13;
    background-size: 28px 28px;
    border-radius: 0 0 13px 13px;
}

.video-card,
.publish-panel {
    background: rgba(18, 21, 26, 0.94);
    border: 1px solid var(--line);
    border-radius: 9px;
}

.video-visual {
    position: relative;
    display: grid;
    min-height: 280px;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 48%, rgba(244, 197, 66, 0.16), transparent 44%),
        linear-gradient(145deg, #090a0c, #11141a);
    border-radius: 8px 8px 0 0;
}

.video-visual::before,
.video-visual::after {
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(244, 197, 66, 0.08);
    border-radius: 50%;
    content: "";
}

.video-visual::after {
    inset: 27%;
}

.video-visual img {
    position: relative;
    z-index: 1;
    width: min(75%, 210px);
    height: auto;
    filter: drop-shadow(0 16px 25px rgba(0, 0, 0, 0.55));
}

.video-duration {
    position: absolute;
    right: 0.6rem;
    bottom: 0.6rem;
    z-index: 2;
    padding: 0.25rem 0.4rem;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid var(--line);
    border-radius: 3px;
    font-size: 0.6rem;
    font-variant-numeric: tabular-nums;
}

.scan-line {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 197, 66, 0.5), transparent);
    animation: scan 5s linear infinite;
}

@keyframes scan {
    0% { top: 5%; opacity: 0; }
    10%, 90% { opacity: 1; }
    100% { top: 95%; opacity: 0; }
}

.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.9rem;
}

.mini-label {
    display: block;
    margin-bottom: 0.22rem;
    color: var(--dim);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.video-meta strong {
    font-size: 0.76rem;
}

.ready-badge {
    padding: 0.3rem 0.43rem;
    color: var(--success);
    background: rgba(183, 236, 130, 0.07);
    border: 1px solid rgba(183, 236, 130, 0.18);
    border-radius: 3px;
    font-size: 0.53rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.publish-panel {
    align-self: center;
    padding: 0.9rem;
}

.panel-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: #c8c6be;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.panel-heading span:last-child {
    color: var(--dim);
}

.route-row {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 0.6rem;
    padding: 0.78rem 0;
    border-top: 1px solid var(--line);
}

.route-icon {
    display: grid;
    width: 27px;
    height: 27px;
    color: var(--gold);
    background: rgba(244, 197, 66, 0.06);
    border: 1px solid var(--gold-line);
    border-radius: 50%;
    font-size: 0.52rem;
    font-weight: 900;
    place-items: center;
}

.route-row strong,
.route-row small {
    display: block;
}

.route-row strong {
    color: #d7d5cd;
    font-size: 0.68rem;
}

.route-row small {
    margin-top: 0.12rem;
    color: var(--dim);
    font-size: 0.55rem;
}

.route-status {
    color: var(--gold);
    font-size: 0.54rem;
    font-weight: 800;
    text-transform: uppercase;
}

.is-complete .route-status {
    color: var(--success);
}

.preview-publish {
    width: 100%;
    margin-top: 0.85rem;
    padding: 0.72rem;
    color: #706f69;
    background: #202227;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section {
    padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 0.6fr 1.1fr 0.9fr;
    align-items: end;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.section-heading .eyebrow {
    align-self: start;
}

.section-heading h2,
.status-copy h2,
.launch-copy h2 {
    margin-bottom: 0;
    font-family: var(--display);
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 0.92;
    text-transform: uppercase;
}

.section-heading > p:last-child,
.status-copy > p:last-child,
.launch-copy > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.workflow-card {
    position: relative;
    min-height: 360px;
    padding: 2.1rem;
    overflow: hidden;
    border-right: 1px solid var(--line);
}

.workflow-card:last-child {
    border-right: 0;
}

.workflow-card::after {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(244, 197, 66, 0.09), transparent 66%);
    content: "";
    opacity: 0;
    transition: opacity 250ms ease;
}

.workflow-card:hover::after {
    opacity: 1;
}

.step-number {
    color: var(--dim);
    font-family: var(--display);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.step-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin: 4.4rem 0 1.7rem;
    color: var(--gold);
    background: rgba(244, 197, 66, 0.05);
    border: 1px solid var(--gold-line);
    border-radius: 50%;
    place-items: center;
}

.step-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.workflow-card h3 {
    margin-bottom: 0.7rem;
    font-family: var(--display);
    font-size: 1.7rem;
    font-style: italic;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.workflow-card p {
    max-width: 320px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.build-status {
    display: grid;
    grid-template-columns: 0.65fr 1.15fr 0.7fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    margin: clamp(3rem, 6vw, 6rem) 0 0;
    padding-right: clamp(1.5rem, 4vw, 4rem);
    padding-left: clamp(1.5rem, 4vw, 4rem);
    background: linear-gradient(120deg, rgba(244, 197, 66, 0.06), rgba(255, 255, 255, 0.018));
    border: 1px solid var(--line);
    border-radius: 12px;
}

.status-mark-wrap {
    position: relative;
    display: grid;
    place-items: center;
}

.status-mark-wrap::before {
    position: absolute;
    width: 90%;
    aspect-ratio: 1;
    border: 1px dashed rgba(244, 197, 66, 0.2);
    border-radius: 50%;
    content: "";
    animation: spin 24s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.status-mark-wrap img {
    width: min(100%, 180px);
    height: auto;
}

.status-copy .eyebrow,
.launch-copy .eyebrow {
    margin-bottom: 1rem;
}

.status-copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.status-list {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.status-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #cccbc3;
    font-size: 0.82rem;
    font-weight: 700;
}

.status-list span {
    color: var(--gold);
}

.integration-note {
    grid-column: 2 / 4;
    margin: -2rem 0 0;
    color: var(--dim);
    font-size: 0.72rem;
}

.launch-section {
    padding-top: clamp(6rem, 12vw, 11rem);
}

.launch-card {
    position: relative;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: clamp(2rem, 7vw, 7rem);
    padding: clamp(2rem, 6vw, 5rem);
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(244, 197, 66, 0.11), transparent 40%),
        var(--panel);
    border: 1px solid var(--gold-line);
    border-radius: 14px;
}

.launch-card::before {
    position: absolute;
    top: -130px;
    right: -130px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(244, 197, 66, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 44px rgba(244, 197, 66, 0.025), 0 0 0 88px rgba(244, 197, 66, 0.015);
    content: "";
}

.launch-copy,
.form-wrap {
    position: relative;
    z-index: 1;
}

.launch-copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.email-field {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 6px;
    background: #090a0c;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 7px;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.email-field:focus-within {
    border-color: rgba(244, 197, 66, 0.6);
    box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.08);
}

.email-field input {
    min-width: 0;
    padding: 0.75rem 0.85rem;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
}

.email-field input::placeholder {
    color: #666761;
}

.email-field button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1rem;
    color: #0b0c0e;
    background: var(--gold);
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 180ms ease, transform 180ms ease;
}

.email-field button:hover,
.email-field button:focus-visible {
    background: var(--gold-hot);
}

.email-field button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.form-note {
    margin: 0.7rem 0 0;
    color: var(--dim);
    font-size: 0.7rem;
}

.form-message {
    margin-bottom: 0.8rem;
    padding: 0.75rem 0.9rem;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 700;
}

.form-message.success {
    color: var(--success);
    background: rgba(183, 236, 130, 0.07);
    border: 1px solid rgba(183, 236, 130, 0.18);
}

.form-message.error {
    color: var(--danger);
    background: rgba(255, 156, 141, 0.07);
    border: 1px solid rgba(255, 156, 141, 0.18);
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    min-height: 120px;
    color: var(--dim);
    border-top: 1px solid var(--line);
    font-size: 0.7rem;
}

.footer-brand img {
    width: 36px;
    height: 36px;
}

.footer-brand .brand-name {
    font-size: 1rem;
}

.site-footer p {
    margin: 0;
    text-align: center;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-status i {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.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;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.workflow-card:nth-child(2) {
    transition-delay: 90ms;
}

.workflow-card:nth-child(3) {
    transition-delay: 180ms;
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 2rem;
    }

    h1 {
        font-size: clamp(3.6rem, 7vw, 5.6rem);
    }

    .preview-body {
        grid-template-columns: 1fr;
    }

    .video-visual {
        min-height: 200px;
    }

    .publish-panel {
        display: none;
    }

    .build-status {
        grid-template-columns: 0.55fr 1.45fr;
    }

    .status-list {
        grid-column: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .integration-note {
        grid-column: 2;
        margin-top: -1rem;
    }
}

@media (max-width: 800px) {
    .site-shell {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .site-header {
        min-height: 76px;
    }

    .header-nav > a:first-child {
        display: none;
    }

    .header-nav .nav-cta {
        padding: 0.62rem 0.75rem;
        font-size: 0.65rem;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 5rem 0 6.5rem;
    }

    h1 {
        font-size: clamp(4rem, 16vw, 6.3rem);
    }

    .command-preview {
        width: min(100%, 570px);
        margin: 1rem auto 0;
    }

    .preview-window {
        transform: none;
    }

    .preview-body {
        grid-template-columns: 0.92fr 1.08fr;
    }

    .video-visual {
        min-height: 240px;
    }

    .publish-panel {
        display: block;
    }

    .hero-mark {
        right: -18%;
        width: 60vw;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-heading .eyebrow {
        margin-bottom: 0;
    }

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

    .workflow-card {
        min-height: 0;
        padding: 2rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .workflow-card:last-child {
        border-bottom: 0;
    }

    .step-icon {
        margin: 2.7rem 0 1.35rem;
    }

    .build-status {
        grid-template-columns: 0.5fr 1.5fr;
    }

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

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

    .site-footer p {
        grid-column: 1 / -1;
        grid-row: 2;
        padding-bottom: 1rem;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .brand img {
        width: 42px;
        height: 42px;
    }

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

    .header-nav .nav-cta {
        max-width: 104px;
        text-align: center;
        line-height: 1.25;
    }

    .hero {
        padding-top: 4rem;
    }

    h1 {
        font-size: clamp(3.65rem, 17.2vw, 5.3rem);
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .platform-label {
        width: 100%;
        margin-bottom: 0.25rem;
    }

    .window-bar {
        grid-template-columns: auto 1fr auto;
        gap: 0.7rem;
        font-size: 0.5rem;
    }

    .preview-body {
        grid-template-columns: 1fr;
    }

    .publish-panel {
        display: block;
    }

    .video-visual {
        min-height: 250px;
    }

    .section {
        padding: 5.8rem 0;
    }

    .section-heading h2,
    .status-copy h2,
    .launch-copy h2 {
        font-size: clamp(2.8rem, 14vw, 4.1rem);
    }

    .build-status {
        grid-template-columns: 1fr;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .status-mark-wrap {
        justify-self: start;
        width: 130px;
    }

    .status-list,
    .integration-note {
        grid-column: 1;
    }

    .integration-note {
        margin-top: 0;
    }

    .launch-card {
        padding: 2rem 1.3rem;
    }

    .email-field {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .email-field button {
        justify-content: center;
        min-height: 48px;
    }

    .site-footer {
        align-items: start;
        padding-top: 1.8rem;
    }

    .footer-status {
        max-width: none;
        min-width: 0;
        font-size: 0.58rem;
        line-height: 1.3;
        text-align: right;
        white-space: nowrap;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
