:root {
  --bg-base: #050607;
  --bg-elevated: #0E1013;
  --bg-card: #14171C;
  --bg-card-hover: #1A1E24;
  --bg-overlay: rgba(5, 6, 7, 0.85);
  --text-primary: #F5F1E8;
  --text-secondary: #C5C7CB;
  --text-muted: #8A8E94;
  --text-dim: #5A5E64;
  --gold: #F5C542;
  --gold-bright: #FFD45E;
  --gold-deep: #C9A030;
  --gold-glow: rgba(245, 197, 66, 0.18);
  --gold-faint: rgba(245, 197, 66, 0.06);
  --border-default: rgba(245, 241, 232, 0.08);
  --border-strong: rgba(245, 241, 232, 0.14);
  --border-gold: rgba(245, 197, 66, 0.22);
  --border-gold-strong: rgba(245, 197, 66, 0.45);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 32px rgba(245, 197, 66, 0.15);
  --shadow-gold-lg: 0 0 64px rgba(245, 197, 66, 0.25);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  color-scheme: dark;
}

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

html {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 7%, rgba(245, 197, 66, 0.075), transparent 28rem),
    var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 80px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.visually-hidden,
.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;
}

.container {
  width: min(1240px, 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.narrow {
  max-width: 760px;
}

.centered {
  text-align: center;
  margin-inline: auto;
}

.display {
  margin: 0;
  font-size: 2.75rem;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-title {
  max-width: 14.5ch;
}

.hero-title-line {
  display: block;
}

.hero-title-support {
  font-size: .66em;
  line-height: 1.04;
}

.headline-1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.headline-2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.55;
  font-weight: 400;
}

.body {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

.body-sm {
  margin: 0;
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.55;
  font-weight: 500;
}

.eyebrow {
  display: block;
  max-width: 100%;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .75rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.centered-eyebrow {
  text-align: center;
}

.eyebrow-dash {
  display: inline-block;
  width: 24px;
  height: 1px;
  flex: 0 0 24px;
  margin-right: 12px;
  background: var(--gold);
  vertical-align: middle;
}

.numeral {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.section {
  padding-block: clamp(80px, 10vw, 144px);
  background: var(--bg-base);
}

.section-elevated {
  background: var(--bg-elevated);
}

.section-heading {
  max-width: 780px;
  margin-bottom: var(--space-7);
}

.section-heading .headline-1 {
  margin-bottom: var(--space-4);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: transparent;
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  background: var(--bg-overlay);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-default);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-mark {
  flex: 0 0 auto;
}

.logo-text {
  font-size: .9375rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
}

.logo-text-accent,
.accent {
  color: var(--gold);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
  color: var(--text-secondary);
  font-size: .875rem;
  font-weight: 600;
}

.desktop-nav a,
.footer-col a {
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-col a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: .9375rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(.2, .8, .2, 1), background 200ms cubic-bezier(.2, .8, .2, 1), border-color 200ms cubic-bezier(.2, .8, .2, 1), color 200ms cubic-bezier(.2, .8, .2, 1), box-shadow 200ms cubic-bezier(.2, .8, .2, 1);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-base);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--gold-bright);
  box-shadow: var(--shadow-gold);
}

.btn-primary:active {
  transform: translateY(0);
  background: var(--gold-deep);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border-gold-strong);
  color: var(--text-primary);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-faint);
}

.btn-small {
  display: none;
  min-height: 40px;
  padding: 12px 20px;
}

.btn-large {
  min-height: 56px;
}

.btn-pulse {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.menu-toggle,
.menu-close {
  appearance: none;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: var(--gold-faint);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: var(--gold);
  border-radius: var(--radius-full);
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.menu-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 7, .68);
  opacity: 0;
  transition: opacity 250ms ease;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu.is-open::before {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 96px 24px 28px;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border-default);
  transform: translateX(100%);
  transition: transform 250ms ease-out;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-nav {
  display: grid;
}

.mobile-nav a {
  min-height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-default);
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu-cta {
  margin-top: auto;
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  min-width: 0;
}

.hero-copy {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.hero-copy .eyebrow {
  margin: 0;
}

.hero-copy .lead {
  max-width: 720px;
}

.hero-ctas,
.final-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-microline {
  color: var(--text-muted);
}

.counter {
  color: var(--gold);
  font-weight: 700;
}

.dot,
.gold-separator,
.contact-line span {
  color: var(--gold);
  padding-inline: 12px;
}

.desktop-break {
  display: none;
}

.hero-visual-wrap {
  position: relative;
  min-width: 0;
}

.hero-glow {
  position: absolute;
  inset: 11% 6%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 66, .28), transparent 60%);
  filter: blur(80px);
  opacity: .3;
}

.hero-radar {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.radar-rings circle {
  fill: none;
  stroke: rgba(245, 197, 66, .2);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
}

.radar-rings .radar-core {
  fill: rgba(245, 197, 66, .08);
}

.pulse-ring {
  stroke: var(--gold);
  stroke-width: 2;
  animation: radarPulse 4s ease-out infinite;
}

.pulse-two {
  animation-delay: 2s;
}

.marker circle {
  fill: rgba(138, 142, 148, .5);
  stroke: var(--border-default);
  stroke-width: 1;
}

.marker text {
  fill: var(--text-dim);
  font-size: 10px;
  font-weight: 600;
}

.marker-you text {
  fill: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.marker-you circle {
  fill: var(--gold);
}

.radar-card rect {
  fill: var(--bg-card);
  stroke: var(--border-gold);
}

.radar-card .card-eyebrow {
  fill: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.radar-card .card-number {
  fill: var(--gold);
  font-size: 38px;
  font-weight: 900;
}

.radar-card .card-small {
  fill: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
}

.trust-strip {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border-default);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-block: 32px;
}

.trust-item {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  color: var(--text-secondary);
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
}

.trust-item:nth-child(odd) {
  border-right: 1px solid var(--gold-faint);
}

.trust-item:nth-child(-n + 2) {
  border-bottom: 1px solid var(--gold-faint);
}

.trust-item svg,
.icon-circle svg,
.reason-card svg,
.checklist-card svg,
.footer-icon-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.photo-grid {
  display: grid;
  gap: 16px;
}

.photo-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: transform 250ms cubic-bezier(.2, .8, .2, 1), border-color 250ms cubic-bezier(.2, .8, .2, 1), box-shadow 250ms cubic-bezier(.2, .8, .2, 1);
}

.photo-card picture,
.photo-card img {
  width: 100%;
  height: 100%;
}

.photo-card img {
  object-fit: cover;
  filter: brightness(.85) contrast(1.05) saturate(.92);
  transition: transform 300ms ease-out;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 6, 7, .95) 0%, rgba(5, 6, 7, .5) 50%, rgba(5, 6, 7, .1) 100%);
}

.photo-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-gold-strong);
  box-shadow: var(--shadow-md);
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.photo-overlay h3 {
  margin: 0 0 8px;
  color: var(--text-primary);
  font-size: 1.25rem;
  line-height: 1.2;
}

.photo-overlay p {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
}

.marquee {
  overflow: hidden;
  margin-top: var(--space-7);
  padding-block: 6px;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marquee 60s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  background: var(--bg-card);
  color: var(--text-secondary);
  white-space: nowrap;
  font-size: .875rem;
  font-weight: 700;
}

.marquee i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.niche-close {
  margin: 28px 0 0;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
}

.problem-section .lead {
  margin-top: 20px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.standard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 250ms cubic-bezier(.2, .8, .2, 1), background 250ms cubic-bezier(.2, .8, .2, 1), border-color 250ms cubic-bezier(.2, .8, .2, 1), box-shadow 250ms cubic-bezier(.2, .8, .2, 1);
}

.standard-card:hover {
  transform: translateY(-2px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.solution-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--gold);
  font: 600 .875rem/1 Inter, sans-serif;
  text-decoration: none;
  letter-spacing: .01em;
  transition: gap 200ms ease-out, color 200ms ease-out;
}

.card-link:hover {
  color: var(--gold-bright);
  gap: 10px;
}

.card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: var(--gold-faint);
}

.icon-circle svg {
  width: 24px;
  height: 24px;
}

.process-grid {
  display: grid;
  gap: 16px;
}

.process-card {
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: transform 250ms cubic-bezier(.2, .8, .2, 1), border-color 250ms cubic-bezier(.2, .8, .2, 1), box-shadow 250ms cubic-bezier(.2, .8, .2, 1);
}

.process-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.process-card picture,
.process-card img {
  display: block;
  width: 100%;
}

.process-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: brightness(.85) contrast(1.05) saturate(.92);
}

.process-card > div {
  padding: 24px;
}

.process-card h3 {
  margin-bottom: 8px;
}

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

.reason-card {
  padding: 28px;
}

.reason-card > svg {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
}

.reason-card h3 {
  margin: 0 0 8px;
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.25;
}

.reason-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.6;
}

.scope-grid {
  display: grid;
  gap: 16px;
}

.checklist-card h3 {
  margin-bottom: 20px;
}

.checklist-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.5;
}

.checklist-card svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  stroke-width: 2.5;
}

.faq-container {
  max-width: 896px;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.15rem;
  line-height: 1.25;
}

.faq-list summary svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 66, .08), transparent 60%);
  filter: blur(18px);
}

.final-cta .container {
  position: relative;
}

.final-ctas {
  justify-content: center;
  margin-top: 30px;
}

.contact-line {
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.6;
}

.site-footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border-default);
}

.footer-grid {
  display: grid;
  gap: 36px;
  padding-block: 80px 48px;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand p {
  margin: 0;
  color: var(--text-secondary);
  max-width: 430px;
}

.footer-brand .dim {
  color: var(--text-muted);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-col h4 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: .75rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .18em;
}

.footer-col a,
.footer-col p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.5;
}

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

.footer-list-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold) !important;
  font-weight: 700;
  transition: gap 200ms ease-out, color 200ms ease-out;
}

.footer-list-more:hover {
  color: var(--gold-bright) !important;
  gap: 10px;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-icon-link svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border-default);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-block: 24px;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.5;
}

.mobile-sticky-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--bg-overlay);
  border-top: 1px solid var(--border-default);
  backdrop-filter: blur(20px);
  transform: translateY(120%);
  transition: transform 200ms ease-out;
}

.mobile-sticky-bar.is-visible {
  transform: translateY(0);
}

.mobile-sticky-bar .btn {
  min-height: 48px;
  padding: 12px 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 350ms ease-out, transform 350ms ease-out;
}

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

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 197, 66, .24); }
  50% { box-shadow: 0 0 0 8px rgba(245, 197, 66, 0); }
}

@keyframes radarPulse {
  from { opacity: .6; transform: scale(1); }
  to { opacity: 0; transform: scale(1.6); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 600px) {
  .display {
    font-size: 3.5rem;
  }

  .headline-1 {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1.125rem;
  }

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

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

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

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .display {
    font-size: 3.9rem;
  }

  .headline-1 {
    font-size: 3rem;
  }

  .headline-2 {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 1.25rem;
  }

  .numeral {
    font-size: 4rem;
  }

  .desktop-nav,
  .btn-small {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, .9fr);
  }

  .hero-visual-wrap {
    transform: scale(1.05);
    transform-origin: center right;
  }

  .desktop-break {
    display: block;
  }

  .trust-grid {
    display: flex;
    justify-content: space-around;
  }

  .trust-item {
    flex: 1;
    border-right: 1px solid var(--gold-faint);
    border-bottom: 0 !important;
  }

  .trust-item:last-child {
    border-right: 0;
  }

  .photo-grid,
  .card-grid.three,
  .six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

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

  .standard-card {
    padding: 32px;
  }

  .process-card > div {
    padding: 24px;
  }

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

  .mobile-sticky-bar {
    display: none;
  }
}

@media (min-width: 1200px) {
  .display {
    font-size: 4rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(500px, 1fr);
  }

  .hero-visual-wrap {
    transform: scale(1.06);
  }

  .headline-1 {
    font-size: 3.25rem;
  }

  .numeral {
    font-size: 4.5rem;
  }
}

@media (max-width: 430px) {
  .contact-line span {
    display: block;
    color: transparent;
    height: 2px;
  }
}

@media (max-width: 599px) {
  .hero-ctas,
  .final-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn,
  .final-ctas .btn {
    width: 100%;
  }

  .display {
    max-width: 11.5ch;
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-copy,
  .hero-visual-wrap {
    max-width: 342px;
  }

  .eyebrow {
    letter-spacing: .14em;
  }

  .hero-copy .lead {
    font-size: 1.02rem;
  }

  .trust-microline {
    font-size: .82rem;
  }
}

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