/* Sky5G — site styles
   Tokens follow the Sky5G Brand Style Guide (SGMS-302 / SGMS-305).
   Orange is the accent, navy is the voice: spend orange deliberately. */

/* Inter (variable, latin subset), self-hosted. Licensed under the SIL Open Font License. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-var.woff2") format("woff2");
}

:root {
  --orange: #FF7300;
  --orange-80: #FF8F33;
  --orange-20: #FFE3CC;
  --navy: #163A63;
  --ink: #12263F;
  --slate: #5A6B7C;
  --cloud: #F5F7FA;
  --white: #FFFFFF;
  --line: #E1E6EC;
  --on-dark-muted: #B9C6D6;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(72px, 10vw, 128px);
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; color: var(--navy); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

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

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--white); color: var(--navy); padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Type ---------- */
.display {
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--white);
}
.h2 {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: #D7E0EA; max-width: 34em; }
.body-lg { font-size: clamp(1.02rem, 1.4vw, 1.125rem); color: var(--slate); max-width: 38em; }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); flex: none; }
.eyebrow--light { color: var(--on-dark-muted); }

.fineprint { font-size: 0.85rem; color: var(--slate); margin-top: 28px; max-width: 60em; }

.num { font-size: 0.8rem; font-weight: 700; color: var(--orange); font-variant-numeric: tabular-nums; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px;
  font: 700 1rem/1 var(--font);
  border-radius: var(--radius-sm); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s;
}
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 0.9rem; border-radius: 999px; }
/* Ink text on Sky Orange keeps AA contrast (white on orange does not). */
.btn--primary { background: var(--orange); color: var(--ink); }
.btn--primary:hover { background: var(--orange-80); }
.btn--ghost { color: var(--white); border-color: rgba(255,255,255,.45); background: rgba(18,38,63,.25); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-weight: 700; color: var(--navy); text-decoration: none;
  border-bottom: 2px solid var(--orange); padding-bottom: 2px;
}
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 30px; height: 30px; flex: none; }
.logo-word { font-weight: 800; font-size: 1.6rem; letter-spacing: -0.03em; line-height: 1; color: var(--navy); }
.logo-word span { color: var(--orange); }
.logo--reversed { --mark-dot: var(--white); }
.logo--reversed .logo-word { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .3s, box-shadow .3s;
}
.site-header.is-scrolled, .site-header.is-open { background: rgba(18,38,63,.96); box-shadow: 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav ul { display: flex; gap: 28px; }
.site-nav ul a { color: var(--white); text-decoration: none; font-weight: 500; font-size: 0.95rem; opacity: .88; }
.site-nav ul a:hover { opacity: 1; text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 6px; text-decoration-thickness: 2px; }

.nav-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-weight: 700; font-size: 0.95rem; text-decoration: none; white-space: nowrap; }
.nav-phone svg { width: 18px; height: 18px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-phone:hover { text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 6px; }
@media (max-width: 1100px) and (min-width: 861px) { .site-nav { gap: 20px; } .site-nav ul { gap: 18px; } .nav-phone { display: none; } }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-toggle {
    display: grid; place-items: center; width: 44px; height: 44px;
    background: none; border: 1.5px solid rgba(255,255,255,.35); border-radius: var(--radius-sm); cursor: pointer;
  }
  .nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
    display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; position: relative; transition: transform .25s, opacity .25s;
  }
  .nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
  .nav-toggle-bars::before { top: -6px; }
  .nav-toggle-bars::after { top: 6px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 20px;
    padding: 12px var(--gutter) 28px; background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.08);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { display: block; padding: 14px 0; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav .btn { min-height: 52px; }
  .nav-phone { font-size: 1.1rem; padding: 4px 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(100svh, 920px);
  display: flex; align-items: flex-end;
  background: var(--ink); color: var(--white);
  padding: calc(var(--header-h) + 64px) 0 72px;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; z-index: -2; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(18,38,63,.94) 0%, rgba(18,38,63,.78) 38%, rgba(18,38,63,.12) 72%, rgba(18,38,63,0) 100%),
    linear-gradient(0deg, rgba(18,38,63,.85) 0%, rgba(18,38,63,0) 45%),
    linear-gradient(180deg, rgba(18,38,63,.6) 0%, rgba(18,38,63,0) 22%);
}
.hero-inner { display: flex; flex-direction: column; gap: 48px; }
.hero-copy { max-width: 680px; }
.hero-copy .display { margin-bottom: 28px; }
.hero-copy .lead { margin-bottom: 36px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; font-size: 0.75rem; letter-spacing: .24em; text-transform: uppercase; color: var(--on-dark-muted); font-weight: 600; }
.hero-tags span { color: var(--orange); margin-right: 6px; letter-spacing: .1em; }
.hero-caption {
  align-self: flex-end; display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; color: #D7E0EA; padding: 8px 14px; border-radius: 999px;
  background: rgba(18,38,63,.6); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(6px);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,115,0,.22); }

@media (max-width: 860px) {
  .hero { min-height: 100svh; }
  .hero-bg { object-position: 58% 60%; }
  .hero::before { background: linear-gradient(0deg, rgba(18,38,63,.96) 0%, rgba(18,38,63,.8) 52%, rgba(18,38,63,.25) 100%); }
  .hero-caption { align-self: flex-start; }
}

/* ---------- Audience ---------- */
.audience { position: relative; z-index: 2; margin-top: -1px; background: linear-gradient(var(--ink) 50%, var(--cloud) 50%); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 60px -24px rgba(18,38,63,.35); }
.audience-card {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  padding: 28px 32px; background: var(--white); text-decoration: none; transition: background-color .2s;
}
.audience-card--alt { background: var(--cloud); border-left: 1px solid var(--line); }
.audience-card:hover { background: var(--orange-20); }
.audience-text { display: grid; gap: 2px; }
.audience-text strong { color: var(--navy); font-size: 1.1rem; }
.audience-text span { color: var(--slate); font-size: 0.95rem; }
.audience-card .arrow { font-size: 1.25rem; color: var(--navy); transition: transform .2s; }
.audience-card:hover .arrow { transform: translateX(4px); }
@media (max-width: 700px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { padding: 22px 20px; }
  .audience-card--alt { border-left: 0; border-top: 1px solid var(--line); }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section--cloud { background: var(--cloud); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy .h2 { color: var(--white); }
.section--navy .body-lg { color: #CFD9E4; }
.section-head { margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .h2 { margin-bottom: 20px; max-width: 18em; }

/* Intro */
.intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.intro .h2 { margin-bottom: 24px; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0 0; padding-top: 32px; border-top: 1px solid var(--line); }
.facts div { display: grid; gap: 6px; }
.facts dt { font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: var(--orange); }
.facts dd { margin: 0; color: var(--slate); font-size: 0.95rem; }
.intro-photo { margin: 0; }
.intro-photo img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.intro-photo figcaption { font-size: 0.85rem; color: var(--slate); margin-top: 12px; }
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } .intro-photo img { aspect-ratio: 4 / 3; } }

/* Modules */
.module-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.module-tabs [role="tab"] {
  display: grid; grid-template-columns: auto 1fr; column-gap: 14px; row-gap: 2px; align-items: baseline;
  text-align: left; padding: 20px 22px; cursor: pointer;
  font: inherit; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.module-tabs [role="tab"] .num { grid-row: span 2; }
.module-tabs [role="tab"] strong { font-size: 1.15rem; color: var(--navy); }
.module-tabs [role="tab"] span:last-child { grid-column: 2; font-size: 0.9rem; color: var(--slate); }
.module-tabs [role="tab"]:hover { border-color: var(--orange-80); }
.module-tabs [role="tab"][aria-selected="true"] { border-color: var(--orange); box-shadow: inset 0 -3px 0 var(--orange); }

.module-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 5vw, 56px);
}
.module-panel[hidden] { display: none; }
.module-panel:not([hidden]) { animation: fade .35s ease both; }
.module-copy .h3 { margin-bottom: 14px; }
.module-copy > p:not(.eyebrow) { color: var(--slate); font-size: 1.05rem; }
.module-visual { background: radial-gradient(closest-side, var(--cloud), var(--white)); border-radius: var(--radius-sm); display: grid; place-items: center; min-height: 420px; padding: 16px; }
.module-visual img { max-height: 520px; width: auto; }

.ticks { display: grid; gap: 10px; margin: 24px 0; }
.ticks li { display: flex; gap: 12px; align-items: baseline; font-weight: 500; }
.ticks li::before { content: ""; flex: none; width: 14px; height: 8px; border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(-45deg) translateY(-3px); }

.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin: 0; }
.specs div { background: var(--cloud); padding: 12px 14px; }
.specs dt { font-size: 0.72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }
.specs dd { margin: 4px 0 0; font-weight: 700; color: var(--navy); font-size: 0.95rem; }

@media (max-width: 860px) {
  .module-tabs { grid-template-columns: 1fr; }
  .module-panel { grid-template-columns: 1fr; }
  .module-visual { order: -1; min-height: 300px; }
  .module-visual img { max-height: 340px; }
}
@media (max-width: 520px) { .specs { grid-template-columns: 1fr; } }

/* Views */
.views { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
.view { margin: 0; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.view-img { flex: 1; display: grid; place-items: center; padding: 20px; background: var(--cloud); min-height: 360px; }
.view-img img { max-height: 400px; width: auto; }
.view--wide .view-img { background: var(--white); }
.view--wide .view-img img { width: 100%; max-height: none; }
.view figcaption { padding: 16px 20px; font-size: 0.95rem; color: var(--ink); font-weight: 500; border-top: 1px solid var(--line); }
.view figcaption span { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--slate); margin-bottom: 4px; }
@media (max-width: 960px) { .views { grid-template-columns: 1fr 1fr; } .view--wide { grid-column: 1 / -1; } }
@media (max-width: 560px) { .views { grid-template-columns: 1fr; } .view-img { min-height: 280px; } .view-img img { max-height: 300px; } }

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.industry { background: var(--navy); padding: 32px 28px 36px; transition: background-color .2s; }
.industry:hover { background: #1B4474; }
.industry .icon { width: 32px; height: 32px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 24px; }
.industry h3 { color: var(--white); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.industry p { color: #CFD9E4; font-size: 0.97rem; }
@media (max-width: 960px) { .industry-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .industry-grid { grid-template-columns: 1fr; } }

/* Process */
.process-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 7vw, 96px); align-items: start; }
.process-head { position: sticky; top: calc(var(--header-h) + 32px); }
.process-head .h2 { margin-bottom: 20px; }
.process-head .btn { margin-top: 32px; }
.steps { display: grid; gap: 0; counter-reset: step; }
.steps li { display: grid; grid-template-columns: 64px 1fr; column-gap: 20px; padding: 28px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.step-num { grid-row: span 2; font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--orange); line-height: 1; }
.steps h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.steps p { color: var(--slate); }
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr; } .process-head { position: static; } }

/* Places band */
.places { overflow: hidden; background: var(--ink); }
.places-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: 4px; }
.places-track img { width: 100%; height: clamp(200px, 26vw, 340px); object-fit: cover; }
@media (max-width: 700px) {
  .places-track { overflow-x: auto; scroll-snap-type: x mandatory; grid-auto-columns: 78%; scrollbar-width: none; }
  .places-track::-webkit-scrollbar { display: none; }
  .places-track img { scroll-snap-align: start; }
}

/* Consumer */
.consumer-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: end; }
.consumer-head .h2 { margin-bottom: 20px; }
.benefits { display: grid; gap: 0; }
.benefits li { display: grid; gap: 2px; padding: 18px 0 18px 44px; border-top: 1px solid var(--line); position: relative; }
.benefits li::before {
  content: ""; position: absolute; left: 0; top: 20px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF7300' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.benefits strong { color: var(--navy); }
.benefits span { color: var(--slate); }
@media (max-width: 860px) { .consumer-head { grid-template-columns: 1fr; } }

/* Plans */
.plans { margin-top: clamp(56px, 8vw, 96px); }
.plans-head { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 36px; text-align: center; }
.plans-head p { color: var(--slate); font-weight: 500; }
.plan-group + .plan-group { margin-top: 40px; }
.plan-group-title { margin: 0 0 16px; text-align: center; font-size: 0.75rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--slate); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: calc((100% - 40px) / 3 * 2 + 20px); margin-inline: auto; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px 24px;
}
.plan--featured { border: 2px solid var(--orange); }
.plan-badge {
  position: absolute; top: -13px; left: 24px; padding: 3px 12px; border-radius: 999px;
  background: var(--orange); color: var(--ink); font-size: 0.75rem; font-weight: 700;
}
.plan-name { margin: 0; font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.plan-speed { margin-top: 18px; color: var(--slate); font-weight: 500; }
.plan-speed strong { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); line-height: 1; margin-right: 4px; }
.plan-price { margin-top: 6px; color: var(--slate); }
.plan-price .amount { font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.plan-features { display: grid; gap: 10px; margin: 22px 0 24px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.95rem; }
.plan-features li { display: flex; gap: 10px; align-items: baseline; }
.plan-features li::before { content: ""; flex: none; width: 12px; height: 7px; border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(-45deg) translateY(-3px); }
.plan-features strong { color: var(--navy); }
.plan-actions { margin-top: auto; display: grid; gap: 12px; }
.plan-actions .btn { width: 100%; }
.plan-cis { font-size: 0.85rem; color: var(--slate); text-align: center; text-underline-offset: 3px; }
.plan-cis:hover { color: var(--navy); }
.plan-tax { margin-top: 2px; font-size: 0.8rem; color: var(--slate); }
.plan-actions { padding-top: 20px; }
.plan-features + .plan-actions { padding-top: 0; }
.btn.is-disabled { opacity: .55; pointer-events: none; }
.plans-status { grid-column: 1 / -1; text-align: center; color: var(--slate); padding: 24px 0; }
.plans-status a { color: var(--navy); font-weight: 600; }
@media (max-width: 960px) {
  .plan-grid, .plan-grid--2 { grid-template-columns: 1fr 1fr; max-width: none; }
}
.plans > .fineprint { text-align: center; margin-inline: auto; }
@media (max-width: 600px) { .plan-grid, .plan-grid--2 { grid-template-columns: 1fr; } }

/* Coverage map */
.coverage-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: stretch; }
.coverage-panel .h2 { margin-bottom: 20px; }
.coverage-form { margin-top: 28px; }
.coverage-form label, .field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: var(--navy); }
.field-row { display: flex; gap: 10px; }
.field-row input { flex: 1; min-width: 0; }
.form-msg--result:not(:empty) { padding: 12px 14px; border-radius: var(--radius-sm); border-left: 4px solid; }
.form-msg--result.is-ok { background: #EAF1F8; border-color: var(--navy); }
.form-msg--result.is-warn { background: var(--orange-20); border-color: var(--orange); color: var(--ink); }
.form-msg--result.is-error { background: #FBEAE9; border-color: #B3261E; }
.form-msg--result a { color: var(--navy); font-weight: 700; }
.map-legend { border: 0; padding: 0; margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.map-legend legend { font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 10px; padding: 0; }
.map-legend label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.95rem; }
.map-legend input { width: 18px; height: 18px; min-height: 0; accent-color: var(--navy); }
.swatch { width: 16px; height: 16px; border-radius: 4px; border: 2px solid; }
.swatch--5g { border-color: var(--orange); background: rgba(255,115,0,.32); }
.swatch--fw { border-color: var(--navy); background: rgba(22,58,99,.08); }
.towns { margin-top: 24px; }
.towns-label { font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 10px; }
.towns ul + .towns-label { margin-top: 18px; }
.towns ul { display: flex; flex-wrap: wrap; gap: 8px; }
.towns button {
  font: 500 0.9rem/1 var(--font); color: var(--navy); cursor: pointer;
  padding: 10px 14px; border-radius: 999px; background: var(--cloud); border: 1.5px solid var(--line);
  transition: border-color .2s, background-color .2s;
}
.towns button:hover { border-color: var(--orange); background: var(--orange-20); }
.towns .town--fw:hover { border-color: var(--navy); background: #EAF1F8; }
.map-wrap { position: relative; min-height: 520px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--cloud); }
.map { position: absolute; inset: 0; z-index: 0; }
.map-fallback { padding: 24px; color: var(--slate); }
.leaflet-container { font-family: var(--font); }
.leaflet-tooltip { font-weight: 600; color: var(--navy); }
@media (max-width: 860px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 420px; }
}

/* Forms */
input, textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 14px 16px; min-height: 52px;
  border: 1.5px solid #C6D0DB; border-radius: var(--radius-sm); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(22,58,99,.14); }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #C0362C; }
textarea { resize: vertical; min-height: 120px; }
.form-msg { margin-top: 12px; font-size: 0.95rem; min-height: 1.5em; }
.form-msg.is-error { color: #B3261E; }
.form-msg.is-ok { color: var(--navy); }
.form-msg strong { font-weight: 700; }
@media (max-width: 420px) { .field-row { flex-direction: column; } }

/* Sky */
.sky { position: relative; isolation: isolate; background: var(--ink); overflow: hidden; }
.sky-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; z-index: -2; }
.sky::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(18,38,63,.9) 0%, rgba(18,38,63,.6) 40%, rgba(18,38,63,0) 70%); }
.sky-inner { min-height: clamp(520px, 52vw, 720px); display: flex; align-items: center; padding-block: 80px; }
.sky-card { max-width: 480px; color: #DCE4ED; }
.sky-card .h2 { color: var(--white); margin-bottom: 20px; }
.sky-card blockquote { margin: 28px 0 0; padding-left: 20px; border-left: 3px solid var(--orange); font-size: 1.35rem; font-weight: 600; color: var(--white); }
.tagline { margin-top: 28px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
@media (max-width: 760px) {
  .sky { display: flex; flex-direction: column; }
  .sky-bg { position: static; z-index: 0; height: auto; aspect-ratio: 16 / 9; object-position: 50% 50%; }
  .sky::before { display: none; }
  .sky-inner { min-height: 0; padding-block: 48px 64px; }
}

/* Contact */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-grid .h2 { margin-bottom: 20px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: var(--cloud); padding: clamp(24px, 4vw, 40px); border-radius: var(--radius); }
.field--full { grid-column: 1 / -1; }
.optional { font-weight: 400; color: var(--slate); }
.enquiry-type { grid-column: 1 / -1; border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.enquiry-type legend { font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 10px; padding: 0; }
.enquiry-type label { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--white); border: 1.5px solid #C6D0DB; border-radius: 999px; cursor: pointer; font-weight: 500; }
.enquiry-type label:has(input:checked) { border-color: var(--navy); background: var(--navy); color: var(--white); }
.enquiry-type input { width: auto; min-height: 0; accent-color: var(--orange); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-actions .form-msg { margin: 0; }
.contact-methods { display: grid; gap: 0; margin-top: 36px; }
.contact-methods li { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-methods li:last-child { border-bottom: 1px solid var(--line); }
.contact-methods .icon { width: 24px; height: 24px; flex: none; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-methods > li > span { display: grid; }
.contact-label { font-size: 0.72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--slate); }
.contact-methods a { font-size: 1.15rem; font-weight: 700; color: var(--navy); text-decoration: none; }
.contact-methods a:hover { text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 4px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .contact-form { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: var(--ink); color: var(--on-dark-muted); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-grid p { margin-top: 18px; max-width: 26em; }
.footer-contact { margin-top: 16px; }
.footer-contact a { color: var(--white); font-weight: 600; }
.footer-h { font-size: 0.75rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a:not(.logo) { text-decoration: none; }
.site-footer a:not(.logo):hover { color: var(--white); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 4px; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 24px 32px; border-top: 1px solid rgba(255,255,255,.1); font-size: 0.85rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Motion ---------- */
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .module-panel:not([hidden]) { animation: none; }
  * { transition-duration: 0s !important; }
}
