:root {
    --paper: #faf8f4;
    --paper-2: #f1ede3;
    --ink: #111014;
    --ink-soft: #3a3733;
    --mist: #726c63;
    --mist-dim: #a49d90;
    --line: #e3dccf;
    --ember: #8e1f1c;
    --ember-bright: #c9412f;
    --amber: #e3a730;
    --sig-r: #e4483c;
    --sig-g: #2fae66;
    --sig-b: #2f6fae;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

section,
header,
footer {
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--ember);
    color: #fff;
}

.mono {
    font-family: 'Space Mono', monospace;
}

.label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember);
    display: flex;
    align-items: center;
    gap: 9px;
}

.label .dots {
    display: flex;
    gap: 3px;
}

.label .dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: block;
}

.label .dots span:nth-child(1) {
    background: var(--sig-r);
}

.label .dots span:nth-child(2) {
    background: var(--sig-g);
}

.label .dots span:nth-child(3) {
    background: var(--sig-b);
}

.label.on-dark {
    color: #ffcf8f;
}

.label.center {
    justify-content: center;
}

h1,
h2,
h3 {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media(max-width:640px) {
    .wrap {
        padding: 0 20px;
    }
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible {
    outline: 2px solid var(--ember);
    outline-offset: 3px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--ink);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
    flex-wrap: nowrap;
}

.logo-img {
    height: 68px;
    width: auto;
    flex-shrink: 0;
}

nav.links {
    display: flex;
    gap: 22px;
    align-items: center;
    min-width: 0;
}

nav.links a {
    font-family: 'Oswald', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-soft);
    white-space: nowrap;
    transition: color .2s ease;
}

nav.links a:hover {
    color: var(--ember);
}

.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.btn-outline {
    font-family: 'Oswald', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    border: 2px solid var(--ink);
    padding: 10px 16px;
    transition: all .2s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--ink);
    color: #fff;
}

.btn-solid {
    font-family: 'Oswald', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ember);
    padding: 11px 18px;
    border: 2px solid var(--ember);
    transition: all .2s ease;
    white-space: nowrap;
}

.btn-solid:hover {
    background: var(--ember-bright);
    border-color: var(--ember-bright);
}

.menu-toggle {
    display: none;
    flex-shrink: 0;
    background: none;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    border: 2px solid var(--ink);
    padding: 8px 13px;
    color: var(--ink);
    letter-spacing: 0.05em;
}

@media(max-width:1180px) {
    .nav-actions .btn-outline {
        display: none;
    }
}

@media(max-width:1040px) {
    nav.links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 16, 20, 0.6);
    backdrop-filter: blur(2px);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    height: 100dvh;
    width: min(320px, 84vw);
    background: var(--paper);
    z-index: 200;
    box-shadow: -10px 0 34px rgba(0, 0, 0, 0.28);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--ink);
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 2px solid var(--ink);
    flex-shrink: 0;
}

.sidebar-head .logo-img {
    height: 70px;
}

.sidebar-close {
    font-family: 'Space Mono', monospace;
    font-size: 22px;
    background: none;
    border: 2px solid var(--ink);
    width: 38px;
    height: 38px;
    cursor: pointer;
    color: var(--ink);
    line-height: 1;
    flex-shrink: 0;
}

.sidebar-body {
    overflow-y: auto;
    flex: 1;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.sidebar-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    transition: color .2s ease, background .2s ease;
}

.sidebar-links a:hover {
    color: var(--ember);
    background: var(--paper-2);
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-top: 2px solid var(--ink);
    flex-shrink: 0;
}

.sidebar-actions .btn-outline,
.sidebar-actions .btn-solid {
    text-align: center;
    width: 100%;
}

body.sidebar-open {
    overflow: hidden;
}

.btn-primary {
    background: var(--ember);
    color: #fff;
    padding: 16px 26px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 2px solid var(--ember);
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: var(--ember-bright);
    border-color: var(--ember-bright);
    transform: translateY(-2px);
}

.btn-ghost-light {
    padding: 16px 22px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all .25s ease;
}

.btn-ghost-light:hover {
    border-color: #fff;
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

section {
    position: relative;
    padding: 104px 0;
}

@media(max-width:640px) {
    section {
        padding: 68px 0;
    }
}

.alt {
    background: var(--paper-2);
}

.section-head {
    max-width: 640px;
    margin-bottom: 52px;
}

.section-head h2 {
    font-size: clamp(26px, 3.6vw, 42px);
    margin-top: 14px;
    line-height: 1.08;
}

.section-head p {
    color: var(--mist);
    font-size: 16px;
    margin-top: 16px;
    line-height: 1.6;
    font-family: 'Manrope', sans-serif;
    text-transform: none;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.p-hero {
    background: var(--ink);
    padding: 150px 0 0;
    overflow: hidden;
}

.p-hero-copy {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    opacity: 0;
    animation: riseIn .8s ease-out .2s forwards;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p-hero h1 {
    font-size: clamp(32px, 5.6vw, 58px);
    line-height: 1.02;
    margin: 20px 0 22px;
    color: #fff;
}

.p-hero h1 .hl {
    color: var(--ember-bright);
}

.p-hero p.lede {
    font-size: 16.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 32px;
}

.p-hero .cta-row {
    justify-content: center;
    margin-bottom: 56px;
}

@media (max-width:660px) {
    .p-hero {
        padding: 100px 0 0;
    }
}

.dash-window {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    transform: translateY(2px);
    opacity: 0;
    animation: riseIn .9s ease-out .45s forwards;
}

.dash-chrome {
    background: #1c1b20;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #2c2a30;
    min-width: 0;
}

.dash-chrome .dots {
    flex-shrink: 0;
}

.dash-chrome .dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.dash-chrome .dots span:nth-child(1) {
    background: #e4483c;
}

.dash-chrome .dots span:nth-child(2) {
    background: #e3a730;
}

.dash-chrome .dots span:nth-child(3) {
    background: #2fae66;
}

.dash-chrome .addr {
    background: #111014;
    color: var(--mist-dim);
    font-family: 'Space Mono', monospace;
    font-size: 11.5px;
    padding: 6px 14px;
    border-radius: 20px;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dash-body {
    background: #17161a;
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 400px;
    min-width: 0;
}

@media(max-width:760px) {
    .dash-body {
        grid-template-columns: 1fr;
    }
}

.dash-sidebar {
    background: #1c1b20;
    padding: 22px 14px;
    border-right: 1px solid #2c2a30;
}

@media(max-width:760px) {
    .dash-sidebar {
        display: none;
    }
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.dash-nav-item .ic {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.dash-nav-item.active {
    background: var(--ember);
    color: #fff;
}

.dash-nav-item.active .ic {
    background: rgba(255, 255, 255, 0.35);
}

.dash-main {
    padding: 26px;
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

@media(max-width:520px) {
    .dash-kpis {
        grid-template-columns: 1fr;
    }
}

.kpi-tile {
    background: #1c1b20;
    border: 1px solid #2c2a30;
    border-radius: 6px;
    padding: 16px 18px;
}

.kpi-tile .klabel {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.kpi-tile .kval {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin: 8px 0 6px;
}

.kpi-tile .kdelta {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--sig-g);
}

.kpi-tile svg {
    width: 100%;
    height: 28px;
    margin-top: 8px;
    display: block;
}

.dash-table {
    background: #1c1b20;
    border: 1px solid #2c2a30;
    border-radius: 6px;
    overflow: hidden;
}

.dash-table .trow {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 0.8fr;
    padding: 12px 16px;
    border-bottom: 1px solid #2c2a30;
    align-items: center;
}

.dash-table .trow:last-child {
    border-bottom: none;
}

.dash-table .trow.head {
    background: #141317;
}

.dash-table .trow.head span {
    font-family: 'Oswald', sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.dash-table .trow:not(.head) span {
    font-family: 'Space Mono', monospace;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.78);
}

.status-pill {
    font-family: 'Oswald', sans-serif !important;
    font-size: 9.5px !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.status-pill.live {
    background: rgba(47, 174, 102, 0.18);
    color: var(--sig-g) !important;
}

.status-pill.scheduled {
    background: rgba(227, 167, 48, 0.18);
    color: var(--amber) !important;
}

@media(max-width:600px) {
    .dash-table .trow {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .dash-table .trow span:nth-child(4) {
        display: none;
    }
}

.stepper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 2px solid var(--ink);
}

@media(max-width:760px) {
    .stepper {
        grid-template-columns: 1fr;
    }
}

.step-card {
    padding: 28px 24px;
    border-right: 2px solid var(--ink);
    position: relative;
    background: var(--paper);
}

.stepper .step-card:last-child {
    border-right: none;
}

@media(max-width:760px) {
    .step-card {
        border-right: none;
        border-bottom: 2px solid var(--ink);
    }

    .stepper .step-card:last-child {
        border-bottom: none;
    }
}

.step-card .snum {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    background: var(--ink);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-card.active .snum {
    background: var(--ember);
}

.step-card h3 {
    font-size: 15.5px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 12.5px;
    color: var(--mist);
    line-height: 1.5;
    font-family: 'Manrope', sans-serif;
    text-transform: none;
}

.step-arrow {
    display: none;
    position: absolute;
    right: -11px;
    top: 26px;
    width: 20px;
    height: 20px;
    background: var(--paper);
    border-right: 2px solid var(--ink);
    border-top: 2px solid var(--ink);
    transform: rotate(45deg);
    z-index: 2;
}

@media(min-width:761px) {
    .step-card:not(:last-child) .step-arrow {
        display: block;
    }
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

@media(max-width:860px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }
}

.feat-card {
    background: var(--paper);
    padding: 28px 26px;
    min-height: 170px;
}

.feat-ic {
    width: 34px;
    height: 34px;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 16px;
}

.feat-card h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 13px;
    color: var(--mist);
    line-height: 1.55;
}

.inv-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--paper-2);
    border: 1px dashed var(--line);
    padding: 12px 18px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--mist);
    margin-bottom: 32px;
}

.inv-note .gp-badge {
    background: var(--sig-g);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 3px;
    flex-shrink: 0;
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media(max-width:940px) {
    .screen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .screen-grid {
        grid-template-columns: 1fr;
    }
}

.screen-card {
    border: 2px solid var(--ink);
    background: var(--paper);
    overflow: hidden;
    transition: transform .2s ease;
}

.screen-card:hover {
    transform: translateY(-4px);
}

.screen-media {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.screen-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-verified {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(17, 16, 20, 0.85);
    backdrop-filter: blur(3px);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.screen-verified::before {
    content: '✓';
    color: var(--sig-g);
    font-weight: 700;
}

.screen-type {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--amber);
    color: #111;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 9px;
}

.screen-body {
    padding: 20px 22px;
}

.screen-loc {
    font-family: 'Oswald', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 6px;
}

.screen-addr {
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.2;
}

.screen-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px dashed var(--line);
    padding-top: 14px;
}

.screen-imp .n {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
}

.screen-imp .l {
    font-family: 'Oswald', sans-serif;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mist-dim);
}

.screen-spark svg {
    width: 70px;
    height: 26px;
}

.equation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 44px 20px;
    border: 2px solid var(--ink);
    background: var(--ink);
}

.eq-term {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: #fff;
    background: #1c1b20;
    border: 1px solid #2c2a30;
    padding: 16px 22px;
    font-size: 15px;
    text-align: center;
    min-width: 120px;
}

.eq-term .t {
    display: block;
    font-size: 16.5px;
    margin-bottom: 4px;
}

.eq-term .s {
    font-family: 'Oswald', sans-serif;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.eq-op {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--amber);
}

.eq-result {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: var(--ink);
    background: var(--amber);
    padding: 16px 26px;
    font-size: 16px;
}

.model-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 28px;
}

.model-chip {
    border: 2px solid var(--ink);
    padding: 10px 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--paper);
}

.insight-panel {
    background: var(--ink);
    border: 2px solid var(--ink);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

@media(max-width:860px) {
    .insight-panel {
        grid-template-columns: 1fr;
    }
}

.insight-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 18px;
}

.audience-bar {
    display: flex;
    height: 34px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
}

.audience-bar span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.audience-seg-residents {
    background: var(--sig-r);
    width: 46%;
}

.audience-seg-commuters {
    background: var(--sig-b);
    width: 31%;
}

.audience-seg-visitors {
    background: var(--sig-g);
    width: 23%;
}

.audience-legend {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.audience-legend .li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Manrope', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
}

.audience-legend .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.completion-tile {
    margin-top: 22px;
    background: #1c1b20;
    border: 1px solid #2c2a30;
    border-radius: 6px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.completion-tile .cv {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    flex-shrink: 0;
}

.completion-tile .cl {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    max-width: 150px;
    line-height: 1.4;
    text-align: right;
}

.hour-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 110px;
    padding-top: 10px;
    min-width: 0;
}

.hour-chart .hbar {
    flex: 1;
    min-width: 0;
    background: #2c2a30;
    border-radius: 2px 2px 0 0;
    position: relative;
}

.hour-chart .hbar.peak {
    background: var(--amber);
}

.hour-labels {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    min-width: 0;
}

.hour-labels span {
    flex: 1;
    min-width: 0;
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
}

.qc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media(max-width:760px) {
    .qc-grid {
        grid-template-columns: 1fr;
    }
}

.qc-card {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 26px;
    text-align: center;
}

.qc-card .qic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ember-wash, #fbeceb);
    color: var(--ember);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 16px;
    font-weight: 700;
}

.qc-card h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.qc-card p {
    font-size: 12.5px;
    color: var(--mist);
    line-height: 1.5;
}

.toggle-panel {
    background: var(--ink);
    border: 2px solid var(--ink);
    padding: 8px;
}

.toggle-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #2c2a30;
}

@media(max-width:760px) {
    .toggle-list {
        grid-template-columns: 1fr;
    }
}

.tg-row {
    background: #17161a;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tg-switch {
    width: 38px;
    height: 22px;
    border-radius: 20px;
    background: #2c2a30;
    border: 1px solid #3a383e;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.tg-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--mist-dim);
    transition: all .2s ease;
}

.tg-row.on .tg-switch {
    background: rgba(227, 167, 48, 0.18);
    border-color: var(--amber);
}

.tg-row.on .tg-switch::after {
    background: var(--amber);
    transform: translateX(16px);
}

.tg-row.optional .tg-switch {
    background: transparent;
    border-style: dashed;
}

.tg-row.optional .tg-switch::after {
    background: #3a383e;
    transform: translateX(8px);
}

.tg-copy h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}

.tg-row.optional .tg-copy h4 {
    color: var(--mist-dim);
}

.tg-copy p {
    font-family: 'Manrope', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.tg-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--amber);
    border: 1px solid var(--amber);
    border-radius: 20px;
    padding: 2px 8px;
    margin-left: 8px;
}

.signup-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    border: 2px solid var(--ink);
}

@media(max-width:900px) {
    .signup-grid {
        grid-template-columns: 1fr;
    }
}

.signup-side {
    background: var(--ink);
    color: #fff;
    padding: 44px;
}

.signup-side h3 {
    font-size: 22px;
    color: #fff;
    margin: 16px 0 16px;
    line-height: 1.15;
}

.signup-side p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: 'Manrope', sans-serif;
    text-transform: none;
}

.signup-alt {
    background: #1c1b20;
    border: 1px solid #2c2a30;
    padding: 16px 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
}

.signup-alt strong {
    color: #fff;
}

.signup-form {
    padding: 44px;
    background: var(--paper);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media(max-width:520px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-grid .full {
    grid-column: 1/-1;
}

.cfield {
    margin-bottom: 0;
}

.cfield label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
}

.cfield select,
.cfield input,
.cfield textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: var(--paper);
}

.cfield textarea {
    resize: vertical;
    min-height: 88px;
}

.consent {
    font-size: 11px;
    color: var(--mist-dim);
    line-height: 1.5;
    margin: 18px 0 18px;
}

.consent a {
    color: var(--ember);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--ember);
    color: #fff;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease;
}

.submit-btn:hover {
    background: var(--ember-bright);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success .check {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fbeceb;
    color: var(--ember);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px;
}

.form-success h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--mist);
    font-size: 13.5px;
    font-family: 'Manrope', sans-serif;
}

footer {
    background: var(--ink);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
}

@media(max-width:760px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-grid h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    margin-bottom: 11px;
    transition: color .2s ease;
    font-family: 'Manrope', sans-serif;
}

.footer-grid a:hover {
    color: var(--ember-bright);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #2b2a2f;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Space Mono', monospace;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}