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

:root {
  --bg:         #07090f;
  --surface:    #0c1120;
  --surface-2:  #111827;
  --border:     #1a2438;
  --primary:    #f97316;
  --primary-dk: #ea6c0a;
  --primary-glow: rgba(249, 115, 22, 0.18);
  --accent:     #3b82f6;
  --text:       #f0f4ff;
  --muted:      #5a6a82;
  --subtle:     #8899b0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(7, 9, 15, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--primary); }

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.28);
  padding: 0.4rem 1rem;
  border-radius: 999px;
}
.nav-pill::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  overflow: hidden;
}

/* ambient glows */
.glow-1 {
  position: absolute;
  top: -180px; left: -180px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(249,115,22,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.glow-2 {
  position: absolute;
  bottom: -120px; right: 30%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 580px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.6rem;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
h1 .grad {
  background: linear-gradient(130deg, #f97316 0%, #fb923c 40%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--subtle);
  max-width: 460px;
  margin-bottom: 2.75rem;
}

/* ── Hero CTA link button ── */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ─── CTA BUTTON ───────────────────────────────────── */
.cta-btn {
  padding: 0.85rem 1.6rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.cta-btn:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249,115,22,0.38);
}
.cta-btn:active  { transform: translateY(0); }
.cta-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ── Honeypot ── */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── Form feedback ── */
.form-error {
  display: none;
  font-size: 0.8rem;
  color: #f87171;
  margin-top: 0.55rem;
}
.form-error.visible { display: block; }

/* ─── CONSENT MODAL ─────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 9, 15, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.modal-overlay.visible .modal-card {
  transform: translateY(0) scale(1);
}
.modal-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.modal-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.modal-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 2rem;
}
.modal-card p strong {
  color: var(--subtle);
  font-weight: 600;
}
.modal-actions {
  display: flex;
  gap: 0.7rem;
}
.modal-cancel {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.modal-cancel:hover { border-color: var(--subtle); color: var(--text); }
.modal-confirm {
  flex: 2;
  padding: 0.75rem 1rem;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.2s, box-shadow 0.2s;
}
.modal-confirm:hover {
  background: var(--primary-dk);
  box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}

/* ─── HERO SCREENSHOT / CAROUSEL ────────────────────── */
.hero-media {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.hero-img-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 20%, black 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%,  black 72%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  transparent 0%, black 20%, black 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%,  black 72%, transparent 100%);
  mask-composite: intersect;
}

.hero-img-frame {
  position: relative;
  height: 70vh;
  transform: perspective(1400px) rotateY(-14deg) rotateX(4deg) scale(1.02);
  transform-origin: right center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.5),
    0 25px 50px rgba(0,0,0,0.35);
}

/* ── Slides ── */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}

/* ── Dot indicators ── */
.slide-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.slide-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slide-dot.active {
  background: var(--primary);
  transform: scale(1.5);
}

/* ── Beta perks list ── */
.beta-perks {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.beta-perks li {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.beta-perks li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ─── SECTION BASE ──────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
}
.section-h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.section-sub {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ── Section body (text-heavy sections) ── */
.section-body {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.section-body p {
  color: var(--subtle);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.section-body p:last-child { margin-bottom: 0; }

/* ─── WHO IT'S FOR ──────────────────────────────────── */
.who-section {
  padding: 5.5rem 2.5rem;
  background: var(--surface);
}
.who-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.who-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.25s;
}
.who-card:hover { border-color: rgba(249,115,22,0.3); }
.who-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(249,115,22,0.09);
  border: 1px solid rgba(249,115,22,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.who-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.who-card span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── WHAT IT HELPS YOU CONTROL (OUTCOMES) ──────────── */
.outcomes-section {
  padding: 6rem 2.5rem;
}
.outcomes-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.outcome-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.35);
}
.outcome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s;
}
.outcome-card:hover::before { opacity: 1; }

.outcome-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: rgba(249,115,22,0.09);
  border: 1px solid rgba(249,115,22,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.3rem;
}
.outcome-title {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.outcome-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}

.outcomes-also {
  max-width: 860px;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  padding: 1.4rem 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

/* ─── THE BETA (combined section) ───────────────────── */
.beta-section {
  padding: 5.5rem 2.5rem;
  background: var(--surface);
}

.beta-subsection {
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.beta-subsection:last-child { margin-bottom: 0; }

.beta-sub-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}

/* ── Numbered steps ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.step strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.step p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Perks checklist columns ── */
.perks-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2.5rem;
}
.perk-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.perk-list li {
  font-size: 0.86rem;
  color: var(--subtle);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.perk-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Beta text blocks ── */
.beta-text {
  font-size: 0.9rem;
  color: var(--subtle);
  line-height: 1.75;
}

/* ─── FAQ ───────────────────────────────────────────── */
.faq-section {
  padding: 5.5rem 2.5rem;
  background: var(--surface);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.25s;
}
.faq-item:hover { border-color: rgba(249,115,22,0.25); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  gap: 1rem;
}
.faq-q:hover { color: var(--primary); }
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), padding 0.35s;
  padding: 0 1.4rem;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.4rem 1.3rem;
}
.faq-a p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── BETA APPLICATION FORM ─────────────────────────── */
.apply-section {
  padding: 7rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(249,115,22,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.apply-section .section-head { position: relative; }

.apply-form {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--subtle);
  letter-spacing: 0.01em;
}
.form-group label .req {
  color: var(--primary);
  font-weight: 700;
}
.form-group label .opt {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.75rem;
}

.form-field {
  padding: 0.8rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.form-field::placeholder { color: var(--muted); }

/* select arrow */
select.form-field {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a6a82' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select.form-field option {
  background: var(--surface-2);
  color: var(--text);
}

textarea.form-field {
  resize: vertical;
  min-height: 80px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

/* ── Checkbox ── */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--subtle);
  line-height: 1.6;
  cursor: pointer;
  padding: 0.2rem 0;
}
.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.apply-btn {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.2rem;
}

/* ── Application disabled state ── */
.apply-disabled {
  display: none;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.apply-disabled p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Application success state ── */
.apply-success {
  display: none;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.apply-success.visible { display: block; }
.apply-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(74,222,128,0.12);
  border: 2px solid rgba(74,222,128,0.3);
  color: #4ade80;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.apply-success strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.apply-success p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  padding: 1.75rem 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 860px) {
  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }

  /* Stack hero vertically, show images below content */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 3rem;
  }
  .hero-media {
    display: flex;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 2.5rem;
  }
  /* Remove 3D perspective on mobile */
  .hero-img-frame {
    transform: none;
    height: 52vw;
    min-height: 220px;
  }
  /* Simplify mask to bottom-fade only */
  .hero-img-wrap {
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-composite: unset;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-composite: unset;
  }

  .benefits-list li {
    flex-direction: column;
    gap: 0.2rem;
  }
}
@media (max-width: 640px) {
  nav  { padding: 1rem 1.25rem; }
  .hero { padding: 6.5rem 1.25rem 4rem; }
  .who-section, .outcomes-section, .beta-section,
  .benefits-section, .selection-section, .roadmap-section,
  .faq-section, .apply-section { padding-inline: 1.25rem; }
  footer { padding: 1.5rem 1.25rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .who-grid      { grid-template-columns: 1fr; }
  .perks-columns { grid-template-columns: 1fr; }
  .form-row-2    { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .nav-pill  { font-size: 0.65rem; padding: 0.3rem 0.7rem; }
}
@media (orientation: landscape) and (max-height: 500px) {
  .hero-media { display: none; }
  .hero {
    min-height: auto;
    padding: 5rem 2rem 2.5rem;
  }
  h1 { font-size: clamp(1.7rem, 4.5vw, 2.4rem); margin-bottom: 0.9rem; }
  .hero-sub { font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.5rem; }
  .eyebrow { margin-bottom: 0.9rem; }
}
