/* =========================================================
   Рекрутер — Design System
   Direction: cinematic editorial × nocturnal steel × precision
   ========================================================= */

:root {
  --void: #07090c;
  --ink: #0d1117;
  --bone: #ece8e1;
  --bone-soft: #d8d2c8;
  --mist: #9aa3ad;
  --line: rgba(236, 232, 225, 0.12);
  --line-dark: rgba(13, 17, 23, 0.1);
  --copper: #c17a45;
  --copper-deep: #9a5a2e;
  --steel: #6d7f8f;
  --surface: rgba(236, 232, 225, 0.03);
  --surface-solid: #12161c;
  --ok: #3d8f7a;

  --font: "Golos Text", "Segoe UI", sans-serif;
  --display: "Unbounded", "Golos Text", sans-serif;

  --shell: 1240px;
  --header-h: 76px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --fast: 180ms;
  --base: 420ms;
  --slow: 900ms;

  --radius: 2px;
  --radius-md: 10px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--void);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--bone);
  background: var(--void);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-loading {
  overflow: hidden;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button,
body.has-cursor input,
body.has-cursor select,
body.has-cursor textarea,
body.has-cursor summary,
body.has-cursor label {
  cursor: none;
}

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

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

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

::selection {
  background: rgba(193, 122, 69, 0.35);
  color: #fff;
}

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

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

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

/* ----- Details ----- */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0d11;
}
::-webkit-scrollbar-thumb {
  background: #2a313a;
  border: 2px solid #0a0d11;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--copper);
}

/* ----- Atmosphere ----- */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 90;
}
.scroll-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--copper), var(--bone));
  transform-origin: left center;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(236, 232, 225, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  transform: translate3d(-100px, -100px, 0);
  transition: width var(--fast) var(--ease-out), height var(--fast) var(--ease-out), background var(--fast) ease, border-color var(--fast) ease;
  mix-blend-mode: difference;
  display: none;
}
.cursor span {
  position: absolute;
  inset: 50%;
  width: 3px;
  height: 3px;
  margin: -1.5px;
  border-radius: 50%;
  background: #fff;
}
.cursor.is-hover {
  width: 42px;
  height: 42px;
  background: rgba(236, 232, 225, 0.08);
  border-color: rgba(236, 232, 225, 0.9);
}
body.has-cursor .cursor {
  display: block;
}

/* ----- Loader ----- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--void);
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
  width: min(280px, 70vw);
}
.loader-brand {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  animation: brandPulse 1.4s var(--ease-soft) infinite alternate;
}
.loader-bar {
  height: 1px;
  background: rgba(236, 232, 225, 0.15);
  overflow: hidden;
}
.loader-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--bone);
  transition: width 0.35s var(--ease-out);
}

@keyframes brandPulse {
  from { opacity: 0.45; letter-spacing: 0.14em; }
  to { opacity: 1; letter-spacing: 0.22em; }
}

/* ----- Header ----- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  transition: transform 0.45s var(--ease-out), background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 9, 12, 0.72);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.site-header.is-hidden {
  transform: translateY(-110%);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
}
.logo-index {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--mist);
}
.logo-text {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
}

.nav-desktop {
  display: flex;
  gap: 1.5rem;
}
.nav-desktop a {
  font-size: 0.86rem;
  color: rgba(236, 232, 225, 0.68);
  transition: color var(--fast) ease;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--base) var(--ease-out);
}
.nav-desktop a:hover {
  color: var(--bone);
}
.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  display: none;
  place-items: center;
  gap: 6px;
  flex-direction: column;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--bone);
  transition: transform var(--base) var(--ease-out), opacity var(--fast) ease;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ----- Mobile menu ----- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: end stretch;
  padding: calc(var(--header-h) + 1rem) 1.25rem 2rem;
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 12, 0.94);
  backdrop-filter: blur(18px);
}
.mobile-nav {
  position: relative;
  display: grid;
  gap: 0.2rem;
}
.mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.5rem, 7vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mobile-menu.is-open .mobile-nav a {
  opacity: 1;
  transform: none;
}
.mobile-nav a span {
  font-size: 0.75rem;
  color: var(--copper);
  letter-spacing: 0.1em;
}
.mobile-cta {
  color: var(--copper) !important;
  border-bottom: 0 !important;
  margin-top: 0.6rem;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform var(--fast) var(--ease-out), background var(--base) ease, border-color var(--base) ease, color var(--base) ease;
  background: transparent;
}
.btn-arrow {
  width: 14px;
  height: 14px;
  position: relative;
  display: inline-block;
  transition: transform var(--base) var(--ease-out);
}
.btn-arrow::before {
  content: "";
  position: absolute;
  inset: 6px 0 auto;
  height: 1px;
  width: 14px;
  background: currentColor;
}
.btn-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}
.btn:hover span {
  transform: translateX(2px);
}
.btn span {
  display: inline-block;
  transition: transform var(--base) var(--ease-out);
}

.btn-primary {
  background: var(--bone);
  color: var(--ink);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(236, 232, 225, 0.28);
  color: var(--bone);
}
.btn-ghost:hover {
  border-color: rgba(236, 232, 225, 0.7);
  background: rgba(236, 232, 225, 0.04);
}

.btn-nav {
  min-height: 2.5rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(236, 232, 225, 0.22);
  color: var(--bone);
  font-size: 0.82rem;
}
.btn-nav:hover {
  border-color: var(--copper);
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* ----- Typography ----- */
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.65rem, 4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 18ch;
  text-wrap: balance;
}

.display-wide {
  max-width: min(100%, 28ch);
}

.display-line {
  display: block;
}

.display-line-soft {
  color: rgba(236, 232, 225, 0.72);
  font-weight: 600;
  margin-top: 0.15em;
}

.lead {
  margin: 1.1rem 0 0;
  max-width: 36rem;
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--copper);
  border-bottom: 1px solid transparent;
  transition: border-color var(--fast) ease, color var(--fast) ease;
}

.text-link::after {
  content: "→";
  transition: transform var(--base) var(--ease-out);
}

.text-link:hover {
  color: #d4925c;
  border-color: rgba(193, 122, 69, 0.45);
}

.text-link:hover::after {
  transform: translateX(3px);
}

.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.section-intro {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-intro.on-dark .lead,
.process .lead {
  color: rgba(236, 232, 225, 0.68);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 1rem) 0 2.5rem;
  overflow: hidden;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-parallax {
  position: absolute;
  inset: -8%;
  will-change: transform;
}
.hero-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 18%;
  filter: saturate(0.9) contrast(1.08) brightness(0.92);
  transform: scale(1.06);
  animation: heroBreath 18s var(--ease-soft) infinite alternate;
}
.hero-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.45) 0%, rgba(7, 9, 12, 0.28) 32%, rgba(7, 9, 12, 0.78) 68%, #07090c 100%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.82) 0%, rgba(7, 9, 12, 0.45) 42%, rgba(7, 9, 12, 0.28) 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}
.hero-orb-a {
  width: 42vw;
  height: 42vw;
  left: -10%;
  bottom: 10%;
  background: rgba(193, 122, 69, 0.28);
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.hero-orb-b {
  width: 28vw;
  height: 28vw;
  right: 5%;
  top: 18%;
  background: rgba(109, 127, 143, 0.25);
  animation: orbFloat 18s ease-in-out infinite alternate-reverse;
}
.hero-frame {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(236, 232, 225, 0.08);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--shell));
}

.hero-kicker {
  margin: 0 0 1.5rem;
  overflow: hidden;
}
.hero-kicker span {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 232, 225, 0.7);
}

.hero-brand {
  margin: 0;
  font-size: clamp(2.8rem, 11vw, 8.5rem);
  line-height: 0.92;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero-brand-line {
  display: block;
  background: linear-gradient(180deg, #fff 20%, rgba(236, 232, 225, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-bottom {
  margin-top: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: end;
}

.hero-headline {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.hero-lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(236, 232, 225, 0.72);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-metrics {
  margin: 0;
  display: grid;
  gap: 1rem;
  border-left: 1px solid rgba(236, 232, 225, 0.16);
  padding-left: 1.5rem;
}
.hero-metrics div {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(236, 232, 225, 0.1);
}
.hero-metrics div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.hero-metrics dt {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}
.hero-metrics dd {
  margin: 0.25rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-metrics p {
  margin: 0.15rem 0 0;
  color: rgba(236, 232, 225, 0.55);
  font-size: 0.86rem;
}

.hero-metrics .metric-hot {
  position: relative;
  padding: 0.85rem 0.95rem 0.95rem;
  margin: 0 -0.35rem;
  border: 1px solid rgba(255, 176, 92, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 153, 51, 0.22), rgba(193, 122, 69, 0.08) 55%, transparent);
  box-shadow: 0 0 28px rgba(255, 153, 51, 0.18);
}

.hero-metrics .metric-hot dt {
  color: #ffb45c;
}

.hero-metrics .metric-hot dd {
  color: #ffc078;
  text-shadow: 0 0 24px rgba(255, 168, 70, 0.45);
}

.hero-metrics .metric-hot p {
  color: rgba(255, 196, 130, 0.8);
}

.hero-scroll {
  position: absolute;
  right: max(1.25rem, calc((100vw - var(--shell)) / 2));
  bottom: 1.5rem;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 232, 225, 0.55);
}
.hero-scroll i {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--copper), transparent);
  animation: scrollLine 1.8s var(--ease-soft) infinite;
}

[data-hero-reveal] {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), filter 1s var(--ease-out), transform 1s var(--ease-out);
}
body.is-ready [data-hero-reveal] {
  opacity: 1;
  filter: blur(0);
  transform: none;
}
body.is-ready [data-hero-reveal][data-delay="1"] { transition-delay: 0.08s; }
body.is-ready [data-hero-reveal][data-delay="2"] { transition-delay: 0.18s; }
body.is-ready [data-hero-reveal][data-delay="3"] { transition-delay: 0.28s; }
body.is-ready [data-hero-reveal][data-delay="4"] { transition-delay: 0.38s; }
body.is-ready [data-hero-reveal][data-delay="5"] { transition-delay: 0.48s; }

@keyframes heroBreath {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.2%, -0.8%, 0); }
}
@keyframes orbFloat {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(4%, -6%, 0); }
}
@keyframes scrollLine {
  0% { transform: scaleY(0.4); opacity: 0.3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.4); opacity: 0.3; transform-origin: bottom; }
}

/* ----- Marquee ----- */
.signal {
  border-block: 1px solid var(--line);
  background: #0b0e13;
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(236, 232, 225, 0.72);
}
.marquee-track span[aria-hidden="true"] {
  color: var(--copper);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Audience ----- */
.audience-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.audience-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  transition: background var(--base) ease, padding-left var(--base) var(--ease-out);
}
.audience-item:last-child {
  border-bottom: 1px solid var(--line);
}
.audience-item:hover {
  padding-left: 0.6rem;
  background: linear-gradient(90deg, rgba(193, 122, 69, 0.08), transparent 55%);
}
.audience-num {
  font-family: var(--display);
  color: var(--copper);
  font-size: 0.95rem;
  padding-top: 0.25rem;
}
.audience-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.audience-item p {
  margin: 0;
  max-width: 46rem;
  color: var(--mist);
}

/* ----- Why ----- */
.why {
  background:
    radial-gradient(700px 400px at 85% 20%, rgba(193, 122, 69, 0.08), transparent 60%),
    #0a0d12;
}

.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.why-pillar {
  background: #0d1117;
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.why-pillar-kicker {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.why-pillar h3 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 18ch;
}

.why-pillar p {
  margin: 0;
  color: var(--mist);
  max-width: 38rem;
  flex: 1;
}

.why-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.why-matrix article {
  padding: 1.35rem 1.1rem 1.45rem 0;
  border-top: 1px solid var(--line);
}

.why-matrix article:nth-child(4n + 1),
.why-matrix article:nth-child(4n + 2),
.why-matrix article:nth-child(4n + 3) {
  padding-right: 1.25rem;
  border-right: 1px solid transparent;
}

.why-matrix article:not(:nth-child(4n)) {
  border-right: 1px solid var(--line);
  padding-right: 1.25rem;
  margin-right: 0;
}

.why-matrix span {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--copper);
}

.why-matrix h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 600;
}

.why-matrix p {
  margin: 0;
  color: var(--mist);
  font-size: 0.9rem;
  line-height: 1.45;
}

.why-media {
  margin-top: 0.5rem;
}

.check-list {
  list-style: none;
  margin: 1.6rem 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--mist);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--copper);
}

.media-frame {
  margin: 0 0 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #10151c;
}
.media-zoom {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.media-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.media-frame:hover img {
  transform: scale(1.05);
}
.media-frame figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  border-top: 1px solid var(--line);
}

.feature-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feature-stack article {
  padding: 1.25rem 1rem 1.35rem 0;
  border-top: 1px solid var(--line);
}
.feature-stack h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 600;
}
.feature-stack p {
  margin: 0;
  color: var(--mist);
  font-size: 0.92rem;
}

/* ----- Rates ----- */
.rates {
  background: var(--bone);
  color: var(--ink);
}
.rates .eyebrow { color: var(--copper-deep); }
.rates .lead,
.rates .table-note { color: #5a616a; }
.rates-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.rates-conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  margin-bottom: 1.5rem;
}

.rates-cond {
  background: #fff;
  padding: 1.1rem 1.15rem 1.2rem;
}

.rates-cond span {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
}

.rates-cond p {
  margin: 0;
  color: #5a616a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.rates-cond.is-full span {
  color: #2f6b4f;
}

.rates-cond.is-minus span {
  color: var(--copper-deep);
}

.rates-cond.is-minus {
  background: #fbf6f1;
}
.rates-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}
.search-field input {
  min-width: min(100%, 280px);
  min-height: 3rem;
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}
.search-field input:focus {
  outline: 2px solid rgba(193, 122, 69, 0.35);
  border-color: var(--copper);
}

.rates-board {
  border: 1px solid var(--line-dark);
  background: #fff;
  overflow: hidden;
}
.rates-legend,
.rate-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
}
.rates-legend {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a828c;
  background: #f3f1ec;
  border-bottom: 1px solid var(--line-dark);
}
.rate-row {
  border-bottom: 1px solid var(--line-dark);
  transition: background var(--base) ease, transform var(--base) var(--ease-out);
}
.rate-row:last-child { border-bottom: 0; }
.rate-row:hover {
  background: #f7f4ef;
}
.rate-row.is-featured {
  background: linear-gradient(90deg, rgba(193, 122, 69, 0.1), transparent 60%);
}
.rate-row.is-hidden { display: none; }
.rate-city strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
}
.rate-city em {
  display: inline-block;
  margin-left: 0.55rem;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-deep);
  border: 1px solid rgba(154, 90, 46, 0.35);
  padding: 0.15rem 0.4rem;
}
.rate-label {
  display: none;
}
.rate-pay,
.rate-edv {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.rate-pay .rate-value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.rate-pay.is-soft .rate-value {
  font-weight: 600;
  color: #6b7380;
  font-size: 0.95rem;
}
.rate-edv .rate-value {
  color: #4d5560;
  font-size: 0.98rem;
}

.pay-timeline {
  margin-top: 2rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line-dark);
}
.pay-timeline h3 {
  margin: 0 0 1.2rem;
  font-family: var(--display);
  font-size: 1.15rem;
}
.pay-timeline ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pay-timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding-top: 0.9rem;
  border-top: 2px solid var(--ink);
}
.pay-timeline span {
  font-family: var(--display);
  color: var(--copper-deep);
  font-size: 0.85rem;
}
.pay-timeline strong {
  display: block;
  margin-bottom: 0.25rem;
}
.pay-timeline p {
  margin: 0;
  color: #5a616a;
  font-size: 0.92rem;
}

/* ----- Referral ----- */
.referral {
  background:
    radial-gradient(640px 360px at 12% 0%, rgba(193, 122, 69, 0.14), transparent 55%),
    radial-gradient(500px 280px at 90% 80%, rgba(109, 127, 143, 0.1), transparent 60%),
    #090c10;
}

.ref-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
}

.ref-spotlight {
  border: 1px solid var(--line);
  background:
    linear-gradient(165deg, rgba(193, 122, 69, 0.16), transparent 42%),
    #11161d;
  padding: clamp(1.5rem, 3.5vw, 2.3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.ref-spotlight::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(193, 122, 69, 0.18);
  filter: blur(40px);
  pointer-events: none;
}

.ref-spotlight-kicker {
  margin: 0;
  position: relative;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.ref-spotlight-title {
  margin: 0;
  position: relative;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.ref-spotlight-text {
  margin: 0;
  position: relative;
  color: var(--mist);
  max-width: 28rem;
}

.ref-spotlight-stats {
  margin: 0.5rem 0 0.75rem;
  position: relative;
  display: grid;
  gap: 0.65rem;
}

.ref-spotlight-stats div {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.ref-spotlight-stats dt {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bone);
}

.ref-spotlight-stats dd {
  margin: 0;
  color: var(--mist);
  font-size: 0.92rem;
}

.ref-spotlight .btn {
  position: relative;
  margin-top: auto;
  align-self: start;
}

.ref-steps {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0;
}

.ref-steps li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.ref-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.ref-step-num {
  font-family: var(--display);
  color: var(--copper);
  font-size: 0.9rem;
  padding-top: 0.15rem;
}

.ref-steps h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 600;
}

.ref-steps p {
  margin: 0;
  color: var(--mist);
  font-size: 0.95rem;
}

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

.ref-perks li {
  background: rgba(18, 22, 28, 0.85);
  padding: 1.15rem 1rem 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.ref-perks strong {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
}

.ref-perks span {
  color: var(--mist);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ----- Process ----- */
.process {
  min-height: 100svh;
  color: var(--bone);
  overflow: hidden;
}
.process-bg {
  position: absolute;
  inset: 0;
}
.process-bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(0.3) contrast(1.1);
}
.process-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.7), rgba(7, 9, 12, 0.92)),
    radial-gradient(600px 300px at 20% 30%, rgba(193, 122, 69, 0.15), transparent 70%);
}
.process-inner { position: relative; z-index: 1; }

.process-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(236, 232, 225, 0.08);
  border: 1px solid rgba(236, 232, 225, 0.08);
}
.process-rail li {
  background: rgba(7, 9, 12, 0.72);
  padding: 1.4rem 1.15rem 1.6rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: background var(--base) ease, transform var(--base) var(--ease-out);
}
.process-rail li:hover {
  background: rgba(18, 22, 28, 0.95);
  transform: translateY(-4px);
}
.process-rail li:nth-child(7) {
  grid-column: span 2;
}
.process-rail span {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--display);
  color: var(--copper);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.process-rail h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}
.process-rail p {
  margin: 0;
  color: rgba(236, 232, 225, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ----- Directions / Support / FAQ / Contact ----- */
.directions-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.statement {
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(193, 122, 69, 0.12), transparent 50%),
    #10151c;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.statement-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}
.statement-text {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.support {
  background: #0a0d12;
}
.support-editorial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.support-editorial article {
  padding: 1.8rem 1.4rem 1.8rem 0;
  border-top: 1px solid var(--line);
}
.support-editorial article:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}
.support-editorial span {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--display);
  color: var(--copper);
  font-size: 0.85rem;
}
.support-editorial h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.15rem;
}
.support-editorial p {
  margin: 0;
  color: var(--mist);
  max-width: 34rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 2.2rem 1.2rem 0;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 1.45rem;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--copper);
  border-bottom: 1px solid var(--copper);
  transform: rotate(45deg);
  transition: transform var(--base) var(--ease-out);
}
.faq details[open] summary::after {
  transform: rotate(225deg);
  top: 1.55rem;
}
.faq p {
  margin: 0 0 1.2rem;
  color: var(--mist);
  max-width: 54ch;
}

.contact {
  background:
    radial-gradient(800px 420px at 10% 0%, rgba(193, 122, 69, 0.12), transparent 55%),
    #090b0f;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}
.contact-points {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--mist);
}
.contact-points li {
  padding-left: 1.2rem;
  position: relative;
}
.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 1px;
  background: var(--copper);
}

.lead-form {
  border: 1px solid var(--line);
  background: rgba(18, 22, 28, 0.85);
  padding: clamp(1.3rem, 3vw, 1.8rem);
  backdrop-filter: blur(10px);
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
}
.lead-form.is-spotlight {
  border-color: rgba(255, 176, 92, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 176, 92, 0.25), 0 18px 50px rgba(0, 0, 0, 0.35);
}
.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
}
.form-row label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(236, 232, 225, 0.14);
  background: rgba(7, 9, 12, 0.55);
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius);
  transition: border-color var(--base) ease, background var(--base) ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(193, 122, 69, 0.7);
  background: rgba(7, 9, 12, 0.8);
}
.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0.3rem 0 1rem;
  font-size: 0.86rem;
  color: var(--mist);
}
.consent a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.form-success {
  margin: 1rem 0 0;
  color: var(--ok);
  font-weight: 600;
}
.form-success.is-error {
  color: #d17a5a;
}
.btn[aria-busy="true"] {
  opacity: 0.7;
  pointer-events: none;
}

/* ----- Footer / Float ----- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 5.5rem;
}
.footer-inner {
  display: grid;
  gap: 1rem;
}
.footer-brand .logo-text {
  font-size: 1.05rem;
}
.footer-brand p,
.copyright {
  margin: 0.35rem 0 0;
  color: var(--mist);
  font-size: 0.88rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-links a {
  color: var(--mist);
  transition: color var(--fast) ease;
}
.footer-links a:hover { color: var(--bone); }

.float-cta {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  background: var(--bone);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.45s ease;
}
.float-cta.is-visible {
  transform: none;
  opacity: 1;
}

/* ----- Reveal system ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
  transition-delay: calc(var(--stagger, 0) * 70ms);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
[data-reveal][data-stagger="1"] { --stagger: 1; }
[data-reveal][data-stagger="2"] { --stagger: 2; }
[data-reveal][data-stagger="3"] { --stagger: 3; }
[data-reveal][data-stagger="4"] { --stagger: 4; }
[data-reveal][data-stagger="5"] { --stagger: 5; }
[data-reveal][data-stagger="6"] { --stagger: 6; }

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.split-word > span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.95s var(--ease-out);
}
[data-reveal].is-in .split-word > span,
body.is-ready .hero .split-word > span {
  transform: none;
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
  .hero-bottom,
  .rates-head,
  .directions-grid,
  .faq-layout,
  .contact-grid,
  .ref-layout,
  .why-pillars,
  .rates-conditions {
    grid-template-columns: 1fr;
  }
  .why-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-matrix article:not(:nth-child(4n)) {
    border-right: 0;
  }
  .why-matrix article:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 1.1rem;
  }
  .why-matrix article:nth-child(even) {
    padding-left: 1.1rem;
  }
  .ref-perks {
    grid-template-columns: 1fr;
  }
  .process-rail {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-rail li:nth-child(7) {
    grid-column: span 2;
  }
  .hero-metrics {
    border-left: 0;
    padding-left: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .hero-metrics div {
    border-bottom: 0;
    border-top: 1px solid rgba(236, 232, 225, 0.14);
    padding-top: 0.85rem;
  }
}

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-grid; }
  .feature-stack,
  .support-editorial,
  .pay-timeline ol {
    grid-template-columns: 1fr;
  }
  .support-editorial article:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }
  .rates-legend { display: none; }
  .rate-row {
    grid-template-columns: 1fr auto;
    gap: 0.7rem 1rem;
    padding: 1.1rem 1rem;
  }
  .rate-city { grid-column: auto; }
  .rate-label {
    display: none;
  }
  .hero-frame { inset: 0.75rem; }
  .audience-item {
    grid-template-columns: 3rem 1fr;
    gap: 0.9rem;
  }
  .process-rail li {
    min-height: 0;
  }
  .why-matrix article:nth-child(odd),
  .why-matrix article:nth-child(even) {
    padding-left: 0;
    padding-right: 0.85rem;
  }
  .why-matrix article:nth-child(even) {
    padding-left: 0.85rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .shell {
    width: min(100% - 1.25rem, var(--shell));
  }

  .section {
    padding: clamp(3.25rem, 12vw, 5rem) 0;
  }

  .display,
  .display-wide {
    max-width: none;
    font-size: clamp(1.45rem, 7.2vw, 2rem);
    line-height: 1.15;
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--header-h) + 0.75rem) 0 calc(2rem + env(safe-area-inset-bottom));
  }

  .hero-brand {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .hero-headline {
    max-width: none;
    font-size: clamp(1.15rem, 5.2vw, 1.45rem);
  }

  .hero-parallax img {
    object-position: 70% 15%;
  }

  .hero-scroll {
    display: none;
  }

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

  .hero-metrics div {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    row-gap: 0.15rem;
    align-items: baseline;
    padding: 0.85rem 0;
  }

  .hero-metrics .metric-hot {
    margin: 0;
    padding: 0.95rem 1rem;
  }

  .hero-metrics dd {
    justify-self: end;
    text-align: right;
  }

  .hero-metrics p {
    grid-column: 1 / -1;
  }

  .process-rail {
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
    border: 0;
  }

  .process-rail li {
    grid-column: auto !important;
    min-height: 0;
    padding: 1.15rem 0;
    background: transparent;
    border-top: 1px solid rgba(236, 232, 225, 0.12);
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.85rem;
    transform: none !important;
  }

  .process-rail li:last-child {
    border-bottom: 1px solid rgba(236, 232, 225, 0.12);
  }

  .process-rail li:hover {
    transform: none;
    background: transparent;
  }

  .process-rail span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
    padding-top: 0.15rem;
  }

  .process-rail h3,
  .process-rail p {
    grid-column: 2;
  }

  .process-rail h3 {
    margin-bottom: 0.35rem;
  }

  .why-matrix {
    grid-template-columns: 1fr;
  }

  .why-matrix article {
    border-right: 0 !important;
    padding: 1.15rem 0 !important;
  }

  .ref-steps li {
    grid-template-columns: 2.6rem 1fr;
    gap: 0.75rem;
  }

  .ref-spotlight-stats div {
    grid-template-columns: 3.8rem 1fr;
  }

  .ref-spotlight .btn,
  .statement .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .float-cta {
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    justify-content: center;
  }

  .btn-nav { display: none; }
  .hero-orb { display: none; }

  .site-footer {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
  }

  .mobile-menu {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }

  .mobile-nav a {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
    min-height: 3rem;
    align-items: center;
  }

  .form-row input,
  .form-row select,
  .form-row textarea,
  .search-field input {
    font-size: 16px;
    min-height: 3rem;
  }

  .faq summary {
    font-size: 0.98rem;
    padding-right: 1.8rem;
    min-height: 3rem;
  }

  .audience-item:hover {
    padding-left: 0;
  }

  .rate-city em {
    display: block;
    margin: 0.35rem 0 0;
    width: fit-content;
  }
}

@media (max-width: 640px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1rem);
  }

  .hero-brand {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
}

@supports (padding: max(0px)) {
  .site-header {
    padding-top: env(safe-area-inset-top);
    height: calc(var(--header-h) + env(safe-area-inset-top));
  }

  .header-inner {
    height: var(--header-h);
  }

  .mobile-menu {
    padding-top: calc(var(--header-h) + env(safe-area-inset-top) + 1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal],
  [data-hero-reveal] {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
  .cursor { display: none !important; }
  body.has-cursor { cursor: auto; }
}

@media (pointer: coarse) {
  .cursor { display: none !important; }
  body.has-cursor { cursor: auto; }
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor input,
  body.has-cursor select,
  body.has-cursor textarea,
  body.has-cursor summary,
  body.has-cursor label {
    cursor: auto;
  }

  .btn,
  .menu-toggle {
    min-height: 44px;
  }
}
