:root {
  color-scheme: dark;
  --ink-950: #05080c;
  --ink-900: #080d13;
  --ink-850: #0b121a;
  --ink-800: #101a24;
  --ink-700: #182634;
  --paper: #f3f2ed;
  --paper-soft: #d8d9d6;
  --muted: #929da8;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --blue: #1677ff;
  --blue-deep: #0758cf;
  --cyan: #54c9ff;
  --cyan-soft: #a7e6ff;
  --warm: #e7ad65;
  --warm-soft: #f2d3aa;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1340px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --page-progress: 0;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

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

html {
  min-width: 320px;
  background: var(--ink-950);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--paper);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% -10%, rgba(19, 105, 214, 0.12), transparent 28rem),
    var(--ink-950);
  -webkit-font-smoothing: antialiased;
}

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

body.nav-open {
  overflow: hidden;
}

::selection {
  color: #00111c;
  background: var(--cyan);
}

a {
  color: inherit;
}

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

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

button {
  border: 0;
}

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

p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink-950);
  background: var(--paper);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: none;
}

.wrap {
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
}

.section-shell,
.section-inner {
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
}

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

.section-space {
  padding-block: clamp(96px, 12vw, 190px);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-warm {
  color: var(--warm-soft);
}

.display {
  margin-bottom: 0;
  font-size: clamp(3.5rem, 8.5vw, 8.75rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.display em {
  color: var(--cyan);
  font-style: normal;
}

.section-title {
  margin-bottom: 24px;
  max-width: 11ch;
  font-size: clamp(2.75rem, 6vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.section-title-wide {
  max-width: 15ch;
}

.lead {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--paper-soft);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.65;
}

.micro {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button,
.arrow-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    color 320ms var(--ease),
    background 320ms var(--ease),
    border-color 320ms var(--ease),
    transform 320ms var(--ease);
}

.button::after,
.arrow-link::after {
  content: "â";
  font-size: 1.15em;
  font-weight: 500;
  transition: transform 320ms var(--ease);
}

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

.button:hover::after,
.arrow-link:hover::after {
  transform: translate(3px, -3px);
}

.button-primary {
  color: #04111a;
  background: var(--cyan);
  box-shadow: 0 12px 34px rgba(84, 201, 255, 0.18);
}

.button-primary:hover {
  background: #91ddff;
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
  border-color: rgba(84, 201, 255, 0.7);
  background: rgba(84, 201, 255, 0.08);
}

.arrow-link {
  justify-content: flex-start;
  min-height: auto;
  padding: 0 0 6px;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

.arrow-link:hover,
.text-link:hover {
  color: var(--cyan);
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 0.83rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 220ms ease;
}

.text-link:not(:has(span))::after {
  content: "â";
  color: var(--cyan);
}

.media-fill,
.media-fill picture,
.media-fill img,
picture.media-fill,
picture.media-fill img {
  width: 100%;
  height: 100%;
}

.media-fill img,
picture.media-fill img {
  object-fit: cover;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px var(--gutter);
  transition:
    padding 420ms var(--ease),
    transform 420ms var(--ease);
}

.site-header::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transform: scaleX(var(--page-progress));
  transform-origin: left;
  transition: opacity 320ms ease;
}

.site-header.is-compact {
  padding-block: 12px;
}

.site-header.is-compact::after {
  opacity: 0.55;
}

.site-header.is-hidden {
  transform: translateY(-120%);
}

.header-inner,
.nav-shell,
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--wrap), 100%);
  min-height: 58px;
  margin-inline: auto;
  padding: 7px 8px 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    border-color 420ms var(--ease),
    background 420ms var(--ease),
    box-shadow 420ms var(--ease),
    backdrop-filter 420ms var(--ease);
}

.is-compact .header-inner,
.is-compact .nav-shell,
.is-compact .site-header__inner,
.nav-open .header-inner,
.nav-open .nav-shell,
.nav-open .site-header__inner {
  border-color: var(--line);
  background: rgba(5, 8, 12, 0.74);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand,
.brand-lockup,
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--paper);
  text-decoration: none;
}

.brand img,
.brand-lockup > img,
.site-brand__mark {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.brand-copy,
.brand-lockup > span,
.site-brand__name {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong,
.brand-lockup > span > strong,
.site-brand__name strong {
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy span,
.brand-lockup > span > small,
.site-brand__name > span {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  margin: 0;
}

.site-nav a,
.utility-link {
  position: relative;
  color: #b8c0c8;
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 240ms ease;
}

.mobile-utility {
  display: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--paper);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  min-height: 44px;
  padding: 0 18px;
  color: #04111a;
  background: var(--cyan);
  font-size: 0.76rem;
}

.site-nav .nav-cta::after {
  position: static;
  width: auto;
  height: auto;
  content: "â";
  background: transparent;
  transform: none;
}

.header-cta {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.76rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(5, 8, 12, 0.45);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  width: 18px;
  height: 1px;
  content: "";
  background: var(--paper);
  transition: transform 260ms var(--ease), opacity 180ms ease;
}

.nav-toggle::before {
  transform: translateY(-5px);
}

.nav-toggle::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.nav-toggle__lines > span {
  display: none;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.home-hero::before {
  position: absolute;
  z-index: -3;
  inset: -15%;
  content: "";
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(56, 174, 255, 0.19), transparent 20%),
    radial-gradient(circle at 74% 22%, rgba(18, 85, 203, 0.19), transparent 22%),
    linear-gradient(145deg, #06090d 18%, #0b1119 58%, #05080c);
  transition: background-position 200ms ease;
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-position: center;
  background-size: clamp(54px, 6vw, 96px) clamp(54px, 6vw, 96px);
  mask-image: radial-gradient(circle at 50% 54%, #000, transparent 72%);
}

.hero-signal {
  position: absolute;
  z-index: -1;
  top: 14%;
  left: 50%;
  width: min(72vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(84, 201, 255, 0.15);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-signal::before,
.hero-signal::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(84, 201, 255, 0.1);
  border-radius: inherit;
  content: "";
}

.hero-signal::after {
  inset: 27%;
  border-color: rgba(84, 201, 255, 0.18);
  box-shadow:
    0 0 60px rgba(22, 119, 255, 0.08),
    inset 0 0 60px rgba(22, 119, 255, 0.05);
}

.signal-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
  animation: signal-orbit 13s linear infinite;
}

.signal-dot:nth-child(2) {
  width: 6px;
  height: 6px;
  animation-duration: 18s;
  animation-direction: reverse;
  animation-delay: -6s;
  transform-origin: 260px -70px;
}

@keyframes signal-orbit {
  from {
    transform: rotate(0deg) translateX(clamp(130px, 22vw, 340px)) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(clamp(130px, 22vw, 340px)) rotate(-360deg);
  }
}

.home-hero-inner {
  display: grid;
  align-content: center;
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
  padding: 150px 0 134px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(26px, 4vh, 48px);
  color: #b7c3cc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(84, 201, 255, 0.7);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(84, 201, 255, 0.4);
  border-radius: inherit;
  content: "";
  animation: ping 2.5s ease-out infinite;
}

@keyframes ping {
  0%,
  30% {
    opacity: 0;
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

.home-hero h1 {
  max-width: 8.5ch;
  margin-bottom: clamp(28px, 4vh, 48px);
  font-size: clamp(4rem, 11.4vw, 10.8rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.home-hero h1 span {
  display: block;
}

.home-hero h1 .accent-word {
  position: relative;
  width: max-content;
  color: transparent;
  background: linear-gradient(90deg, #f5f4ef 3%, var(--cyan) 60%, #197bff);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-support {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  color: #c9ced3;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
}

.hero-support span {
  width: 34px;
  height: 1px;
  background: var(--line-strong);
}

.hero-path-shortcuts {
  position: absolute;
  right: var(--gutter);
  bottom: 38px;
  left: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.hero-path-shortcuts a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 24px;
  color: var(--paper-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 240ms ease, background 240ms ease;
}

.hero-path-shortcuts a:first-child {
  border-right: 1px solid var(--line);
}

.hero-path-shortcuts a::after {
  content: "â";
  color: var(--cyan);
  font-size: 1.15rem;
}

.hero-path-shortcuts a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
}

.path-section {
  position: relative;
  padding: clamp(70px, 8vw, 120px) var(--gutter);
  background: #070b10;
}

.path-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: min(var(--wrap), 100%);
  margin: 0 auto 38px;
}

.path-heading h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(2.6rem, 5.8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.path-index {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-grid {
  display: flex;
  gap: 14px;
  width: min(var(--wrap), 100%);
  height: min(78svh, 820px);
  min-height: 600px;
  margin-inline: auto;
}

.path-card {
  position: relative;
  flex: 1 1 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  isolation: isolate;
  text-decoration: none;
  transition: flex 700ms var(--ease), border-color 400ms ease;
}

.path-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 7, 10, 0.04) 20%, rgba(4, 7, 10, 0.9) 100%),
    linear-gradient(90deg, rgba(4, 7, 10, 0.35), transparent 55%);
}

.path-card picture {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.path-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.72);
  transform: scale(1.035);
  transition: transform 900ms var(--ease), filter 700ms ease;
}

.path-grid:has(.path-card:hover) .path-card:not(:hover) {
  flex-grow: 0.84;
}

.path-card:hover,
.path-card:focus-visible {
  flex-grow: 1.18;
  border-color: rgba(84, 201, 255, 0.5);
}

.path-card:hover img,
.path-card:focus-visible img {
  filter: saturate(1) brightness(0.9);
  transform: scale(1);
}

.path-card-residential:hover,
.path-card-residential:focus-visible {
  border-color: rgba(231, 173, 101, 0.62);
}

.path-card-content {
  position: absolute;
  right: clamp(24px, 4vw, 60px);
  bottom: clamp(28px, 5vw, 64px);
  left: clamp(24px, 4vw, 60px);
}

.path-card-number {
  display: block;
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.path-card-residential .path-card-number {
  color: var(--warm-soft);
}

.path-card h3 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.path-card p {
  max-width: 31ch;
  margin-bottom: 26px;
  color: #d4d5d2;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.55;
}

.path-arrow {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: background 300ms ease, color 300ms ease, transform 300ms var(--ease);
}

.path-card:hover .path-arrow {
  color: #06121a;
  background: var(--cyan);
  transform: rotate(45deg);
}

.path-card-residential:hover .path-arrow {
  background: var(--warm-soft);
}

.preview-story,
.network-story,
.coverage-story {
  position: relative;
  height: 280svh;
  --progress: 0;
}

.story-pin,
.network-pin,
.coverage-pin {
  position: sticky;
  top: 0;
  display: grid;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
}

.story-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) brightness(0.64);
  transform: scale(calc(1.08 - (var(--progress) * 0.06)));
}

.story-pin::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.9), rgba(3, 6, 9, 0.16) 62%),
    linear-gradient(0deg, rgba(3, 6, 9, 0.68), transparent 55%);
}

.story-content {
  position: relative;
  display: grid;
  align-content: center;
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
  height: 100%;
  margin-inline: auto;
}

.story-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.story-copy h2 {
  max-width: 8ch;
  margin-bottom: 28px;
  font-size: clamp(4rem, 8.2vw, 8.7rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.story-copy p {
  max-width: 38ch;
  margin-bottom: 34px;
  color: #d3d6d8;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

.signal-network {
  position: absolute;
  z-index: 1;
  top: 10%;
  right: -3%;
  width: min(64vw, 900px);
  height: 80%;
  opacity: calc(0.22 + (var(--progress) * 0.6));
}

.signal-network path {
  fill: none;
  stroke: rgba(108, 214, 255, 0.68);
  stroke-width: 1.3;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--progress));
  vector-effect: non-scaling-stroke;
}

.signal-network circle {
  fill: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(84, 201, 255, 0.8));
}

.story-chips {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.story-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #e9f7ff;
  background: rgba(5, 10, 15, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: clamp(0, calc(var(--progress) * 5 - var(--chip-index)), 1);
  transform: translateY(calc((1 - var(--progress)) * 28px));
}

.story-chip::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.story-chip:nth-child(1) {
  top: 20%;
  right: 29%;
  --chip-index: 0.1;
}

.story-chip:nth-child(2) {
  top: 35%;
  right: 14%;
  --chip-index: 0.35;
}

.story-chip:nth-child(3) {
  top: 51%;
  right: 31%;
  --chip-index: 0.55;
}

.story-chip:nth-child(4) {
  top: 66%;
  right: 12%;
  --chip-index: 0.8;
}

.story-chip:nth-child(5) {
  top: 77%;
  right: 34%;
  --chip-index: 1.05;
}

.residential-preview .story-pin::before {
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.86), rgba(4, 7, 10, 0.12) 62%),
    linear-gradient(0deg, rgba(4, 7, 10, 0.62), transparent 55%);
}

.coverage-rings {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20%;
  width: clamp(210px, 32vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 211, 170, 0.5);
  border-radius: 50%;
  opacity: calc(0.18 + (var(--progress) * 0.76));
  transform: translate(50%, -50%) scale(calc(0.2 + (var(--progress) * 0.9)));
  box-shadow:
    0 0 0 clamp(36px, 5vw, 82px) rgba(231, 173, 101, 0.045),
    0 0 0 clamp(72px, 10vw, 164px) rgba(231, 173, 101, 0.035),
    0 0 0 clamp(108px, 15vw, 246px) rgba(231, 173, 101, 0.025);
}

.coverage-rings::before {
  position: absolute;
  inset: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  content: "";
  background: var(--warm-soft);
  box-shadow: 0 0 24px var(--warm);
  transform: translate(-50%, -50%);
}

.coverage-labels {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.coverage-label {
  position: absolute;
  padding: 9px 13px;
  border: 1px solid rgba(242, 211, 170, 0.3);
  border-radius: 999px;
  color: #f6e4cb;
  background: rgba(12, 10, 8, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0.28;
  transition: opacity 400ms ease, transform 400ms var(--ease), border-color 400ms ease;
}

.coverage-label:nth-child(1) {
  top: 19%;
  right: 27%;
}

.coverage-label:nth-child(2) {
  top: 35%;
  right: 8%;
}

.coverage-label:nth-child(3) {
  top: 49%;
  right: 35%;
}

.coverage-label:nth-child(4) {
  top: 69%;
  right: 12%;
}

.coverage-label:nth-child(5) {
  top: 81%;
  right: 32%;
}

.residential-preview[data-active-step="0"] .coverage-label:nth-child(1),
.residential-preview[data-active-step="1"] .coverage-label:nth-child(-n + 2),
.residential-preview[data-active-step="2"] .coverage-label:nth-child(-n + 3),
.residential-preview[data-active-step="3"] .coverage-label:nth-child(-n + 4),
.residential-preview[data-active-step="4"] .coverage-label:nth-child(-n + 5) {
  opacity: 1;
  border-color: rgba(242, 211, 170, 0.75);
  transform: translateY(-5px);
}

.work-preview {
  background:
    linear-gradient(180deg, #080d13, #0b1118),
    var(--ink-900);
}

.work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(48px, 8vw, 100px);
}

.work-heading .section-title {
  margin-bottom: 0;
}

.project-reel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.project-tile {
  position: relative;
  display: flex;
  min-height: 500px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0f1923;
  isolation: isolate;
  text-decoration: none;
}

.project-tile:first-child {
  grid-row: span 2;
  min-height: 760px;
}

.project-tile::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 70% 25%, rgba(45, 151, 255, 0.25), transparent 30%),
    linear-gradient(145deg, #101c28, #080d12);
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.project-tile:nth-child(2)::before {
  background:
    radial-gradient(circle at 30% 20%, rgba(99, 99, 255, 0.2), transparent 28%),
    linear-gradient(145deg, #17152a, #080a10);
}

.project-tile:nth-child(3)::before {
  background:
    radial-gradient(circle at 75% 75%, rgba(84, 201, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #101a20, #070b0e);
}

.project-tile:hover::before {
  filter: brightness(1.15);
  transform: scale(1.035);
}

.project-tile-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a9b1ba;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(48%, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(84, 201, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -53%);
}

.project-mark::before,
.project-mark::after {
  position: absolute;
  border: 1px solid rgba(84, 201, 255, 0.2);
  border-radius: inherit;
  content: "";
}

.project-mark::before {
  inset: 17%;
}

.project-mark::after {
  inset: 38%;
  background: rgba(84, 201, 255, 0.12);
  box-shadow: 0 0 40px rgba(84, 201, 255, 0.18);
}

.project-tile h3 {
  max-width: 9ch;
  margin: auto 0 18px;
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.project-tile:not(:first-child) h3 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.project-tile p {
  max-width: 32ch;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 86svh;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  text-align: center;
  isolation: isolate;
}

.final-cta::before {
  position: absolute;
  z-index: -1;
  width: min(76vw, 960px);
  aspect-ratio: 1;
  border: 1px solid rgba(84, 201, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 9vw rgba(84, 201, 255, 0.018),
    0 0 0 18vw rgba(84, 201, 255, 0.012);
}

.final-cta-inner {
  width: min(980px, calc(100% - (2 * var(--gutter))));
  padding-block: 110px;
}

.final-cta h2 {
  margin-bottom: 42px;
  font-size: clamp(3.6rem, 8.5vw, 8.6rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.87;
}

.site-footer {
  position: relative;
  padding: 76px var(--gutter) 30px;
  border-top: 1px solid var(--line);
  background: #05080c;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(2, minmax(150px, 0.55fr));
  gap: 42px;
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  padding-bottom: 68px;
}

.footer-inner:not(.footer-grid) {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) minmax(150px, 0.55fr) minmax(210px, 0.75fr);
  gap: 42px;
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  padding-bottom: 56px;
}

.footer-brand {
  max-width: 450px;
}

.footer-brand:is(a) {
  align-self: start;
  color: var(--paper);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.footer-brand .brand {
  margin-bottom: 28px;
}

.footer-brand p {
  max-width: 35ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-column h2 {
  margin-bottom: 22px;
  color: #747f89;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav,
.footer-meta,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-nav a,
.footer-meta a,
.footer-contact a {
  color: #c9ced2;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 220ms ease;
}

.footer-nav a:hover,
.footer-meta a:hover,
.footer-contact a:hover {
  color: var(--cyan);
}

.footer-meta span,
.footer-contact span {
  color: #6e7780;
  font-size: 0.69rem;
  line-height: 1.5;
}

.footer-links a {
  color: #c9ced2;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 220ms ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #6e7780;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--paper);
}

.detail-hero,
.page-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.detail-hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.detail-hero__media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.62);
  animation: hero-image-in 1.7s var(--ease) both;
}

.detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.62);
  animation: hero-image-in 1.7s var(--ease) both;
}

@keyframes hero-image-in {
  from {
    opacity: 0.2;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

.detail-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.95) 0%, rgba(4, 7, 10, 0.65) 52%, rgba(4, 7, 10, 0.2)),
    linear-gradient(0deg, rgba(4, 7, 10, 0.86), transparent 60%);
}

.detail-hero::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -30%;
  width: 65vw;
  aspect-ratio: 1;
  border: 1px solid rgba(84, 201, 255, 0.17);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 8vw rgba(84, 201, 255, 0.022),
    0 0 0 16vw rgba(84, 201, 255, 0.018);
}

.residential-hero::after {
  border-color: rgba(242, 211, 170, 0.2);
  box-shadow:
    0 0 0 8vw rgba(231, 173, 101, 0.025),
    0 0 0 16vw rgba(231, 173, 101, 0.018);
}

.detail-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
  padding: 170px 0 clamp(70px, 9vw, 130px);
}

.detail-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
  padding: 170px 0 clamp(70px, 9vw, 130px);
}

.detail-hero__lead {
  max-width: 40ch;
  margin-bottom: 0;
  color: #d4d7d7;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.6;
}

.detail-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 42px;
  color: #aab3bb;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue::after {
  display: inline-block;
  margin-left: 12px;
  content: "â";
  color: var(--cyan);
}

.detail-hero h1 {
  max-width: 14ch;
  margin-bottom: 34px;
  font-size: clamp(3.5rem, 8.2vw, 8.4rem);
  font-weight: 600;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

.detail-hero h1 strong {
  color: var(--cyan);
  font-weight: inherit;
}

.residential-hero h1 {
  max-width: 7ch;
  font-size: clamp(5rem, 11vw, 11rem);
}

.residential-hero h1 strong {
  color: var(--warm-soft);
}

.detail-hero-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.detail-hero-foot p {
  max-width: 40ch;
  margin: 0;
  color: #d4d7d7;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.6;
}

.scroll-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #aab3bb;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-note::after {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.network-story {
  height: 270svh;
  background: #080d13;
}

.network-pin {
  place-items: center;
}

.network-story__sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(540px, 1.22fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
  height: 100svh;
  min-height: 700px;
  margin-inline: auto;
  overflow: hidden;
}

.network-story__copy h2 {
  max-width: 8ch;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.network-story__copy > p:last-child {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.network-story-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(540px, 1.22fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
}

.network-story-copy h2 {
  max-width: 8ch;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.network-story-copy p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.network-map {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 119, 255, 0.15), transparent 30%),
    linear-gradient(145deg, #101a24, #080d12);
}

.network-map::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle, #000, transparent 76%);
}

.network-map svg {
  position: absolute;
  inset: 10%;
  width: 80%;
  height: 80%;
}

.network-map__stage {
  position: absolute;
  inset: 0;
}

.network-map__stage > svg {
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-map path {
  fill: none;
  stroke: rgba(84, 201, 255, 0.58);
  stroke-width: 1.4;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--progress));
  vector-effect: non-scaling-stroke;
}

.map-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(130px, 16vw, 210px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(84, 201, 255, 0.48);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(6, 13, 20, 0.84);
  box-shadow:
    0 0 0 calc(var(--progress) * 60px) rgba(84, 201, 255, 0.025),
    0 0 60px rgba(22, 119, 255, 0.14);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.network-map__hub {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(130px, 16vw, 210px);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(84, 201, 255, 0.48);
  border-radius: 50%;
  background: rgba(6, 13, 20, 0.84);
  box-shadow:
    0 0 0 calc(var(--progress) * 60px) rgba(84, 201, 255, 0.025),
    0 0 60px rgba(22, 119, 255, 0.14);
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.network-map__hub span {
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.network-map__hub strong {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  letter-spacing: -0.04em;
}

.map-node {
  position: absolute;
  z-index: 2;
  min-width: 112px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c8d1d8;
  background: rgba(7, 13, 19, 0.75);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  opacity: calc(1 - (var(--progress) * 0.58));
  transform: scale(calc(1 - (var(--progress) * 0.08)));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.network-node {
  position: absolute;
  z-index: 2;
  min-width: 112px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c8d1d8;
  background: rgba(7, 13, 19, 0.75);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  opacity: calc(1 - (var(--progress) * 0.58));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.network-node--internet {
  top: 14%;
  left: 8%;
}

.network-node--wifi {
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.network-node--devices {
  top: 17%;
  right: 7%;
}

.network-node--email {
  bottom: 15%;
  left: 7%;
}

.network-node--backup {
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.network-node--security {
  right: 6%;
  bottom: 15%;
}

.network-map figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.map-node:nth-of-type(1) {
  top: 15%;
  left: 16%;
}

.map-node:nth-of-type(2) {
  top: 14%;
  right: 13%;
}

.map-node:nth-of-type(3) {
  top: 44%;
  left: 6%;
}

.map-node:nth-of-type(4) {
  top: 44%;
  right: 5%;
}

.map-node:nth-of-type(5) {
  bottom: 14%;
  left: 17%;
}

.map-node:nth-of-type(6) {
  right: 14%;
  bottom: 13%;
}

.horizontal-story {
  position: relative;
  height: 520svh;
  background: #05080c;
  --progress: 0;
}

.horizontal-pin {
  position: sticky;
  top: 0;
  display: flex;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
}

.horizontal-track {
  display: flex;
  gap: 18px;
  align-items: center;
  width: max-content;
  padding: 110px var(--gutter);
  transform: translate3d(var(--track-shift, 0), 0, 0);
  will-change: transform;
}

.horizontal-intro,
.service-chapter {
  flex: 0 0 min(76vw, 780px);
  height: min(72svh, 720px);
}

.horizontal-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(40px, 8vw, 110px);
}

.horizontal-story__intro {
  position: absolute;
  z-index: 4;
  top: 0;
  left: var(--gutter);
  display: flex;
  width: min(42vw, 620px);
  height: 100svh;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  opacity: clamp(0, calc(1 - (var(--progress) * 7)), 1);
}

.horizontal-story__intro h2 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(3.7rem, 7vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.business-page .horizontal-track {
  padding-left: 54vw;
}

.horizontal-intro h2 {
  max-width: 7ch;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.7vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.068em;
  line-height: 0.88;
}

.horizontal-intro p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.service-chapter {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 10%, rgba(34, 130, 255, 0.16), transparent 32%),
    linear-gradient(145deg, #111d28, #090e14);
}

.service-chapter:nth-child(3n) {
  background:
    radial-gradient(circle at 15% 90%, rgba(84, 201, 255, 0.11), transparent 28%),
    linear-gradient(145deg, #101820, #070b10);
}

.service-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cyan);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-chapter__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cyan);
}

.service-chapter__number {
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-chapter__icon {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}
.service-number::after {
  width: 11px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 16px rgba(84, 201, 255, 0.35);
}

.service-chapter h3 {
  max-width: 8ch;
  margin: auto 0 26px;
  font-size: clamp(3rem, 5.6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.service-chapter p {
  max-width: 33ch;
  margin: 0;
  color: #abb4bd;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

.mode-section {
  background: #0a1017;
}

.business-page .mode-split {
  display: block;
  padding: clamp(96px, 12vw, 190px) var(--gutter);
  background: #0a1017;
}

.mode-split__intro,
.mode-split__grid {
  width: min(var(--wrap), 100%);
  margin-inline: auto;
}

.mode-split__intro {
  margin-bottom: clamp(50px, 8vw, 92px);
}

.mode-split__intro h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.mode-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mode-card__label {
  display: block;
  margin-bottom: clamp(90px, 13vw, 170px);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mode-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.mode-card li::before {
  margin-right: 9px;
  content: "â¢";
  color: var(--cyan);
}

.mode-heading {
  max-width: 860px;
  margin-bottom: clamp(50px, 8vw, 100px);
}

.mode-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mode-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0e1721;
}

.mode-card::after {
  position: absolute;
  right: -14%;
  bottom: -32%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(84, 201, 255, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 52px rgba(84, 201, 255, 0.025),
    0 0 0 104px rgba(84, 201, 255, 0.014);
}

.mode-card .micro {
  display: block;
  margin-bottom: clamp(90px, 13vw, 170px);
  color: var(--cyan);
}

.mode-card h3 {
  margin-bottom: 17px;
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.mode-card p {
  max-width: 30ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.featured-work {
  background: #060a0e;
}

.business-page .featured-work {
  padding: clamp(96px, 12vw, 190px) var(--gutter);
}

.featured-work__header,
.featured-work__grid {
  width: min(var(--wrap), 100%);
  margin-inline: auto;
}

.featured-work__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.featured-work__header h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.featured-work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 62px;
}

.business-page .featured-work__grid .work-card {
  grid-column: auto;
  min-height: 380px;
}

.business-page .featured-work__grid .work-card h3 {
  margin-top: auto;
}

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

.work-card__action {
  margin-top: 18px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
}

.final-cta__inner {
  width: min(980px, calc(100% - (2 * var(--gutter))));
  padding-block: 110px;
}

.final-cta__inner h2 {
  margin-bottom: 42px;
  font-size: clamp(3.6rem, 8.5vw, 8.6rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.87;
}

.featured-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 62px;
}

.featured-work-card {
  display: grid;
  min-height: 330px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 15%, rgba(84, 201, 255, 0.13), transparent 30%),
    #0d151d;
  text-decoration: none;
  transition: border-color 300ms ease, transform 400ms var(--ease);
}

.featured-work-card:hover {
  border-color: rgba(84, 201, 255, 0.48);
  transform: translateY(-5px);
}

.featured-work-card .micro {
  color: var(--cyan);
}

.featured-work-card h3 {
  align-self: end;
  margin: 80px 0 14px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.featured-work-card p {
  margin: 0;
  color: var(--muted);
}

.coverage-story {
  height: 390svh;
  background: #0b0c0d;
}

.coverage-pin {
  place-items: center;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
}

.coverage-copy {
  position: relative;
  min-height: 350px;
}

.coverage-copy .eyebrow {
  color: var(--warm-soft);
}

.coverage-step {
  position: absolute;
  top: 80px;
  left: 0;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 420ms ease, transform 520ms var(--ease);
}

.coverage-step.is-active {
  opacity: 1;
  transform: none;
}

.coverage-step span {
  display: block;
  margin-bottom: 20px;
  color: var(--warm-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coverage-step h2,
.coverage-step h3 {
  max-width: 7ch;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 6.8vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.coverage-step p {
  max-width: 31ch;
  margin: 0;
  color: #aaa7a1;
  font-size: 1.05rem;
  line-height: 1.6;
}

.home-plan {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-template-rows: 1fr 0.92fr;
  gap: 8px;
  min-height: 570px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(242, 211, 170, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.018)),
    #11110f;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.home-plan::before {
  position: absolute;
  z-index: 3;
  top: 49%;
  left: 49%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: var(--warm-soft);
  box-shadow:
    0 0 0 calc(30px + var(--progress) * 80px) rgba(231, 173, 101, 0.026),
    0 0 30px rgba(231, 173, 101, 0.6);
}

.home-plan::after {
  position: absolute;
  z-index: 1;
  top: 49%;
  left: 49%;
  width: calc(12% + (var(--progress) * 78%));
  aspect-ratio: 1;
  border: 1px solid rgba(242, 211, 170, 0.33);
  border-radius: 50%;
  content: "";
  opacity: calc(0.18 + (var(--progress) * 0.75));
  transform: translate(-50%, -50%);
}

.plan-room {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(242, 211, 170, 0.1);
  border-radius: 18px;
  color: #77736c;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 500ms ease,
    background 500ms ease,
    border-color 500ms ease,
    box-shadow 500ms ease;
}

.plan-room::before {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #403e39;
  transition: background 400ms ease, box-shadow 400ms ease;
}

.plan-room:nth-child(2) {
  grid-row: span 2;
}

.plan-room:nth-child(5) {
  grid-column: span 2;
}

.coverage-story[data-active-step="0"] .plan-room:nth-child(1),
.coverage-story[data-active-step="1"] .plan-room:nth-child(-n + 2),
.coverage-story[data-active-step="2"] .plan-room:nth-child(-n + 3),
.coverage-story[data-active-step="3"] .plan-room:nth-child(-n + 4),
.coverage-story[data-active-step="4"] .plan-room:nth-child(-n + 5) {
  color: #f2e3cf;
  border-color: rgba(242, 211, 170, 0.38);
  background: rgba(231, 173, 101, 0.055);
  box-shadow: inset 0 0 35px rgba(231, 173, 101, 0.03);
}

.coverage-story[data-active-step="0"] .plan-room:nth-child(1)::before,
.coverage-story[data-active-step="1"] .plan-room:nth-child(-n + 2)::before,
.coverage-story[data-active-step="2"] .plan-room:nth-child(-n + 3)::before,
.coverage-story[data-active-step="3"] .plan-room:nth-child(-n + 4)::before,
.coverage-story[data-active-step="4"] .plan-room:nth-child(-n + 5)::before {
  background: var(--warm-soft);
  box-shadow: 0 0 14px var(--warm);
}

.warm-section {
  color: #15120e;
  background: #e8e1d7;
}

.warm-section .eyebrow,
.warm-section .micro {
  color: #8a5424;
}

.warm-section .lead {
  color: #575047;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: clamp(54px, 8vw, 100px);
}

.outcome-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid rgba(20, 17, 13, 0.14);
  border-radius: var(--radius-lg);
  background: #dcd3c7;
}

.outcome-card:nth-child(1),
.outcome-card:nth-child(4) {
  grid-column: span 7;
}

.outcome-card:nth-child(2),
.outcome-card:nth-child(3) {
  grid-column: span 5;
}

.outcome-card::before {
  position: absolute;
  top: -28%;
  right: -17%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(104, 66, 32, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 45px rgba(104, 66, 32, 0.025),
    0 0 0 90px rgba(104, 66, 32, 0.018);
}

.outcome-card span {
  position: absolute;
  top: 28px;
  left: 30px;
  color: #88552a;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.outcome-card h3 {
  max-width: 9ch;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 4.7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 0.92;
}

.outcome-card p {
  max-width: 32ch;
  margin: 0;
  color: #625b52;
  font-size: 1rem;
  line-height: 1.55;
}

.residential-services {
  background: #0c0c0c;
}

.service-compositions {
  display: grid;
  gap: 1px;
  margin-top: clamp(60px, 8vw, 110px);
  border-block: 1px solid var(--line);
}

.res-service {
  display: grid;
  grid-template-columns: 96px minmax(220px, 0.6fr) 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 170px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.res-service:last-child {
  border-bottom: 0;
}

.res-service > span:first-child {
  color: var(--warm-soft);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.res-service h3 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.95;
}

.res-service p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-node {
  position: relative;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(242, 211, 170, 0.26);
  border-radius: 50%;
}

.service-node::before {
  position: absolute;
  inset: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--warm-soft);
  box-shadow: 0 0 15px rgba(231, 173, 101, 0.7);
  transform: translate(-50%, -50%);
}

.install-strip {
  color: #17130f;
  background: #d6c8b7;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(30, 24, 18, 0.16);
}

.install-step {
  padding: 34px clamp(22px, 3vw, 42px) 10px 0;
  border-right: 1px solid rgba(30, 24, 18, 0.16);
}

.install-step:not(:first-child) {
  padding-left: clamp(22px, 3vw, 42px);
}

.install-step:last-child {
  border-right: 0;
}

.install-step span {
  display: block;
  margin-bottom: 70px;
  color: #8a5424;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.install-step h3 {
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.install-step p {
  max-width: 26ch;
  color: #655c52;
  line-height: 1.55;
}

.page-hero {
  min-height: 76svh;
  place-items: end start;
  padding: 170px var(--gutter) clamp(70px, 9vw, 120px);
  background:
    radial-gradient(circle at 75% 25%, rgba(22, 119, 255, 0.15), transparent 26%),
    linear-gradient(145deg, #090f16, #05080c);
}

.page-hero::before {
  position: absolute;
  right: -7%;
  bottom: -55%;
  width: min(70vw, 950px);
  aspect-ratio: 1;
  border: 1px solid rgba(84, 201, 255, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 9vw rgba(84, 201, 255, 0.018),
    0 0 0 18vw rgba(84, 201, 255, 0.012);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--wrap), 100%);
  margin-inline: auto;
}

.page-hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.portfolio-network {
  position: absolute;
  right: -5%;
  bottom: -8%;
  width: min(76vw, 1160px);
  height: auto;
  opacity: 0.62;
}

.portfolio-network path {
  fill: none;
  stroke: url(#portfolio-line-gradient);
  stroke-width: 2;
}

.portfolio-network circle {
  fill: var(--cyan);
  filter: drop-shadow(0 0 12px rgba(84, 201, 255, 0.7));
}

.page-hero h1 {
  max-width: 10ch;
  margin-bottom: 30px;
  font-size: clamp(4rem, 9vw, 9.4rem);
  font-weight: 600;
  letter-spacing: -0.073em;
  line-height: 0.86;
}

.page-hero p {
  max-width: 45ch;
  margin: 0;
  color: #b6bdc3;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.page-hero-lead {
  max-width: 45ch;
  margin: 0;
  color: #b6bdc3;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.hero-scroll-link {
  margin-top: 36px;
}

.portfolio-shell {
  background: #080d13;
}

.portfolio-inner {
  padding-block: clamp(96px, 12vw, 170px);
}

.portfolio-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}

.portfolio-heading h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.directory-toolbar {
  position: sticky;
  z-index: 10;
  top: 86px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 54px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 13, 19, 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.search-shell {
  position: relative;
}

.search-shell svg {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.8;
  transform: translateY(-50%);
}

input.directory-search,
.directory-search input,
.search-shell input {
  width: 100%;
  min-height: 50px;
  padding: 0 18px 0 50px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.88rem;
}

.directory-search input::placeholder,
.search-shell input::placeholder {
  color: #707983;
}

.directory-search input:focus,
.search-shell input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(84, 201, 255, 0.1);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-pill {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #919ba5;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-pill:hover {
  color: var(--paper);
}

.filter-pill.is-active,
.filter-pill[aria-pressed="true"] {
  border-color: rgba(84, 201, 255, 0.32);
  color: var(--cyan-soft);
  background: rgba(84, 201, 255, 0.08);
}

.directory-count {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0 10px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-count strong {
  color: var(--paper);
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.work-grid,
.directory-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.work-card,
.directory-card {
  position: relative;
  display: flex;
  grid-column: span 6;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(84, 201, 255, 0.15), transparent 30%),
    #0e1720;
  text-decoration: none;
  transition: border-color 350ms ease, transform 500ms var(--ease);
}

.work-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
}

.work-card-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.work-card-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.work-card-number {
  position: absolute;
  right: 30px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}


.work-card:nth-child(3n + 1),
.directory-card:nth-child(3n + 1) {
  grid-column: span 7;
  min-height: 520px;
}

.work-card:nth-child(3n + 2),
.directory-card:nth-child(3n + 2) {
  grid-column: span 5;
}

.work-card:hover,
.directory-card:hover {
  border-color: rgba(84, 201, 255, 0.48);
  transform: translateY(-5px);
}

.work-card[hidden],
.directory-card[hidden] {
  display: none;
}

.card-top,
.work-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #84909b;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-kind {
  color: var(--cyan);
}

.card-icon,
.work-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(110px, 16vw, 190px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(84, 201, 255, 0.18);
  border-radius: 50%;
  color: var(--cyan);
  transform: translate(-50%, -58%);
  transition: transform 700ms var(--ease), background 400ms ease;
}

.card-icon::before,
.work-icon::before {
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(84, 201, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.card-icon svg,
.work-icon svg {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.work-card:hover .card-icon,
.directory-card:hover .card-icon {
  background: rgba(84, 201, 255, 0.07);
  transform: translate(-50%, -58%) scale(1.06);
}

.card-body {
  margin-top: auto;
}

.card-body h3,
.work-card h3 {
  max-width: 11ch;
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 4vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.card-body p,
.work-card p {
  max-width: 34ch;
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.55;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #79838c;
  font-size: 0.7rem;
}

.card-action {
  color: var(--paper);
  font-weight: 800;
}

.card-action svg {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

.card-action:has(svg)::after {
  content: none;
}

.no-script-notice {
  margin: 0 0 24px;
  color: var(--muted);
}

.cta-section {
  position: relative;
  display: grid;
  min-height: 72svh;
  place-items: center;
  overflow: hidden;
  padding: 100px var(--gutter);
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta-section::before {
  position: absolute;
  z-index: -1;
  width: min(70vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(84, 201, 255, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 10vw rgba(84, 201, 255, 0.018);
}

.cta-inner h2 {
  margin-bottom: 34px;
  font-size: clamp(3.7rem, 8vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.88;
}
.card-action::after {
  margin-left: 8px;
  content: "â";
  color: var(--cyan);
}

.empty-state,
.state-card {
  grid-column: 1 / -1;
  padding: 70px 32px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--muted);
  text-align: center;
}

.empty-state h2,
.state-card h3 {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 2rem;
}

.about-hero {
  min-height: 100svh;
  align-items: center;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
  padding: 160px 0 90px;
}

.about-copy h1 {
  max-width: 9ch;
  margin-bottom: 38px;
  font-size: clamp(4.2rem, 8.6vw, 9rem);
  font-weight: 600;
  letter-spacing: -0.073em;
  line-height: 0.86;
}

.about-copy p {
  max-width: 42ch;
  margin-bottom: 0;
  color: #aeb6bd;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.circuit-emblem {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(84, 201, 255, 0.15);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(22, 119, 255, 0.13), transparent 55%);
}

.circuit-emblem::before,
.circuit-emblem::after {
  position: absolute;
  border: 1px solid rgba(84, 201, 255, 0.13);
  border-radius: inherit;
  content: "";
}

.circuit-emblem::before {
  inset: 13%;
}

.circuit-emblem::after {
  inset: 30%;
}

.circuit-emblem img {
  position: relative;
  z-index: 2;
  width: 42%;
  border-radius: 50%;
  filter: drop-shadow(0 0 34px rgba(15, 127, 255, 0.22));
}

.emblem-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.emblem-node:nth-of-type(1) {
  top: 9%;
  left: 49%;
}

.emblem-node:nth-of-type(2) {
  right: 10%;
  bottom: 28%;
}

.emblem-node:nth-of-type(3) {
  bottom: 11%;
  left: 31%;
}

.principles {
  background: #0a1016;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.principle-card {
  min-height: 380px;
  padding: 34px clamp(25px, 3vw, 48px) 20px 0;
  border-right: 1px solid var(--line);
}

.principle-card:not(:first-child) {
  padding-left: clamp(25px, 3vw, 48px);
}

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

.principle-card span {
  display: block;
  margin-bottom: 140px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.principle-card h3 {
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.principle-card p {
  max-width: 25ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-page {
  background: #080d13;
}

.contact-section {
  padding: clamp(96px, 12vw, 170px) 0;
  background: #080d13;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 130px;
}

.contact-intro h2 {
  max-width: 8ch;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.contact-intro p {
  max-width: 35ch;
  color: var(--muted);
  line-height: 1.65;
}

.direct-contact {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.direct-contact p {
  margin-bottom: 7px;
  color: #737d86;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-contact a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.direct-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-direct {
  display: inline-block;
  margin-top: 26px;
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.contact-direct:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-form {
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
}

.contact-form > .button {
  margin-top: 6px;
}

.contact-form > .form-note {
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

fieldset.field {
  min-width: 0;
  padding: 0;
  border: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label,
.field > legend,
.choice-fieldset > legend {
  color: #c5cbd0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  color: var(--paper);
  background: rgba(3, 7, 10, 0.52);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.55;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(84, 201, 255, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #59636d;
}

.choice-fieldset {
  min-width: 0;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.choice-fieldset > legend {
  margin-bottom: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-grid > label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #aeb7bf;
  background: rgba(3, 7, 10, 0.38);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.choice-grid > label::after {
  width: 11px;
  height: 11px;
  border: 1px solid #60707e;
  border-radius: 50%;
  content: "";
}

.choice-grid > label > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-grid > label:has(input:checked) {
  border-color: rgba(84, 201, 255, 0.55);
  color: var(--paper);
  background: rgba(84, 201, 255, 0.07);
}

.choice-grid > label:has(input:checked)::after {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 13px rgba(84, 201, 255, 0.7);
}

.choice-grid > label:has(input:focus-visible) {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #aeb7bf;
  background: rgba(3, 7, 10, 0.38);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.choice label::after {
  width: 11px;
  height: 11px;
  border: 1px solid #60707e;
  border-radius: 50%;
  content: "";
}

.choice input:checked + label {
  border-color: rgba(84, 201, 255, 0.55);
  color: var(--paper);
  background: rgba(84, 201, 255, 0.07);
}

.choice input:checked + label::after {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 13px rgba(84, 201, 255, 0.7);
}

.choice input:focus-visible + label {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.form-note,
.contact-form .form-note {
  max-width: 38ch;
  margin: 0;
  color: #77828d;
  font-size: 0.73rem;
  line-height: 1.55;
}

.form-status {
  min-height: 1.5em;
  margin: 18px 0 0;
  color: var(--cyan-soft);
  font-size: 0.82rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

html:not(.js) .horizontal-story,
html:not(.js) .network-story,
html:not(.js) .coverage-story,
html:not(.js) .preview-story {
  height: auto;
}

html:not(.js) .horizontal-pin,
html:not(.js) .network-story__sticky,
html:not(.js) .coverage-pin,
html:not(.js) .story-pin {
  position: relative;
  height: auto;
  min-height: 0;
}

html:not(.js) .story-pin {
  min-height: 820px;
}

html:not(.js) .horizontal-story__intro {
  position: relative;
  left: auto;
  width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
  height: auto;
  min-height: 420px;
  margin-inline: auto;
  opacity: 1;
}

html:not(.js) .horizontal-track {
  display: grid;
  width: 100%;
  padding: 90px var(--gutter);
  transform: none;
  will-change: auto;
}

html:not(.js) .business-page .horizontal-track {
  padding-left: var(--gutter);
}

html:not(.js) .coverage-copy {
  min-height: 0;
}

html:not(.js) .coverage-step {
  position: relative;
  top: auto;
  margin-bottom: 46px;
  opacity: 1;
  transform: none;
}

html:not(.js) .plan-room {
  color: #f2e3cf;
  border-color: rgba(242, 211, 170, 0.32);
  background: rgba(231, 173, 101, 0.045);
}

html:not(.js) .story-chip,
html:not(.js) .coverage-label {
  opacity: 1;
  transform: none;
}

html:not(.js) .coverage-rings {
  opacity: 0.78;
  transform: translate(50%, -50%) scale(1);
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 18px;
    margin-right: 18px;
  }

  .network-story-inner,
  .coverage-layout,
  .network-story__sticky {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 38px;
  }

  .network-map,
  .home-plan {
    min-height: 520px;
  }

  .contact-layout {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.is-compact {
    padding: 12px 14px;
  }

  .header-inner,
  .nav-shell,
  .site-header__inner {
    position: relative;
    z-index: 2;
    border-color: var(--line);
    background: rgba(5, 8, 12, 0.78);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 118px max(28px, var(--gutter)) 50px;
    visibility: hidden;
    background:
      radial-gradient(circle at 80% 18%, rgba(22, 119, 255, 0.17), transparent 28%),
      rgba(5, 8, 12, 0.98);
    opacity: 0;
    transform: translateY(-18px);
    transition:
      opacity 300ms ease,
      transform 420ms var(--ease),
      visibility 300ms;
  }

  .nav-open .nav-panel {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  html:not(.js) .header-inner,
  html:not(.js) .nav-shell,
  html:not(.js) .site-header__inner {
    flex-wrap: wrap;
    border-radius: 20px;
  }

  html:not(.js) .nav-toggle {
    display: none;
  }

  html:not(.js) .nav-panel {
    position: static;
    display: flex;
    width: 100%;
    padding: 8px 4px 2px;
    visibility: visible;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  html:not(.js) .site-nav {
    display: flex;
    overflow-x: auto;
  }

  html:not(.js) .site-nav a {
    min-height: 44px;
    flex: 0 0 auto;
    padding-right: 18px;
    border: 0;
    font-size: 0.75rem;
    letter-spacing: 0;
  }

  html:not(.js) .site-nav a::after {
    display: none;
  }

  .site-nav {
    display: grid;
    align-content: center;
    gap: 0;
    width: 100%;
    margin: 0;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    border-bottom: 1px solid var(--line);
    color: var(--paper);
    font-size: clamp(1.6rem, 7vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.05em;
  }

  .site-nav a::after {
    position: static;
    width: auto;
    height: auto;
    content: "â";
    color: var(--cyan);
    background: transparent;
    transform: none;
  }

  .mobile-utility {
    display: flex;
    gap: 24px;
    margin-top: 34px;
  }

  .home-hero-inner {
    padding-top: 130px;
  }

  .path-grid {
    height: 70svh;
    min-height: 560px;
  }

  .path-card h3 {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
  }

  .network-story-inner,
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .network-story__sticky {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .network-story-copy {
    position: absolute;
    z-index: 4;
    top: 13%;
    left: var(--gutter);
    max-width: 520px;
  }

  .network-map {
    width: 100%;
    min-height: 600px;
    margin-top: 120px;
  }

  .coverage-copy {
    position: absolute;
    z-index: 4;
    top: 10%;
    left: var(--gutter);
    width: calc(100% - (2 * var(--gutter)));
  }

  .home-plan {
    width: 100%;
    margin-top: 120px;
  }

  .project-reel {
    grid-template-columns: 1fr;
  }

  .project-tile:first-child {
    grid-row: auto;
    min-height: 620px;
  }

  .project-tile {
    min-height: 440px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .circuit-emblem {
    width: min(580px, 100%);
    margin-inline: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .section-space {
    padding-block: 90px;
  }

  .display {
    font-size: clamp(3.45rem, 16vw, 5.5rem);
  }

  .section-title {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .home-hero {
    min-height: 92svh;
  }

  .home-hero-inner {
    align-content: start;
    padding-top: 25svh;
  }

  .home-hero h1 {
    font-size: clamp(3.65rem, 17vw, 6rem);
    line-height: 0.84;
  }

  .hero-signal {
    top: 20%;
    width: 110vw;
  }

  .hero-support {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-path-shortcuts {
    bottom: 18px;
  }

  .hero-path-shortcuts a {
    min-height: 60px;
    padding-inline: 10px;
    font-size: 0.64rem;
  }

  .path-heading {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .path-grid {
    display: grid;
    height: auto;
    min-height: 0;
  }

  .path-card {
    min-height: 53svh;
  }

  .path-card h3 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .path-card-content {
    inset-inline: 24px;
    bottom: 28px;
  }

  .preview-story {
    height: auto;
  }

  .story-pin {
    position: relative;
    height: 94svh;
    min-height: 680px;
  }

  .story-copy {
    align-self: end;
    padding-bottom: 64px;
  }

  .story-copy h2 {
    font-size: clamp(3.7rem, 17vw, 6rem);
  }

  .signal-network {
    top: 4%;
    right: -30%;
    width: 120vw;
    opacity: 0.45;
  }

  .story-chip,
  .coverage-label {
    font-size: 0.58rem;
  }

  .story-chip:nth-child(odd),
  .coverage-label:nth-child(odd) {
    right: auto;
    left: 7%;
  }

  .coverage-rings {
    top: 38%;
    right: 0;
    width: 300px;
    opacity: 0.58;
    transform: translate(50%, -50%) scale(1);
  }

  .work-heading {
    align-items: start;
    flex-direction: column;
  }

  .project-tile,
  .project-tile:first-child {
    min-height: 520px;
  }

  .final-cta {
    min-height: 74svh;
  }

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

  .footer-inner:not(.footer-grid) {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner:not(.footer-grid) > :first-child {
    grid-column: 1 / -1;
  }

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

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

  .detail-hero {
    min-height: 92svh;
  }

  .detail-hero-inner,
  .detail-hero__content {
    padding-top: 135px;
  }

  .detail-hero h1 {
    font-size: clamp(3.6rem, 15vw, 6rem);
  }

  .residential-hero h1 {
    max-width: 100%;
    font-size: clamp(3.3rem, 14.8vw, 6.6rem);
  }

  .detail-hero-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-note {
    display: none;
  }

  .network-story,
  .coverage-story {
    height: auto;
    padding-block: 90px;
  }

  .network-pin,
  .coverage-pin {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .network-story__sticky {
    position: relative;
    display: grid;
    width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .network-story-inner,
  .coverage-layout {
    display: grid;
    width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
  }

  .network-story-copy {
    position: static;
  }

  .network-story__copy {
    position: static;
  }

  .network-story-copy h2,
  .network-story__copy h2 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .network-map {
    min-height: 500px;
    margin-top: 0;
  }

  .map-node {
    min-width: 88px;
    padding: 9px 10px;
    font-size: 0.56rem;
    opacity: 0.85;
  }

  .network-node {
    min-width: 88px;
    padding: 9px 10px;
    font-size: 0.56rem;
    opacity: 0.85;
  }

  .horizontal-story {
    height: auto;
  }

  .horizontal-story__intro {
    position: relative;
    left: auto;
    width: auto;
    height: auto;
    min-height: 410px;
    padding: 90px var(--gutter) 10px;
    opacity: 1;
  }

  .horizontal-story__intro h2 {
    font-size: clamp(3.7rem, 16vw, 5.6rem);
  }

  .horizontal-pin {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .horizontal-track {
    display: grid;
    width: 100%;
    padding: 90px var(--gutter);
    transform: none !important;
    will-change: auto;
  }

  .business-page .horizontal-track {
    padding-left: var(--gutter);
  }

  .horizontal-intro,
  .service-chapter {
    width: 100%;
    height: auto;
    min-height: 500px;
  }

  .horizontal-intro {
    min-height: 440px;
    padding-right: 0;
  }

  .horizontal-intro h2 {
    font-size: clamp(3.7rem, 16vw, 5.6rem);
  }

  .service-chapter {
    flex-basis: auto;
  }

  .mode-split,
  .featured-work-grid {
    grid-template-columns: 1fr;
  }

  .business-page .mode-split__grid,
  .business-page .featured-work__grid {
    grid-template-columns: 1fr;
  }

  .featured-work__header,
  .portfolio-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .mode-card {
    min-height: 420px;
  }

  .coverage-copy {
    position: static;
    width: 100%;
    min-height: 0;
  }

  .coverage-step {
    position: relative;
    top: auto;
    display: none;
    margin-bottom: 45px;
    opacity: 1;
    transform: none;
  }

  .coverage-step:last-child,
  .coverage-step.is-active {
    display: block;
  }

  .coverage-step h2,
  .coverage-step h3 {
    font-size: clamp(3.5rem, 16vw, 5.5rem);
  }

  .home-plan {
    min-height: 460px;
    margin-top: 0;
  }

  .plan-room {
    padding: 12px;
    color: #f2e3cf;
    border-color: rgba(242, 211, 170, 0.32);
    background: rgba(231, 173, 101, 0.045);
    font-size: 0.55rem;
  }

  .plan-room::before {
    background: var(--warm-soft);
    box-shadow: 0 0 12px var(--warm);
  }

  .outcome-card,
  .outcome-card:nth-child(n) {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .res-service {
    grid-template-columns: 54px 1fr;
    gap: 18px;
    min-height: 0;
    padding-block: 36px;
  }

  .res-service p,
  .service-node {
    grid-column: 2;
  }

  .service-node {
    width: 48px;
    height: 48px;
  }

  .install-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .install-step,
  .install-step:not(:first-child),
  .principle-card,
  .principle-card:not(:first-child) {
    min-height: 0;
    padding: 34px 0 45px;
    border-right: 0;
    border-bottom: 1px solid rgba(30, 24, 18, 0.16);
  }

  .principle-card,
  .principle-card:not(:first-child) {
    border-color: var(--line);
  }

  .install-step:last-child,
  .principle-card:last-child {
    border-bottom: 0;
  }

  .install-step span,
  .principle-card span {
    margin-bottom: 64px;
  }

  .directory-toolbar {
    position: static;
    grid-template-columns: 1fr;
  }

  .filter-group {
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .directory-count {
    margin: 0 4px 6px;
  }

  .work-card,
  .directory-card,
  .work-card:nth-child(n),
  .directory-card:nth-child(n) {
    grid-column: 1 / -1;
    min-height: 460px;
  }

  .about-layout {
    padding-top: 140px;
  }

  .about-copy h1 {
    font-size: clamp(4rem, 17vw, 6.4rem);
  }

  .field-row,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand-copy span {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.87rem;
  }

  .path-section {
    padding-inline: 12px;
  }

  .path-card {
    border-radius: 26px;
  }

  .project-tile,
  .project-tile:first-child {
    min-height: 470px;
    border-radius: 26px;
  }

  .home-plan {
    grid-template-columns: 1fr 1fr;
  }

  .plan-room:nth-child(2) {
    grid-row: auto;
  }

  .plan-room:nth-child(5) {
    grid-column: span 2;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .footer-inner:not(.footer-grid) {
    grid-template-columns: 1fr;
  }

  .footer-inner:not(.footer-grid) > :first-child {
    grid-column: auto;
  }
}

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

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

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

  .preview-story,
  .network-story,
  .coverage-story,
  .horizontal-story {
    height: auto;
  }

  .story-pin,
  .network-pin,
  .network-story__sticky,
  .coverage-pin,
  .horizontal-pin {
    position: relative;
    height: auto;
    min-height: 0;
  }

  .story-pin {
    min-height: 820px;
  }

  .horizontal-track {
    display: grid;
    width: 100%;
    padding: 100px var(--gutter);
    transform: none !important;
    will-change: auto;
  }

  .horizontal-story__intro {
    position: relative;
    left: auto;
    width: min(var(--wrap), calc(100% - (2 * var(--gutter))));
    height: auto;
    min-height: 420px;
    margin-inline: auto;
    opacity: 1;
  }

  .business-page .horizontal-track {
    padding-left: var(--gutter);
  }

  .horizontal-intro,
  .service-chapter {
    width: 100%;
    flex-basis: auto;
  }

  .story-media img,
  .detail-hero-media img {
    transform: none;
  }

  .story-chip,
  .coverage-label {
    opacity: 1;
    transform: none;
  }

  .signal-network path,
  .network-map path {
    stroke-dashoffset: 0;
  }

  .coverage-rings {
    opacity: 0.78;
    transform: translate(50%, -50%) scale(1);
  }

  .coverage-copy {
    min-height: 0;
  }

  .coverage-step {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 46px;
    opacity: 1;
    transform: none;
  }

  .plan-room {
    color: #f2e3cf;
    border-color: rgba(242, 211, 170, 0.32);
    background: rgba(231, 173, 101, 0.045);
  }

  .plan-room::before {
    background: var(--warm-soft);
    box-shadow: 0 0 12px var(--warm);
  }
}
