:root {
    --bg: #080808;
    --bg-soft: #0d0d0d;
    --panel: #111111;
    --panel-2: #151515;
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f7f7f2;
    --muted: #929292;
    --yellow: #ffd100;
    --yellow-soft: rgba(255, 209, 0, 0.14);
    --max: 1440px;
}

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

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

body {
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: var(--yellow);
    color: #000;
}

a {
    color: inherit;
}

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

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.cursor-glow {
    width: 280px;
    height: 280px;
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle, rgba(255, 209, 0, 0.03), transparent 67%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.section-shell {
    width: min(calc(100% - 12vw), var(--max));
    margin: 0 auto;
}

.navbar {
    width: 100%;
    height: 92px;
    padding: 0 6vw;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 90;
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    transform: translateX(-50%);
    transition:
        top 0.48s cubic-bezier(.2,.75,.25,1),
        width 0.48s cubic-bezier(.2,.75,.25,1),
        height 0.48s cubic-bezier(.2,.75,.25,1),
        padding 0.48s cubic-bezier(.2,.75,.25,1),
        border-color 0.35s ease,
        border-radius 0.48s cubic-bezier(.2,.75,.25,1),
        background 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}

.navbar::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 8%;
    width: 84%;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 0, 0.76), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.navbar.scrolled {
    top: 14px;
    width: min(calc(100% - 36px), 1380px);
    height: 72px;
    padding: 0 14px 0 18px;
    border-color: rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.76);
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.navbar.scrolled::before {
    opacity: 0.8;
}

.brand {
    justify-self: start;
    width: 340px;
    height: 88px;
    display: flex;
    align-items: center;
    overflow: visible;
    transition:
        width 0.48s cubic-bezier(.2,.75,.25,1),
        height 0.48s cubic-bezier(.2,.75,.25,1);
}

.brand img {
    width: 340px;
    height: auto;
    transform-origin: left center;
    transition:
        width 0.48s cubic-bezier(.2,.75,.25,1),
        transform 0.35s cubic-bezier(.2,.75,.25,1);
}

.navbar.scrolled .brand {
    width: 205px;
    height: 58px;
}

.navbar.scrolled .brand img {
    width: 205px;
}

.brand:hover img {
    transform: scale(1.06);
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 14px 35px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.navbar.scrolled .desktop-nav {
    background: rgba(255, 255, 255, 0.022);
    border-color: rgba(255, 255, 255, 0.065);
    box-shadow: none;
}

.desktop-nav a,
.nav-cta,
.text-link,
.footer a {
    text-decoration: none;
}

.desktop-nav a {
    position: relative;
    padding: 11px 18px;
    border-radius: 999px;
    color: #c7c7c2;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.015em;
    white-space: nowrap;
    transition:
        color 0.28s ease,
        background 0.28s ease,
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--yellow);
    opacity: 0;
    transform: translateX(-50%) scaleX(0.3);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.desktop-nav a:hover {
    color: #ffffff;
    background: rgba(255, 209, 0, 0.07);
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(255, 209, 0, 0.08);
}

.desktop-nav a:hover::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.nav-cta {
    justify-self: end;
    font-size: 15px;
    font-weight: 750;
    padding: 14px 24px;
    color: #090909;
    background: var(--yellow);
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled .nav-cta {
    box-shadow: 0 8px 28px rgba(255, 209, 0, 0.12);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255, 209, 0, 0.18);
}

.hero {
    min-height: 92svh;
    padding-top: 135px;
    padding-bottom: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: center;
    gap: clamp(40px, 7vw, 110px);
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    top: -310px;
    right: -330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 209, 0, 0.1) 0, rgba(255, 209, 0, 0.035) 30%, transparent 66%);
    pointer-events: none;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d7d7d0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.eyebrow > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 20px rgba(255, 209, 0, 0.7);
}

h1,
h2 {
    font-weight: 730;
    letter-spacing: -0.065em;
    line-height: 0.91;
}

h1 {
    font-size: clamp(72px, 8.1vw, 132px);
    margin-left: -0.055em;
}

h1 em,
h2 em {
    color: var(--yellow);
    font-style: normal;
}

.hero-lead {
    max-width: 620px;
    margin-top: 36px;
    color: #a8a8a4;
    font-size: clamp(17px, 1.3vw, 21px);
    line-height: 1.6;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

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

.button-primary {
    background: var(--yellow);
    color: #070707;
    box-shadow: 0 12px 40px rgba(255, 209, 0, 0.08);
}

.button-primary:hover {
    box-shadow: 0 16px 48px rgba(255, 209, 0, 0.18);
}

.text-link {
    color: #b6b6b2;
    font-size: 14px;
    font-weight: 650;
    transition: color 0.25s ease;
}

.text-link span {
    color: var(--yellow);
    margin-left: 5px;
}

.text-link:hover {
    color: #fff;
}

.hero-proof {
    margin-top: 58px;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.hero-proof::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 0, 0.75), transparent);
    opacity: 0.7;
}

.hero-proof-item {
    min-width: 0;
    padding: 22px 20px 21px;
    position: relative;
    border-radius: 14px;
    transition: background 0.28s ease, transform 0.28s ease;
}

.hero-proof-item + .hero-proof-item::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;
    width: 1px;
    background: var(--line);
}

.hero-proof-item:hover {
    background: rgba(255, 209, 0, 0.03);
    transform: translateY(-2px);
}

.hero-proof small {
    display: block;
    margin-bottom: 14px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-proof strong {
    display: block;
    color: #f4f4ef;
    font-size: clamp(26px, 2.2vw, 35px);
    font-weight: 760;
    line-height: 1.04;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.hero-proof .proof-value-wide {
    font-size: clamp(22px, 1.9vw, 30px);
}

.hero-proof span {
    display: block;
    margin-top: 9px;
    max-width: 190px;
    color: #9b9b9b;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.hero-stage {
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.5);
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.22) 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 88% 50%;
    transition: transform 0.8s cubic-bezier(.2,.75,.25,1);
}

.hero-image-wrap:hover .hero-image {
    transform: scale(1.025);
}

.scroll-cue {
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #555;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 9px;
}

.scroll-cue span {
    width: 28px;
    height: 1px;
    background: #555;
    position: relative;
    overflow: hidden;
}

.scroll-cue span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--yellow);
    transform: translateX(-100%);
    animation: scrollLine 2.2s ease-in-out infinite;
}

.why {
    padding-top: 28px;
    padding-bottom: 70px;
}

.section-label {
    color: #5e5e5e;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.section-label-feature {
    width: fit-content;
    padding: 18px 26px 20px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    color: #f4f4ef;
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 730;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 0, 0.8), transparent);
}

.section-label-feature::after {
    content: none;
}

.section-label-kicker {
    color: #f4f4ef;
    font-size: inherit;
    font-weight: 730;
    letter-spacing: -0.04em;
}

.section-label-brand {
    display: inline-block;
    font-size: inherit;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.07em;
    white-space: nowrap;
}

.section-label-taxi {
    color: var(--yellow);
    text-shadow: 0 0 14px rgba(255, 209, 0, 0.10);
}

.section-label-loom {
    color: #f4f4ef;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 10vw;
    padding-top: 70px;
}

.why h2,
.network-intro h2,
.difference h2,
.cta-content h2 {
    font-size: clamp(58px, 7vw, 104px);
}

.why-headline h2 {
    max-width: 620px;
}

.why-story {
    padding-top: 8px;
}

.why-story p {
    font-size: clamp(23px, 2.25vw, 35px);
    letter-spacing: -0.035em;
    line-height: 1.28;
}

.story-muted {
    color: #4f4f4f;
    margin-bottom: 8px;
}

.story-focus {
    margin-top: 34px;
    color: #deded9;
}

.story-focus mark {
    color: var(--yellow);
    background: none;
}

.attention-track {
    margin-top: 55px;
    padding: 34px 0 22px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.track-labels,
.track-times {
    display: grid;
    grid-template-columns: 28% 72%;
}

.track-labels {
    color: #6a6a6a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.track-labels span:last-child,
.track-times strong {
    color: var(--yellow);
}

.track-line {
    display: grid;
    grid-template-columns: 28% 72%;
    gap: 0;
    margin: 15px 0;
}

.track-line span {
    display: block;
    height: 4px;
}

.track-line .short {
    width: 32%;
    background: #3a3a3a;
}

.track-line .long {
    width: 100%;
    position: relative;
    overflow: visible;
    background: linear-gradient(90deg, var(--yellow), rgba(255,209,0,0.3));
    box-shadow: 0 0 28px rgba(255,209,0,0.12);
}

.track-line .track-taxi {
    width: 56px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 2;
    padding: 0 5px;
    color: var(--yellow);
    background: var(--bg);
    filter: drop-shadow(0 0 6px rgba(255, 209, 0, 0.18));
    transform: translate(-50%, -50%);
    animation: taxiDrive 48s linear infinite;
}

.track-taxi svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    fill: #0d0d0d;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.track-times {
    color: #585858;
    font-size: 12px;
}

.track-times strong {
    font-weight: 700;
}

.network-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.network-inner {
    padding-top: 70px;
    padding-bottom: 58px;
}

.network-map-shell {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    scroll-margin-top: 98px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px;
    background: #080b0e;
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.network-map-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.34);
}

.network-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.04);
    transform: scale(1.002);
}

.network-map-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.30) 22%, transparent 43%, transparent 70%, rgba(8, 8, 8, 0.34)),
        radial-gradient(circle at 50% 48%, transparent 45%, rgba(0, 0, 0, 0.22) 100%);
}

.network-map-points {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.network-map-heading {
    position: absolute;
    top: 30px;
    left: 32px;
    z-index: 5;
    max-width: 520px;
    pointer-events: none;
}

.network-map-heading h2 {
    max-width: 620px;
    font-size: clamp(38px, 4.3vw, 66px);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.network-brand {
    display: inline-block;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.075em;
    white-space: nowrap;
}

.network-brand-taxi {
    color: var(--yellow);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 1px rgba(255, 209, 0, 0.65),
        0 10px 26px rgba(255, 209, 0, 0.12);
}

.network-brand-loom {
    color: #f3f3f3;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.15),
        0 10px 26px rgba(255, 255, 255, 0.08);
}

.network-map-copy {
    position: absolute;
    top: 32px;
    right: 34px;
    z-index: 5;
    width: min(31vw, 430px);
    margin: 0;
    color: rgba(236, 236, 232, 0.68);
    font-size: clamp(11px, 0.92vw, 14px);
    line-height: 1.6;
    text-align: right;
    pointer-events: none;
}

.network-node {
    width: var(--node-size, 19px);
    height: calc(var(--node-size, 19px) * 0.48);
    position: absolute;
    left: var(--node-x);
    top: var(--node-y);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.18);
    transition:
        opacity 0.82s ease,
        transform 0.96s cubic-bezier(.15,.8,.25,1.24);
}

.network-node svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    transition: filter 0.65s ease;
}

.network-node svg * {
    fill: none;
    stroke: var(--yellow);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.network-node::after {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 209, 0, 0.32), rgba(255, 209, 0, 0.08) 48%, transparent 72%);
    opacity: 0;
    transform: scale(0.3);
}

.network-node.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: networkNodeFloat 4s ease-in-out infinite;
    animation-delay: var(--pulse-delay, 0s);
}

.network-node.active svg {
    filter:
        drop-shadow(0 0 2px rgba(255, 209, 0, 0.95))
        drop-shadow(0 0 8px rgba(255, 209, 0, 0.42));
}

.network-node.active::after {
    animation: networkNodeRing 3.6s ease-out infinite;
    animation-delay: var(--pulse-delay, 0s);
}

.network-map-status {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 5;
    min-height: 80px;
    padding: 0 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
    color: #9a9a96;
    font-size: 20px;
    font-weight: 650;
}

.network-map-status strong {
    min-width: 48px;
    color: var(--yellow);
    font-size: 32px;
    font-weight: 850;
    letter-spacing: -0.04em;
    text-align: right;
}

.network-status-light {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 14px rgba(255, 209, 0, 0.7);
    animation: statusPulse 2.2s ease-in-out infinite;
}

.network-map-caption {
    position: absolute;
    right: 24px;
    bottom: 27px;
    z-index: 5;
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.network-foot {
    padding-top: 22px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 30px;
    color: #5f5f5d;
    font-size: 11px;
}

.network-foot strong {
    color: #a2a29d;
    font-size: 12px;
    font-weight: 700;
}

@keyframes networkNodeFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, calc(-50% - 1px)) scale(1.02);
    }
}

@keyframes networkNodeRing {
    0% {
        opacity: 0;
        transform: scale(0.35);
    }
    18% {
        opacity: 0.55;
    }
    55%, 100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

@keyframes statusPulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

.difference {
    padding-top: 160px;
    padding-bottom: 160px;
}

.difference-copy {
    padding: 78px 0 85px;
}

.difference-copy h2 {
    max-width: 900px;
}

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

.difference-card {
    min-height: 320px;
    padding: 36px 34px;
    background: var(--bg);
    transition: background 0.3s ease;
}

.difference-card:hover {
    background: #0d0d0d;
}

.difference-card > span {
    color: var(--yellow);
    font-size: 10px;
    font-weight: 800;
}

.difference-card h3 {
    margin-top: 105px;
    font-size: 25px;
    letter-spacing: -0.035em;
}

.difference-card p {
    margin-top: 14px;
    max-width: 330px;
    color: #777;
    font-size: 13px;
    line-height: 1.65;
}

.cta-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background:
        radial-gradient(circle at 82% 24%, rgba(255, 209, 0, 0.09), transparent 27%),
        linear-gradient(180deg, #0b0b0b 0%, #060606 100%);
    color: #f4f4ef;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    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: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 78%);
}

.contact-orbit {
    position: absolute;
    width: 560px;
    height: 560px;
    right: -220px;
    top: -210px;
    border: 1px solid rgba(255, 209, 0, 0.10);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(255, 209, 0, 0.018),
        0 0 0 160px rgba(255, 209, 0, 0.010);
    pointer-events: none;
}

.contact-shell {
    position: relative;
    z-index: 2;
    padding-top: 58px;
    padding-bottom: 92px;
}

.contact-top {
    position: relative;
    max-width: 1120px;
}

.contact-heading {
    position: relative;
}

.contact-heading .eyebrow {
    color: #8a8a84;
}

.contact-heading h2 {
    max-width: 980px;
    margin-top: 24px;
    font-size: clamp(58px, 6.2vw, 96px);
    line-height: 0.90;
    letter-spacing: -0.062em;
}

.contact-heading h2 em {
    color: var(--yellow);
}

.contact-heading-copy {
    max-width: 720px;
    margin-top: 28px;
    padding-left: 18px;
    position: relative;
    color: #d0d0ca;
    font-size: clamp(18px, 1.45vw, 22px);
    font-weight: 620;
    line-height: 1.55;
    letter-spacing: -0.018em;
}

.contact-heading-copy::before {
    content: "";
    width: 3px;
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    border-radius: 999px;
    background: var(--yellow);
    box-shadow: 0 0 16px rgba(255, 209, 0, 0.22);
}

.contact-grid {
    margin-top: 58px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.contact-card {
    min-height: 285px;
    padding: 24px 24px 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.036), rgba(255,255,255,0.012));
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.34s cubic-bezier(.2,.75,.25,1),
        border-color 0.34s ease,
        background 0.34s ease,
        box-shadow 0.34s ease;
}

.contact-card::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -105px;
    top: -115px;
    border-radius: 50%;
    background: rgba(255, 209, 0, 0.055);
    filter: blur(8px);
    transition: transform 0.45s ease, background 0.45s ease;
    pointer-events: none;
}

.contact-card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,209,0,.26), rgba(255,255,255,.04));
    pointer-events: none;
}

.contact-card:not(.contact-card-static):hover {
    transform: translateY(-7px);
    border-color: rgba(255, 209, 0, 0.28);
    background:
        linear-gradient(145deg, rgba(255,209,0,0.045), rgba(255,255,255,0.018));
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.contact-card:not(.contact-card-static):hover::before {
    transform: scale(1.18);
    background: rgba(255, 209, 0, 0.09);
}

.contact-card-top,
.contact-card-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.contact-card-top {
    justify-content: flex-start;
}

.contact-card-type {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-card-center {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 26px 0 34px;
}

.contact-card-symbol {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 209, 0, 0.22);
    border-radius: 50%;
    background: rgba(255, 209, 0, 0.055);
    color: var(--yellow);
    font-size: 18px;
    box-shadow: inset 0 0 20px rgba(255, 209, 0, 0.025);
}

.contact-card strong {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    color: #f5f5f1;
    font-size: clamp(23px, 1.85vw, 31px);
    font-weight: 690;
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.contact-card-center p {
    max-width: 330px;
    margin-top: 12px;
    color: #74746f;
    font-size: 12px;
    line-height: 1.55;
}

.contact-card-bottom {
    color: #777771;
    font-size: 11px;
    font-weight: 700;
}

.contact-card-action {
    color: var(--yellow);
    transition: transform 0.28s ease;
}

.contact-card:not(.contact-card-static):hover .contact-card-action {
    transform: translate(3px, -3px);
}

.contact-card-action-muted {
    color: #555550;
}

.contact-after {
    margin-top: 18px;
    padding: 42px 44px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(50px, 8vw, 120px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 24px;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.026), rgba(255,255,255,0.008));
}

.contact-after::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -180px;
    bottom: -230px;
    border-radius: 50%;
    background: rgba(255, 209, 0, 0.055);
    filter: blur(38px);
    pointer-events: none;
}

.contact-after-copy,
.contact-after-direct {
    position: relative;
    z-index: 2;
}

.contact-after-label {
    display: block;
    margin-bottom: 18px;
    color: #5f5f5a;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-after-copy p {
    max-width: 690px;
    color: #d0d0ca;
    font-size: clamp(20px, 1.65vw, 26px);
    line-height: 1.45;
    letter-spacing: -0.025em;
}

.contact-lead-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-lead-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 14px rgba(255, 209, 0, 0.62);
}

.contact-after-direct p {
    margin-top: 18px;
    max-width: 470px;
    color: #777772;
    font-size: 14px;
    line-height: 1.7;
}

.contact-after-actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-after-actions a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #d9d9d4;
    font-size: 12px;
    font-weight: 760;
    text-decoration: none;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        gap 0.25s ease;
}

.contact-after-actions a span {
    color: var(--yellow);
}

.contact-after-actions a:hover {
    gap: 13px;
    color: var(--yellow);
    border-color: rgba(255, 209, 0, 0.58);
}

.contact-signoff {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-signoff > span {
    color: var(--yellow);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.contact-signoff p {
    color: #50504c;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.footer {
    min-height: 230px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 38px;
}

.footer-brand {
    width: 340px;
    overflow: visible;
}


.footer-legal {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.025);
}

.footer-legal a {
    padding: 12px 18px;
    border-radius: 999px;
    color: #b9b9b4;
    font-size: 15px;
    font-weight: 720;
    letter-spacing: -0.015em;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-legal a:hover {
    color: #090909;
    background: var(--yellow);
    transform: translateY(-1px);
}

.footer-copy {
    justify-self: end;
    color: #666;
    font-size: 11px;
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(.2,.75,.25,1), transform 0.8s cubic-bezier(.2,.75,.25,1);
}

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

.reveal-delay-small {
    transition-delay: 0.1s;
}

.reveal-delay {
    transition-delay: 0.18s;
}







@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

@keyframes taxiDrive {
    0% {
        left: 0;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes wave {
    from { height: 16%; }
    to { height: 90%; }
}

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

@media (max-width: 1100px) {
    .navbar {
        grid-template-columns: 1fr 1fr;
    }

    .navbar.scrolled {
        width: min(calc(100% - 24px), 980px);
        top: 10px;
    }

    .desktop-nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 155px;
    }

    .hero-copy {
        max-width: 820px;
    }

    .hero-stage {
        min-height: auto;
        margin-top: 20px;
    }

    .hero-image-wrap {
        width: min(100%, 760px);
    }

    .hero-image {
        aspect-ratio: 16 / 10;
        object-position: 88% 50%;
    }

    .scroll-cue {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 760px) {
    .section-shell {
        width: min(calc(100% - 40px), var(--max));
    }

    .navbar {
        height: 70px;
        padding: 0 20px;
    }

    .navbar.scrolled {
        top: 8px;
        width: calc(100% - 16px);
        height: 64px;
        padding: 0 10px 0 14px;
    }

    .brand {
        width: 225px;
        height: 64px;
    }

    .brand img {
        width: 225px;
    }

    .navbar.scrolled .brand {
        width: 180px;
        height: 52px;
    }

    .navbar.scrolled .brand img {
        width: 180px;
    }

    .nav-cta {
        padding: 10px 15px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        padding-top: 125px;
        padding-bottom: 24px;
        gap: 48px;
    }

    h1 {
        font-size: clamp(62px, 19vw, 88px);
    }

    .hero-lead {
        margin-top: 28px;
        font-size: 16px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 46px;
        padding: 7px;
    }

    .hero-proof-item {
        padding: 20px 18px;
    }

    .hero-proof-item + .hero-proof-item::before {
        top: 0;
        bottom: auto;
        left: 18px;
        right: 18px;
        width: auto;
        height: 1px;
    }

    .hero-proof small {
        font-size: 12px;
    }

    .hero-proof span {
        max-width: none;
        font-size: 15px;
    }

    .hero-stage {
        min-height: auto;
    }

    .hero-image-wrap {
        width: 100%;
        border-radius: 20px;
    }

    .hero-image {
        aspect-ratio: 4 / 5;
        object-position: 88% 50%;
    }

    .why {
        padding-top: 24px;
        padding-bottom: 65px;
    }

    .difference {
        padding-top: 75px;
        padding-bottom: 65px;
    }

    .network-inner {
        padding-top: 65px;
        padding-bottom: 48px;
    }

    .why-grid {
        padding-top: 52px;
    }

    .why h2,
    .difference h2 {
        font-size: clamp(48px, 15vw, 72px);
    }

    .network-map-shell {
        aspect-ratio: 4 / 5;
        border-radius: 20px;
        scroll-margin-top: 88px;
    }

    .network-map-heading {
        top: 20px;
        left: 20px;
        max-width: calc(100% - 40px);
    }

    .network-map-heading h2 {
        font-size: clamp(32px, 9vw, 48px);
    }

    .network-map-copy {
        display: none;
    }

    .network-map-image {
        object-position: 50% 50%;
    }

    .network-map-status {
        left: 14px;
        bottom: 14px;
        min-height: 58px;
        padding: 0 19px;
        gap: 9px;
        font-size: 14px;
    }

    .network-map-status strong {
        min-width: 34px;
        font-size: 23px;
    }

    .network-status-light {
        width: 10px;
        height: 10px;
    }

    .network-map-caption {
        display: none;
    }

    .network-foot {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .section-label-feature {
        padding: 16px 20px 18px;
        font-size: clamp(22px, 8vw, 34px);
        gap: 9px;
    }

    .why-story p {
        font-size: 23px;
    }

    .attention-track {
        margin-top: 48px;
    }

    .track-labels,
    .track-times,
    .track-line {
        grid-template-columns: 34% 66%;
    }

    .track-times strong {
        font-size: 10px;
    }

    .track-line .track-taxi {
        width: 48px;
        height: 26px;
        padding: 0 4px;
    }

    .difference-copy {
        padding: 55px 0 60px;
    }

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

    .difference-card {
        min-height: 250px;
    }

    .difference-card h3 {
        margin-top: 65px;
    }

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

    .contact-shell {
        padding-top: 52px;
        padding-bottom: 70px;
    }

    .contact-top {
        max-width: none;
    }

    .contact-heading h2 {
        font-size: clamp(48px, 13.2vw, 68px);
    }

    .contact-heading-copy {
        margin-top: 22px;
        padding-left: 15px;
        font-size: 16px;
    }

    .contact-grid {
        margin-top: 44px;
        grid-template-columns: 1fr;
        gap: 12px;
        border: 0;
    }

    .contact-card {
        min-height: 245px;
        padding: 22px 20px 20px;
        border-radius: 20px;
    }

    .contact-card::after {
        left: 20px;
        right: 20px;
        bottom: 56px;
    }

    .contact-card-center {
        padding: 22px 0 30px;
    }

    .contact-card strong {
        font-size: clamp(24px, 7.1vw, 31px);
    }

    .contact-card:not(.contact-card-static):hover {
        transform: none;
    }

    .contact-after {
        margin-top: 12px;
        padding: 32px 24px;
        grid-template-columns: 1fr;
        gap: 38px;
        border-radius: 20px;
    }

    .contact-after-copy p {
        font-size: 20px;
    }

    .contact-after-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .contact-signoff {
        padding-top: 24px;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .contact-orbit {
        width: 360px;
        height: 360px;
        right: -180px;
        top: -150px;
    }


    .footer-brand {
        width: 225px;
    }

    .footer-brand img {
        width: 225px;
    }

    .footer {
        padding: 58px 0;
        min-height: auto;
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        gap: 30px;
    }

    .footer-brand {
        justify-self: center;
    }

    .footer-legal {
        justify-self: center;
        max-width: 100%;
        padding: 7px;
        gap: 5px;
        flex-wrap: wrap;
    }

    .footer-legal a {
        padding: 10px 13px;
        font-size: 13px;
    }

    .footer-copy {
        justify-self: center;
        text-align: center;
    }

    .cursor-glow {
        display: none;
    }
}

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