/* PickPoint - original brand palette (pickpoint.io) */
:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-2: #f4fafa;
    --border: rgba(0, 0, 0, 0.1);
    --teal: #008080;
    --teal-dark: #004040;
    --teal-brand: #018081;
    --accent: #008080;
    --accent-hover: #004040;
    --accent-cta: #ffffff;
    --accent-cta-hover: rgba(255,255,255,.88);
    --pill-bg: #102a2e;
    --text: #222222;
    --muted: #5c5c5c;
    --text-on-teal: #ffffff;
    --muted-on-teal: rgba(255, 255, 255, 0.8);
    --hero-gradient: linear-gradient(180deg, #008080 0%, #004040 100%);
    --radius: 12px;
    --radius-lg: 20px;
    --font: "Roboto", system-ui, -apple-system, sans-serif;
    --max-w: 1120px;
    --header-h: 80px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--teal-brand);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

a:hover {
    color: var(--teal-dark);
}

.container {
    width: min(100% - 2rem, var(--max-w));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: #ffffff;
    box-shadow: 0 0 2px 1px rgba(61, 61, 61, 0.2);
}

.site-header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-self: start;
}

.logo-img {
    display: block;
    height: 39px;
    width: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    justify-self: center;
}

.nav-desktop a {
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-desktop a:hover {
    opacity: 0.65;
    color: var(--text);
}

.nav-desktop a[aria-current="page"] {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: end;
}

.lang-switch {
    position: relative;
    font-size: 0.8125rem;
    font-weight: 600;
}

.lang-switch__toggle {
    list-style: none;
    cursor: pointer;
    color: var(--text);
    padding: 0.35rem 0.625rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    line-height: 1.2;
}

.lang-switch__toggle::-webkit-details-marker {
    display: none;
}

.lang-switch__toggle::after {
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    margin-left: 0.35rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.55;
    vertical-align: middle;
}

.lang-switch[open] .lang-switch__toggle {
    border-color: rgba(0, 128, 128, 0.35);
    color: var(--teal-dark);
}

.lang-switch__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    z-index: 120;
    display: flex;
    flex-direction: column;
    min-width: 7rem;
    padding: 0.35rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 64, 64, 0.12);
}

.lang-switch__option {
    color: var(--muted);
    padding: 0.4rem 0.625rem;
    border-radius: 6px;
    white-space: nowrap;
}

.lang-switch__option:hover {
    color: var(--text);
    background: var(--surface-2);
}

.lang-switch__option.active {
    color: var(--teal-dark);
    background: rgba(0, 128, 128, 0.1);
}

.lang-switch--mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.lang-switch--mobile .lang-switch__option {
    padding: 0.35rem 0.625rem;
    border: 1px solid var(--border);
    font-size: 0.8125rem;
}

.lang-switch--mobile .lang-switch__option.active {
    border-color: rgba(0, 128, 128, 0.35);
}

.nav-toggle {
    display: none;
    background: var(--teal-brand);
    border: none;
    color: #fff;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    line-height: 0;
}

.nav-mobile {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 200;
    background: var(--bg);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 1px solid var(--border);
    overflow-y: auto;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    color: var(--muted);
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
}

.nav-mobile a:hover {
    color: var(--text);
}

@media (max-width: 768px) {
    .site-header .container {
        display: flex;
        justify-content: space-between;
    }

    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    /* Hide lang-switch in header on mobile - it lives in nav-mobile instead */
    .header-actions .lang-switch {
        display: none;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
}

.btn-primary:hover {
    background: var(--teal-dark);
    color: #fff;
}

.btn-signin {
    background: transparent;
    color: var(--teal-brand);
    border: 1px solid var(--teal-brand);
}

.btn-signin:hover {
    background: var(--teal-brand);
    color: #fff;
}

.btn-cta {
    background: var(--accent-cta);
    color: var(--teal-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.btn-cta:hover {
    background: var(--accent-cta-hover);
    color: var(--teal-dark);
}

/* CTA on light backgrounds - brand teal, not neon cyan */
.dev-stage .btn-primary,
.section-band--light .btn-primary.btn-lg {
    box-shadow: 0 4px 14px rgba(0, 128, 128, 0.22);
}

.dev-stage .btn-primary:hover {
    box-shadow: 0 6px 18px rgba(0, 128, 128, 0.28);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--surface-2);
    color: var(--text);
}

.hero .btn-ghost,
.cta-band .btn-ghost {
    color: var(--text-on-teal);
    border-color: rgba(255, 255, 255, 0.45);
}

.hero .btn-ghost:hover,
.cta-band .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-on-teal);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    border-radius: 6px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4rem, 9vw, 6rem);
    background: var(--hero-gradient);
    color: var(--text-on-teal);
}

.hero__canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__canvas::before {
    content: "";
    position: absolute;
    inset: -50%;
    background-image: linear-gradient(rgba(0, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 65% 45%, #000 20%, transparent 75%);
    animation: hero-grid-drift 28s linear infinite;
}

.hero__canvas::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 10%;
    width: min(520px, 60vw);
    height: min(520px, 60vw);
    background: radial-gradient(circle, rgba(0, 255, 255, 0.18) 0%, transparent 68%);
    animation: hero-glow-pulse 6s ease-in-out infinite;
}

.hero__orbit {
    position: absolute;
    top: 18%;
    right: 18%;
    width: min(380px, 45vw);
    height: min(380px, 45vw);
    animation: hero-orbit-spin 48s linear infinite;
}

.hero__orbit > i {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cta);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.8);
    font-style: normal;
}

.hero__orbit > i:nth-child(1) {
    top: 8%;
    left: 50%;
    animation: hero-sat-pulse 3s ease-in-out infinite;
}

.hero__orbit > i:nth-child(2) {
    top: 50%;
    right: 4%;
    animation: hero-sat-pulse 3s ease-in-out 0.8s infinite;
}

.hero__orbit > i:nth-child(3) {
    bottom: 12%;
    left: 22%;
    animation: hero-sat-pulse 3s ease-in-out 1.6s infinite;
}

.hero__orbit > i:nth-child(4) {
    top: 28%;
    left: 8%;
    animation: hero-sat-pulse 3s ease-in-out 2.4s infinite;
}

.hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero__content {
    text-align: center;
    max-width: 540px;
    margin-inline: auto;
}

.hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-cta);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--text-on-teal);
}

.hero__lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--muted-on-teal);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    list-style: none;
}

.hero__chips li {
    padding: 0.375rem 0.875rem;
    background: var(--pill-bg);
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--muted-on-teal);
}

.hero__viz {
    display: flex;
    justify-content: center;
}

.geo-scene {
    position: relative;
    width: min(100%, 380px);
    aspect-ratio: 1;
}

.geo-scene__radar {
    position: absolute;
    inset: 0;
}

.geo-scene__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
}

.geo-scene__ring:nth-child(1) {
    width: 32%;
    height: 32%;
}

.geo-scene__ring:nth-child(2) {
    width: 58%;
    height: 58%;
}

.geo-scene__ring:nth-child(3) {
    width: 84%;
    height: 84%;
}

.geo-scene__sweep {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 255, 255, 0.22) 40deg, transparent 80deg);
    animation: geo-sweep 4s linear infinite;
}

.geo-scene__pin {
    position: absolute;
    top: 42%;
    left: 54%;
    z-index: 2;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
}

.geo-scene__pin::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent-cta);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.9);
    animation: geo-pin-drop 4s ease-in-out infinite;
}

.geo-scene__pin::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 255, 255, 0.55);
    border-radius: 50%;
    animation: geo-ripple 4s ease-out infinite;
}

.geo-scene__blip {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    animation: geo-blip 4s ease-in-out infinite;
}

.geo-scene__blip:nth-of-type(1) {
    top: 28%;
    left: 68%;
    animation-delay: 0.5s;
}

.geo-scene__blip:nth-of-type(2) {
    top: 62%;
    left: 24%;
    animation-delay: 1.4s;
}

.geo-scene__blip:nth-of-type(3) {
    top: 72%;
    left: 70%;
    animation-delay: 2.3s;
}

.geo-globe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.geo-scene__card {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    width: 100%;
    background: rgba(16, 42, 46, 0.92);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 1;
}

.geo-scene__card-head {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.geo-scene__card-head > i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    font-style: normal;
}

.geo-scene__card-head > i:nth-child(1) {
    background: #ef4444;
}

.geo-scene__card-head > i:nth-child(2) {
    background: #eab308;
}

.geo-scene__card-head > i:nth-child(3) {
    background: #22c55e;
}

.geo-scene__card-head > span {
    margin-left: 0.375rem;
}

.geo-scene__cycle {
    position: relative;
    height: 5.5rem;
    padding: 0.875rem;
}

.geo-scene__pair {
    position: absolute;
    inset: 0.875rem;
    opacity: 0;
}

.geo-scene__pair--1 {
    animation: geo-cycle-1 12s ease-in-out infinite;
}

.geo-scene__pair--2 {
    animation: geo-cycle-2 12s ease-in-out infinite;
}

.geo-scene__pair--3 {
    animation: geo-cycle-3 12s ease-in-out infinite;
}

.geo-scene__row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.5rem;
}

.geo-scene__row--out {
    color: var(--accent-cta);
    font-family: "SF Mono", "Fira Code", ui-monospace, monospace;
    font-size: 0.75rem;
    opacity: 0;
    animation: geo-answer 12s ease-out infinite;
}

.geo-scene__pair--2 .geo-scene__row--out {
    animation-name: geo-answer-2;
}

.geo-scene__pair--3 .geo-scene__row--out {
    animation-name: geo-answer-3;
}

.geo-scene__tag {
    flex-shrink: 0;
    width: 1.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.35);
}

@keyframes hero-grid-drift {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(48px, 48px);
    }
}

@keyframes hero-glow-pulse {
    0%, 100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

@keyframes hero-orbit-spin {
    from {
        rotate: 0deg;
    }
    to {
        rotate: 360deg;
    }
}

@keyframes hero-sat-pulse {
    0%, 100% {
        opacity: 0.35;
        transform: scale(0.85);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes geo-sweep {
    from {
        rotate: 0deg;
    }
    to {
        rotate: 360deg;
    }
}

@keyframes geo-pin-drop {
    0%, 8% {
        transform: translateY(-12px) rotate(-45deg);
        opacity: 0;
    }
    14%, 88% {
        transform: translateY(0) rotate(-45deg);
        opacity: 1;
    }
    95%, 100% {
        transform: translateY(-6px) rotate(-45deg);
        opacity: 0;
    }
}

@keyframes geo-ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes geo-blip {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    20%, 40% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes geo-cycle-1 {
    0%, 5% {
        opacity: 0;
        transform: translateY(6px);
    }
    8%, 28% {
        opacity: 1;
        transform: translateY(0);
    }
    32%, 100% {
        opacity: 0;
        transform: translateY(-6px);
    }
}

@keyframes geo-cycle-2 {
    0%, 33% {
        opacity: 0;
        transform: translateY(6px);
    }
    36%, 61% {
        opacity: 1;
        transform: translateY(0);
    }
    65%, 100% {
        opacity: 0;
        transform: translateY(-6px);
    }
}

@keyframes geo-cycle-3 {
    0%, 66% {
        opacity: 0;
        transform: translateY(6px);
    }
    69%, 94% {
        opacity: 1;
        transform: translateY(0);
    }
    98%, 100% {
        opacity: 0;
        transform: translateY(-6px);
    }
}

@keyframes geo-answer {
    0%, 12% {
        opacity: 0;
        transform: translateX(-4px);
    }
    16%, 28% {
        opacity: 1;
        transform: translateX(0);
    }
    32%, 100% {
        opacity: 0;
    }
}

@keyframes geo-answer-2 {
    0%, 40% {
        opacity: 0;
        transform: translateX(-4px);
    }
    44%, 61% {
        opacity: 1;
        transform: translateX(0);
    }
    65%, 100% {
        opacity: 0;
    }
}

@keyframes geo-answer-3 {
    0%, 73% {
        opacity: 0;
        transform: translateX(-4px);
    }
    77%, 94% {
        opacity: 1;
        transform: translateX(0);
    }
    98%, 100% {
        opacity: 0;
    }
}

@media (min-width: 900px) {
    .hero__layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero__content {
        text-align: left;
        margin-inline: 0;
        max-width: none;
    }

    .hero__actions,
    .hero__chips {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__canvas::before,
    .hero__canvas::after,
    .hero__orbit,
    .hero__orbit > i,
    .geo-scene__sweep,
    .geo-scene__pin::before,
    .geo-scene__pin::after,
    .geo-scene__blip,
    .geo-scene__pair,
    .geo-scene__row--out {
        animation: none !important;
    }

    .geo-scene__pair--1,
    .geo-scene__pair--1 .geo-scene__row--out {
        opacity: 1 !important;
        transform: none !important;
    }

    .geo-scene__pair--2,
    .geo-scene__pair--3 {
        display: none;
    }
}

.section-tonal {
    background: var(--hero-gradient);
    color: var(--text-on-teal);
    padding: 2rem 0 3rem;
}

.section-tonal .badge {
    background: var(--pill-bg);
    border: none;
    color: var(--muted-on-teal);
    border-radius: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.625rem 1.125rem;
}

/* Dev stage - getting started split layout */
.dev-stage {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 5.5rem) 0;
}

.dev-stage__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 85% 40%, rgba(0, 128, 128, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0, 128, 128, 0.05) 0%, transparent 55%);
}

.dev-stage__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 960px) {
    .dev-stage__grid {
        grid-template-columns: 1fr 1.05fr;
        gap: 3.5rem;
    }
}

.dev-stage__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.dev-stage__title {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.875rem;
    color: var(--text);
}

.dev-stage__lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 1.75rem;
    max-width: 440px;
}

.dev-stage__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.dev-stage__secondary {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--teal-brand);
}

.dev-stage__secondary:hover {
    color: var(--teal-dark);
}

.dev-stage__hint {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 400px;
    opacity: 0.85;
}

.dev-path {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 440px;
}

.dev-path__step {
    display: flex;
    gap: 1.125rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.dev-path__step:first-child {
    padding-top: 0;
}

.dev-path__step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dev-path__num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--teal);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.25);
}

.dev-path__body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.dev-path__body p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted);
}

.dev-path__link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--teal-brand);
}

.dev-path__link:hover {
    color: var(--teal-dark);
}

.dev-console {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 64, 64, 0.06),
    0 0 0 1px rgba(0, 128, 128, 0.04);
}

.dev-console__chrome {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: var(--pill-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.dev-console__title {
    flex: 1;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.dev-console__live {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

.dev-console__live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
    animation: dev-live-pulse 2s ease-in-out infinite;
}

@keyframes dev-live-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.45;
    }
}

.dev-console__main {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 520px) {
    .dev-console__main {
        grid-template-columns: 140px 1fr;
    }
}

.dev-console__map {
    display: none;
    padding: 1rem;
    background: var(--surface-2);
    border-right: 1px solid var(--border);
}

@media (min-width: 520px) {
    .dev-console__map {
        display: block;
    }
}

.dev-console__map svg,
.svg-mount svg {
    display: block;
    width: 100%;
    height: auto;
}

.svg-mount--tech-viz {
    flex: 1;
    min-height: 0;
}

.tech-panel__icon .svg-mount {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
}

.global-map__mount {
    width: 100%;
}

.global-map__mount svg {
    display: block;
    width: 100%;
    height: auto;
}

.dev-console__pin {
    transform-origin: 82px 72px;
    transition: transform 0.35s ease;
}

.geo-demo.is-resolved .dev-console__pin {
    animation: dev-pin-drop 0.45s ease;
}

.geo-demo.is-resolved .dev-console__pin-ring {
    animation: dev-pin-ring 0.6s ease-out;
}

@keyframes dev-pin-drop {
    0% {
        transform: translateY(-8px) scale(0.85);
        opacity: 0.5;
    }
    60% {
        transform: translateY(2px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes dev-pin-ring {
    0% {
        opacity: 0.55;
        transform: scale(0.5);
        transform-origin: 82px 72px;
        transform-box: fill-box;
    }
    100% {
        opacity: 0;
        transform: scale(1.8);
        transform-origin: 82px 72px;
        transform-box: fill-box;
    }
}

.dev-console__panel {
    padding: 1.25rem;
}

.geo-demo-query {
    display: flex;
    align-items: center;
    min-height: 3.125rem;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    line-height: 1.4;
}

.geo-chip.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.geo-chip.active:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
}

.dev-console__cta {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--teal-brand);
    text-align: center;
}

.dev-console__cta:hover {
    color: var(--teal-dark);
}

.geo-demo-chips {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 0.375rem;
    min-height: 4.25rem;
    margin-top: 0.75rem;
}

.geo-chip {
    padding: 0.3rem 0.625rem;
    font-size: 0.75rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--teal-dark);
    background: rgba(0, 128, 128, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.15);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.geo-chip:hover {
    background: rgba(0, 128, 128, 0.14);
    border-color: rgba(0, 128, 128, 0.3);
}

.geo-demo {
    text-align: left;
}

.geo-demo-dots {
    display: flex;
    gap: 6px;
}

.geo-demo-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.geo-demo-dots span:first-child {
    background: #ef4444;
}

.geo-demo-dots span:nth-child(2) {
    background: #eab308;
}

.geo-demo-dots span:nth-child(3) {
    background: #22c55e;
}

.geo-demo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.geo-demo-tabs--main .geo-tab {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
    text-align: center;
}

.geo-demo-subtabs {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.geo-demo:not(.is-geocode) .geo-demo-subtabs {
    visibility: hidden;
    pointer-events: none;
}

.geo-subtab {
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    font-family: inherit;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.geo-subtab.active {
    background: rgba(0, 128, 128, 0.1);
    border-color: rgba(0, 128, 128, 0.35);
    color: var(--teal-dark);
}

/* Map viz layers per mode */
.viz-layer {
    display: none;
}

.geo-demo[data-mode="geocode"] .viz-layer--geocode,
.geo-demo[data-mode="search"] .viz-layer--search,
.geo-demo[data-mode="route"] .viz-layer--route,
.geo-demo[data-mode="track"] .viz-layer--track {
    display: block;
}

.viz-route-line {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
}

.geo-demo.is-resolved[data-mode="route"] .viz-route-line {
    animation: viz-route-draw 0.8s ease forwards;
}

.viz-track-dot {
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.8));
}

.geo-demo[data-mode="track"] .viz-track-dot {
    animation: viz-track-move 3s ease-in-out infinite;
}

@keyframes viz-route-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes viz-track-move {
    0%, 100% {
        transform: translate(0, 0);
        transform-box: fill-box;
        transform-origin: center;
    }
    50% {
        transform: translate(-18px, 14px);
        transform-box: fill-box;
        transform-origin: center;
    }
}

.geo-suggestions {
    list-style: none;
    margin: 0;
    padding: 0;
}

.geo-suggestions li {
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.45;
}

.geo-suggestions li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.geo-suggestions li:first-child {
    color: var(--accent-cta);
}

.geo-tab {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: inherit;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--muted);
    cursor: pointer;
}

.geo-tab.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.geo-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    outline: none;
}

.geo-input:focus {
    border-color: var(--teal);
}

.geo-result {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    margin-top: 1rem;
    padding: 1rem 1.125rem;
    background: var(--pill-bg);
    border: none;
    border-radius: 10px;
    font-family: "SF Mono", "Fira Code", monospace;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--accent-cta);
    min-height: 9rem;
    overflow-wrap: anywhere;
    transition: opacity 0.2s;
}

.geo-demo.is-resolved .geo-result {
    animation: dev-result-flash 0.35s ease;
}

@keyframes dev-result-flash {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.geo-result .label {
    display: block;
    font-family: var(--font);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.375rem;
}

section {
    padding: 5rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-desc {
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 3rem;
}

.section-header {
    text-align: center;
}

.section-header .section-desc {
    margin-inline: auto;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8125rem;
    color: var(--muted);
}

.badge svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
    flex-shrink: 0;
}

/* Homepage features showcase - 3-column layout */
.features-showcase {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.features-showcase__title {
    text-align: center;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.features-showcase__subtitle {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.features-showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .features-showcase__grid {
        grid-template-columns: 1fr auto 1fr;
        gap: 2.5rem 3rem;
        align-items: center;
    }
}

.features-col {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--surface-2);
    border: 1px solid rgba(0, 128, 128, 0.12);
}

.feature-item__icon img {
    display: block;
    width: 32px;
    height: 32px;
}

.feature-item__body {
    flex: 1;
    min-width: 0;
}

.feature-item h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.375rem;
    color: var(--text);
    line-height: 1.3;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

.feature-item a {
    color: var(--teal-brand);
    font-weight: 500;
}

.feature-item a:hover {
    color: var(--teal-dark);
}

@media (min-width: 900px) {
    .features-col {
        gap: 2.25rem;
    }

    .features-col--left {
        align-items: flex-end;
    }

    .features-col--left .feature-item {
        flex-direction: row-reverse;
        max-width: 300px;
        text-align: right;
    }

    .features-col--right {
        align-items: flex-start;
    }

    .features-col--right .feature-item {
        max-width: 300px;
        text-align: left;
    }
}

@media (max-width: 899px) {
    .features-col {
        max-width: 420px;
        margin-inline: auto;
        width: 100%;
    }
}

.features-showcase__center {
    display: flex;
    justify-content: center;
    order: -1;
}

@media (min-width: 900px) {
    .features-showcase__center {
        order: 0;
    }
}

/* Phone mockup + route animation */
.phone-mockup {
    width: min(260px, 70vw);
    flex-shrink: 0;
}

.phone-mockup__shell {
    position: relative;
    padding: 10px 8px;
    border: 2px solid var(--text);
    border-radius: 36px;
    background: var(--bg);
}

.phone-mockup__shell::before,
.phone-mockup__shell::after {
    content: "";
    position: absolute;
    left: -3px;
    width: 2px;
    border-radius: 1px;
    background: var(--text);
}

.phone-mockup__shell::before {
    top: 72px;
    height: 24px;
    box-shadow: 0 36px 0 var(--text);
}

.phone-mockup__shell::after {
    top: 118px;
    height: 48px;
}

.phone-mockup__screen {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 9 / 16.5;
    background: #eef6f6;
}

.route-demo {
    position: relative;
    width: 100%;
    height: 100%;
}

.route-demo__map {
    display: block;
    width: 100%;
    height: 100%;
}

.route-demo__path-bg {
    fill: none;
    stroke: rgba(0, 128, 128, 0.18);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.route-demo__path {
    fill: none;
    stroke: var(--teal);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 330;
    stroke-dashoffset: 330;
    animation: route-draw 7s ease-in-out infinite;
}

.route-demo__pin {
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
}

.route-demo__pin--start {
    fill: #ffffff;
    stroke: var(--teal);
    stroke-width: 3;
    animation: route-pin-start 7s ease-in-out infinite;
}

.route-demo__pin--end {
    fill: var(--teal);
    stroke: #ffffff;
    stroke-width: 2;
    animation: route-pin-end 7s ease-in-out infinite;
}

.route-demo__pin-ring--end {
    fill: none;
    stroke: var(--teal);
    stroke-width: 1.5;
    opacity: 0;
    animation: route-pin-ring 7s ease-in-out infinite;
}

.route-demo__hud {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 12px;
    padding: 0.5rem 0.625rem;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 64, 64, 0.12);
    opacity: 0;
    transform: translateY(8px);
    animation: route-hud 7s ease-in-out infinite;
}

.route-demo__hud-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.125rem;
}

.route-demo__hud-label {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.route-demo__hud-mode {
    font-size: 0.5625rem;
    font-weight: 500;
    color: var(--teal-brand);
}

.route-demo__hud-eta {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.route-demo__hud-time {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.route-demo__hud-dist {
    font-size: 0.625rem;
    color: var(--muted);
}

@keyframes route-draw {
    0%, 8% {
        stroke-dashoffset: 330;
    }
    42% {
        stroke-dashoffset: 0;
    }
    78%, 100% {
        stroke-dashoffset: 0;
    }
}

@keyframes route-pin-start {
    0%, 4% {
        opacity: 0;
        transform: scale(0.5);
    }
    10%, 100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes route-pin-end {
    0%, 38% {
        opacity: 0;
        transform: scale(0.5);
    }
    46%, 100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes route-pin-ring {
    0%, 44% {
        opacity: 0;
        transform: scale(0.6);
    }
    50% {
        opacity: 0.6;
        transform: scale(1);
    }
    62%, 100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

@keyframes route-hud {
    0%, 48% {
        opacity: 0;
        transform: translateY(8px);
    }
    56%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .route-demo__path,
    .route-demo__pin,
    .route-demo__pin-ring--end,
    .route-demo__hud {
        animation: none;
    }

    .route-demo__path {
        stroke-dashoffset: 0;
        stroke-dasharray: 330;
    }

    .route-demo__pin {
        opacity: 1;
        transform: none;
    }

    .route-demo__hud {
        opacity: 1;
        transform: none;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: rgba(0, 128, 128, 0.35);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.feature-icon img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Homepage section rhythm - light / dark bands */
.section-band--light {
    background: var(--bg);
    color: var(--text);
}

.section-band--muted {
    background: var(--surface-2);
    color: var(--text);
}

.section-band--dark {
    background: var(--hero-gradient);
    color: var(--text-on-teal);
}

.section-apis {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.api-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.api-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.api-card:hover {
    border-color: rgba(0, 128, 128, 0.35);
}

.api-card__tag {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-brand);
    margin-bottom: 0.5rem;
}

.api-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.api-card p {
    flex: 1;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.api-card__endpoint {
    display: block;
    padding: 0.5rem 0.625rem;
    margin-bottom: 0.75rem;
    background: var(--surface-2);
    border-radius: 6px;
    font-family: "SF Mono", "Fira Code", ui-monospace, monospace;
    font-size: 0.6875rem;
    color: var(--teal-dark);
    word-break: break-all;
}

.api-card__link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--teal-brand);
}

.api-card__link:hover {
    color: var(--teal-dark);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}

.step {
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.875rem;
    color: var(--muted);
}

.step code {
    display: block;
    margin-top: 0.75rem;
    padding: 0.625rem 0.75rem;
    background: var(--bg);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--teal-brand);
    overflow-x: auto;
}

/* Tech spotlight - dark bento section */
.tech-spotlight {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--hero-gradient);
    color: var(--text-on-teal);
}

.tech-spotlight__canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tech-spotlight__grid {
    position: absolute;
    inset: -40%;
    background-image: linear-gradient(rgba(0, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 15%, transparent 70%);
    animation: hero-grid-drift 32s linear infinite;
}

.tech-spotlight__glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: min(700px, 90vw);
    height: min(400px, 50vh);
    background: radial-gradient(ellipse, rgba(0, 255, 255, 0.12) 0%, transparent 65%);
    animation: hero-glow-pulse 7s ease-in-out infinite;
}

.tech-spotlight__inner {
    position: relative;
    z-index: 1;
}

.tech-spotlight__header {
    max-width: 640px;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.tech-spotlight__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-cta);
    margin-bottom: 0.875rem;
}

.tech-spotlight__title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin-bottom: 1.125rem;
    color: var(--text-on-teal);
}

.tech-spotlight__lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--muted-on-teal);
}

.tech-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .tech-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .tech-bento {
        grid-template-columns: 1.15fr 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.25rem;
    }

    .tech-panel--featured {
        grid-row: 1 / span 2;
        grid-column: 1;
    }

    .tech-panel--wide {
        grid-column: 2 / span 2;
    }
}

.tech-panel {
    padding: 1.5rem 1.625rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.tech-panel:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(0, 255, 255, 0.28);
    transform: translateY(-2px);
}

.tech-panel--featured {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.tech-panel--featured .tech-panel__body {
    padding: 1.5rem 1.625rem 1.625rem;
}

.tech-panel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    color: var(--accent-cta);
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.32);
    border-radius: 11px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.12);
}

.tech-panel__icon svg {
    width: 1.375rem;
    height: 1.375rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tech-panel:hover .tech-panel__icon {
    background: rgba(0, 255, 255, 0.16);
    border-color: rgba(0, 255, 255, 0.5);
}

.tech-panel h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    color: var(--text-on-teal);
    line-height: 1.3;
}

.tech-panel p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--muted-on-teal);
}

.tech-viz {
    position: relative;
    flex: 1;
    min-height: 220px;
    padding: 0.5rem 0.75rem 0;
    background: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.tech-viz__svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 200px;
}

.tech-viz__wire {
    opacity: 0.9;
}

.tech-viz__sweep {
    transform-origin: 200px 122px;
    animation: tech-viz-sweep 7s linear infinite;
}

.tech-viz__ring {
    fill: none;
    stroke: rgba(0, 255, 255, 0.22);
    stroke-width: 1;
    stroke-dasharray: 5 10;
}

.tech-viz__ring--1 {
    animation: tech-viz-ring 22s linear infinite;
}

.tech-viz__ring--2 {
    opacity: 0.65;
    animation: tech-viz-ring 30s linear infinite reverse;
}

.tech-viz__stream {
    fill: none;
    stroke: #00ffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 14 200;
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.65));
}

.tech-viz__stream--1 {
    animation: tech-viz-stream 2.8s linear infinite;
}

.tech-viz__stream--2 {
    stroke-width: 1.5;
    opacity: 0.75;
    animation: tech-viz-stream 3.4s linear infinite -1.1s;
}

.tech-viz__stream--3 {
    stroke-width: 1.5;
    opacity: 0.85;
    animation: tech-viz-stream 3.1s linear infinite -2.3s;
}

.tech-viz__stream--4 {
    stroke-width: 1.25;
    opacity: 0.6;
    animation: tech-viz-stream 3.8s linear infinite -0.6s;
}

.tech-viz__node {
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.75));
}

.tech-viz__node--hub {
    animation: tech-viz-hub 3.2s ease-in-out infinite;
}

.tech-viz__node--1 {
    animation: hero-sat-pulse 2.8s ease-in-out infinite;
}

.tech-viz__node--2 {
    animation: hero-sat-pulse 2.8s ease-in-out 0.5s infinite;
}

.tech-viz__node--3 {
    animation: hero-sat-pulse 2.8s ease-in-out 1s infinite;
}

.tech-viz__node--4 {
    animation: hero-sat-pulse 2.8s ease-in-out 1.5s infinite;
}

.tech-viz__node--5 {
    animation: hero-sat-pulse 2.8s ease-in-out 2s infinite;
}

.tech-viz__ripple {
    fill: none;
    stroke: #00ffff;
    stroke-width: 1;
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
    animation: tech-viz-ripple 4.5s ease-in-out infinite;
}

.tech-viz__spark {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.tech-viz__spark--1 {
    animation: tech-viz-spark 5s ease-in-out infinite;
}

.tech-viz__spark--2 {
    animation: tech-viz-spark 5s ease-in-out infinite 1.2s;
}

.tech-viz__spark--3 {
    animation: tech-viz-spark 5s ease-in-out infinite 2.4s;
}

.tech-viz__spark--4 {
    animation: tech-viz-spark 5s ease-in-out infinite 3.1s;
}

.tech-viz__spark--5 {
    animation: tech-viz-spark 5s ease-in-out infinite 3.9s;
}

.tech-viz__stats {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0 0.25rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    margin-top: 0.5rem;
}

.tech-viz__stats div {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.tech-viz__stats strong {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-cta);
    letter-spacing: -0.02em;
}

.tech-viz__stats span {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
}

@keyframes tech-viz-sweep {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes tech-viz-ring {
    to {
        stroke-dashoffset: -60;
    }
}

@keyframes tech-viz-stream {
    to {
        stroke-dashoffset: -214;
    }
}

@keyframes tech-viz-hub {
    0%, 100% {
        opacity: 0.85;
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.85));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 16px rgba(0, 255, 255, 1));
    }
}

@keyframes tech-viz-spark {
    0%, 68%, 100% {
        opacity: 0;
        transform: scale(0.4);
    }
    76% {
        opacity: 1;
        transform: scale(1.35);
    }
    86% {
        opacity: 0;
        transform: scale(0.7);
    }
}

@keyframes tech-viz-ripple {
    0%, 35% {
        opacity: 0;
        transform: scale(0.55);
    }
    48% {
        opacity: 0.55;
        transform: scale(1);
    }
    68%, 100% {
        opacity: 0;
        transform: scale(1.65);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tech-spotlight__grid,
    .tech-spotlight__glow,
    .tech-viz__sweep,
    .tech-viz__ring,
    .tech-viz__stream,
    .tech-viz__node,
    .tech-viz__ripple,
    .tech-viz__spark {
        animation: none;
    }

    .tech-viz__stream {
        opacity: 0.65;
    }

    .tech-viz__spark {
        opacity: 0.5;
    }
}

.pricing-hero {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 128, 128, 0.1) 0%, var(--bg) 55%);
}

.pricing-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.875rem;
}

.pricing-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.pricing-hero__lead {
    max-width: 36rem;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--muted);
}

.pricing-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    list-style: none;
}

.pricing-hero__highlights li {
    padding: 0.4rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.pricing-plans {
    padding: 0 0 clamp(3.5rem, 7vw, 5rem);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 22rem;
        margin-inline: auto;
    }
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.price-card:hover {
    box-shadow: 0 12px 40px rgba(0, 64, 64, 0.08);
}

.price-card.featured {
    border-color: var(--teal);
    background: linear-gradient(180deg, rgba(0, 128, 128, 0.07) 0%, var(--surface) 45%);
    box-shadow: 0 0 0 1px var(--teal),
    0 16px 48px rgba(0, 128, 128, 0.14);
}

@media (min-width: 1025px) {
    .price-card.featured {
        transform: translateY(-6px);
    }
}

.price-card--enterprise {
    background: var(--surface-2);
}

.price-card__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.25rem 0.65rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-on-teal);
    background: var(--teal);
    border-radius: 999px;
    white-space: nowrap;
}

.price-card .plan-name {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.price-card .price {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
    color: var(--teal-dark);
}

.price-card--enterprise .price {
    font-size: 1.875rem;
}

.price-card .price span {
    font-size: 0.9375rem;
    color: var(--muted);
    font-weight: 400;
}

.price-card .price-desc {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.price-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.price-card li {
    font-size: 0.875rem;
    color: var(--text);
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
    line-height: 1.45;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
}

.price-card .btn {
    width: 100%;
    margin-top: auto;
}

.pricing-notes {
    padding: clamp(3rem, 6vw, 4rem) 0;
    background: var(--surface-2);
    border-top: 1px solid var(--border);
}

.pricing-notes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .pricing-notes__grid {
        grid-template-columns: 1fr;
    }
}

.pricing-note {
    padding: 1.5rem 1.375rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.pricing-note h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    color: var(--teal-dark);
}

.pricing-note p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
}

.pricing-note a {
    color: var(--teal);
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Compare: article link banner */
.compare-article-link {
    margin-bottom: 2.5rem;
}

.compare-article-link__inner {
    display: block;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-2);
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}

.compare-article-link__inner:hover {
    border-color: var(--teal);
    background: rgba(0, 128, 128, 0.04);
}

.compare-article-link__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.375rem;
}

.compare-article-link__title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 0.375rem;
}

.compare-article-link__note {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted);
}

/* Compare page - duel layout */
.compare-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.compare-tab-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--muted);
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    font-family: inherit;
}

.compare-tab-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.compare-tab-btn.active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.compare-panel {
    animation: compare-in 0.18s ease;
}

@keyframes compare-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.compare-panel__verdict {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--teal);
    background: rgba(0, 128, 128, 0.04);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.compare-duel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.compare-duel__header {
    display: grid;
    grid-template-columns: 1fr 52px 1fr;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
}

.compare-duel__hcell {
    padding: 0.625rem 1.125rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
}

.compare-duel__hcell--pp {
    color: var(--teal);
    text-align: right;
}

.compare-duel__hcell--mid {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.compare-duel__row {
    display: grid;
    grid-template-columns: 1fr 52px 1fr;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
}

.compare-duel__them {
    padding: 0.875rem 1.125rem;
    color: var(--muted);
    line-height: 1.6;
}

.compare-duel__dim {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    background: var(--surface-2);
}

.compare-duel__pp {
    padding: 0.875rem 1.125rem;
    color: var(--text);
    line-height: 1.6;
    background: rgba(0, 128, 128, 0.03);
    text-align: right;
}

.compare-panel__when {
    font-size: 0.875rem;
    color: var(--muted);
    border-left: 3px solid var(--border);
    padding-left: 1rem;
    line-height: 1.7;
}

.compare-panel__when strong {
    color: var(--text);
}

@media (max-width: 580px) {
    .compare-duel__header {
        grid-template-columns: 1fr 36px 1fr;
    }

    .compare-duel__row {
        grid-template-columns: 1fr 36px 1fr;
    }

    .compare-duel__them, .compare-duel__pp {
        padding: 0.75rem 0.75rem;
        font-size: 0.8125rem;
    }

    .compare-duel__pp {
        text-align: left;
    }
}

/* Compare page - modern redesign */
.compare-intro {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.compare-verdict-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.compare-verdict {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--muted);
}

.compare-verdict strong {
    color: var(--teal);
}

.compare-h2 {
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.compare-sub {
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Dimension cards */
.compare-dims {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 5rem;
}

.compare-dim {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.compare-dim__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.375rem;
}

.compare-dim__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.compare-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0.375rem 0.875rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    align-items: start;
}

.compare-row__who {
    font-weight: 600;
    color: var(--muted);
    padding-top: 0.05em;
    font-size: 0.8125rem;
}

.compare-row__who--pp {
    color: var(--teal);
}

.compare-row__what {
    color: var(--muted);
    line-height: 1.55;
}

.compare-row__what--pp {
    color: var(--text);
}

/* Scenario "if → then" rows */
.compare-scenarios {
    max-width: 820px;
    margin: 0 auto 5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.compare-scenario {
    display: grid;
    grid-template-columns: 1fr 2rem 1fr;
    gap: 1.25rem 1rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.compare-scenario:last-child {
    border-bottom: none;
}

.compare-scenario--pp {
    background: rgba(0, 128, 128, 0.025);
}

.compare-scenario__left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.compare-scenario__use {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted);
}

.compare-scenario__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.compare-scenario__arrow {
    font-size: 1.25rem;
    color: var(--border);
    text-align: center;
    user-select: none;
}

.compare-scenario__right {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.compare-scenario__pick {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--teal);
}

.compare-scenario__pick--muted {
    color: var(--muted);
}

.compare-scenario__body {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 580px) {
    .compare-scenario {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .compare-scenario__arrow {
        display: none;
    }
}

/* Cost at scale */
.compare-scale {
    max-width: 700px;
    margin: 0 auto 5rem;
}

.compare-scale__note {
    font-size: 0.8125rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.compare-scale__row {
    display: grid;
    grid-template-columns: 120px 1fr 110px;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
}

.compare-scale__row:last-child {
    border-bottom: 1px solid var(--border);
}

.compare-scale__name {
    font-weight: 600;
    color: var(--text);
}

.compare-scale__track {
    background: var(--surface-2);
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
}

.compare-scale__fill {
    height: 100%;
    border-radius: 4px;
    background: var(--border);
    width: var(--w, 100%);
}

.compare-scale__fill--pp {
    background: var(--teal);
}

.compare-scale__label {
    color: var(--muted);
    text-align: right;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.compare-scale__label--pp {
    color: var(--teal);
    font-weight: 600;
}

/* Migration diffs */
.compare-mig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
    margin: 0 auto 5rem;
}

@media (max-width: 720px) {
    .compare-mig-grid { grid-template-columns: 1fr; }
}

.compare-mig {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.compare-mig__head {
    padding: 0.625rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: #161b22;
    font-weight: 600;
    font-size: 0.8125rem;
    color: #8b949e;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compare-mig__head::after {
    content: '→ PickPoint';
    margin-left: auto;
    color: #3fb950;
    font-size: 0.75rem;
    font-weight: 500;
}

.compare-mig__code {
    padding: 0.875rem 1rem 1rem;
    background: #0d1117;
    font-family: "SF Mono", "Fira Code", ui-monospace, monospace;
    font-size: 0.7375rem;
    line-height: 1.8;
    overflow-x: auto;
    color: #8b949e;
    flex: 1;
}

.compare-mig__code span {
    display: block;
    white-space: pre;
}

.compare-mig__del { color: #f85149; }
.compare-mig__add { color: #3fb950; }
.compare-mig__ctx { color: #8b949e; }

.compare-mig__note {
    padding: 0.5rem 1rem;
    background: #161b22;
    border-top: 1px solid rgba(255,255,255,.06);
    font-family: "SF Mono", "Fira Code", ui-monospace, monospace;
    font-size: 0.7rem;
    color: #6e7681;
    white-space: pre;
}

/* Hero pills */
.compare-hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.375rem);
    font-weight: 600;
    color: var(--text);
    margin: 0.5rem 0 1.25rem;
}

.compare-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 0;
}

.compare-hero-pills span {
    display: inline-block;
    padding: 0.3rem 0.875rem;
    background: rgba(0,128,128,.1);
    color: var(--teal);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Why teams switch - 3-card section */
.compare-why {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0 2.5rem;
}

@media (max-width: 700px) {
    .compare-why { grid-template-columns: 1fr; }
}

.compare-why__card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.375rem 1.25rem 1.25rem;
    background: var(--surface);
    position: relative;
}

.compare-why__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
    border-radius: var(--radius) var(--radius) 0 0;
}

.compare-why__icon {
    width: 36px;
    height: 36px;
    background: rgba(0,128,128,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    color: var(--teal);
}

.compare-why__card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.compare-why__card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* Win highlight on PickPoint duel cells */
.compare-duel__pp--win {
    background: rgba(0,128,128,.07);
    color: var(--text);
    font-weight: 500;
    position: relative;
}

/* Cost example callout */
.compare-cost-example {
    margin: 1.25rem 0 0;
    padding: 0.875rem 1.125rem;
    background: var(--surface-2);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--muted);
    text-align: center;
    border: 1px solid var(--border);
}

.compare-cost-example .pp {
    color: var(--teal);
    font-weight: 700;
}

/* Reference table (condensed, at bottom) */
.compare-ref-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.compare-ref-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.compare-ref-table th,
.compare-ref-table td {
    padding: 0.625rem 0.875rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.compare-ref-table th {
    background: var(--surface-2);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
}

.compare-ref-table td {
    color: var(--muted);
}

.compare-ref-table tr:last-child td {
    border-bottom: none;
}

.compare-ref-table .pp {
    color: var(--teal);
    font-weight: 600;
}

.compare-ref-table .na {
    opacity: 0.45;
}

/* Built-for cards */
.compare-built {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (max-width: 640px) {
    .compare-built { grid-template-columns: 1fr; }
}

.compare-built__card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.375rem;
    background: var(--surface);
}

.compare-built__cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: .5rem;
}

.compare-built__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 .875rem;
    color: var(--text);
    line-height: 1.3;
}

.compare-built__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.compare-built__list li {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.55;
    padding-left: 1.375rem;
    position: relative;
}

.compare-built__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: .8rem;
    top: .05em;
}

/* Compare section spacing */
.compare-section {
    padding: 4rem 0 1rem;
}

.compare-section--tight {
    padding-top: 2rem;
}

@media (max-width: 600px) {
    .compare-row {
        grid-template-columns: 85px 1fr;
    }

    .compare-scale__row {
        grid-template-columns: 90px 1fr 90px;
    }
}

/* FAQ search */
.faq-search {
    margin-top: 1.75rem;
}

.faq-search__wrap {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.faq-search__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    translate: 0 -50%;
    pointer-events: none;
    opacity: 0.5;
}

.faq-search__input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 128, 128, 0.25);
    background: rgba(0, 128, 128, 0.06);
    font-size: 0.9375rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
}

.faq-search__input:focus {
    border-color: var(--teal);
    background: rgba(0, 128, 128, 0.1);
}

.faq-search__input::placeholder {
    color: var(--muted);
}

/* Hide browser-native clear button - we use our own */
.faq-search__input::-webkit-search-cancel-button,
.faq-search__input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.faq-search__clear {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    translate: 0 -50%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: var(--muted);
    display: none;
    line-height: 1;
    font-size: 1.1rem;
}

.faq-search__clear:hover {
    color: var(--text);
}

.faq-search__wrap.has-value .faq-search__clear {
    display: block;
}

/* FAQ no results */
.faq-no-results {
    text-align: center;
    padding: 4rem 0;
    color: var(--muted);
    font-size: 1rem;
}

.faq-no-results strong {
    color: var(--text);
}

/* FAQ category groups */
.faq-page {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

.faq-group {
    max-width: 760px;
    margin: 0 auto 2.75rem;
}

.faq-group__title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.875rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--border);
}

/* FAQ list */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(0, 128, 128, 0.3);
}

.faq-item[data-hidden] {
    display: none;
}

.faq-item summary {
    padding: 1.125rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.15s;
}

.faq-item summary:hover {
    background: var(--surface-2);
}

.faq-item[open] summary {
    background: var(--surface-2);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.25rem;
    color: var(--muted);
    flex-shrink: 0;
    transition: color 0.15s;
}

.faq-item[open] summary::after {
    content: "−";
    color: var(--teal);
}

.faq-item .faq-answer {
    padding: 0.25rem 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid var(--border);
}

.faq-item .faq-answer p {
    margin: 0 0 0.75rem;
}

.faq-item .faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-item .faq-answer ul {
    margin: 0.5rem 0 0.75rem 1.25rem;
}

.faq-item .faq-answer li {
    margin-bottom: 0.3rem;
}

.faq-item .faq-answer code {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.1em 0.4em;
    font-size: 0.82em;
    color: var(--teal-dark);
}

/* Article / long-form page */
.article-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 0 5rem;
    line-height: 1.8;
    color: var(--muted);
}

.article-meta {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.article-meta a {
    color: var(--teal);
}

.article-page h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 3rem 0 0.75rem;
    letter-spacing: -0.01em;
}

.article-page h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
    margin: 2rem 0 0.5rem;
}

.article-page p {
    margin: 0 0 1rem;
}

.article-page p:last-child {
    margin-bottom: 0;
}

.article-page ul, .article-page ol {
    margin: 0.5rem 0 1rem 1.5rem;
}

.article-page li {
    margin-bottom: 0.35rem;
    line-height: 1.7;
}

.article-page strong {
    color: var(--text);
    font-weight: 600;
}

.article-page a {
    color: var(--teal);
}

.article-page a:hover {
    color: var(--teal-dark);
}

.article-page code {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.1em 0.4em;
    font-size: 0.82em;
    color: var(--teal-dark);
    font-family: "SF Mono", "Fira Code", ui-monospace, monospace;
}

.article-page pre {
    background: #0d1117;
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    overflow-x: auto;
    margin: 1rem 0 1.5rem;
    line-height: 1.75;
}

.article-page pre code {
    background: none;
    border: none;
    padding: 0;
    color: #8b949e;
    font-size: 0.8125rem;
}

.article-page .c-add {
    color: #3fb950;
}

.article-page .c-rem {
    color: #f85149;
}

.article-page .c-cmt {
    color: #6e7681;
    font-style: italic;
}

.article-page .c-key {
    color: #79c0ff;
}

.article-page .c-str {
    color: #a5d6ff;
}

.article-page .c-num {
    color: #f2cc60;
}

.article-matrix {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0.75rem;
}

.article-matrix__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.375rem 0;
    border-top: 1px solid rgba(0, 128, 128, 0.15);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text);
}

.article-matrix__row span:first-child {
    color: var(--muted);
}

.article-matrix__pick {
    font-weight: 700;
    white-space: nowrap;
    color: var(--teal);
}

.article-footnote {
    font-size: 0.8125rem;
    color: var(--muted);
    opacity: 0.7;
    margin-top: 2rem;
    line-height: 1.6;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.article-footnote a {
    color: inherit;
    text-decoration: underline;
}

.article-footnote a:hover {
    color: var(--teal);
}

/* Prism.js token colors - dark GitHub-style theme */
.article-page .token.property,
.article-page .token.tag {
    color: #79c0ff;
}

.article-page .token.string {
    color: #a5d6ff;
}

.article-page .token.number,
.article-page .token.boolean {
    color: #f2cc60;
}

.article-page .token.punctuation,
.article-page .token.operator {
    color: #8b949e;
}

.article-page .token.null.keyword {
    color: #ff7b72;
}

.article-table-wrap {
    overflow-x: auto;
    margin: 1rem 0 1.5rem;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.article-table th, .article-table td {
    padding: 0.5rem 0.875rem;
    text-align: left;
    border: 1px solid var(--border);
    vertical-align: top;
}

.article-table th {
    background: var(--surface-2);
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.article-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, .018);
}

.article-table td.pp {
    color: var(--teal);
    font-weight: 600;
}

.article-table td.na {
    opacity: 0.45;
}

.article-callout {
    background: rgba(0, 128, 128, 0.06);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    font-size: 0.9rem;
}

.article-callout strong {
    color: var(--teal);
}

.article-provider-head {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 2.5rem 0 0.625rem;
}

.article-provider-head h3 {
    margin: 0;
}

.article-provider-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.1em 0.5em;
}

.article-toc {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
}

.article-toc__title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.article-toc ol {
    margin: 0;
    padding-left: 1.25rem;
}

.article-toc li {
    margin-bottom: 0.3rem;
}

.article-toc a {
    color: var(--muted);
}

.article-toc a:hover {
    color: var(--teal);
}

.article-sep {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0;
}

/* Legal pages */
.legal-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
    color: var(--muted);
    line-height: 1.8;
}

.legal-meta {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.legal-page h2 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
    margin: 2.25rem 0 0.625rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.legal-page h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-page p {
    margin: 0 0 0.875rem;
}

.legal-page p:last-child {
    margin-bottom: 0;
}

.legal-page ul, .legal-page ol {
    margin: 0.375rem 0 0.875rem 1.5rem;
}

.legal-page li {
    margin-bottom: 0.35rem;
}

.legal-page strong {
    color: var(--text);
    font-weight: 600;
}

.legal-page code {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.1em 0.4em;
    font-size: 0.82em;
    color: var(--teal-dark);
}

.legal-table-wrap {
    overflow-x: auto;
    margin: 0.75rem 0 1.25rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.legal-table th, .legal-table td {
    padding: 0.5rem 0.875rem;
    text-align: left;
    border: 1px solid var(--border);
    vertical-align: top;
}

.legal-table th {
    background: var(--surface-2);
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.legal-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.015);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--muted);
    font-size: 0.9375rem;
}

.contact-link:hover {
    color: var(--text);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.page-hero {
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 128, 128, 0.12) 0%, var(--bg) 100%);
}

.page-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.875rem;
}

.page-hero--article {
    padding-bottom: 2.5rem;
}

.article-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(0, 128, 128, 0.1);
    border: 1px solid rgba(0, 128, 128, 0.25);
    border-radius: 999px;
    padding: 0.25rem 0.875rem;
    margin-bottom: 1rem;
}

.article-hero-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.article-hero-provider {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.875rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
}

.article-hero-provider--pp {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.875rem;
}

.page-hero p {
    color: var(--muted);
    font-size: 1.0625rem;
    max-width: 540px;
    margin: 0 auto;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.stat .num {
    font-size: 2rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: -0.02em;
}

.stat .label {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

.prose {
    max-width: 680px;
    margin: 0 auto;
}

.prose p {
    color: var(--muted);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.prose h2 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    color: var(--text);
}

.section-dev {
    position: relative;
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .dev-console__live-dot,
    .geo-demo.is-resolved .dev-console__pin,
    .geo-demo.is-resolved .dev-console__pin-ring,
    .geo-demo.is-resolved .geo-result,
    .geo-demo.is-resolved[data-mode="route"] .viz-route-line,
    .geo-demo[data-mode="track"] .viz-track-dot {
        animation: none;
    }

    .geo-demo.is-resolved[data-mode="route"] .viz-route-line {
        stroke-dashoffset: 0;
    }
}

.section-map__img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Global map - light band (follows dark tech-spotlight) */
.global-map {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.global-map__canvas {
    display: none;
}

.global-map__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.global-map__copy {
    max-width: 26rem;
}

.global-map__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.875rem;
}

.global-map__title {
    font-size: clamp(1.75rem, 3.5vw, 2.375rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--text);
}

.global-map__lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.global-map__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.global-map__metrics li {
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.global-map__stage {
    position: relative;
    mask-image: radial-gradient(ellipse 92% 88% at 50% 50%, #000 55%, transparent 100%);
}

.global-map__svg {
    display: block;
    width: 100%;
    height: auto;
}

.global-map__land path {
    fill: #dceeee;
    stroke: #b8d8d8;
    stroke-width: 0.5;
    vector-effect: non-scaling-stroke;
}

.map-point__core {
    fill: var(--teal);
    stroke: #fff;
    stroke-width: 2;
    filter: drop-shadow(0 1px 3px rgba(0, 64, 64, 0.35));
    transform-box: fill-box;
    transform-origin: center;
    animation: map-point-core 2.8s ease-in-out infinite;
    animation-delay: var(--d, 0s);
    pointer-events: none;
}

.map-point__ripple {
    fill: rgba(0, 128, 128, 0.15);
    stroke: rgba(0, 128, 128, 0.55);
    stroke-width: 1.5;
    transform-box: fill-box;
    transform-origin: center;
    animation: map-point-pulse 2.8s ease-out infinite;
    animation-delay: var(--d, 0s);
    pointer-events: none;
}

@keyframes map-point-pulse {
    0% {
        opacity: 0.75;
        transform: scale(1);
    }
    70% {
        opacity: 0;
        transform: scale(2.6);
    }
    100% {
        opacity: 0;
        transform: scale(2.6);
    }
}

@keyframes map-point-core {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.map-point {
    pointer-events: none;
}

@media (max-width: 860px) {
    .global-map__layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .global-map__copy {
        max-width: none;
        margin-inline: auto;
    }

    .global-map__metrics {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .map-point__ripple,
    .map-point__core {
        animation: none;
    }
}

.cta-band {
    padding: 4rem 0;
    text-align: center;
    background: var(--hero-gradient);
    color: var(--text-on-teal);
}

.cta-band--photo {
    background: linear-gradient(rgba(0, 64, 64, 0.75), rgba(0, 64, 64, 0.85)),
    url("/assets/img/sections/cta-bg.jpg") center / cover no-repeat;
}

.cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: var(--muted-on-teal);
    margin-bottom: 1.5rem;
}

.cta-band__inline {
    color: rgba(255,255,255,.8);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cta-band__inline:hover {
    color: #fff;
}

.site-footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border);
    background: var(--surface-2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.footer-brand p {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 0.75rem;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--muted);
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--muted);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-legal a {
    color: var(--muted);
}

.footer-legal a:hover {
    color: var(--text);
}

/* Pause CSS keyframe animations inside inline SVGs when not in viewport */
svg.anim-paused *,
svg.anim-paused {
    animation-play-state: paused !important;
}
