:root {
    --ink: #f5f9ff;
    --muted: #99a8ba;
    --muted-strong: #bbc7d4;
    --night: #07111f;
    --night-soft: #0a1727;
    --panel: #0d1c2e;
    --panel-light: #11243a;
    --line: rgba(174, 205, 235, 0.14);
    --line-strong: rgba(174, 205, 235, 0.25);
    --cyan: #7ce7f4;
    --cyan-strong: #4acde1;
    --blue: #598cff;
    --green: #72e6b1;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 13px;
    --container: 1180px;
}

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

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

body {
    margin: 0;
    background: var(--night);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

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

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -0.035em;
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    background: var(--cyan);
    color: var(--night);
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 20px;
    top: -80px;
    z-index: 1000;
    padding: 11px 16px;
    border-radius: 10px;
    background: var(--cyan);
    color: var(--night);
    font-weight: 800;
    transition: top 160ms ease;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(7, 17, 31, 0.88);
    border-bottom-color: var(--line);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

.brand-mark {
    position: relative;
    width: 35px;
    height: 35px;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(124, 231, 244, 0.35);
    border-radius: 11px;
    background: linear-gradient(145deg, rgba(124, 231, 244, 0.16), rgba(89, 140, 255, 0.09));
    box-shadow: inset 0 0 18px rgba(124, 231, 244, 0.07), 0 0 20px rgba(124, 231, 244, 0.07);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
    border-radius: 2px;
}

.brand-mark::before,
.brand-mark::after {
    top: 8px;
    width: 4px;
    height: 19px;
}

.brand-mark::before {
    left: 9px;
}

.brand-mark::after {
    right: 9px;
}

.brand-mark span {
    left: 11px;
    top: 15px;
    width: 13px;
    height: 4px;
}

.brand-name {
    color: #fff;
    font-size: 1.17rem;
    font-weight: 820;
    letter-spacing: -0.025em;
}

.brand-name > span {
    color: var(--cyan);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu > a:not(.button) {
    position: relative;
    color: var(--muted-strong);
    font-size: 0.9rem;
    font-weight: 650;
    transition: color 160ms ease;
}

.nav-menu > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: var(--cyan);
    transition: right 180ms ease;
}

.nav-menu > a:not(.button):hover,
.nav-menu > a:not(.button):focus-visible {
    color: #fff;
}

.nav-menu > a:not(.button):hover::after {
    right: 0;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 10px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(3) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 0.94rem;
    font-weight: 780;
    line-height: 1.2;
    text-align: center;
    transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--cyan), #61b9ff);
    color: #06111e;
    box-shadow: 0 14px 32px rgba(92, 194, 230, 0.2);
}

.button-primary:hover {
    box-shadow: 0 18px 42px rgba(92, 194, 230, 0.32);
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
}

.button-secondary:hover,
.button-ghost:hover {
    border-color: rgba(124, 231, 244, 0.45);
    background: rgba(124, 231, 244, 0.08);
}

.button-ghost {
    min-height: 42px;
    padding: 9px 16px;
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.035);
}

.button-small {
    font-size: 0.88rem;
}

.button-full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 860px;
    overflow: hidden;
    padding: 164px 0 0;
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.1) 0%, var(--night) 100%),
        radial-gradient(circle at 65% 0%, rgba(89, 140, 255, 0.11), transparent 42%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.26;
    background-image:
        linear-gradient(rgba(151, 194, 224, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(151, 194, 224, 0.07) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(105px);
    opacity: 0.17;
}

.hero-glow-one {
    left: -250px;
    top: 130px;
    background: var(--cyan);
}

.hero-glow-two {
    right: -210px;
    top: 20px;
    background: var(--blue);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
    align-items: center;
    gap: 78px;
}

.eyebrow,
.section-kicker {
    color: var(--cyan);
    font-size: 0.76rem;
    font-weight: 820;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 12px;
    border: 1px solid rgba(124, 231, 244, 0.2);
    border-radius: 999px;
    background: rgba(124, 231, 244, 0.06);
    letter-spacing: 0.105em;
}

.status-dot,
.availability i,
.live-label i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(114, 230, 177, 0.11), 0 0 18px rgba(114, 230, 177, 0.5);
}

.hero h1 {
    max-width: 690px;
    margin-bottom: 25px;
    color: #fff;
    font-size: clamp(3.25rem, 6vw, 5.55rem);
    font-weight: 780;
    letter-spacing: -0.065em;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(115deg, #fff 0%, var(--cyan) 58%, #80a7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--muted-strong);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 31px;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 21px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 650;
}

.hero-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-assurances i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(124, 231, 244, 0.45);
}

.hero-visual {
    position: relative;
    padding: 20px 0 46px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0 -40px 20px 55px;
    border: 1px solid rgba(124, 231, 244, 0.08);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.infrastructure-card {
    position: relative;
    min-height: 506px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(194, 224, 248, 0.2);
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: var(--shadow);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.infrastructure-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.infrastructure-card img {
    width: 100%;
    height: 506px;
    object-fit: cover;
}

.image-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(5, 13, 24, 0.98) 0%, rgba(5, 13, 24, 0.62) 37%, rgba(5, 13, 24, 0.12) 75%),
        linear-gradient(110deg, rgba(3, 10, 18, 0.4), transparent 55%);
}

.infrastructure-card figcaption {
    position: absolute;
    inset: auto 30px 28px;
    display: grid;
    gap: 5px;
}

.infrastructure-card figcaption strong {
    color: #fff;
    font-size: 1.47rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.infrastructure-card figcaption > span:last-child {
    color: var(--muted-strong);
    font-size: 0.94rem;
}

.infrastructure-card figcaption b {
    margin-inline: 8px;
    color: var(--cyan);
}

.live-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(114, 230, 177, 0.19);
    border-radius: 999px;
    background: rgba(7, 22, 26, 0.68);
    color: #c7fbe4;
    font-size: 0.73rem;
    font-weight: 760;
    backdrop-filter: blur(8px);
}

.latency-card {
    position: absolute;
    left: -47px;
    bottom: 0;
    max-width: 330px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    border: 1px solid rgba(185, 219, 244, 0.22);
    border-radius: 17px;
    background: rgba(11, 27, 44, 0.9);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
}

.latency-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    background: linear-gradient(140deg, var(--cyan), var(--blue));
    color: var(--night);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.latency-card div {
    display: grid;
}

.latency-card small {
    color: var(--cyan);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.latency-card strong {
    color: #fff;
    font-size: 0.88rem;
}

.metrics-wrap {
    position: relative;
    z-index: 3;
    margin-top: 93px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 0;
    padding: 28px 8px;
    border-block: 1px solid var(--line);
}

.metrics > div {
    padding: 0 28px;
    border-right: 1px solid var(--line);
}

.metrics > div:last-child {
    border-right: 0;
}

.metrics dt {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 810;
    letter-spacing: -0.03em;
}

.metrics dd {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 650;
}

.section {
    position: relative;
    padding: 126px 0;
}

.section-heading {
    margin-bottom: 58px;
}

.section-kicker {
    margin-bottom: 14px;
}

.section-heading h2,
.faq-intro h2,
.cta-panel h2 {
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(2.25rem, 4.4vw, 4.1rem);
    font-weight: 760;
    letter-spacing: -0.055em;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.68fr);
    align-items: end;
    gap: 80px;
}

.split-heading > p {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 1.03rem;
}

.centered-heading {
    max-width: 740px;
    margin-inline: auto;
    text-align: center;
}

.centered-heading > p:last-child {
    max-width: 650px;
    margin: 19px auto 0;
    color: var(--muted);
    font-size: 1.03rem;
}

.platform {
    background: linear-gradient(180deg, #091523, #07111f);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
}

.feature-card {
    min-height: 332px;
    padding: 34px 28px;
    border-right: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.01);
    transition: background 180ms ease, transform 180ms ease;
}

.feature-card:last-child {
    border-right: 0;
}

.feature-card:hover {
    background: rgba(124, 231, 244, 0.045);
}

.feature-card.featured {
    background: linear-gradient(155deg, rgba(124, 231, 244, 0.09), rgba(89, 140, 255, 0.035));
}

.feature-code {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 53px;
    border: 1px solid rgba(124, 231, 244, 0.2);
    border-radius: 15px;
    background: rgba(124, 231, 244, 0.06);
    color: var(--cyan);
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.feature-card h3 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: -0.025em;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.7;
}

.platform-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    margin-top: 30px;
    padding: 40px 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 0% 50%, rgba(124, 231, 244, 0.08), transparent 30%),
        rgba(255, 255, 255, 0.018);
}

.platform-banner h3 {
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.platform-banner > p {
    color: var(--muted);
}

.locations {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 20%, rgba(89, 140, 255, 0.07), transparent 35%),
        var(--night);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.location-card {
    position: relative;
    min-height: 552px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.location-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.location-card:hover img {
    transform: scale(1.035);
}

.location-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(5, 13, 24, 0.99) 4%, rgba(5, 13, 24, 0.72) 47%, rgba(5, 13, 24, 0.16) 100%),
        linear-gradient(90deg, rgba(5, 13, 24, 0.35), transparent 60%);
}

.location-content {
    position: absolute;
    inset: auto 36px 36px;
}

.location-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px;
}

.location-code {
    padding: 7px 10px;
    border: 1px solid rgba(124, 231, 244, 0.27);
    border-radius: 8px;
    background: rgba(7, 17, 31, 0.66);
    color: var(--cyan);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    backdrop-filter: blur(8px);
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #d7f8e9;
    font-size: 0.78rem;
    font-weight: 720;
}

.location-content h3 {
    margin-bottom: 13px;
    color: #fff;
    font-size: clamp(2.15rem, 4vw, 3.2rem);
}

.location-content > p {
    max-width: 490px;
    margin-bottom: 22px;
    color: #cad4df;
    font-size: 0.98rem;
}

.location-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.location-content li {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(7, 17, 31, 0.53);
    color: #b9c6d4;
    font-size: 0.73rem;
    font-weight: 640;
    backdrop-filter: blur(8px);
}

.routing-note,
.pricing-note {
    max-width: 880px;
    margin: 28px auto 0;
    color: #718297;
    font-size: 0.77rem;
    text-align: center;
}

.plans {
    background:
        linear-gradient(180deg, rgba(124, 231, 244, 0.018), transparent 18%),
        #091523;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 19px;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 33px 30px 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7, 17, 31, 0.78);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.price-card-highlight {
    border-color: rgba(124, 231, 244, 0.42);
    background:
        linear-gradient(155deg, rgba(124, 231, 244, 0.095), transparent 36%),
        #0b1a2b;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), 0 0 45px rgba(91, 180, 218, 0.07);
}

.popular-badge {
    position: absolute;
    right: 22px;
    top: -13px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--cyan);
    color: var(--night);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan-header {
    display: grid;
    gap: 2px;
    margin-bottom: 28px;
}

.plan-name {
    color: #fff;
    font-size: 1.24rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.plan-fit {
    color: var(--muted);
    font-size: 0.76rem;
}

.price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(2.7rem, 4.2vw, 3.8rem);
    font-weight: 820;
    line-height: 1;
    letter-spacing: -0.06em;
}

.price > span {
    margin: 7px 6px 0 0;
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.03em;
}

.price small {
    align-self: flex-end;
    margin: 0 0 7px 7px;
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0;
}

.plan-description {
    min-height: 84px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.87rem;
}

.spec-list,
.custom-list {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.spec-list {
    border-top: 1px solid var(--line);
}

.spec-list li {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.79rem;
}

.spec-list span {
    color: #718297;
}

.spec-list strong {
    color: #dce6ef;
    font-weight: 720;
    text-align: right;
}

.price-card .button {
    margin-top: auto;
}

.custom-price {
    min-height: 68px;
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 780;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.custom-list {
    display: grid;
    gap: 13px;
    margin-top: 5px;
}

.custom-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #c1ccd8;
    font-size: 0.82rem;
}

.custom-list i {
    width: 8px;
    height: 8px;
    margin-top: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 12px rgba(124, 231, 244, 0.3);
}

.custom-contact {
    display: grid;
    gap: 2px;
    margin: auto 0 22px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.02);
}

.custom-contact small {
    color: #718297;
    font-size: 0.69rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.custom-contact a {
    color: var(--cyan);
    font-size: 0.92rem;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.faq {
    background: var(--night);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 95px;
}

.faq-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-intro h2 {
    margin-bottom: 22px;
}

.faq-intro > p:not(.section-kicker) {
    margin-bottom: 20px;
    color: var(--muted);
}

.faq-intro > a {
    color: var(--cyan);
    font-weight: 780;
    text-decoration: underline;
    text-decoration-color: rgba(124, 231, 244, 0.34);
    text-underline-offset: 5px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 0;
    color: #e6eef6;
    font-size: 1.02rem;
    font-weight: 720;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary span {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    top: 10px;
    height: 2px;
    border-radius: 9px;
    background: var(--cyan);
    transition: transform 180ms ease;
}

.faq-list summary span::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
    transform: rotate(0);
}

.faq-list details p {
    max-width: 680px;
    margin: -5px 46px 26px 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.cta-section {
    padding: 20px 0 108px;
    background: var(--night);
}

.cta-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 70px;
    overflow: hidden;
    padding: 56px 60px;
    border: 1px solid rgba(124, 231, 244, 0.22);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 8% 30%, rgba(124, 231, 244, 0.13), transparent 34%),
        radial-gradient(circle at 95% 100%, rgba(89, 140, 255, 0.13), transparent 34%),
        var(--panel);
    box-shadow: var(--shadow);
}

.cta-panel::after {
    content: "";
    position: absolute;
    right: -20px;
    top: -70px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(124, 231, 244, 0.08);
    border-radius: 50%;
}

.cta-panel h2 {
    max-width: 700px;
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.cta-panel p:last-child {
    max-width: 690px;
    color: var(--muted-strong);
}

.cta-panel .button {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #050d18;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.65fr 1fr;
    gap: 80px;
    padding: 68px 0 50px;
}

.footer-brand > p {
    max-width: 430px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 0.87rem;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 5px;
    color: #dce7f1;
    font-size: 0.79rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a {
    width: fit-content;
    color: var(--muted);
    font-size: 0.83rem;
    transition: color 150ms ease;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 0 28px;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin-bottom: 0;
    color: #64768b;
    font-size: 0.74rem;
}

@media (max-width: 1120px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
        gap: 48px;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 6.5vw, 4.75rem);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        min-height: 290px;
        border-bottom: 1px solid var(--line);
    }

    .feature-card:nth-child(2) {
        border-right: 0;
    }

    .feature-card:nth-child(3),
    .feature-card:nth-child(4) {
        border-bottom: 0;
    }

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

    .custom-card {
        grid-column: 1 / -1;
    }

    .custom-card .plan-description {
        min-height: auto;
    }

    .custom-card .custom-list {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .navbar {
        min-height: 74px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        inset: 74px 0 auto;
        max-height: 0;
        display: grid;
        gap: 0;
        overflow: hidden;
        border-bottom: 1px solid transparent;
        background: rgba(7, 17, 31, 0.98);
        visibility: hidden;
        opacity: 0;
        transition: max-height 220ms ease, opacity 160ms ease, visibility 160ms ease, border-color 160ms ease;
        backdrop-filter: blur(18px);
    }

    .nav-menu.is-open {
        max-height: calc(100vh - 74px);
        padding: 14px 20px 26px;
        border-bottom-color: var(--line);
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }

    .nav-menu > a:not(.button) {
        padding: 14px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
    }

    .nav-menu > a:not(.button)::after {
        display: none;
    }

    .nav-menu .button {
        margin-top: 16px;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 47px;
    }

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

    .hero-visual {
        max-width: 680px;
        width: 100%;
        margin-inline: auto;
    }

    .infrastructure-card {
        min-height: 470px;
        transform: none;
    }

    .infrastructure-card img {
        height: 470px;
    }

    .latency-card {
        left: 22px;
    }

    .metrics-wrap {
        margin-top: 72px;
    }

    .metrics {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .metrics > div {
        padding: 18px 24px;
    }

    .metrics > div:nth-child(2) {
        border-right: 0;
    }

    .metrics > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 98px 0;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .split-heading > p {
        max-width: 650px;
    }

    .platform-banner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .location-card {
        min-height: 520px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .faq-intro {
        position: static;
    }

    .cta-panel {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px 42px;
    }

    .cta-panel .button {
        width: fit-content;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 0.7fr;
        gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .hero {
        padding-top: 112px;
    }

    .eyebrow {
        margin-bottom: 20px;
        font-size: 0.67rem;
    }

    .hero h1 {
        margin-bottom: 21px;
        font-size: clamp(2.65rem, 13vw, 3.7rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-assurances {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        padding-bottom: 63px;
    }

    .infrastructure-card,
    .infrastructure-card img {
        height: 415px;
        min-height: 415px;
    }

    .infrastructure-card figcaption {
        inset: auto 22px 24px;
    }

    .latency-card {
        left: 15px;
        right: 15px;
        bottom: 0;
        max-width: none;
    }

    .metrics-wrap {
        margin-top: 58px;
    }

    .metrics > div {
        padding: 15px 12px;
    }

    .metrics dt {
        font-size: 1.02rem;
    }

    .metrics dd {
        font-size: 0.69rem;
    }

    .section {
        padding: 82px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2,
    .faq-intro h2 {
        font-size: clamp(2.05rem, 10.5vw, 3rem);
    }

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

    .feature-card,
    .feature-card:nth-child(2),
    .feature-card:nth-child(3) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .feature-card:last-child {
        border-bottom: 0;
    }

    .feature-code {
        margin-bottom: 34px;
    }

    .platform-banner {
        padding: 31px 25px;
    }

    .location-card {
        min-height: 510px;
    }

    .location-content {
        inset: auto 24px 25px;
    }

    .location-content h3 {
        font-size: 2.3rem;
    }

    .location-content ul {
        display: grid;
        justify-items: start;
    }

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

    .custom-card {
        grid-column: auto;
    }

    .custom-card .custom-list {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 30px 24px 24px;
    }

    .plan-description {
        min-height: auto;
    }

    .faq-list summary {
        padding: 22px 0;
        font-size: 0.95rem;
    }

    .faq-list details p {
        margin-right: 12px;
    }

    .cta-section {
        padding-bottom: 74px;
    }

    .cta-panel {
        padding: 38px 25px;
    }

    .cta-panel .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 37px;
        padding-top: 54px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
