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

html {
  scroll-behavior: smooth;
}

:root {
  --night: #212121;
  --night-2: #181818;
  --night-3: #111111;
  --panel: rgba(33, 33, 33, 0.94);
  --panel-strong: rgba(41, 95, 45, 0.94);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 230, 124, 0.38);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --sage: #295f2d;
  --sage-bright: #ffe67c;
  --sage-deep: #1f4722;
  --pine: #295f2d;
  --earth: #b49b43;
  --earth-soft: #ffe67c;
  --sand: #ffffff;
  --sand-soft: rgba(255, 255, 255, 0.12);
  --signal: #ffe67c;
  --signal-2: #295f2d;
  --signal-soft: rgba(255, 230, 124, 0.18);
  --steel: rgba(255, 255, 255, 0.58);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --display: "Big Shoulders Stencil Display", sans-serif;
  --sans: "Barlow", sans-serif;
  --cut: 18px;
}

body {
  font-family: var(--sans);
  color: var(--text);
  min-height: 100vh;
  background: var(--night);
}

body::before {
  content: none;
}

body::after {
  content: none;
}

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

.sample-bar,
.site-nav,
.hero,
.command-strip,
.section,
.site-footer {
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
}

.sample-bar {
  margin-top: 18px;
  padding: 0.95rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.78rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.sample-bar-brand {
  display: inline-flex;
  align-items: center;
}

.sample-bar-mark {
  display: block;
  width: 120px;
  height: auto;
}

.sample-bar .sep {
  opacity: 0.3;
}

.site-nav {
  margin-top: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(33, 33, 33, 0.96);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 20;
  box-shadow: var(--shadow);
  clip-path: polygon(var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 18px;
  background: var(--pine);
  border: 1px solid rgba(255, 230, 124, 0.22);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  position: relative;
  z-index: 1;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--night);
  background: var(--earth-soft);
  box-shadow: 0 10px 24px rgba(255, 230, 124, 0.16);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-copy strong {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 0.9;
}

.logo-copy span {
  margin-top: 0.24rem;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 0;
  flex: 1;
  margin: 0 12px;
  min-height: 64px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  overflow: hidden;
}

.nav-links a,
.nav-cta,
.nav-toggle,
.mobile-nav a,
.btn {
  position: relative;
  font-size: 0.82rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  flex: 1;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  color: var(--muted);
  transition: color 0.22s ease, transform 0.22s ease, background 0.22s ease, letter-spacing 0.22s ease, box-shadow 0.22s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.18);
}

.nav-links a:last-child {
  border-right: none;
}

.nav-links a::before,
.nav-links a::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links a::before {
  left: 11px;
  top: 11px;
  border-left: 1px solid var(--earth-soft);
  border-top: 1px solid var(--earth-soft);
  transform: translate(-4px, -4px);
}

.nav-links a::after {
  right: 11px;
  bottom: 11px;
  border-right: 1px solid var(--earth-soft);
  border-bottom: 1px solid var(--earth-soft);
  transform: translate(4px, 4px);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(41, 95, 45, 0.42);
  letter-spacing: 0.22em;
  box-shadow: inset 0 0 0 1px rgba(255, 230, 124, 0.12);
}

.nav-links a:hover::before,
.nav-links a:hover::after,
.nav-links a.active::before,
.nav-links a.active::after {
  transform: translate(0, 0);
  opacity: 1;
}

.nav-cta,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-cta,
.btn-solid {
  background: var(--earth-soft);
  color: #0d120d;
  box-shadow: 0 14px 28px rgba(255, 230, 124, 0.16);
}

.nav-cta {
  min-width: 220px;
  min-height: 64px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.nav-toggle {
  min-width: 148px;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--display);
  font-weight: 700;
  cursor: pointer;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 230, 124, 0.24);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.nav-toggle-text {
  display: inline-flex;
  align-items: center;
}

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav-toggle-bars span {
  width: 20px;
  height: 1.5px;
  display: block;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-nav.menu-open .nav-toggle {
  background: rgba(41, 95, 45, 0.32);
  border-color: rgba(255, 230, 124, 0.24);
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(33, 33, 33, 0.98);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.22s ease, background 0.22s ease, letter-spacing 0.22s ease;
}

.mobile-nav a::after {
  content: "+";
  color: var(--earth-soft);
  font-size: 0.88rem;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--text);
  background: rgba(41, 95, 45, 0.34);
  letter-spacing: 0.22em;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav-cta {
  margin-top: 10px;
  justify-content: center;
  color: #0d120d;
  background: var(--earth-soft);
  box-shadow: 0 14px 28px rgba(255, 230, 124, 0.16);
}

.mobile-nav-cta::after {
  content: none;
}

.btn {
  border-radius: 999px;
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--earth-soft);
  color: var(--earth-soft);
  background: rgba(255, 230, 124, 0.08);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.nav-cta:active,
.btn:active {
  transform: translateY(0) scale(0.985);
}

.hero {
  min-height: calc(100vh - 148px);
  padding: 68px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: visible;
}

.hero-copy {
  padding: 1rem 0;
}

.hero-copy .overline {
  transition-delay: 0.05s;
}

.hero-copy h1 {
  transition-delay: 0.14s;
}

.hero-copy .hero-lead {
  transition-delay: 0.24s;
}

.hero-copy .hero-actions {
  transition-delay: 0.34s;
}

.hero-copy .hero-pills {
  transition-delay: 0.44s;
}

.overline,
.eyebrow,
.strip-label,
.protocol-number,
.coverage-tag,
.plan-tier,
.panel-label,
.form-intro {
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.overline,
.eyebrow,
.strip-label,
.protocol-number,
.coverage-tag,
.plan-tier,
.panel-label {
  color: var(--signal);
}

.hero h1,
.section h2,
.advantage-card h3,
.plan-card h3,
.coverage-card h3 {
  font-family: var(--display);
  letter-spacing: 0.02em;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(3.25rem, 6.1vw, 5.9rem);
  line-height: 0.88;
  margin: 1rem 0 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  display: block;
  color: var(--earth-soft);
}

.hero-lead,
.section-intro p:last-child,
.protocol-card p,
.coverage-card p,
.aside-card p,
.advantage-card p,
.plan-card p,
.reserve-copy > p,
.footer-note {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2rem;
}

.pill {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pill:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 230, 124, 0.28);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.pill-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.42rem;
}

.pill-value {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text);
}

.hero-stage {
  position: relative;
  animation: heroStageFloat 8s ease-in-out infinite;
}

.stage-shell {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stage-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 230, 124, 0.08);
  border-radius: 10px;
  pointer-events: none;
}

.stage-shell::after {
  content: none;
}

.stage-top,
.stage-footer,
.signal-board {
  position: relative;
  z-index: 1;
}

.stage-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

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

.stamp-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.65rem;
  color: var(--night);
  background: var(--earth-soft);
}

.brand-stamp strong,
.signal-stat strong,
.footer-brand {
  font-family: var(--display);
}

.brand-stamp strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-stamp span:last-child,
.stage-chip,
.signal-stat span,
.signal-tags span,
.footer-card p,
.reserve-card p,
.aside-card li {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--muted);
}

.stage-chip {
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 230, 124, 0.08);
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: signalGlow 2.8s ease-in-out infinite;
}

.signal-board {
  margin: 26px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.signal-radar,
.signal-panel,
.footer-card,
.protocol-card,
.coverage-card,
.aside-card,
.advantage-card,
.plan-card,
.reserve-card,
.form-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(10px);
}

.signal-radar {
  min-height: 360px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: rgba(41, 95, 45, 0.22);
}

.ring,
.sweep,
.ping {
  position: absolute;
  border-radius: 50%;
}

.ring {
  border: 1px solid rgba(255, 255, 255, 0.16);
  inset: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4.6s ease-in-out infinite;
}

.ring-1 {
  width: 120px;
  height: 120px;
}

.ring-2 {
  width: 220px;
  height: 220px;
  animation-delay: 0.6s;
}

.ring-3 {
  width: 320px;
  height: 320px;
  animation-delay: 1.2s;
}

.ping {
  width: 10px;
  height: 10px;
  background: var(--earth-soft);
  box-shadow: 0 0 0 10px rgba(255, 230, 124, 0.12);
}

.ping-a {
  top: 34%;
  left: 61%;
  animation: pingPulse 2.8s ease-in-out infinite;
}

.ping-b {
  top: 64%;
  left: 36%;
  animation: pingPulse 2.8s ease-in-out infinite 1s;
}

.sweep {
  width: 360px;
  height: 360px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 18deg, rgba(255, 230, 124, 0.28), rgba(255, 230, 124, 0) 34%);
  filter: blur(1px);
  animation: radarSpin 8s linear infinite;
}

.signal-panel {
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: panelLift 7.5s ease-in-out infinite;
}

.signal-stat {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-stat:first-of-type {
  border-top: none;
}

.signal-stat strong {
  display: block;
  font-size: 3rem;
  line-height: 0.9;
  color: var(--earth-soft);
  text-shadow: none;
}

.signal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.signal-tags span {
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.signal-tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 230, 124, 0.24);
  background: rgba(255, 230, 124, 0.08);
}

.stage-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.footer-card,
.reserve-card {
  border-radius: 12px;
  padding: 18px 20px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.footer-card:hover,
.reserve-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 230, 124, 0.2);
}

.footer-card.accent,
.reserve-card.accent,
.plan-card.feature,
.aside-card.strong {
  background: var(--panel-strong);
  border-color: rgba(255, 230, 124, 0.24);
}

.command-strip {
  margin-top: 12px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(41, 95, 45, 0.16);
  backdrop-filter: blur(14px);
}

.command-strip > div {
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.command-strip > div:hover {
  transform: translateY(-2px);
}

.command-strip p {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
}

.section {
  padding: 106px 0 0;
}

.section-intro {
  max-width: 780px;
}

.section-intro h2 {
  font-size: clamp(2.45rem, 4.4vw, 3.9rem);
  line-height: 0.92;
  margin: 0.8rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.protocol-grid,
.advantage-grid,
.plans-grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.protocol-card,
.advantage-card,
.plan-card {
  border-radius: 12px;
  padding: 24px;
  min-height: 240px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.protocol-number {
  display: inline-block;
  margin-bottom: 1rem;
}

.protocol-card h3,
.advantage-card h3,
.plan-card h3,
.coverage-card h3 {
  font-size: 1.62rem;
  line-height: 0.94;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.coverage-layout {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.coverage-card,
.aside-card {
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.protocol-card:hover,
.advantage-card:hover,
.plan-card:hover,
.coverage-card:hover,
.aside-card:hover,
.form-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 230, 124, 0.2);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
}

.coverage-card {
  min-height: 250px;
}

.coverage-aside {
  display: grid;
  gap: 18px;
}

.aside-card ul {
  margin-top: 1rem;
  padding-left: 1.1rem;
}

.aside-card li + li {
  margin-top: 0.72rem;
}

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

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

.plan-tier {
  display: inline-flex;
  margin-bottom: 1rem;
}

.plan-card strong {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 1.05rem;
  color: var(--sage-bright);
}

.reserve {
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  gap: 24px;
  align-items: start;
}

.reserve-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reserve-form {
  position: sticky;
  top: 116px;
}

.form-card {
  border-radius: 12px;
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  position: relative;
  overflow: hidden;
  background: var(--panel);
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 230, 124, 0.08);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  pointer-events: none;
}

.form-head,
.form-row,
.form-note {
  position: relative;
  z-index: 1;
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.form-intro {
  color: var(--sage-bright);
  font-size: 1.1rem;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth-soft);
  border: 1px solid rgba(255, 230, 124, 0.26);
  background: rgba(255, 230, 124, 0.08);
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.form-row label {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.field-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 230, 124, 0.22);
  background: rgba(255, 230, 124, 0.08);
  color: var(--earth-soft);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.form-row input,
.form-row select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 0;
  min-height: 56px;
  padding: 0 16px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row select {
  appearance: none;
  font-family: var(--display);
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row input::placeholder {
  color: rgba(182, 173, 155, 0.72);
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: rgba(255, 230, 124, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 230, 124, 0.14), 0 0 0 3px rgba(255, 230, 124, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  min-height: 58px;
  font-family: var(--display);
  font-size: 1.06rem;
  letter-spacing: 0.16em;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer {
  padding: 0 0 52px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.footer-brand {
  font-size: 1.98rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--signal);
}

.footer-note {
  max-width: 760px;
  margin-top: 0.9rem;
}

.footer-link {
  display: inline-flex;
}

.footer-mark {
  width: 132px;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a:focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.mobile-nav a:focus-visible,
.btn:focus-visible {
  outline: 1px solid rgba(255, 230, 124, 0.92);
  outline-offset: 4px;
}

@keyframes radarSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes textureDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, 8px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroStageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes stageScan {
  from {
    transform: translateX(0);
  }
  50% {
    transform: translateX(12px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.46;
    filter: none;
  }
  50% {
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(255, 230, 124, 0.08));
  }
}

@keyframes signalGlow {
  0%,
  100% {
    box-shadow: inset 0 0 0 0 rgba(255, 230, 124, 0.08);
    border-color: var(--line-strong);
  }
  50% {
    box-shadow: inset 0 0 18px rgba(255, 230, 124, 0.08);
    border-color: rgba(255, 230, 124, 0.24);
  }
}

@keyframes panelLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes pingPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 230, 124, 0.2);
    transform: scale(1);
  }
  60% {
    box-shadow: 0 0 0 16px rgba(255, 230, 124, 0);
    transform: scale(1.18);
  }
}

@media (max-width: 1100px) {
  .site-nav {
    padding: 12px;
  }

  .site-nav,
  .sample-bar,
  .hero,
  .command-strip,
  .section,
  .site-footer {
    width: min(100%, calc(100% - 36px));
  }

  .nav-links {
    margin: 0 10px;
  }

  .hero,
  .reserve {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    gap: 2.2rem;
  }

  .hero-stage,
  .signal-panel {
    animation: none;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-pills,
  .protocol-grid,
  .coverage-grid,
  .advantage-grid,
  .plans-grid,
  .reserve-grid,
  .command-strip,
  .stage-footer {
    grid-template-columns: 1fr 1fr;
  }

  .signal-board,
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .stage-top {
    align-items: flex-start;
  }

  .reserve-form {
    position: static;
  }
}

@media (max-width: 760px) {
  .sample-bar,
  .site-nav,
  .hero,
  .command-strip,
  .section,
  .site-footer {
    width: min(100%, calc(100% - 28px));
  }

  .sample-bar {
    margin-top: 14px;
    padding: 0.85rem 0.9rem;
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.5;
    clip-path: none;
  }

  .site-nav {
    margin-top: 14px;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    top: 10px;
    clip-path: none;
  }

  .site-nav::before {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .mobile-nav {
    display: block;
    clip-path: none;
  }

  .nav-logo {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    clip-path: none;
  }

  .nav-logo,
  .nav-toggle {
    min-height: 58px;
  }

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

  .hero {
    padding: 34px 0 22px;
    gap: 1.6rem;
  }

  .pill:hover,
  .protocol-card:hover,
  .advantage-card:hover,
  .plan-card:hover,
  .coverage-card:hover,
  .aside-card:hover,
  .form-card:hover,
  .footer-card:hover,
  .reserve-card:hover,
  .command-strip > div:hover {
    transform: none;
  }

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

  .overline,
  .eyebrow,
  .strip-label,
  .protocol-number,
  .coverage-tag,
  .plan-tier,
  .panel-label,
  .form-intro {
    font-size: 0.84rem;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-lead {
    max-width: 34rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

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

  .hero-actions,
  .hero-pills,
  .protocol-grid,
  .coverage-grid,
  .advantage-grid,
  .plans-grid,
  .reserve-grid,
  .command-strip,
  .stage-footer {
    grid-template-columns: 1fr;
  }

  .signal-board {
    margin: 20px 0;
  }

  .stage-shell {
    padding: 20px;
  }

  .stage-top {
    flex-direction: column;
    gap: 0.9rem;
  }

  .brand-stamp {
    width: 100%;
  }

  .stage-chip {
    align-self: flex-start;
  }

  .signal-radar {
    min-height: 240px;
  }

  .ring-1 {
    width: 82px;
    height: 82px;
  }

  .ring-2 {
    width: 150px;
    height: 150px;
  }

  .ring-3,
  .sweep {
    width: 214px;
    height: 214px;
  }

  .signal-panel {
    padding: 18px;
  }

  .signal-stat {
    padding: 14px 0;
  }

  .signal-stat strong {
    font-size: 2.4rem;
  }

  .signal-tags {
    gap: 8px;
  }

  .signal-tags span {
    padding: 0.5rem 0.72rem;
  }

  .section {
    padding-top: 64px;
  }

  .section-intro h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .section-intro p:last-child,
  .protocol-card p,
  .coverage-card p,
  .aside-card p,
  .advantage-card p,
  .plan-card p,
  .reserve-copy > p,
  .footer-note {
    font-size: 0.94rem;
  }

  .protocol-card,
  .coverage-card,
  .advantage-card,
  .plan-card,
  .aside-card {
    min-height: auto;
    padding: 18px;
  }

  .command-strip {
    padding: 16px 18px;
    gap: 14px;
  }

  .footer-card,
  .reserve-card {
    padding: 16px 18px;
  }

  .reserve {
    padding-bottom: 60px;
    gap: 18px;
  }

  .reserve-grid {
    margin-top: 1.3rem;
    gap: 12px;
  }

  .form-card {
    padding: 18px;
  }

  .form-badge {
    min-height: 30px;
    font-size: 0.78rem;
  }

  .field-code {
    min-width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }

  .form-row {
    margin-top: 0.85rem;
  }

  .form-row input,
  .form-row select {
    min-height: 52px;
    padding: 0 14px;
  }

  .form-submit {
    min-height: 54px;
    font-size: 0.96rem;
  }

  .footer-brand {
    font-size: 1.72rem;
  }

  .site-footer {
    padding-bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .sample-bar,
  .site-nav,
  .hero,
  .command-strip,
  .section,
  .site-footer {
    width: min(100%, calc(100% - 22px));
  }

  .sample-bar {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .sample-bar-mark {
    width: 98px;
  }

  .site-nav {
    padding: 10px;
  }

  .nav-logo {
    padding: 12px 14px;
  }

  .nav-toggle {
    min-width: 122px;
    padding: 0 14px;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .logo-copy strong {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .logo-copy span {
    font-size: 0.52rem;
    letter-spacing: 0.22em;
  }

  .nav-toggle,
  .mobile-nav a {
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 28px;
  }

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

  .hero-lead {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .pill {
    padding: 14px 14px;
  }

  .pill-label {
    font-size: 0.62rem;
  }

  .pill-value {
    font-size: 0.82rem;
  }

  .stage-shell {
    padding: 16px;
  }

  .stamp-mark {
    width: 46px;
    height: 46px;
    font-size: 1.45rem;
  }

  .brand-stamp strong {
    font-size: 1rem;
  }

  .stage-chip {
    width: 100%;
    justify-content: center;
  }

  .signal-radar {
    min-height: 210px;
  }

  .ring-1 {
    width: 72px;
    height: 72px;
  }

  .ring-2 {
    width: 128px;
    height: 128px;
  }

  .ring-3,
  .sweep {
    width: 184px;
    height: 184px;
  }

  .signal-stat strong {
    font-size: 2rem;
  }

  .section {
    padding-top: 56px;
  }

  .section-intro h2 {
    font-size: clamp(1.95rem, 11vw, 2.7rem);
  }

  .protocol-card h3,
  .advantage-card h3,
  .plan-card h3,
  .coverage-card h3 {
    font-size: 1.36rem;
  }

  .form-card {
    padding: 16px;
  }

  .form-row label {
    font-size: 0.82rem;
  }

  .form-note {
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .footer-brand {
    font-size: 1.46rem;
  }
}

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