@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-italic.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --ink: #f7f9fc;
  --muted: #a9b5c6;
  --faint: #718096;
  --page: #050a12;
  --surface: #08111f;
  --surface-raised: #0b1728;
  --line: rgba(162, 190, 224, 0.16);
  --accent: #3488ff;
  --accent-bright: #72adff;
  --max-width: 1180px;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% -10%, rgba(52, 136, 255, 0.12), transparent 32rem),
    var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

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

h1,
h2,
h3,
p {
  margin-top: 5px;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  max-width: 790px;
  margin-bottom: 1.75rem;
  font-size: clamp(3.6rem, 8.5vw, 7.6rem);
  font-weight: 620;
}

h1 .hero-accent {
  color: var(--accent-bright);
}

.hero-line {
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  font-weight: 600;
}

h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 590;
}

p {
  color: var(--muted);
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--page);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 10, 18, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-logo {
  display: block;
  width: 94px;
  height: 34px;
  object-fit: cover;
  object-position: center;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--accent-bright);
  border-radius: 50% 50% 50% 12%;
  transform: rotate(-45deg);
}

.brand-mark::after {
  position: absolute;
  right: 0.28rem;
  bottom: 0.28rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--accent-bright);
  content: "";
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.site-nav a:not(.button) {
  color: #c9d2df;
  font-size: 0.92rem;
  font-weight: 540;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 10px 35px rgba(52, 136, 255, 0.22);
  color: white;
  font-size: 0.96rem;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: #2478ee;
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding-inline: 1.1rem;
  font-size: 0.88rem;
}

.button-muted {
  border-color: var(--line);
  background: transparent;
  box-shadow: none;
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 650;
}

.text-link span {
  color: var(--accent-bright);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.eyebrow {
  margin-bottom: 0.6rem;
  color: var(--accent-bright);
  font-size: 1.25rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9.5rem) 0 clamp(6rem, 11vw, 10rem);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(114, 173, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 173, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 2rem;
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero .button-muted {
  column-gap: 0.4em;
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
}

.button-brand {
  display: inline;
  margin-left: 0.3em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  align-items: center;
}

.qualifier {
  margin: 2rem 0 0;
  color: var(--faint);
  font-size: 0.87rem;
}

.signal-visual {
  position: relative;
  display: grid;
  min-height: 530px;
  place-items: center;
}

.signal-visual > p {
  position: absolute;
  right: 207px;
  bottom: -35px;
  max-width: 220px;
  margin: 0px;
  font-size: 1.2rem;
}

.visual-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(52, 136, 255, 0.13);
  filter: blur(55px);
}

.home-outline {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 0.92;
  overflow: hidden;
  border: 1px solid rgba(114, 173, 255, 0.32);
  border-radius: 180px 180px 28px 28px;
  background: linear-gradient(150deg, rgba(23, 48, 82, 0.68), rgba(7, 16, 31, 0.7));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), var(--shadow);
}

.home-outline::before,
.home-outline::after,
.room {
  position: absolute;
  background: rgba(149, 178, 214, 0.2);
  content: "";
}

.home-outline::before {
  top: 48%;
  right: 0;
  left: 0;
  height: 1px;
}

.home-outline::after {
  top: 48%;
  bottom: 0;
  left: 54%;
  width: 1px;
}

.room-one {
  top: 18%;
  right: 21%;
  width: 1px;
  height: 30%;
}

.room-two {
  top: 72%;
  right: 0;
  left: 54%;
  height: 1px;
}

.room-three {
  top: 48%;
  bottom: 0;
  left: 25%;
  width: 1px;
}

.router-point {
  position: absolute;
  z-index: 5;
  top: 57%;
  left: 39%;
  width: 10px;
  height: 10px;
  border: 2px solid #dfeeff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(52, 136, 255, 0.16), 0 0 25px var(--accent);
}

.signal-ring {
  position: absolute;
  top: 58%;
  left: 40%;
  border: 1px solid rgba(114, 173, 255, 0.36);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: signal-wave 1.5s ease-out infinite;
  will-change: transform, opacity;
}

.ring-one {
  width: 110px;
  height: 110px;
  animation-delay: 0s;
}

.ring-two {
  width: 230px;
  height: 230px;
  animation-delay: 0.25s;
}

.ring-three {
  width: 370px;
  height: 370px;
  animation-delay: 0.5s;
}

@keyframes signal-wave {
  0% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(0.62);
  }

  36% {
    opacity: 0.7;
  }

  100% {
    opacity: 0.06;
    transform: translate(-50%, -50%) scale(1.24);
  }
}

.outcomes {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-top: 1px solid var(--line);
  background: rgba(8, 17, 31, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.35fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.section-heading > p {
  margin: 0;
}

.section-heading.section-heading-stacked {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.section-heading-stacked > p {
  margin-bottom: 0.6rem;
  color: var(--accent-bright);
  font-size: 1.25rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
}

.outcomes .section-heading-stacked > p {
  width: 100%;
  max-width: 620px;
  padding-top: 10px;
  margin: 5px 0 0;
  border-color: var(--muted);
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: normal;
}

.rooms-section .section-heading-stacked > p {
  padding: 20px 22px 0 5px;
  margin: 5px 5px 0 0;
  border-color: var(--muted);
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: normal;
}

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

.outcome-card {
  min-height: 310px;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(52, 136, 255, 0.08), transparent 55%),
    var(--surface-raised);
}

.card-index {
  display: block;
  margin-bottom: 6rem;
  color: var(--accent-bright);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.outcome-card p {
  margin-bottom: 0;
}

.boundary-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.boundary-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.boundary-inner p {
  max-width: 720px;
  margin: 0;
}

.boundary-inner strong {
  color: var(--ink);
}

.rooms-section,
.process-section,
.precheck-section,
.identity-section,
.faq-section,
.final-cta {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.rooms-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 20%, rgba(52, 136, 255, 0.08), transparent 28rem),
    var(--page);
}

.section-heading-wide {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.35fr);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.room-card {
  position: relative;
  grid-column: span 5;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.room-card-large,
.room-card-wide {
  grid-column: span 7;
}

.room-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(61, 95, 136, 0.2), transparent 55%),
    linear-gradient(180deg, #102035, #091321);
}

.room-art::before {
  position: absolute;
  inset: 12% 10% 22%;
  border: 1px solid rgba(182, 204, 230, 0.14);
  border-radius: 120px 120px 16px 16px;
  content: "";
}

.room-art::after {
  position: absolute;
  right: 10%;
  bottom: 22%;
  left: 10%;
  height: 1px;
  background: rgba(182, 204, 230, 0.18);
  content: "";
}

.room-card figcaption {
  position: absolute;
  z-index: 5;
  right: 1.5rem;
  bottom: 1.3rem;
  left: 1.5rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 620;
  letter-spacing: -0.035em;
}

.stair-line {
  position: absolute;
  z-index: 2;
  right: 14%;
  bottom: 32%;
  width: 50%;
  height: 34%;
  border-top: 1px solid rgba(210, 226, 246, 0.38);
  border-right: 1px solid rgba(210, 226, 246, 0.38);
  background: repeating-linear-gradient(to bottom, transparent 0 20%, rgba(210, 226, 246, 0.22) 20% 21%);
  transform: skewY(-25deg);
}

.tv-screen,
.office-screen,
.gaming-screen {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(210, 226, 246, 0.38);
  background: linear-gradient(145deg, rgba(82, 145, 226, 0.25), rgba(8, 16, 29, 0.4));
  box-shadow: inset 0 0 35px rgba(52, 136, 255, 0.12);
}

.tv-screen {
  top: 25%;
  left: 24%;
  width: 52%;
  height: 33%;
  border-radius: 6px;
}

.tv-console {
  position: absolute;
  z-index: 2;
  top: 62%;
  left: 19%;
  width: 62%;
  height: 7%;
  border: 1px solid rgba(210, 226, 246, 0.22);
  border-radius: 4px;
}

.office-screen {
  top: 25%;
  left: 30%;
  width: 40%;
  height: 27%;
  border-radius: 5px;
}

.office-screen::after {
  position: absolute;
  top: 100%;
  left: calc(50% - 1px);
  width: 2px;
  height: 28px;
  background: rgba(210, 226, 246, 0.35);
  content: "";
}

.office-desk {
  position: absolute;
  z-index: 2;
  top: 62%;
  left: 18%;
  width: 64%;
  height: 1px;
  background: rgba(210, 226, 246, 0.35);
  box-shadow: -6px 25px 0 -5px rgba(210, 226, 246, 0.25), 6px 25px 0 -5px rgba(210, 226, 246, 0.25);
}

.gaming-screen {
  top: 21%;
  left: 22%;
  width: 56%;
  height: 32%;
  border-radius: 9px;
}

.gaming-screen::before,
.gaming-screen::after {
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: rgba(114, 173, 255, 0.24);
  content: "";
}

.gaming-screen::before {
  left: 33%;
}

.gaming-screen::after {
  right: 33%;
}

.gaming-seat {
  position: absolute;
  z-index: 2;
  top: 58%;
  left: 44%;
  width: 12%;
  height: 17%;
  border: 1px solid rgba(210, 226, 246, 0.26);
  border-radius: 14px 14px 6px 6px;
}

.room-signal {
  position: absolute;
  z-index: 3;
  top: 19%;
  right: 17%;
  border: 1px solid rgba(114, 173, 255, 0.36);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.room-signal-one {
  width: 36px;
  height: 36px;
}

.room-signal-two {
  top: 13.5%;
  right: 12%;
  width: 70px;
  height: 70px;
  opacity: 0.65;
}

.process-section {
  border-top: 1px solid var(--line);
  background: #07101d;
}

.process-section > .container > h2 {
  max-width: 860px;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 2rem 1.8rem 0 0;
}

.process-step:not(:last-child) {
  border-right: 1px solid var(--line);
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: -1.1rem;
  right: -1.1rem;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid rgba(114, 173, 255, 0.3);
  border-radius: 50%;
  background: #07101d;
  color: var(--accent-bright);
  font-size: 1.1rem;
  font-weight: 800;
  content: "\2192";
}

.process-step:not(:first-child) {
  padding-left: 1.8rem;
}

.process-number {
  display: block;
  margin-bottom: 4rem;
  color: var(--accent-bright);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

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

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.services-list li {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.services-list li:nth-child(3n) {
  border-right: 0;
}

.services-list li:nth-child(n + 4) {
  border-bottom: 0;
}

.services-list a,
.services-list li > span {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 620;
}

.services-list a {
  color: var(--ink);
}

.services-list a:hover {
  background: rgba(52, 136, 255, 0.06);
}

.services-list a span {
  color: var(--accent-bright);
}

.precheck-section {
  scroll-margin-top: 1.5rem;
}

.precheck-dialog {
  width: min(calc(100% - 2rem), var(--max-width));
  max-width: var(--max-width);
  max-height: calc(100dvh - 2rem);
  padding: 0;
  overflow: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.precheck-dialog::backdrop {
  background: rgba(1, 5, 12, 0.82);
  backdrop-filter: blur(8px);
}

.precheck-dialog .precheck-panel {
  width: 100%;
  margin: 0;
}

.dialog-close {
  position: absolute;
  z-index: 10;
  top: 1.25rem;
  right: 1.25rem;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(204, 223, 247, 0.24);
  border-radius: 50%;
  background: rgba(5, 12, 22, 0.76);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.dialog-close:hover {
  background: rgba(52, 136, 255, 0.18);
}

.precheck-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.38fr);
  gap: clamp(3rem, 8vw, 7rem);
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(114, 173, 255, 0.22);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(140deg, rgba(52, 136, 255, 0.12), transparent 48%),
    #0a1728;
  box-shadow: var(--shadow);
}

.precheck-copy {
  position: relative;
  z-index: 4;
}

.precheck-copy h2 {
  margin-bottom: 1.6rem;
}

.precheck-copy > p {
  max-width: 680px;
}

.placeholder-action {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin: 2.1rem 0 1.2rem;
}

.placeholder-action .button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.placeholder-action p {
  max-width: 330px;
  margin: 0;
  color: var(--faint);
  font-size: 0.78rem;
  line-height: 1.45;
}

.placeholder-action strong {
  color: var(--muted);
}

.fine-print {
  margin-bottom: 0;
  color: var(--faint);
  font-size: 0.8rem;
}

.precheck-visual {
  position: relative;
  min-height: 420px;
}

.phone-outline {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  height: 360px;
  align-content: center;
  gap: 1rem;
  padding: 2rem 1.4rem;
  border: 1px solid rgba(204, 223, 247, 0.32);
  border-radius: 30px;
  background: rgba(5, 12, 22, 0.64);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%) rotate(4deg);
}

.phone-outline::before {
  position: absolute;
  top: 12px;
  left: calc(50% - 25px);
  width: 50px;
  height: 4px;
  border-radius: 999px;
  background: rgba(204, 223, 247, 0.25);
  content: "";
}

.message-line {
  display: block;
  width: 72%;
  height: 30px;
  border: 1px solid rgba(114, 173, 255, 0.26);
  border-radius: 14px 14px 14px 4px;
  background: rgba(52, 136, 255, 0.12);
}

.message-line-long {
  width: 100%;
}

.message-line-short {
  width: 54%;
}

.precheck-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(114, 173, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: precheck-wave-loop 1.35s ease-out infinite;
  will-change: transform, opacity;
}

.precheck-wave-one {
  width: 270px;
  height: 270px;
  animation-delay: 0s;
}

.precheck-wave-two {
  width: 390px;
  height: 390px;
  animation-delay: 0.22s;
}

.precheck-wave-three {
  width: 520px;
  height: 520px;
  animation-delay: 0.44s;
}

@keyframes precheck-wave-loop {
  0% {
    opacity: 0.16;
    transform: translate(-50%, -50%) scale(0.7);
  }

  38% {
    opacity: 0.62;
  }

  100% {
    opacity: 0.04;
    transform: translate(-50%, -50%) scale(1.18);
  }
}

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

.identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.48fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.identity-copy {
  padding-top: 2.6rem;
}

.identity-copy p {
  font-size: 1.05rem;
}

.identity-boundary {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: 2rem;
  align-self: start;
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.7rem 3.2rem 1.7rem 0;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 16px;
  height: 1px;
  background: var(--accent-bright);
  content: "";
}

.faq-list summary::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 720px;
  padding: 0 3.2rem 1.7rem 0;
  margin: 0;
}

.final-cta {
  background:
    radial-gradient(circle at 80% 0, rgba(52, 136, 255, 0.12), transparent 30rem),
    #050b14;
}

.final-cta-inner {
  display: flex;
  gap: 3rem;
  align-items: end;
  justify-content: space-between;
}

.final-cta-inner h2 {
  margin-bottom: 1.2rem;
}

.final-cta-inner p:last-child {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.final-cta-inner > .button {
  border-radius: 0;
}

@media (min-width: 901px) {
  .final-cta-inner > .button {
    flex: 0 0 160px;
    width: 160px;
    margin-right: 22px;
    margin-left: 33px;
  }
}

.service-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(114, 173, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 173, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}

.service-hero::after {
  position: absolute;
  z-index: -1;
  top: -12rem;
  right: -8rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(114, 173, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(52, 136, 255, 0.025),
    0 0 0 10rem rgba(52, 136, 255, 0.018);
  content: "";
}

.service-hero .button-row {
  margin-top: 2.2rem;
}

.service-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--line);
}

.service-section-alt {
  background: rgba(8, 17, 31, 0.72);
}

.service-section h2,
.page-cta h2,
.legal-content h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.service-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.3fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 3.5rem;
}

.service-heading p {
  margin-bottom: 0;
}

.service-heading.service-heading-stacked {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.service-heading.service-heading-stacked > p {
  max-width: 720px;
  margin-top: 1.35rem;
}

.section-lede {
  max-width: 720px;
  margin-top: 1.7rem;
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.related-services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  min-height: 280px;
  padding: clamp(1.5rem, 2.8vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(52, 136, 255, 0.07), transparent 58%),
    var(--surface-raised);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.feature-card p {
  margin-bottom: 0;
}

.feature-card .text-link {
  margin-top: 1.7rem;
}

.feature-number {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--accent-bright);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(310px, 0.42fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.service-split-reverse {
  grid-template-columns: minmax(310px, 0.42fr) minmax(0, 0.72fr);
}

.boundary-panel,
.contact-card {
  padding: clamp(1.7rem, 3.5vw, 2.8rem);
  border: 1px solid rgba(114, 173, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(52, 136, 255, 0.11), transparent 55%),
    var(--surface-raised);
  box-shadow: var(--shadow);
}

.boundary-panel h3,
.contact-card h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
}

.boundary-panel p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.panel-label {
  margin-bottom: 1.2rem;
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-list,
.horizontal-process {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > span,
.horizontal-process li > span {
  color: var(--accent-bright);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

.process-list p,
.horizontal-process p {
  margin-bottom: 0;
}

.check-list {
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 1.35rem;
  left: 0.2rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--accent-bright);
  border-radius: 50%;
  content: "";
}

.horizontal-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.horizontal-process-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.horizontal-process li {
  min-height: 260px;
  padding: 2rem 1.7rem;
  border-right: 1px solid var(--line);
}

.horizontal-process li:first-child {
  padding-left: 0;
}

.horizontal-process li:last-child {
  padding-right: 0;
  border-right: 0;
}

.horizontal-process h3 {
  margin: 4.5rem 0 1rem;
  font-size: 1.45rem;
}

.page-cta {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(circle at 82% 15%, rgba(52, 136, 255, 0.13), transparent 28rem),
    #050b14;
}

.page-cta-inner {
  display: flex;
  gap: 3rem;
  align-items: end;
  justify-content: space-between;
}

.page-cta-inner > div {
  max-width: 820px;
}

.page-cta-inner h2 {
  margin-bottom: 1.2rem;
}

.page-cta-inner p:last-child {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.page-troubleshooting .service-heading-stacked > p,
.page-troubleshooting .section-lede,
.page-troubleshooting .page-cta-inner > div > p:last-child {
  font-size: 1.32rem;
}

.page-installation .service-heading-stacked > p,
.page-installation .section-lede {
  font-size: 1.32rem;
}

.page-design .service-heading-stacked > p {
  font-size: 1.35rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.42fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.contact-card .button {
  width: 100%;
  margin-top: 1.2rem;
}

.contact-card .button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.contact-placeholder {
  margin-top: 1rem;
  color: var(--faint);
  font-size: 0.8rem;
}

.design-diagram {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(114, 173, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 173, 255, 0.04) 1px, transparent 1px),
    var(--surface-raised);
  background-size: 46px 46px;
}

.design-floor {
  position: absolute;
  right: 12%;
  left: 12%;
  height: 1px;
  background: rgba(182, 204, 230, 0.24);
}

.design-floor-one {
  top: 35%;
}

.design-floor-two {
  top: 68%;
}

.design-floor::after {
  position: absolute;
  top: -6rem;
  left: 50%;
  width: 1px;
  height: 6rem;
  background: rgba(182, 204, 230, 0.2);
  content: "";
}

.design-node {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 2px solid #dfeeff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 9px rgba(52, 136, 255, 0.12), 0 0 22px rgba(52, 136, 255, 0.65);
}

.design-node-one {
  top: 23%;
  left: 28%;
}

.design-node-two {
  top: 50%;
  right: 25%;
}

.design-node-three {
  bottom: 17%;
  left: 38%;
}

.design-path {
  position: absolute;
  top: 24%;
  right: 25%;
  bottom: 18%;
  left: 29%;
  border: 1px dashed rgba(114, 173, 255, 0.34);
  border-radius: 45%;
  transform: rotate(-12deg);
}

.legal-hero h1 {
  max-width: 700px;
}

.policy-date {
  margin-top: 2rem;
  color: var(--faint);
  font-size: 0.86rem;
}

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

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(3rem, 8vw, 8rem);
  justify-content: center;
}

.legal-nav {
  position: sticky;
  top: 2rem;
  display: grid;
  align-self: start;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-nav a:hover {
  color: var(--ink);
}

.legal-content section {
  scroll-margin-top: 2rem;
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 1.4rem;
}

.legal-content a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.simple-page {
  position: relative;
  display: grid;
  min-height: calc(100vh - 82px);
  place-items: center;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 10rem) 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(52, 136, 255, 0.13), transparent 30rem),
    var(--page);
}

.simple-page::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(114, 173, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 173, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  content: "";
}

.simple-page-inner {
  position: relative;
  z-index: 2;
}

.simple-page h1 {
  max-width: 1000px;
}

.simple-page .lede {
  max-width: 720px;
}

.simple-page .button-row {
  margin-top: 2.2rem;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}

.error-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.error-links a:hover {
  color: var(--ink);
}

.page-hero {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.1rem, 7.5vw, 6.4rem);
}

.page-hero .lede {
  max-width: 720px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.page-body {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.35fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.content-grid h2 {
  margin-bottom: 1.7rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.content-panel {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.content-panel h2,
.content-panel h3 {
  font-size: 1.35rem;
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.status-label {
  display: inline-flex;
  margin-bottom: 1.2rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(114, 173, 255, 0.26);
  border-radius: 999px;
  color: var(--accent-bright);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.contact-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-list span {
  display: block;
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--ink);
  font-weight: 560;
}

.site-footer {
  padding: 4rem 0;
  background: #03070d;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.4fr 0.75fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-copy {
  display: grid;
  gap: 1rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  justify-content: flex-end;
}

.footer-inner nav a {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-inner nav a:hover {
  color: var(--ink);
}

.footer-inner .footer-social {
  gap: 0.65rem 1.1rem;
  justify-content: flex-start;
}

.footer-inner .footer-social a {
  color: var(--accent-bright);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 1.25rem;
    border-bottom: 1px solid var(--line);
    background: #07101f;
    box-shadow: var(--shadow);
  }

  [data-nav-root][data-open="true"] .site-nav {
    display: grid;
  }

  [data-nav-root][data-open="true"] .nav-toggle span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  [data-nav-root][data-open="true"] .nav-toggle span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav .button {
    justify-self: start;
  }

  .hero-grid,
  .section-heading,
  .content-grid,
  .precheck-panel,
  .identity-grid,
  .faq-grid,
  .service-heading,
  .service-split,
  .service-split-reverse,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .signal-visual {
    min-height: 450px;
  }

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

  .room-card,
  .room-card-large,
  .room-card-wide {
    grid-column: span 6;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .process-step:nth-child(2)::after {
    display: none;
  }

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

  .services-list li,
  .services-list li:nth-child(3n),
  .services-list li:nth-child(n + 4) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .services-list li:nth-child(2n) {
    border-right: 0;
  }

  .services-list li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .services-list li:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .services-list li:nth-child(3) {
    border-right: 0;
    border-bottom: 0;
  }

  .precheck-visual {
    min-height: 330px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .outcome-card {
    min-height: auto;
  }

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

  .horizontal-process,
  .horizontal-process-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .horizontal-process li,
  .horizontal-process li:first-child,
  .horizontal-process li:last-child {
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .horizontal-process li:nth-child(2n) {
    border-right: 0;
  }

  .horizontal-process li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .horizontal-process-three li:last-child {
    border-right: 0;
  }

  .horizontal-process-three li:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .horizontal-process-three li:nth-child(3) {
    border-bottom: 0;
  }

  .page-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-nav {
    position: static;
  }

  .legal-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.5rem;
  }

  .design-diagram {
    min-height: 390px;
  }

  .card-index {
    margin-bottom: 3.2rem;
  }

  .boundary-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-inner nav {
    justify-content: flex-start;
  }
}

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

  .header-inner {
    min-height: 72px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero {
    padding-top: 4.5rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    min-height: 48px;
  }

  .signal-visual {
    min-height: 370px;
  }

  .signal-visual > p {
    right: auto;
    left: 0;
  }

  .home-outline {
    width: min(100%, 330px);
  }

  .ring-three {
    width: 310px;
    height: 310px;
  }

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

  .room-card,
  .room-card-large,
  .room-card-wide {
    grid-column: auto;
    min-height: 285px;
  }

  .process-track {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .process-step,
  .process-step:not(:first-child) {
    min-height: auto;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .process-step:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: -1.1rem;
    content: "\2193";
  }

  .process-step:nth-child(2)::after {
    display: grid;
  }

  .process-number {
    margin-bottom: 2rem;
  }

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

  .services-list li,
  .services-list li:nth-child(2n),
  .services-list li:nth-child(3n),
  .services-list li:nth-child(n + 4),
  .services-list li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-list li:last-child {
    border-bottom: 0;
  }

  .services-list a,
  .services-list li > span {
    min-height: 74px;
    padding-inline: 0;
  }

  .precheck-panel {
    min-height: auto;
  }

  .placeholder-action {
    align-items: stretch;
    flex-direction: column;
  }

  .placeholder-action .button {
    width: 100%;
  }

  .precheck-visual {
    min-height: 300px;
  }

  .phone-outline {
    width: 155px;
    height: 285px;
  }

  .precheck-wave-one {
    width: 210px;
    height: 210px;
  }

  .precheck-wave-two {
    width: 295px;
    height: 295px;
  }

  .precheck-wave-three {
    width: 380px;
    height: 380px;
  }

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

  .faq-list summary {
    padding-right: 2.6rem;
  }

  .faq-list details p {
    padding-right: 1rem;
  }

  .final-cta-inner .button {
    width: 100%;
  }

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

  .feature-card {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 3rem;
  }

  .horizontal-process,
  .horizontal-process-three {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .horizontal-process li,
  .horizontal-process li:first-child,
  .horizontal-process li:last-child,
  .horizontal-process li:nth-child(2n),
  .horizontal-process li:nth-last-child(-n + 2) {
    min-height: auto;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 0;
  }

  .horizontal-process h3 {
    margin-top: 2.5rem;
  }

  .page-cta-inner .button {
    width: 100%;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .design-diagram {
    min-height: 330px;
  }

  .error-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .signal-ring,
  .precheck-wave {
    animation-duration: 1.5s !important;
    animation-iteration-count: infinite !important;
  }

  .precheck-wave {
    animation-duration: 1.35s !important;
  }
}
