:root {
    --bg: #07101d;
    --bg-deep: #030711;
    --surface: rgba(9, 17, 30, 0.92);
    --surface-strong: rgba(6, 12, 22, 0.98);
    --surface-soft: rgba(12, 22, 36, 0.82);
    --line: rgba(212, 255, 232, 0.08);
    --line-strong: rgba(212, 255, 232, 0.16);
    --text: #f2f7fb;
    --text-soft: rgba(242, 247, 251, 0.78);
    --text-muted: rgba(195, 210, 222, 0.6);
    --emerald: #75e0ad;
    --emerald-strong: #3cc98e;
    --emerald-soft: #d8ffe7;
    --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.22);
    --shadow-panel: 0 30px 82px rgba(0, 0, 0, 0.32);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 34px;
    --container: 1180px;
    --header-height: 84px;
    --hero-shift: 0px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(90% 54% at 50% -12%, rgba(84, 132, 123, 0.16), transparent 64%),
        linear-gradient(180deg, #0b1728 0%, #07101d 42%, #030711 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    display: none;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 92%);
    opacity: 0.12;
}

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

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

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

.page-noise {
    position: fixed;
    inset: 0;
    display: none;
    pointer-events: none;
    opacity: 0.035;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.22) 0.9px, transparent 0);
    background-size: 20px 20px;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.hero-grid > *,
.editorial-grid > *,
.network-grid > *,
.faq-grid > *,
.location-console-body > *,
.benefit-rail > *,
.network-facts > *,
.flow-grid > *,
.pricing-shell > *,
.footer-inner > * {
    min-width: 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding-top: 14px;
    transition: padding 0.28s ease;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 9, 17, 0.88), rgba(4, 9, 17, 0));
    pointer-events: none;
}

.site-header.is-scrolled {
    padding-top: 6px;
}

.header-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 64px;
    padding: 10px 18px;
    border: 1px solid rgba(216, 255, 232, 0.08);
    border-radius: 999px;
    background: rgba(5, 11, 20, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 10px 18px rgba(37, 188, 130, 0.12));
}

.brand-word {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    white-space: nowrap;
}

.site-nav {
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
}

.site-nav a,
.ghost-link {
    color: var(--text-soft);
    font-size: 0.95rem;
    transition: color 0.24s ease, opacity 0.24s ease;
}

.site-nav a:hover,
.ghost-link:hover {
    color: var(--text);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.18;
    text-align: center;
    white-space: normal;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

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

.button:focus-visible,
.ghost-link:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--emerald);
    outline-offset: 4px;
}

.button-primary {
    color: #06120d;
    background: linear-gradient(135deg, #cdfede, var(--emerald));
    box-shadow: 0 12px 30px rgba(60, 201, 142, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(216, 255, 232, 0.1);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(151, 208, 175, 0.2);
}

.button-compact {
    min-height: 46px;
    padding: 0 18px;
}

.strong-link {
    font-weight: 700;
}

.hero {
    position: relative;
    padding: calc(var(--header-height) + 58px) 0 78px;
    overflow: clip;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 520px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(36, 62, 86, 0.18), transparent 72%);
}

.hero-ambient {
    position: absolute;
    width: 28vw;
    height: 28vw;
    border-radius: 50%;
    display: none;
    pointer-events: none;
    opacity: 0.22;
    filter: blur(10px);
}

.hero-ambient-left {
    top: 8%;
    left: -8%;
    background: radial-gradient(circle, rgba(58, 82, 116, 0.26), transparent 72%);
}

.hero-ambient-right {
    top: 0;
    right: -10%;
    background: radial-gradient(circle, rgba(30, 116, 77, 0.14), transparent 68%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
    gap: 72px;
    align-items: start;
}

.hero-copy {
    max-width: 620px;
    position: relative;
    z-index: 1;
    padding-top: 38px;
}

.hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.eyebrow {
    margin: 0;
    color: var(--emerald-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 800;
}

.hero-free-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(171, 234, 206, 0.16);
    background: rgba(97, 227, 172, 0.07);
    color: var(--emerald-soft);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.hero h1 {
    max-width: 10.8ch;
    font-size: clamp(3rem, 4.9vw, 4.6rem);
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--emerald-soft);
    text-shadow: 0 0 24px rgba(97, 227, 172, 0.05);
}

.hero-lead {
    max-width: 31rem;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.82;
}

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

.hero-notes,
.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    max-width: 640px;
    gap: 12px;
    margin-top: 28px;
}

.hero-notes li {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 16px 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.014));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.hero-notes li::before {
    content: none;
}

.hero-note-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-note-copy {
    display: grid;
    gap: 3px;
}

.hero-note-copy strong {
    font-size: 0.94rem;
    letter-spacing: -0.03em;
}

.hero-note-copy span {
    color: var(--emerald-soft);
    font-size: 0.84rem;
    font-weight: 800;
}

.hero-stage {
    position: relative;
    min-height: 100%;
    padding-top: 36px;
}

.hero-stage::before {
    content: "";
    position: absolute;
    top: 4%;
    right: 2%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    display: none;
    background: radial-gradient(circle, rgba(97, 227, 172, 0.085), rgba(97, 227, 172, 0.012) 42%, transparent 74%);
    pointer-events: none;
    filter: blur(8px);
}

.hero-stage-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-stage-frame::before {
    content: "";
    position: absolute;
    inset: 0 5% 10% 16%;
    border-radius: 42px;
    border: 1px solid rgba(216, 255, 232, 0.055);
    background: rgba(8, 15, 27, 0.36);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(calc(var(--hero-shift) * 0.2)) rotate(-5deg);
}

.hero-stage-frame::after {
    content: "";
    position: absolute;
    inset: 8% 0 0 10%;
    border-radius: 38px;
    border: 1px solid rgba(216, 255, 232, 0.055);
    background: rgba(6, 12, 22, 0.28);
    transform: translateY(calc(var(--hero-shift) * 0.12));
}

.offer-panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 26px;
    padding: 34px 34px 30px;
    margin: 42px 0 20px 56px;
    border-radius: 36px;
    border: 1px solid rgba(216, 255, 232, 0.11);
    background: linear-gradient(180deg, rgba(7, 14, 25, 0.99), rgba(4, 8, 15, 0.99));
    box-shadow: var(--shadow-panel);
    overflow: hidden;
    transform: translateY(calc(var(--hero-shift) * 0.4));
}

.offer-panel::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.offer-panel::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(117, 224, 173, 0.24), transparent);
}

.offer-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.offer-kicker {
    margin: 0;
    color: var(--emerald-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 800;
}

.offer-price-block {
    display: grid;
    gap: 8px;
}

.offer-price {
    font-size: clamp(3.1rem, 5vw, 4.2rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.offer-price-caption {
    color: var(--text-soft);
    font-size: 0.94rem;
    max-width: 25rem;
}

.offer-headline {
    display: grid;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-summary {
    max-width: 31rem;
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.72;
}

.offer-status {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(171, 234, 206, 0.16);
    border-radius: 999px;
    background: rgba(97, 227, 172, 0.06);
    color: var(--emerald-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.offer-status-rate {
    border-color: rgba(171, 234, 206, 0.14);
    background: rgba(255, 255, 255, 0.028);
    color: var(--text);
    font-size: 0.92rem;
    letter-spacing: -0.02em;
    text-transform: none;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
}

.offer-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-list li:first-child {
    padding-top: 0;
    border-top: none;
}

.offer-list-index {
    padding-top: 3px;
    color: rgba(221, 255, 233, 0.48);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.offer-list strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.offer-list p {
    margin: 7px 0 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.72;
}

.offer-plans,
.pricing-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.offer-plans span,
.pricing-includes span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(151, 208, 175, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-soft);
    font-size: 0.86rem;
}

.hero-bottom {
    margin-top: 34px;
}

.location-console {
    position: relative;
    padding: 32px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(9, 18, 31, 0.95), rgba(5, 10, 18, 0.94));
    border: 1px solid rgba(216, 255, 232, 0.1);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.location-console::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(117, 224, 173, 0.22) 24%, rgba(117, 224, 173, 0.08) 78%, transparent);
}

.location-console::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -40px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    display: none;
    background: radial-gradient(circle, rgba(97, 227, 172, 0.06), transparent 68%);
    pointer-events: none;
}

.location-console-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.console-kicker {
    margin-top: 18px;
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--emerald-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 800;
}

.console-kicker-icon {
    width: 18px;
    height: 18px;
}

.console-title {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(1.95rem, 3vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.console-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    max-width: 360px;
}

.console-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-soft);
    font-size: 0.84rem;
}

.location-console-body {
    display: grid;
    grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.18fr);
    gap: 24px;
    margin-top: 28px;
}

.geo-tabs {
    display: grid;
    gap: 12px;
}

.geo-tabs-shell {
    min-width: 0;
}

.geo-tabs-scrollbar {
    display: none;
}

.geo-tabs-scrollbar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(216, 255, 232, 0.82), var(--emerald));
    box-shadow: 0 0 14px rgba(117, 224, 173, 0.22);
    transition: transform 0.16s ease, width 0.16s ease;
}

.geo-tab {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 74px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.014));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
    text-align: left;
    overflow: hidden;
}

.geo-tab::after {
    content: "";
    position: absolute;
    inset: auto 16px 0 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(97, 227, 172, 0.28), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.geo-tab:hover {
    transform: translateY(-1px);
    border-color: rgba(171, 234, 206, 0.16);
    background: rgba(255, 255, 255, 0.022);
}

.geo-tab.is-active {
    border-color: rgba(171, 234, 206, 0.22);
    background: linear-gradient(180deg, rgba(97, 227, 172, 0.075), rgba(255, 255, 255, 0.018));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.geo-tab.is-active::after {
    opacity: 1;
}

.geo-tab-flag,
.location-flag,
.geo-panel-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.location-flag {
    flex: 0 0 auto;
}

.flag-icon {
    width: 28px;
    height: 20px;
    display: block;
}

.flag-icon-large {
    width: 42px;
    height: 30px;
}

.geo-tab-copy {
    display: grid;
    gap: 4px;
}

.geo-tab-copy strong {
    font-size: 0.98rem;
    letter-spacing: -0.03em;
}

.geo-tab-copy span {
    color: var(--text-muted);
    font-size: 0.86rem;
}

.geo-tab-ping {
    color: var(--emerald-soft);
    font-size: 0.92rem;
    font-weight: 800;
}

.geo-panel {
    position: relative;
    padding: 28px 26px 24px;
    border-radius: 30px;
    border: 1px solid rgba(216, 255, 232, 0.1);
    background: linear-gradient(180deg, rgba(12, 22, 36, 0.82), rgba(7, 13, 23, 0.76));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.geo-panel::before {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: none;
    background: radial-gradient(circle, rgba(97, 227, 172, 0.14), transparent 74%);
    pointer-events: none;
}

.geo-panel::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(97, 227, 172, 0.3), transparent);
}

.geo-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.geo-panel-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.geo-panel-kicker {
    margin: 0 0 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
}

.geo-panel-title strong {
    display: block;
    font-size: 1.36rem;
    letter-spacing: -0.04em;
}

.geo-panel-title span {
    display: block;
    margin-top: 3px;
    color: var(--text-soft);
}

.geo-panel-ping {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: var(--emerald-soft);
    font-weight: 800;
}

.geo-panel-ping span {
    font-size: 2.6rem;
    line-height: 1;
}

.geo-panel-ping small {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.geo-panel-description {
    margin: 20px 0 0;
    max-width: 44ch;
    color: var(--text-soft);
    line-height: 1.78;
    font-size: 0.98rem;
}

.geo-panel-ornament {
    width: 100%;
    max-width: 360px;
    margin-top: 24px;
    color: rgba(171, 234, 206, 0.58);
}

.geo-panel-ornament svg {
    width: 100%;
    height: auto;
    display: block;
}

.geo-panel-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    margin-top: 26px;
}

.geo-fact {
    padding: 14px 0 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: none;
}

.geo-fact span {
    display: block;
    color: var(--text-muted);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.geo-fact strong {
    display: block;
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.benefit-item,
.location-list,
.fact-card,
.flow-step,
.plan,
.faq-item,
.cta-panel {
    background: linear-gradient(180deg, rgba(10, 19, 32, 0.9), rgba(6, 11, 20, 0.86));
    border: 1px solid rgba(216, 255, 232, 0.075);
    box-shadow: var(--shadow-soft);
}

section {
    padding: 92px 0;
    position: relative;
}

.section-heading {
    max-width: 700px;
}

.section-heading.centered {
    margin: 0 auto;
    text-align: center;
}

.section-heading h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 3vw, 2.9rem);
}

.section-heading.centered h2 {
    margin-inline: auto;
}

.section-lead,
.editorial-copy p,
.benefit-body p,
.fact-card p,
.flow-step p,
.plan-meta,
.faq-answer,
.cta-panel p,
.footer-brand p {
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 0.98rem;
}

.section-lead {
    margin: 16px 0 0;
    max-width: 35rem;
}

.editorial {
    padding-top: 70px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px 38px;
    align-items: start;
}

.editorial-copy p {
    margin: 8px 0 0;
}

.benefit-rail {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    min-height: 100%;
    padding: 22px 22px 24px;
    border-radius: var(--radius-md);
}

.benefit-index,
.flow-number {
    color: var(--emerald-soft);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.benefit-index {
    font-size: 1.3rem;
}

.benefit-body h3,
.fact-card h3,
.flow-step h3,
.plan h3,
.faq-item summary {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.benefit-body p,
.fact-card p,
.flow-step p,
.plan-meta,
.faq-answer {
    margin: 10px 0 0;
}

.network {
    padding-top: 76px;
}

.network-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
    gap: 24px;
    align-items: start;
}

.location-list {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.location-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(151, 208, 175, 0.08);
}

.location-main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.location-row:last-child {
    border-bottom: none;
}

.location-row strong {
    display: block;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
}

.location-row span,
.plan-detail,
.plan-kicker {
    color: var(--text-muted);
}

.location-row span {
    display: block;
    margin-top: 4px;
    font-size: 0.92rem;
}

.location-row em {
    color: var(--emerald-soft);
    font-style: normal;
    font-weight: 800;
}

.network-facts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.fact-card {
    padding: 22px;
    border-radius: var(--radius-md);
}

.flow {
    padding-top: 78px;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.flow-step {
    padding: 24px;
    border-radius: var(--radius-md);
}

.flow-number {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2.4rem;
}

.pricing {
    padding-top: 80px;
}

.pricing-shell {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.plan {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 22px 20px;
    border-radius: 28px;
}

.plan-featured {
    border-color: rgba(216, 255, 232, 0.15);
    background: linear-gradient(180deg, rgba(12, 25, 40, 0.96), rgba(7, 13, 23, 0.94));
}

.plan-kicker {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan h3 {
    margin-top: 18px;
}

.plan-price {
    margin: 14px 0 0;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.plan-detail {
    margin-top: 8px;
    font-size: 0.9rem;
}

.plan-meta {
    flex: 1;
}

.plan-button {
    width: 100%;
    margin-top: 24px;
}

.pricing-includes {
    justify-content: center;
    margin-top: 24px;
}

.faq {
    padding-top: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: 22px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    padding: 0 22px;
    border-radius: 22px;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
}

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

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--emerald-soft);
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 0.22s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 22px;
    margin-top: -4px;
}

.final-cta {
    padding-top: 84px;
    padding-bottom: 68px;
}

.cta-panel {
    position: relative;
    padding: 36px 38px;
    border-radius: 32px;
}

.cta-panel h2 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
}

.cta-panel p {
    max-width: 34rem;
    margin: 16px 0 0;
}

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

.site-footer {
    padding: 0 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto auto;
    gap: 24px 40px;
    padding: 26px 0 24px;
    border-top: 1px solid rgba(151, 208, 175, 0.08);
}

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

.footer-brand p {
    max-width: 28rem;
    margin: 14px 0 0;
}

.footer-column {
    display: grid;
    gap: 12px;
    align-content: start;
}

.footer-column a {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 12px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="zoom"] {
    transform: translateY(18px) scale(0.98);
}

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

@media (max-width: 1120px) {
    .hero-grid,
    .editorial-grid,
    .network-grid,
    .faq-grid,
    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: calc(var(--header-height) + 42px);
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .offer-panel {
        margin: 12px 0 0;
    }

    .location-console-body,
    .geo-panel-facts,
    .benefit-rail,
    .network-facts,
    .flow-grid,
    .pricing-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-console-head {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }
}

@media (max-width: 880px) {
    .site-nav {
        display: none;
    }

    .header-inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .header-actions {
        justify-content: flex-end;
    }

    .hero-grid {
        gap: 22px;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(2.55rem, 8vw, 4rem);
    }

    .hero-stage {
        padding-top: 8px;
    }

    .hero-stage::before {
        width: 240px;
        height: 240px;
        top: 0;
        right: -20px;
    }

    .hero-stage-frame::before,
    .hero-stage-frame::after {
        transform: none;
        opacity: 0.52;
    }

    .hero-stage-frame::before {
        inset: 4% 0 10% 10%;
    }

    .hero-stage-frame::after {
        inset: 10% 2% 0 18%;
    }

    .offer-panel {
        margin: 0;
        padding: 26px 22px 22px;
        border-radius: 28px;
    }

    .offer-panel-top {
        align-items: flex-start;
    }

    .location-console {
        padding: 24px;
        border-radius: 28px;
    }

    .location-console-body,
    .network-facts,
    .flow-grid,
    .pricing-shell,
    .benefit-rail {
        grid-template-columns: minmax(0, 1fr);
    }

    .location-console-body {
        gap: 16px;
        margin-top: 20px;
    }

    .console-title {
        max-width: 13ch;
        font-size: clamp(1.7rem, 6.2vw, 2.3rem);
    }

    .console-pills {
        justify-content: flex-start;
        max-width: none;
    }

    .geo-tabs {
        grid-auto-flow: column;
        grid-auto-columns: minmax(188px, 74%);
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }

    .geo-tabs::-webkit-scrollbar {
        display: none;
    }

    .geo-tabs-shell {
        position: relative;
    }

    .geo-tabs-scrollbar {
        display: block;
        height: 4px;
        margin: 2px 8px 0;
        border-radius: 999px;
        background: rgba(216, 255, 232, 0.08);
        overflow: hidden;
        opacity: 1;
        transition: opacity 0.2s ease;
    }

    .geo-tabs-scrollbar.is-hidden {
        opacity: 0;
    }

    .geo-tab {
        scroll-snap-align: start;
    }

    .geo-panel {
        padding: 22px 20px 20px;
    }

    .geo-panel-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .site-header {
        padding-top: 8px;
    }

    .header-inner {
        gap: 12px;
        padding: 10px 12px;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .brand-word {
        font-size: 0.96rem;
        letter-spacing: 0.18em;
    }

    .ghost-link {
        display: none;
    }

    section {
        padding: 68px 0;
    }

    .hero {
        padding-top: 104px;
        padding-bottom: 34px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero h1 {
        font-size: clamp(2.05rem, 8.6vw, 2.28rem);
        line-height: 1.02;
    }

    .hero-copy {
        text-align: center;
        justify-items: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero h1,
    .hero-lead {
        margin-inline: auto;
    }

    .hero-lead {
        font-size: 0.98rem;
        line-height: 1.74;
    }

    .hero-actions {
        width: 100%;
        max-width: min(460px, 100%);
        margin-inline: auto;
    }

    .hero-notes {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        max-width: 100%;
        gap: 10px;
        margin-top: 24px;
        overflow-x: auto;
        padding: 2px 8px 11px 2px;
        margin-inline: -2px;
        scrollbar-width: thin;
        scrollbar-color: rgba(117, 224, 173, 0.65) rgba(216, 255, 232, 0.08);
    }

    .hero-notes::-webkit-scrollbar {
        height: 4px;
    }

    .hero-notes::-webkit-scrollbar-track {
        border-radius: 999px;
        background: rgba(216, 255, 232, 0.08);
    }

    .hero-notes::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(216, 255, 232, 0.82), var(--emerald));
    }

    .hero-notes li {
        flex: 0 0 auto;
        min-height: 50px;
        padding: 0 12px 0 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.014));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
        justify-content: flex-start;
        text-align: left;
    }

    .offer-panel {
        padding: 20px 18px 18px;
        margin: 0;
        border-radius: 24px;
    }

    .offer-summary {
        font-size: 0.92rem;
    }

    .offer-status {
        min-height: 32px;
        font-size: 0.78rem;
    }

    .offer-price {
        font-size: 2.7rem;
    }

    .offer-list li {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 12px;
        padding: 13px 0;
    }

    .offer-list strong {
        font-size: 0.96rem;
    }

    .offer-list p,
    .offer-footnote {
        font-size: 0.88rem;
        line-height: 1.64;
    }

    .offer-plans {
        gap: 8px;
    }

    .offer-plans span {
        width: calc(50% - 4px);
        justify-content: center;
    }

    .location-console,
    .benefit-item,
    .fact-card,
    .flow-step,
    .plan,
    .cta-panel {
        padding: 20px;
    }

    .faq-item {
        padding: 0 18px;
    }

    .console-pills {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .console-pills span {
        justify-content: center;
        font-size: 0.8rem;
    }

    .geo-tabs {
        grid-auto-columns: minmax(178px, 84%);
    }

    .geo-tab {
        border-radius: 18px;
        padding: 13px 14px;
    }

    .geo-panel-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .geo-panel-ping {
        margin-top: 4px;
    }

    .geo-panel-ping span {
        font-size: 2.1rem;
    }

    .geo-panel-facts {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        margin-top: 18px;
    }

    .geo-fact {
        padding-top: 12px;
    }
}

@media (max-width: 380px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .brand-word {
        display: inline;
        font-size: 0.8rem;
        letter-spacing: 0.12em;
    }

    .brand {
        gap: 8px;
    }

    .header-actions {
        min-width: 0;
    }

    .button-compact {
        min-height: 44px;
        padding-inline: 12px;
        font-size: 0.82rem;
        white-space: nowrap;
    }
}

@media (max-width: 560px) {
    html {
        scroll-padding-top: 78px;
    }

    .button,
    .button-compact {
        min-height: 46px;
        padding: 0 16px;
        font-size: 0.92rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.12rem);
        max-width: none;
    }

    .hero-free-pill {
        min-height: 32px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .hero-lead,
    .section-lead,
    .editorial-copy p,
    .benefit-body p,
    .fact-card p,
    .flow-step p,
    .plan-meta,
    .faq-answer,
    .cta-panel p,
    .footer-brand p,
    .geo-panel-description,
    .offer-list p {
        font-size: 0.94rem;
        line-height: 1.72;
    }

    .section-heading h2,
    .cta-panel h2 {
        font-size: 1.86rem;
        max-width: none;
    }

    .hero-notes {
        gap: 8px;
        padding-right: 6px;
    }

    .hero-notes li {
        min-height: 42px;
        padding: 0 10px 0 8px;
        gap: 8px;
    }

    .hero-note-copy strong {
        font-size: 0.8rem;
    }

    .hero-note-copy span {
        font-size: 0.72rem;
    }

    .offer-plans span,
    .pricing-includes span,
    .console-pills span {
        font-size: 0.86rem;
    }

    .geo-tab {
        grid-template-columns: auto 1fr auto;
    }

    .geo-tabs {
        grid-auto-columns: minmax(170px, 88%);
        margin-inline: -2px;
        padding-inline: 2px 4px;
    }

    .location-row {
        padding: 18px;
    }

    .benefit-item {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
    }

    .benefit-body h3,
    .fact-card h3,
    .flow-step h3,
    .plan h3,
    .faq-item summary {
        font-size: 1.04rem;
    }

    .plan-price {
        font-size: 1.95rem;
    }

    .offer-plans span {
        width: 100%;
        justify-content: flex-start;
    }

    .console-title {
        font-size: 1.5rem;
    }

    .geo-panel-title strong {
        font-size: 1.2rem;
    }

    .footer-bottom {
        font-size: 0.84rem;
    }
}

@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;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
