/* Satelles Landing - scoped styles.
   Reuses the sky→ember gradient but swaps the Taos horizon strip for a
   full-bleed Sangre de Cristo hero photo. */

:root {
  --sat-gold: #ffce76;
  --sat-amber: #ffaa33;
  --sat-ember-1: #ff430f;
  --sat-ember-2: #ff7722;
  --sat-cta-1: #11b5f0;
  --sat-cta-2: #0040ff;
  --sat-night: #000005;
  --sat-night-2: #050f2d;
  --sat-night-3: #141946;
  --sat-dusk: #281e4b;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--sat-night);
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------------------------------------------------------- Hero ---- */

.hero {
  position: relative;
  min-height: max(100vh, 850px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 90px 0 64px; /* top accounts for nav */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  /* base night gradient so the photo blends into page on fade */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    #000005 0%, #050f2d 25%, #141946 55%, #281e4b 85%, #502346 100%);
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  /* Fade the video into the night sky at the top so stars can breathe. */
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0%, rgba(0,0,0,0.4) 22%, #000 50%, #000 100%);
          mask-image: linear-gradient(180deg,
    transparent 0%, rgba(0,0,0,0.4) 22%, #000 50%, #000 100%);
  filter: saturate(0.82) brightness(0.68);
  animation: hero-drift 40s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.08) translateY(-1.5%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 55%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, transparent 70%),
    linear-gradient(180deg, rgba(0,0,5,0.2) 0%, transparent 40%, rgba(0,0,5,0.45) 100%);
}

/* Mobile / reduced-motion: hide the autoplay video and fall back to the
   poster still. Must stay AFTER the base .hero-bg::before gradient above so
   the poster's background-image wins the cascade (equal specificity). */
@media (prefers-reduced-motion: reduce), (max-width: 768px) {
  .hero-photo { display: none; }
  .hero-bg::before {
    background-image: url("../images/satelles-hero-poster.webp");
    background-size: cover;
    background-position: center;
  }
}

/* Stars pinned to top band where sky still shows */
.hero-stars {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 55%;
  overflow: hidden;
  pointer-events: none;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
}
.star.sm { width: 1px; height: 1px; opacity: 0.75; }
.star.md { width: 2px; height: 2px; opacity: 0.9; box-shadow: 0 0 4px rgba(255,255,255,0.5); }
.star.lg { width: 3px; height: 3px; box-shadow: 0 0 8px rgba(255,255,255,0.7); }
.star.br { width: 4px; height: 4px; background: var(--sat-gold);
           box-shadow: 0 0 10px var(--sat-gold), 0 0 20px var(--sat-gold); }
.star.twinkle { animation: twinkle 3s ease-in-out infinite; }
@keyframes twinkle {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* Layout */
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-copy { max-width: 560px; }
.hero-logo {
  display: block;
  height: 38px;
  width: auto;
  margin: 0 0 28px;
  filter: drop-shadow(0 0 18px rgba(0,0,0,0.5));
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sat-gold);
  margin-bottom: 22px;
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 206, 118, 0.25);
  backdrop-filter: blur(20px);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sat-gold);
  box-shadow: 0 0 10px var(--sat-gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  color: var(--sat-gold);
  text-shadow: 0 0 60px rgba(255, 206, 118, 0.35);
  text-wrap: balance;
}
.hero h1 .accent {
  font-weight: 400;
  color: #fff;
  opacity: 0.92;
}
/* Keep "Your weather map" on one line on desktop (overflows into the
   empty second hero column by design); allowed to wrap on mobile below. */
.hero h1 .nobreak { white-space: nowrap; }

.hero-form {
  max-width: 460px;
  margin: 0;
  margin-left: 0 !important;
  margin-right: auto;
  align-self: flex-start;
  justify-content: flex-start;
}
.hero-form .btn-primary { white-space: nowrap; }
.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 32px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.btn {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  transition: transform 0.15s, filter 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(10px);
  text-decoration: none;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
              linear-gradient(0deg, var(--sat-cta-2), var(--sat-cta-1));
  color: #fff;
  box-shadow: 0 8px 24px rgba(17, 181, 240, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-ghost {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 206, 118, 0.3);
}

.hero-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta i { color: var(--sat-gold); font-size: 11px; }

/* Location tag on photo */
.hero-location {
  position: absolute;
  left: 32px; bottom: 28px;
  z-index: 3;
  font-family: 'Space Grotesk', sans-serif;
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-location::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--sat-gold);
}

/* ---------------------------------------------------------- Sections ---- */

section {
  position: relative;
  padding: 100px 32px;
  min-height: 850px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 2; }

.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sat-gold);
  margin-bottom: 16px;
  display: inline-block;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--sat-gold);
  text-wrap: balance;
}
.section-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 0;
  text-wrap: pretty;
}

/* --- How it works --- */
.how .section-inner > .eyebrow {
  display: block;
  text-align: center;
}
.how .section-inner > .section-title,
.how .section-inner > .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.how .section-inner > .section-lead { max-width: 720px; }
.how {
  background:
    /* Deep warm horizon glow low-center — orange/red, no pink */
    radial-gradient(ellipse 110% 80% at 50% 110%,
      rgba(220, 90, 30, 0.42) 0%,
      rgba(170, 55, 25, 0.22) 32%,
      rgba(100, 30, 25, 0.10) 60%,
      transparent 82%),
    /* Subtle warm-amber ambient glow upper-right */
    radial-gradient(ellipse 75% 55% at 82% 28%,
      rgba(200, 120, 60, 0.10),
      transparent 55%),
    /* Base vertical: cool purple (top) → deep warm orange/red (bottom) */
    linear-gradient(180deg,
      #3e1a58 0%,
      #421c55 18%,
      #4a204e 35%,
      #5a283e 52%,
      #722e26 70%,
      #8e3620 85%,
      #a83a20 100%);
  position: relative;
}
.how::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 200px;
  background: linear-gradient(180deg, #3e1a58 0%, rgba(62,26,88,0.5) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.how::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, rgba(168,58,32,0.5) 50%, #a83a20 100%);
  pointer-events: none;
  z-index: 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.how-step {
  position: relative;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
}
.step-rule {
  width: 300px;
  max-width: 100%;
  height: 2px;
  background: var(--sat-gold);
  border: 0;
  margin: 0 0 18px;
  padding: 0;
  opacity: 0.9;
}
.how-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--sat-gold);
  opacity: 0.55;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.how-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: #fff;
}
.how-step p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  text-wrap: pretty;
}

/* --- Place / Taos section --- */
.place {
  padding: 120px 32px;
  background: linear-gradient(180deg,
    #a83a20 0%,
    #a8381e 35%,
    #a4361c 70%,
    #a0341a 100%);
  position: relative;
  min-height: max(70vh, 850px);
  overflow: hidden;
}
.place-media {
  position: absolute;
  inset: 0;
  background-image: url("../images/satelles-about-10.webp");
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,0.25) 8%,
    rgba(0,0,0,0.7) 18%,
    #000 28%,
    #000 72%,
    rgba(0,0,0,0.7) 82%,
    rgba(0,0,0,0.25) 92%,
    transparent 100%);
          mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,0.25) 8%,
    rgba(0,0,0,0.7) 18%,
    #000 28%,
    #000 72%,
    rgba(0,0,0,0.7) 82%,
    rgba(0,0,0,0.25) 92%,
    transparent 100%);
}
.place-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    /* gentle left-side dim so .place-copy reads, but warmer + softer */
    linear-gradient(90deg, rgba(20,5,30,0.45) 0%, rgba(20,5,30,0.10) 55%, transparent 100%);
}
.place-copy {
  position: relative;
  margin-left: 6%;
  max-width: 640px;
  z-index: 2;
}
.place-copy .section-title { color: #fff; }
.place-marker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sat-gold);
  margin-bottom: 20px;
}
.place-marker::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--sat-gold);
}

/* ---- Sample (Product Demo) section: night sky --------------- */
.sample {
  position: relative;
  background: linear-gradient(180deg,
    #050a1f 0%,
    #0a1130 18%,
    #0e1740 38%,
    #1a1c4a 58%,
    #251c52 75%,
    #321c55 90%,
    #3e1a58 100%);
  overflow: hidden;
}
.sample > .section-inner { position: relative; z-index: 2; }
.sample::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), transparent);
  pointer-events: none;
  z-index: 1;
}
.sample::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(62,26,88,0.5) 60%, #3e1a58 100%);
  pointer-events: none;
  z-index: 1;
}

/* ---- Waitlist / Sign Up section: sunset --------------------- */
.waitlist::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 180px;
  background: linear-gradient(180deg, #a0341a 0%, rgba(160,52,26,0.5) 45%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.waitlist > .section-inner { position: relative; z-index: 2; }
#waitlist-stars {
  /* Stars only appear in the darker lower-half of the sunset → navy descent */
  top: 35%;
  height: 65%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 100%);
  opacity: 0.9;
}
.waitlist {
  position: relative;
  background: linear-gradient(180deg,
    #a0341a 0%,
    #98322a 8%,
    #8a3038 18%,
    #762e40 28%,
    #5e2452 42%,
    #421c5a 55%,
    #2a1648 68%,
    #141238 82%,
    #0a0e26 92%,
    #050a1f 100%);
  overflow: hidden;
}

/* ---- Sky stars (now inside .sample) ------------------------- */
.sky-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
}
#how-stars {
  /* only the upper 55% of How It Works, fading out toward the warmer half */
  height: 60%;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 100%);
  opacity: 0.85;
}
/* Smaller, dimmer stars for the sky overlay (without affecting hero stars) */
.sky-stars .star.sm { width: 1px;   height: 1px;   opacity: 0.45; box-shadow: none; }
.sky-stars .star.md { width: 1.5px; height: 1.5px; opacity: 0.6;  box-shadow: 0 0 2px rgba(255,255,255,0.3); }
.sky-stars .star.lg { width: 2px;   height: 2px;   opacity: 0.75; box-shadow: 0 0 3px rgba(255,255,255,0.4); }
.sky-stars .star.br { width: 2px;   height: 2px;   background: var(--sat-gold); opacity: 0.7;
                       box-shadow: 0 0 4px var(--sat-gold); }
/* --- Shooting stars --- */
.shooting-star {
  position: absolute;
  top: var(--sky-y, 12%);
  left: var(--sky-x, -10%);
  width: 110px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 70%, #fff 100%);
  border-radius: 999px;
  transform: rotate(18deg);
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.9));
  animation: shoot var(--shoot-dur, 7s) ease-in var(--shoot-delay, 0s) infinite;
}
.shooting-star.right {
  /* Mirrored: enters from the right, falls to the left */
  transform: rotate(162deg);
  --sky-x: 95%;
}
@keyframes shoot {
  0%   { opacity: 0; transform: translate(0, 0) rotate(var(--rot, 18deg)); }
  6%   { opacity: 1; }
  18%  { opacity: 0; transform: translate(var(--shoot-dx, 320px), var(--shoot-dy, 110px)) rotate(var(--rot, 18deg)); }
  100% { opacity: 0; transform: translate(var(--shoot-dx, 320px), var(--shoot-dy, 110px)) rotate(var(--rot, 18deg)); }
}
.sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}
.phone {
  position: relative;
  width: 320px;
  height: 640px;
  margin: 0 auto;
  border-radius: 48px;
  background: #0a0a1e;
  border: 10px solid #1a1a2e;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 206, 118, 0.12);
  overflow: hidden;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
}
.phone::before {
  /* notch */
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #000;
  border-radius: 0 0 18px 18px;
}
.phone-header {
  text-align: center;
  padding: 12px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}
.phone-header strong { color: var(--sat-gold); font-weight: 500; letter-spacing: 0; font-size: 13px; display: block; }
/* Phone mockup auto-scroll through three SMS sequences */
.bubbles-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.bubbles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: bubbles-scroll 38s ease-in-out infinite;
  will-change: transform;
}
@keyframes bubbles-scroll {
  /* P1: held long at top so the first frame has time to settle */
  0%, 18%    { transform: translateY(0);      opacity: 1; }
  /* P2: top of Relationships orange bubble */
  25%, 32%   { transform: translateY(-289px); opacity: 1; }
  /* P3: 8 AM timestamp before Career */
  38%, 45%   { transform: translateY(-628px); opacity: 1; }
  /* P4: top of Career orange bubble */
  51%, 58%   { transform: translateY(-959px); opacity: 1; }
  /* P5: 8 AM timestamp before Money */
  64%, 71%   { transform: translateY(-1256px); opacity: 1; }
  /* P6: bottom of Money 8th-house bubble at viewport bottom (no empty space) */
  77%, 85%   { transform: translateY(-1665px); opacity: 1; }
  /* Quick fade out, snap to top, fade in — short and seamless */
  87%        { transform: translateY(-1665px); opacity: 0; }
  87.5%      { transform: translateY(0);      opacity: 0; }
  90%        { transform: translateY(0);      opacity: 1; }
  100%       { transform: translateY(0);      opacity: 1; }
}
.phone:hover .bubbles { animation-play-state: paused; }
.bubble {
  max-width: 88%;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 18px 18px 18px 4px;
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 206, 118, 0.15);
}
.sample-areas {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 206, 118, 0.08);
  border: 1px solid rgba(255, 206, 118, 0.25);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}
.sample-areas-icon {
  font-size: 18px;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255, 206, 118, 0.5));
}
.bubble.me {
  align-self: flex-end;
  border-radius: 18px 18px 4px 18px;
  background: linear-gradient(135deg, var(--sat-ember-1), var(--sat-ember-2));
  color: rgba(0, 0, 0, 0.92);
  border: none;
}
.bubble-time {
  align-self: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  margin: 4px 0;
}

/* --- Waitlist --- */
.waitlist-inner { max-width: 720px; text-align: center; }
.waitlist .section-title { color: var(--sat-gold); }
.waitlist-form {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.waitlist-form input {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 206, 118, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  backdrop-filter: blur(20px);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.waitlist-form input:focus {
  border-color: var(--sat-gold);
  box-shadow: 0 0 0 3px rgba(255, 206, 118, 0.2);
}
.waitlist-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.form-error {
  margin: 12px auto 0;
  max-width: 480px;
  font-size: 14px;
  color: #ff9b8a;
  text-align: center;
}

/* --- Footer --- */
footer {
  position: relative;
  padding: 48px 32px 40px;
  background: #050a1f;
  border-top: none;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}
footer .logo { height: 20px; margin-bottom: 18px; opacity: 0.7; }
footer .links { display: flex; gap: 28px; justify-content: center; margin: 16px 0 22px; flex-wrap: wrap; }
footer .links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none; font-size: 13px;
  transition: color 0.2s;
}
footer .links a:hover { color: var(--sat-gold); }
footer .fine {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* --- Nav --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(0, 0, 5, 0.7) 0%, transparent 100%);
  backdrop-filter: blur(12px);
}
.nav-brand img { height: 22px; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links .nav-dashboard { font-size: 16px; }
.nav-links .btn { padding: 8px 18px; font-size: 14px; }
.nav-links form { margin: 0; }
.nav-links a:hover { color: var(--sat-gold); }
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 12px;
  cursor: pointer;
}


/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  /* Shrink the headline so "Your weather map" stays on one line (no
     orphaned word) and fits within the viewport down to ~320px. */
  .hero h1 { font-size: clamp(26px, 9.5vw, 44px); }
  .how-grid { grid-template-columns: 1fr; }
  .sample-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav-toggle { display: inline-flex; align-items: center;
                justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    min-width: 180px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(0, 0, 5, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 206, 118, 0.18);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  }
  .nav-links.open { display: flex; }
  .nav-links a,
  .nav-links form,
  .nav-links .btn { width: 100%; }
  .nav-links a:not(.btn) { padding: 8px 6px; }
  .nav-links .btn { justify-content: center; }
  .place-copy { position: relative; left: 0; top: 0; transform: none;
                padding: 80px 0; max-width: none; }
  .place-media { height: auto; min-height: 0; background: none; }
  .place { background-image: url("../images/satelles-about-10.webp");
           background-size: cover; background-position: center; }
  .place::before { content: ''; position: absolute; inset: 0;
                   background: rgba(0,0,5,0.55); }
  .section-inner, .place-copy { position: relative; z-index: 2; }
  .waitlist-form { flex-direction: column; }
  /* Keep Terms | Privacy | email on one line down to ~320px: no wrap,
     fluid gap + font-size, and a touch less side padding (mirrors the
     trust-bullet treatment below). */
  footer { padding-left: 18px; padding-right: 18px; }
  footer .links { flex-wrap: nowrap; gap: clamp(6px, 2.2vw, 28px);
                  font-size: clamp(9px, 2.7vw, 13px); }
  footer .links a { font-size: inherit; white-space: nowrap; }
  /* Keep the three trust bullets on a single line down to ~320px:
     no wrap, tighter gaps, and a font-size that scales with viewport. */
  .hero-meta--trust { flex-wrap: nowrap; gap: clamp(5px, 2vw, 20px);
                      font-size: clamp(9px, 2.8vw, 13px); }
  .hero-meta--trust span { white-space: nowrap; gap: 5px; }
  .hero-meta--trust i { font-size: 9px; }
}