:root {
    --bg: #050505;
    --bg-soft: #0d0d0d;
    --panel: rgba(255, 255, 255, 0.055);
    --panel-strong: rgba(255, 255, 255, 0.105);
    --panel-border: rgba(255, 255, 255, 0.12);
    --text: #f7f3e8;
    --muted: #aaa7a0;
    --muted-2: #74716c;
    --gold: #d4a843;
    --gold-2: #f0c75e;
    --gold-dark: #b8922e;
    --danger: #ff4f59;
    --green: #79e29c;
    --blue: #52a8ff;
    --white: #f6f3eb;
    --black: #070707;
    --radius-lg: 34px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
    --max: 1840px;
    --page-gutter: clamp(24px, 3vw, 56px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    min-width: 320px;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(228, 184, 63, 0.12), transparent 26rem),
        radial-gradient(circle at 80% 0%, rgba(82, 168, 255, 0.08), transparent 30rem),
        linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 30%, rgba(255, 255, 255, 0.035));
}

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: min(calc(100% - 48px), 1840px);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(7, 7, 7, 0.62);
    backdrop-filter: blur(22px);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
    transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(7, 7, 7, 0.86);
    border-color: rgba(228, 184, 63, 0.22);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 50%;
}

.brand span {
    font-size: 1.18rem;
}

.brand strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    min-width: 31px;
    padding: 0 8px;
    border-radius: 999px;
    color: #080806;
    background: var(--gold);
    font-size: 0.78rem;
    letter-spacing: -0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    color: rgba(247, 243, 232, 0.72);
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

.site-nav .nav-cta {
    color: #090804;
    background: var(--gold);
    box-shadow: 0 12px 34px rgba(228, 184, 63, 0.22);
}

.site-nav .nav-cta:hover {
    background: var(--gold-2);
    color: #070707;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: var(--text);
}

.scene {
    position: relative;
    padding-left: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
    padding-right: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
}

.scene-dark {
    background:
        radial-gradient(circle at 60% 0%, rgba(228, 184, 63, 0.13), transparent 28rem),
        radial-gradient(circle at 20% 40%, rgba(82, 168, 255, 0.08), transparent 26rem),
        linear-gradient(180deg, #060606, #080807 45%, #050505);
}

.scene-light {
    color: #12100b;
    background:
        radial-gradient(circle at 18% 15%, rgba(228, 184, 63, 0.25), transparent 22rem),
        radial-gradient(circle at 85% 12%, rgba(20, 20, 20, 0.08), transparent 28rem),
        var(--white);
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(500px, 0.9fr) minmax(560px, 1.1fr);
    gap: clamp(48px, 4.6vw, 96px);
    align-items: center;
    padding-top: 128px;
    padding-bottom: 86px;
    overflow: hidden;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
}

.eyebrow.dark {
    color: var(--gold-dark);
}

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

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.9rem, 4.55vw, 5.4rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    font-weight: 800;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.75vw, 4.35rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 800;
}

h3 {
    font-size: 1.38rem;
    letter-spacing: -0.018em;
}

.hero-text,
.page-hero-copy p,
.section-heading p,
.story-copy p,
.proof-copy p,
.demo-band-inner p,
.booking-copy p {
    color: rgba(247, 243, 232, 0.72);
    font-size: clamp(1.02rem, 1.6vw, 1.25rem);
    line-height: 1.65;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.scene-light .section-heading p,
.scene-light p {
    color: rgba(18, 16, 11, 0.68);
}

.hero-actions,
.demo-band-inner .button,
.proof-copy .button {
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
    color: #070707;
    background: var(--gold);
    box-shadow: 0 20px 60px rgba(228, 184, 63, 0.24);
}

.button-primary:hover {
    background: var(--gold-2);
}

.button-ghost {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.055);
}

.button-dark {
    color: var(--white);
    background: #0c0b09;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 44px;
}

.trust-strip span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: rgba(247, 243, 232, 0.65);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.84rem;
    font-weight: 800;
}

.hero-stage {
    position: relative;
    min-height: 640px;
    display: grid;
    place-items: center;
    perspective: 1200px;
}

.orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.6;
}

.orb-one {
    top: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(228, 184, 63, 0.32), transparent 64%);
}

.orb-two {
    right: 4%;
    bottom: 5%;
    background: radial-gradient(circle, rgba(82, 168, 255, 0.22), transparent 64%);
}

.command-shell {
    width: min(100%, 760px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(12, 12, 12, 0.78);
    box-shadow: var(--shadow);
    transform: rotateX(5deg) rotateY(-8deg);
    transition: transform 300ms ease;
}

.command-shell:hover {
    transform: rotateX(0) rotateY(0) translateY(-8px);
}

.shell-top {
    display: flex;
    gap: 8px;
    padding: 8px 8px 18px;
}

.shell-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.shell-top span:nth-child(2) {
    background: rgba(228, 184, 63, 0.7);
}

.live-feed {
    display: grid;
    gap: 14px;
}

.feed-card {
    position: relative;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.feed-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(228, 184, 63, 0.12), transparent);
    opacity: 0;
    transition: opacity 220ms ease;
}

.feed-card.active::before,
.feed-card.hot::before {
    opacity: 1;
}

.feed-card small,
.feed-card strong,
.feed-card em {
    position: relative;
    z-index: 1;
}

.feed-card small {
    display: block;
    margin-bottom: 8px;
    color: rgba(247, 243, 232, 0.48);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
}

.feed-card strong {
    display: block;
    color: var(--text);
    line-height: 1.45;
}

.feed-card em {
    display: inline-flex;
    margin-top: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #0b0904;
    background: var(--gold);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 800;
}

.feed-card.hot em {
    color: #fff;
    background: var(--danger);
}

.floating-kpi {
    position: absolute;
    width: 168px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.74);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.floating-kpi small,
.floating-kpi span {
    display: block;
    color: rgba(247, 243, 232, 0.55);
    font-size: 0.78rem;
    font-weight: 800;
}

.floating-kpi strong {
    display: block;
    margin: 8px 0 4px;
    color: var(--gold-2);
    font-size: 1.75rem;
    letter-spacing: -0.06em;
}

.kpi-left {
    left: 2%;
    bottom: 15%;
}

.kpi-right {
    right: 0;
    top: 13%;
}

.signal-story {
    min-height: 260vh;
    padding-top: 80px;
    padding-bottom: 80px;
}

.sticky-wrap {
    position: sticky;
    top: 120px;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 46px;
    align-items: center;
    min-height: calc(100vh - 160px);
}

.story-copy h2 {
    max-width: 690px;
}

.signal-console {
    position: relative;
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(260px, 1.15fr);
    gap: 18px;
    align-items: stretch;
}

.signal-meter,
.signal-lines,
.signal-device {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.signal-meter {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-radius: 28px;
}

.signal-meter span {
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    line-height: 1;
    color: var(--gold-2);
    font-weight: 800;
    letter-spacing: -0.08em;
}

.signal-meter small {
    color: rgba(247, 243, 232, 0.58);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
}

.signal-lines {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 28px;
}

.signal-step {
    width: 100%;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px 12px;
    text-align: left;
    color: rgba(247, 243, 232, 0.55);
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 14px;
    background: transparent;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.signal-step span {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #080806;
    background: rgba(228, 184, 63, 0.5);
    font-size: 0.78rem;
    font-weight: 800;
}

.signal-step strong {
    color: var(--text);
}

.signal-step em {
    font-style: normal;
    line-height: 1.45;
    font-size: 0.88rem;
}

.signal-step.active {
    color: rgba(247, 243, 232, 0.82);
    border-color: rgba(228, 184, 63, 0.28);
    background: rgba(228, 184, 63, 0.1);
}

.signal-device {
    position: relative;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border-radius: 34px;
    overflow: hidden;
}

.signal-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    filter: saturate(0.75) contrast(1.08) brightness(0.6);
    transform: scale(1.06) translateY(calc(var(--device-shift, 0) * -0.08));
    transition: transform 520ms ease, opacity 520ms ease;
}

.signal-device::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.1) 0%, rgba(7, 7, 7, 0.52) 48%, rgba(10, 8, 4, 0.9) 100%),
        radial-gradient(circle at 50% 20%, rgba(228, 184, 63, 0.18), transparent 26rem),
        linear-gradient(90deg, rgba(7, 7, 7, 0.24), transparent 48%, rgba(7, 7, 7, 0.32));
}

.signal-device::after {
    content: "";
    position: absolute;
    inset: auto -12% -20% -12%;
    z-index: 2;
    height: 58%;
    background:
        linear-gradient(180deg, transparent, rgba(228, 184, 63, 0.16)),
        radial-gradient(circle, rgba(228, 184, 63, 0.32), transparent 64%);
    transform: translateY(var(--device-shift, 0));
    transition: transform 400ms ease;
}

.device-glow {
    position: absolute;
    top: 12%;
    left: 50%;
    z-index: 2;
    width: 220px;
    height: 220px;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 1px solid rgba(228, 184, 63, 0.25);
    box-shadow: inset 0 0 70px rgba(228, 184, 63, 0.18), 0 0 90px rgba(228, 184, 63, 0.12);
}

.signal-device p,
.signal-device h3,
.signal-device span {
    position: relative;
    z-index: 3;
}

.signal-device p {
    color: var(--gold-2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.signal-device h3 {
    max-width: 520px;
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 2.35vw, 2.9rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.signal-device span {
    color: rgba(247, 243, 232, 0.58);
}

.contrast-section,
.proof,
.deep-dive,
.operator-section,
.manifesto {
    padding-top: 110px;
    padding-bottom: 110px;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.before-after,
.proof-grid,
.deep-grid,
.manifesto-grid,
.market-grid,
.operator-grid {
    display: grid;
    gap: 20px;
}

.before-after {
    grid-template-columns: 1fr 1fr;
}

.lead-photo-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    min-height: 360px;
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid rgba(18, 16, 11, 0.13);
    border-radius: var(--radius-lg);
    background: #12100b;
    box-shadow: 0 30px 110px rgba(18, 16, 11, 0.14);
}

.lead-photo-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 76% 12%, rgba(228, 184, 63, 0.24), transparent 25rem),
        linear-gradient(90deg, rgba(18, 16, 11, 0.05), rgba(18, 16, 11, 0.74) 52%, #12100b 100%);
    pointer-events: none;
}

.lead-photo-band img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.04) brightness(0.88);
}

.lead-photo-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 640px;
    padding: clamp(28px, 4vw, 58px);
    color: var(--text);
}

.lead-photo-copy span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 800;
}

.lead-photo-copy h3 {
    max-width: 560px;
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.05vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.lead-photo-copy p {
    max-width: 530px;
    color: rgba(247, 243, 232, 0.68);
}

.comparison-card,
.deep-card,
.manifesto-card,
.market-card,
.operator-card,
.feature-panel,
.timeline-card {
    border: 1px solid rgba(18, 16, 11, 0.12);
    border-radius: var(--radius-lg);
    padding: 30px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 24px 80px rgba(18, 16, 11, 0.08);
}

.comparison-card small,
.feature-panel span,
.timeline-card span,
.market-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 800;
}

.comparison-card ul,
.demo-checklist ul {
    margin: 18px 0 0;
    padding-left: 20px;
}

.comparison-card li,
.demo-checklist li {
    margin: 12px 0;
    line-height: 1.55;
    color: rgba(18, 16, 11, 0.68);
}

.comparison-card-gold {
    color: var(--text);
    border-color: rgba(228, 184, 63, 0.32);
    background:
        radial-gradient(circle at 85% 0%, rgba(228, 184, 63, 0.32), transparent 18rem),
        #12100b;
}

.comparison-card-gold p,
.comparison-card-gold li {
    color: rgba(247, 243, 232, 0.72);
}

.platform-rail {
    padding-top: 110px;
    padding-bottom: 120px;
    overflow: hidden;
}

.rail-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.rail {
    display: flex;
    gap: 18px;
    width: max-content;
    transform: translateX(var(--rail-shift, 0));
    transition: transform 120ms linear;
}

.rail-card {
    width: min(72vw, 360px);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.035);
}

.rail-card span {
    margin-bottom: auto;
    color: var(--gold-2);
    font-size: 0.82rem;
    font-weight: 800;
}

.rail-card p {
    color: rgba(247, 243, 232, 0.62);
    line-height: 1.6;
}

.proof-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
}

.proof-copy h2 {
    color: #12100b;
}

.proof-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.proof-metrics article {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    border-radius: 28px;
    background: #12100b;
    color: var(--text);
}

.proof-metrics strong {
    margin-bottom: 12px;
    color: var(--gold-2);
    font-size: 4rem;
    line-height: 0.9;
    letter-spacing: -0.09em;
}

.proof-metrics span {
    color: rgba(247, 243, 232, 0.68);
}

.demo-band {
    padding-top: 110px;
    padding-bottom: 110px;
}

.demo-band-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(34px, 7vw, 72px);
    border: 1px solid rgba(228, 184, 63, 0.22);
    border-radius: 42px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(228, 184, 63, 0.22), transparent 25rem),
        rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 42px max(var(--page-gutter), calc((100vw - var(--max)) / 2));
    color: rgba(247, 243, 232, 0.62);
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: 14px;
}

.site-footer p {
    max-width: 440px;
    line-height: 1.6;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 20px;
}

.site-footer nav a {
    color: rgba(247, 243, 232, 0.68);
    font-weight: 800;
}

.page-hero {
    min-height: 86vh;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
    gap: 48px;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 80px;
}

.page-hero.compact {
    min-height: 70vh;
    grid-template-columns: minmax(0, 940px);
    justify-content: center;
    text-align: center;
}

.page-hero-visual {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 36px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow);
    transform: rotateX(4deg) rotateY(-6deg);
}

.page-hero-visual img {
    border-radius: 26px;
}

.feature-matrix,
.timeline-section,
.market-section {
    padding-top: 40px;
    padding-bottom: 110px;
}

.timeline-section {
    min-height: 520vh;
}

.feature-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-panel,
.timeline-card,
.market-card {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
}

.feature-panel p,
.timeline-card p,
.market-card p {
    color: rgba(247, 243, 232, 0.65);
    line-height: 1.65;
}

.deep-grid,
.manifesto-grid,
.market-grid,
.operator-grid {
    grid-template-columns: repeat(3, 1fr);
}

.timeline {
    position: relative;
    max-width: 980px;
    min-height: min(62vh, 560px);
    margin: 0 auto;
    position: sticky;
    top: 128px;
    perspective: 1200px;
}

.timeline-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: min(62vh, 560px);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 44px, -70px) scale(0.94);
    filter: blur(10px);
    transition:
        opacity 420ms ease,
        transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 420ms ease,
        border-color 420ms ease,
        background 420ms ease;
}

.timeline-card.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    border-color: rgba(228, 184, 63, 0.3);
    background:
        radial-gradient(circle at 85% 0%, rgba(228, 184, 63, 0.18), transparent 22rem),
        rgba(255, 255, 255, 0.07);
}

.timeline-card.is-past {
    opacity: 0;
    transform: translate3d(0, -56px, -120px) scale(0.92);
    filter: blur(12px);
}

.timeline-card.is-next {
    opacity: 0;
    transform: translate3d(0, 56px, -120px) scale(0.92);
    filter: blur(12px);
}

.operator-grid {
    margin-top: 36px;
}

.operator-card {
    min-height: 190px;
}

.operator-card small {
    display: block;
    margin-bottom: 16px;
    color: rgba(18, 16, 11, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
}

.operator-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.booking-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 48px;
    align-items: center;
    padding-top: 132px;
    padding-bottom: 90px;
}

.booking-note,
.demo-checklist,
.booking-form {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow);
}

.booking-note {
    display: grid;
    gap: 8px;
    margin-top: 34px;
    padding: 22px;
}

.booking-note strong {
    color: var(--gold-2);
}

.booking-note span,
.demo-checklist,
.booking-form {
    color: rgba(247, 243, 232, 0.72);
}

.demo-checklist {
    margin-top: 18px;
    padding: 22px;
}

.demo-checklist span {
    display: block;
    color: var(--text);
    font-weight: 800;
}

.demo-checklist li {
    color: rgba(247, 243, 232, 0.68);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: clamp(24px, 4vw, 38px);
}

.form-heading,
.booking-form .full {
    grid-column: 1 / -1;
}

.form-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.booking-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: var(--text);
    background: rgba(0, 0, 0, 0.34);
    padding: 15px 16px;
    outline: none;
    transition: border-color 180ms ease, background 180ms ease;
}

.booking-form select option {
    color: #111;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: rgba(228, 184, 63, 0.75);
    background: rgba(0, 0, 0, 0.48);
}

.form-status {
    grid-column: 1 / -1;
    margin: 0;
    min-height: 24px;
    color: var(--green);
    font-weight: 800;
}

.fp-assistant-fallback {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 80;
    display: grid;
    justify-items: end;
    gap: 12px;
    font-family: inherit;
}

.fp-assistant-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px 18px 10px 10px;
    border: 1px solid rgba(228, 184, 63, 0.34);
    border-radius: 999px;
    color: #080806;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38), 0 0 34px rgba(228, 184, 63, 0.2);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.fp-assistant-button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--gold-2);
    background: #080806;
    letter-spacing: 0.03em;
}

.fp-assistant-panel {
    width: min(340px, calc(100vw - 44px));
    padding: 22px;
    border: 1px solid rgba(228, 184, 63, 0.28);
    border-radius: 24px;
    color: var(--text);
    background:
        radial-gradient(circle at 85% 0%, rgba(228, 184, 63, 0.18), transparent 13rem),
        rgba(9, 9, 8, 0.96);
    box-shadow: var(--shadow);
}

.fp-assistant-panel small {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 800;
}

.fp-assistant-panel p {
    margin-bottom: 16px;
    color: rgba(247, 243, 232, 0.72);
    font-size: 0.94rem;
    line-height: 1.55;
}

.fp-assistant-panel code {
    color: var(--gold-2);
}

.fp-assistant-panel a {
    color: var(--gold-2);
    font-weight: 800;
}

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

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

@media (max-width: 1080px) {
    .hero,
    .page-hero,
    .booking-page,
    .sticky-wrap,
    .proof-grid,
    .lead-photo-band {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 560px;
    }

    .lead-photo-band {
        min-height: 520px;
    }

    .lead-photo-band::before {
        background:
            linear-gradient(180deg, rgba(18, 16, 11, 0.06) 0%, rgba(18, 16, 11, 0.55) 42%, #12100b 100%),
            radial-gradient(circle at 70% 18%, rgba(228, 184, 63, 0.24), transparent 22rem);
    }

    .lead-photo-band img,
    .lead-photo-copy {
        grid-column: 1;
        grid-row: 1;
    }

    .lead-photo-band img {
        min-height: 520px;
    }

    .lead-photo-copy {
        align-self: end;
    }

    .signal-story {
        min-height: auto;
    }

    .timeline-section {
        min-height: auto;
    }

    .timeline {
        position: relative;
        top: 0;
        display: grid;
        gap: 18px;
        min-height: auto;
        perspective: none;
    }

    .timeline-card,
    .timeline-card.is-active,
    .timeline-card.is-past,
    .timeline-card.is-next {
        position: relative;
        inset: auto;
        min-height: auto;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        filter: none;
    }

    .sticky-wrap {
        position: relative;
        top: 0;
        min-height: auto;
    }

    .feature-matrix,
    .deep-grid,
    .manifesto-grid,
    .market-grid,
    .operator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 12px;
        width: min(calc(100% - 22px), 1240px);
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 82px;
        left: 11px;
        right: 11px;
        display: grid;
        gap: 8px;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 24px;
        background: rgba(7, 7, 7, 0.96);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        width: 100%;
    }

    .hero,
    .page-hero,
    .booking-page {
        padding-top: 118px;
    }

    h1 {
        font-size: clamp(2.75rem, 14.5vw, 4.5rem);
        line-height: 1.04;
    }

    .hero-stage {
        min-height: 520px;
    }

    .command-shell {
        transform: none;
    }

    .floating-kpi {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 12px;
    }

    .signal-console,
    .before-after,
    .lead-photo-band,
    .feature-matrix,
    .deep-grid,
    .manifesto-grid,
    .market-grid,
    .operator-grid,
    .proof-metrics,
    .booking-form {
        grid-template-columns: 1fr;
    }

    .site-footer {
        flex-direction: column;
    }

    .site-footer nav {
        justify-content: flex-start;
    }

    .fp-assistant-fallback {
        right: 14px;
        bottom: 14px;
    }

    .fp-assistant-button {
        min-height: 52px;
        padding-right: 14px;
    }

    .fp-assistant-button strong {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

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