:root {
  color-scheme: dark;
  --bg: #0a0f1c;
  --surface: #111827;
  --surface-raised: #172033;
  --ink: #f4f7fb;
  --muted: #8b97a8;
  --muted-strong: #b9c2cf;
  --line: rgba(217, 225, 234, 0.12);
  --line-strong: rgba(217, 225, 234, 0.2);
  --accent: #c7ff3d;
  --accent-soft: rgba(199, 255, 61, 0.12);
  --cyan: #29d7ff;
  --violet: #7c5cff;
  --danger: #ff5d73;
  --font-display: "Space Grotesk", Inter, Arial, sans-serif;
  --font-body: Inter, Arial, sans-serif;
  --font-code: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --max-width: 1180px;
  --page-pad: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 17%, rgba(41, 215, 255, 0.075), transparent 28%),
    radial-gradient(circle at 18% 58%, rgba(124, 92, 255, 0.045), transparent 24%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  content: "";
  pointer-events: none;
}

button,
input {
  font: inherit;
}

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

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

svg {
  display: block;
}

.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: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-frame {
  width: min(100%, calc(var(--max-width) + var(--page-pad) * 2));
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.site-header {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-block;
  line-height: 0;
}

.wordmark-image {
  width: 143px;
  height: auto;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 650;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.header-cta svg,
.closing-cta > a svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.header-cta:hover {
  border-color: rgba(199, 255, 61, 0.42);
  background: var(--accent-soft);
  color: var(--ink);
}

.header-cta:hover svg,
.closing-cta > a:hover svg {
  transform: translateX(3px);
}

.hero {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
  padding: 72px 0 88px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.availability-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(199, 255, 61, 0.1);
}

.availability-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  content: "";
  animation: status-pulse 2.4s ease-out infinite;
}

@keyframes status-pulse {
  0% { opacity: 0.75; transform: scale(0.7); }
  70%, 100% { opacity: 0; transform: scale(1.45); }
}

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

.hero h1 {
  max-width: 750px;
  margin-bottom: 27px;
  font-size: clamp(3.5rem, 6.5vw, 6.25rem);
  font-weight: 650;
  letter-spacing: -0.072em;
  line-height: 0.94;
  font-family: var(--font-display);
}

.hero h1 span {
  color: var(--accent);
  font-weight: 510;
}

.hero-description {
  max-width: 610px;
  margin-bottom: 35px;
  color: var(--muted-strong);
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.waitlist-form {
  max-width: 610px;
}

.form-row {
  position: relative;
  display: flex;
  min-height: 62px;
  padding: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(17, 24, 39, 0.82);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-row:focus-within {
  border-color: rgba(199, 255, 61, 0.52);
  box-shadow: 0 0 0 3px rgba(199, 255, 61, 0.08), 0 20px 50px rgba(0, 0, 0, 0.18);
}

.form-row input[type="email"] {
  min-width: 0;
  flex: 1;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}

.form-row input[type="email"]::placeholder {
  color: #697588;
}

.form-row button {
  display: inline-flex;
  min-width: 181px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 0;
  border-radius: 9px;
  background: var(--accent);
  color: var(--bg);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.form-row button:hover:not(:disabled) {
  background: #d5ff70;
  transform: translateY(-1px);
}

.form-row button:disabled {
  cursor: default;
}

.form-row button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.is-loading .form-row button {
  opacity: 0.74;
}

.is-loading .form-row button svg {
  animation: loading-nudge 900ms ease-in-out infinite alternate;
}

@keyframes loading-nudge {
  to { transform: translateX(4px); }
}

.is-success .form-row {
  border-color: rgba(199, 255, 61, 0.45);
}

.is-success .form-row button {
  background: var(--accent);
}

.is-error .form-row {
  border-color: rgba(255, 93, 115, 0.6);
}

.form-meta {
  display: flex;
  min-height: 29px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 4px 0;
}

.form-meta p {
  margin: 0;
  color: #6f7b8d;
  font-size: 12px;
}

.form-status[data-type="success"] {
  color: var(--accent);
}

.form-status[data-type="error"] {
  color: #ff8d9d;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.signal-stage {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.signal-stage::before {
  position: absolute;
  z-index: -3;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 215, 255, 0.085), transparent 66%);
  content: "";
  filter: blur(8px);
}

.signal-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(41, 215, 255, 0.12);
  border-radius: 50%;
}

.signal-orbit-one {
  width: 410px;
  height: 410px;
  animation: orbit-breathe 5s ease-in-out infinite;
}

.signal-orbit-two {
  width: 505px;
  height: 505px;
  border-color: rgba(124, 92, 255, 0.08);
  animation: orbit-breathe 5s 1s ease-in-out infinite;
}

@keyframes orbit-breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1.02); }
}

.call-card {
  width: min(100%, 376px);
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(217, 225, 234, 0.15);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(23, 32, 51, 0.98), rgba(10, 15, 28, 0.99));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.035);
  transform: rotate(1.25deg);
}

.call-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: #7e8999;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
}

.live-indicator i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.caller {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 24px 0 21px;
}

.caller-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(124, 92, 255, 0.28);
  border-radius: 13px;
  background: rgba(124, 92, 255, 0.13);
}

.caller-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.caller p {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 670;
  letter-spacing: -0.02em;
}

.caller span {
  color: #7c8899;
  font-size: 12px;
}

.call-message {
  padding: 16px 17px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(7, 11, 21, 0.56);
}

.call-message span {
  display: block;
  margin-bottom: 7px;
  color: #9b86ff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.call-message p {
  margin: 0;
  color: #d9e0ea;
  font-size: 14px;
  line-height: 1.55;
}

.voice-line {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.voice-line span {
  width: 3px;
  height: 8px;
  border-radius: 99px;
  background: var(--cyan);
  opacity: 0.75;
  animation: voice-wave 1.15s ease-in-out infinite alternate;
}

.voice-line span:nth-child(2n) { animation-delay: -0.6s; }
.voice-line span:nth-child(3n) { animation-delay: -0.25s; }
.voice-line span:nth-child(4n) { animation-delay: -0.9s; }
.voice-line span:nth-child(5n) { animation-delay: -0.4s; }

@keyframes voice-wave {
  0% { height: 5px; opacity: 0.4; }
  100% { height: 25px; opacity: 0.95; }
}

.call-actions {
  display: flex;
  justify-content: center;
  gap: 54px;
  padding: 4px 0 2px;
}

.call-actions > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.call-actions > div > span {
  color: #748093;
  font-size: 10px;
}

.call-action {
  display: grid;
  width: 45px;
  height: 45px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  pointer-events: none;
}

.call-action svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.call-decline {
  background: rgba(255, 93, 115, 0.18);
  color: #ff7e91;
}

.call-answer {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 28px rgba(199, 255, 61, 0.17);
}

.channel-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 15, 28, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: #a7b1c0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.channel-chip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.channel-sms {
  top: 56px;
  left: -8px;
  transform: rotate(-4deg);
}

.channel-urgent {
  right: -2px;
  bottom: 84px;
  transform: rotate(3deg);
}

.channel-urgent span {
  background: var(--danger);
}

.stage-caption {
  position: absolute;
  bottom: 6px;
  left: 50%;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #687486;
  font-size: 11px;
  transform: translateX(-50%);
}

.stage-caption span {
  width: 25px;
  height: 1px;
  background: #364156;
}

.channel-strip {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.channel-strip > p {
  margin: 0;
  color: #738094;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.channel-strip > div {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 44px);
}

.channel-strip > div > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #aab4c2;
  font-size: 13px;
  white-space: nowrap;
}

.channel-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #57657a;
}

.channel-icon-sms {
  border-radius: 4px;
}

.channel-icon-sms::after {
  position: absolute;
  bottom: -3px;
  left: 3px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #57657a;
  border-left: 1px solid #57657a;
  background: var(--bg);
  content: "";
  transform: rotate(-25deg);
}

.channel-icon-call {
  width: 15px;
  height: 15px;
  border-width: 0 0 1px 3px;
  border-radius: 3px 3px 3px 8px;
  transform: rotate(-42deg) scale(0.8);
}

.channel-icon-live {
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--bg);
  background: var(--violet);
}

.channel-icon-alarm {
  border-radius: 8px 8px 4px 4px;
}

.channel-icon-alarm::before,
.channel-icon-alarm::after {
  position: absolute;
  top: -4px;
  width: 4px;
  height: 3px;
  border-top: 1px solid #57657a;
  content: "";
}

.channel-icon-alarm::before { left: 0; transform: rotate(-30deg); }
.channel-icon-alarm::after { right: 0; transform: rotate(30deg); }

.how-it-works {
  padding: clamp(105px, 13vw, 178px) 0 clamp(110px, 13vw, 170px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 83px;
}

.section-kicker {
  margin: 7px 0 0;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-heading h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.1vw, 4.7rem);
  font-weight: 590;
  letter-spacing: -0.062em;
  line-height: 1.03;
  font-family: var(--font-display);
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  min-height: 240px;
  padding: 23px 32px 26px 0;
  border-right: 1px solid var(--line);
}

.steps li + li {
  padding-left: 32px;
}

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

.step-number {
  display: block;
  margin-bottom: 67px;
  color: #657288;
  font-family: var(--font-code);
  font-size: 11px;
}

.steps h3 {
  margin-bottom: 9px;
  font-size: 17px;
  font-weight: 660;
  letter-spacing: -0.025em;
}

.steps p {
  max-width: 290px;
  margin: 0;
  color: #7f8b9d;
  font-size: 14px;
  line-height: 1.6;
}

.closing-cta {
  display: flex;
  min-height: 410px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 65px clamp(30px, 6vw, 76px);
  border: 1px solid rgba(124, 92, 255, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 20%, rgba(41, 215, 255, 0.105), transparent 34%),
    radial-gradient(circle at 18% 85%, rgba(124, 92, 255, 0.08), transparent 35%),
    linear-gradient(145deg, rgba(23, 32, 51, 0.96), rgba(10, 15, 28, 0.98));
  overflow: hidden;
}

.closing-cta .section-kicker {
  margin-bottom: 25px;
}

.closing-cta > a {
  display: inline-flex;
  min-height: 55px;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  padding: 0 23px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--bg);
  font-size: 14px;
  font-weight: 750;
  transition: background-color 180ms ease, transform 180ms ease;
}

.closing-cta > a:hover {
  background: #d5ff70;
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  min-height: 160px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: #647185;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

.wordmark-small .wordmark-image {
  width: 116px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Keep the primary waitlist action above the fold on short desktop viewports. */
@media (min-width: 801px) and (max-height: 760px) {
  .site-header {
    min-height: 76px;
  }

  .hero {
    min-height: calc(100svh - 76px);
    gap: clamp(38px, 6vw, 82px);
    padding: 34px 0 42px;
  }

  .availability-pill {
    margin-bottom: 19px;
  }

  .hero h1 {
    max-width: 680px;
    margin-bottom: 19px;
    font-size: clamp(3.45rem, 5.45vw, 5rem);
    line-height: 0.92;
  }

  .hero h1 .short-desktop-line {
    display: block;
  }

  .hero-description {
    margin-bottom: 23px;
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.48;
  }

  .form-row {
    min-height: 58px;
  }

  .signal-stage {
    min-height: 440px;
  }

  .signal-orbit-one {
    width: 360px;
    height: 360px;
  }

  .signal-orbit-two {
    width: 445px;
    height: 445px;
  }

  .call-card {
    width: min(100%, 350px);
    padding: 18px;
  }

  .call-card-header {
    padding-bottom: 15px;
  }

  .caller {
    padding: 17px 0 15px;
  }

  .caller-mark {
    width: 42px;
    height: 42px;
  }

  .call-message {
    padding: 13px 14px 14px;
  }

  .call-message p {
    font-size: 13px;
    line-height: 1.45;
  }

  .voice-line {
    height: 43px;
  }

  .call-actions {
    padding-top: 1px;
  }

  .call-action {
    width: 41px;
    height: 41px;
  }

  .channel-sms {
    top: 39px;
  }

  .channel-urgent {
    bottom: 55px;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    gap: 38px;
  }

  .channel-sms {
    left: 0;
  }

  .channel-urgent {
    right: 0;
  }

  .channel-strip {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 25px 0;
  }

  .channel-strip > div {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 800px) {
  body {
    background:
      radial-gradient(circle at 50% 22%, rgba(41, 215, 255, 0.075), transparent 25%),
      var(--bg);
  }

  .site-header {
    min-height: 78px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 74px 0 80px;
  }

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

  .hero h1,
  .hero-description,
  .waitlist-form {
    margin-right: auto;
    margin-left: auto;
  }

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

  .signal-stage {
    min-height: 540px;
  }

  .channel-sms {
    left: 7%;
  }

  .channel-urgent {
    right: 6%;
  }

  .channel-strip > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-bottom: 62px;
  }

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

  .steps li,
  .steps li + li {
    display: grid;
    min-height: auto;
    grid-template-columns: 55px 1fr;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .step-number {
    margin: 4px 0 0;
  }

  .closing-cta {
    min-height: 390px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 18px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .availability-pill {
    margin-bottom: 27px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15.1vw, 5.4rem);
    letter-spacing: -0.068em;
  }

  .hero-description {
    max-width: 420px;
    font-size: 16px;
  }

  .form-row {
    min-height: auto;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
  }

  .form-row input[type="email"] {
    width: 100%;
    min-height: 53px;
    text-align: center;
  }

  .form-row button {
    width: 100%;
    min-height: 51px;
  }

  .form-meta {
    justify-content: center;
    text-align: center;
  }

  .form-status:not(:empty) + * {
    display: none;
  }

  .signal-stage {
    min-height: 500px;
    overflow: hidden;
  }

  .signal-orbit-one {
    width: 345px;
    height: 345px;
  }

  .signal-orbit-two {
    width: 430px;
    height: 430px;
  }

  .call-card {
    width: min(94%, 360px);
  }

  .channel-sms {
    top: 36px;
    left: 0;
  }

  .channel-urgent {
    right: 0;
    bottom: 57px;
  }

  .stage-caption {
    bottom: 0;
  }

  .channel-strip > div {
    gap: 17px;
  }

  .channel-strip > div > span {
    font-size: 12px;
  }

  .how-it-works {
    padding-top: 105px;
  }

  .section-heading h2,
  .closing-cta h2 {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
  }

  .closing-cta {
    min-height: 390px;
    padding: 40px 27px;
  }

  .closing-cta > a {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    min-height: 185px;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p:nth-child(2) {
    display: none;
  }
}

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

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