/* ==========================================================================
   The Weather Dudes, LLC — weatherdudes.io  (v2)
   Dark cinematic studio page. Storm-teal system.
   Original implementation; design language informed by modern dark
   product-studio sites (left-set hero, light-pill CTAs, borderless grids,
   halftone glows, film grain).
   ========================================================================== */

:root {
  --bg: #050709;
  --bg-raised: #0e1116;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f2f5f7;
  --text-dim: #9aa6ae;
  --accent-deep: #1b5566;
  --accent: #3d8ca6;
  --accent-glow: #6fb4c9;
  --accent-soft: rgba(111, 180, 201, 0.14);
  --radius: 16px;
  --font: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --font-serif: "Instrument Serif", Georgia, serif;
  --ink: #08131a;
  --nav-h: 68px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain over everything — kills gradient banding, adds texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img, svg { display: block; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Type ---------- */
h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; }

h1 {
  font-size: clamp(2.9rem, 7.5vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 650;
}

/* Gradient-fade display text */
.h-grad {
  background: linear-gradient(180deg, #ffffff 22%, rgba(255, 255, 255, 0.68) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.08em; /* keep descenders inside the clip box */
}

.section-title {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-sub {
  color: var(--text-dim);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 560px;
  margin-top: 18px;
}
.section-sub.wide { max-width: 660px; }

.eyebrow {
  color: var(--accent-glow);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lede {
  color: var(--text-dim);
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  max-width: 520px;
  margin-top: 24px;
}

.accent-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.04em;
  letter-spacing: -0.01em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
              background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:focus-visible { outline: 2px solid var(--accent-glow); outline-offset: 3px; }

/* Light pill with teal glow bloom — primary */
.btn-light {
  background: linear-gradient(180deg, #ffffff 0%, #dfeaee 100%);
  color: #0b1216;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 6px 24px -6px rgba(111, 180, 201, 0.75),
    0 0 60px -8px rgba(111, 180, 201, 0.55);
}
.btn-light:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 8px 30px -6px rgba(111, 180, 201, 0.9),
    0 0 90px -6px rgba(111, 180, 201, 0.7);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: var(--accent-glow); background: var(--accent-soft); }

.btn-sm { padding: 9px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(5, 7, 9, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: 1.05rem;
}
.brand-mark { width: 28px; height: 28px; color: var(--accent-glow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
}
.nav-links a:not(.btn):hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(680px, 100svh, 960px);
  padding-top: calc(var(--nav-h) + clamp(70px, 13vh, 150px));
  padding-bottom: clamp(300px, 38vh, 420px);
  overflow: hidden;
}

.hero-copy { position: relative; z-index: 3; max-width: 640px; }
.hero-copy h1 { margin-top: 20px; }

/* Lightning column — strikes from top of viewport into the radar */
.hero-beam { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-beam > div {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--beam-x, 66%);
  transform: translateX(-50%);
}

.beam-core {
  width: 3px;
  background: linear-gradient(180deg,
    rgba(234, 250, 255, 0) 0%,
    rgba(234, 250, 255, 0.55) 22%,
    rgba(234, 250, 255, 0.95) 70%,
    #eafaff 100%);
  filter: drop-shadow(0 0 7px rgba(160, 220, 240, 0.9));
}

.beam-glow {
  width: 200px;
  background: linear-gradient(90deg, transparent 0%, rgba(111, 180, 201, 0.3) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 100%);
}

.beam-wide {
  width: 640px;
  background: linear-gradient(90deg, transparent 0%, rgba(27, 85, 102, 0.35) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 45%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 45%, #000 100%);
  filter: blur(22px);
}

.beam-flash {
  width: 340px;
  background: linear-gradient(90deg, transparent 0%, rgba(214, 240, 250, 0.55) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 100%);
  opacity: 0;
  animation: strike 9s ease-in-out infinite;
  filter: blur(4px);
}
@keyframes strike {
  0%, 86%, 100% { opacity: 0; }
  87% { opacity: 1; }
  88.5% { opacity: 0.12; }
  90% { opacity: 0.65; }
  92% { opacity: 0; }
}

/* Radar dish at the strike point, cropped by the fold */
.hero-radar {
  position: absolute;
  z-index: 2;
  left: var(--beam-x, 66%);
  bottom: calc(clamp(340px, 42vw, 540px) * -0.34);
  transform: translateX(-50%);
  pointer-events: none;
}

.radar {
  position: relative;
  width: clamp(340px, 42vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(15, 22, 27, 0.95) 0%, rgba(9, 10, 12, 0.5) 72%);
  box-shadow:
    0 0 0 1px rgba(111, 180, 201, 0.28),
    0 0 90px -8px rgba(61, 140, 166, 0.5),
    0 0 220px -20px rgba(27, 85, 102, 0.6);
  overflow: hidden;
}

.radar-rings {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle, transparent 24.5%, rgba(111, 180, 201, 0.24) 25%, transparent 25.8%),
    radial-gradient(circle, transparent 49.5%, rgba(111, 180, 201, 0.24) 50%, transparent 50.8%),
    radial-gradient(circle, transparent 74.5%, rgba(111, 180, 201, 0.24) 75%, transparent 75.8%),
    linear-gradient(rgba(111, 180, 201, 0.1), rgba(111, 180, 201, 0.1)),
    linear-gradient(90deg, rgba(111, 180, 201, 0.1), rgba(111, 180, 201, 0.1));
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 1px, 1px 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.radar-sweep {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(111, 180, 201, 0.6) 0deg,
    rgba(111, 180, 201, 0.2) 28deg,
    transparent 70deg,
    transparent 360deg);
  animation: sweep 7s linear infinite;
  mix-blend-mode: screen;
}
@keyframes sweep { to { transform: rotate(360deg); } }

/* Bright impact bloom where the bolt meets the dish */
.radar-impact {
  position: absolute;
  left: 50%; top: -4%;
  width: 46%; aspect-ratio: 1.6;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 30%, rgba(234, 250, 255, 0.8) 0%, rgba(111, 180, 201, 0.35) 45%, transparent 75%);
  filter: blur(6px);
}

.radar-blip {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 12px 2px rgba(111, 180, 201, 0.7);
  opacity: 0;
  animation: blip 7s linear infinite;
}
.radar-blip.b1 { left: 63%; top: 32%; animation-delay: 1.3s; }
.radar-blip.b2 { left: 34%; top: 58%; animation-delay: 4.2s; }
.radar-blip.b3 { left: 72%; top: 50%; animation-delay: 5.6s; }
@keyframes blip {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  4% { opacity: 1; transform: scale(1); }
  30% { opacity: 0.25; }
  55% { opacity: 0; }
}

.horizon-line {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 85%);
  z-index: 4;
}

/* ---------- Sections ---------- */
.section { padding: clamp(90px, 12vh, 150px) 0; position: relative; }

/* Borderless feature grid — icon, bold title, muted copy */
.flat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 48px);
  margin-top: clamp(56px, 7vw, 84px);
}

.flat-item h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 20px 0 12px;
}
.flat-item p {
  color: var(--text-dim);
  font-size: 0.97rem;
  line-height: 1.6;
  max-width: 300px;
}

.g-icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ink);
  background: linear-gradient(135deg, #c3e8f4 0%, #8cc8db 60%, #6fb4c9 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 0 0 1px rgba(111, 180, 201, 0.45) inset,
    0 8px 26px -6px rgba(111, 180, 201, 0.75);
}
.g-icon svg { width: 24px; height: 24px; }

/* ---------- First app ---------- */
.section-app { text-align: left; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(111, 180, 201, 0.35);
  background: var(--accent-soft);
  color: var(--accent-glow);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

/* Large atmospheric showcase card */
.showcase {
  position: relative;
  margin-top: clamp(48px, 6vw, 72px);
  height: clamp(320px, 44vw, 480px);
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0a0d10;
}

.showcase-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 74% 105%, rgba(154, 216, 236, 0.5) 0%, rgba(111, 180, 201, 0.32) 30%, rgba(27, 85, 102, 0.22) 55%, transparent 78%),
    radial-gradient(45% 55% at 20% 110%, rgba(61, 140, 166, 0.38) 0%, rgba(27, 85, 102, 0.2) 45%, transparent 72%),
    radial-gradient(100% 70% at 50% -30%, rgba(22, 33, 42, 1) 0%, transparent 65%);
}

.showcase-flash {
  position: absolute;
  right: 10%; bottom: 0;
  width: 36%; height: 80%;
  background: radial-gradient(50% 55% at 50% 65%, rgba(224, 245, 252, 0.65) 0%, rgba(111, 180, 201, 0.25) 45%, transparent 75%);
  opacity: 0;
  animation: strike 11s ease-in-out 3s infinite;
  filter: blur(10px);
}

/* Etched lightning bolt in the showcase */
.showcase-bolt {
  position: absolute;
  right: 20%; top: 4%;
  height: 72%;
  width: auto;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(154, 216, 236, 0.8)) drop-shadow(0 0 34px rgba(111, 180, 201, 0.5));
  opacity: 0.9;
}

/* Halftone dither over glow areas */
.halftone::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(111, 180, 201, 0.55) 1px, transparent 1.4px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
}

.showcase-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(22px, 3.5vw, 34px);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  color: var(--text-dim);
  background: linear-gradient(180deg, transparent 0%, rgba(5, 7, 9, 0.85) 70%);
  max-width: none;
}
.showcase-caption strong { color: var(--text); font-weight: 600; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}
.about-copy p {
  color: var(--text-dim);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}
.about-copy p + p { margin-top: 20px; }

/* ---------- Closing CTA ---------- */
.closing {
  position: relative;
  padding: clamp(110px, 16vh, 200px) 0 0;
  overflow: hidden;
}
.closing::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.closing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.closing-art { position: relative; display: grid; place-items: center; }
.closing-art.halftone::before { border-radius: 50%; }

.orb {
  position: relative;
  width: clamp(260px, 30vw, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #10161b 0%, #0a0d10 70%);
  box-shadow:
    0 0 0 1px rgba(111, 180, 201, 0.25),
    0 0 110px -10px rgba(61, 140, 166, 0.55),
    0 0 260px -30px rgba(27, 85, 102, 0.65);
  overflow: hidden;
}

.orb-ring {
  position: absolute; inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(111, 180, 201, 0.3);
  box-shadow: 0 0 40px -6px rgba(111, 180, 201, 0.5) inset;
}

.orb-sweep {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 40deg,
    rgba(111, 180, 201, 0.5) 0deg,
    rgba(111, 180, 201, 0.15) 40deg,
    transparent 90deg,
    transparent 360deg);
  animation: sweep 9s linear infinite;
  mix-blend-mode: screen;
}

.orb-core {
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #eafaff;
  box-shadow: 0 0 24px 6px rgba(111, 180, 201, 0.8);
}

.closing-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-weight: 650;
}

.closing-loc {
  margin-top: 26px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* ---------- Contact form ---------- */
.contact-form {
  margin-top: 34px;
  display: grid;
  gap: 12px;
  max-width: 480px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.contact-form ::placeholder { color: var(--text-dim); opacity: 0.85; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-glow);
  box-shadow: 0 0 0 3px rgba(111, 180, 201, 0.16);
}
.contact-form .btn { justify-self: start; margin-top: 4px; }
.hp { display: none !important; }
.form-status {
  min-height: 1.3em;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ---------- Footer (inside closing, like the reference) ---------- */
.footer {
  margin-top: clamp(90px, 12vh, 150px);
  border-top: 1px solid var(--line);
  padding: 32px 0;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer nav { display: flex; gap: 24px; }
.footer a:hover { color: var(--text); }

/* ---------- Legal pages ---------- */
.legal {
  padding: calc(var(--nav-h) + 70px) 0 100px;
  max-width: 720px;
}
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 42px; }
.legal h2 { font-size: 1.25rem; margin: 38px 0 12px; }
.legal p, .legal li { color: var(--text-dim); line-height: 1.7; }
.legal ul { padding-left: 22px; margin-top: 10px; }
.legal a { color: var(--accent-glow); }
.legal a:hover { text-decoration: underline; }
/* legal pages still reference .btn-accent — keep it as the light pill */
.btn-accent {
  background: linear-gradient(180deg, #ffffff 0%, #dfeaee 100%);
  color: #0b1216;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 6px 24px -6px rgba(111, 180, 201, 0.75),
    0 0 60px -8px rgba(111, 180, 201, 0.55);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .radar-sweep, .radar-blip, .beam-flash, .showcase-flash, .orb-sweep { animation: none; }
  .radar-sweep, .orb-sweep { opacity: 0.35; }
  .radar-blip { opacity: 0.6; }
  .btn { transition: none; }
}

/* ---------- Mobile ---------- */
@media (max-width: 860px) {
  .closing-grid { grid-template-columns: 1fr; }
  .closing-art { order: 2; margin-top: 20px; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --beam-x: 58%; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 4px;
    padding: 16px 24px 28px;
    background: rgba(5, 7, 9, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { padding: 12px 0; }
  .nav-links .btn { margin-top: 10px; }

  .hero { padding-bottom: clamp(260px, 46vw, 340px); }
  .beam-wide { width: 380px; }
  .beam-glow { width: 140px; }

  .footer-inner { justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
