/* ============================================================
   VAYSCAPE — styles.css  (consolidated clean version)
   All values traced from final effective state of previous file.
   No !important used — specificity handles everything cleanly.
   ============================================================ */

/* ── RESET ── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fbfaf6;
  color: #073166;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
.page { width: 100%; overflow-x: hidden; }

/* ── STICKY NAV (appears on scroll via JS) ── */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -110%);
  width: min(1475px, 100%);
  height: 60px;
  padding: 0 66px;
  z-index: 10000;
  display: grid;
  grid-template-columns: 210px 1fr 170px;
  align-items: center;
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid rgba(7, 49, 102, 0.08);
  box-shadow: 0 12px 30px rgba(7, 49, 102, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: transform 260ms ease, opacity 220ms ease;
}
.sticky-nav.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-logo-link {
  display: flex;
  align-items: center;
  width: 138px;
}
.sticky-logo-link img {
  width: 138px;
  height: auto;
  display: block;
}
.sticky-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 54px;
  height: 60px;
}
.sticky-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  position: relative;
  top: -4px;
  color: #073166;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 900;
  line-height: 1;
}
.sticky-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -4px;
  height: 36px;
  min-width: 124px;
  padding: 0 20px;
  border-radius: 999px;
  background: #ff4f32;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(255, 79, 50, 0.14);
}

/* ── HERO SHELL ── */
.hero-shell {
  position: relative;
  max-width: 1475px;
  min-height: 700px;   /* min-height so content never clips */
  margin: 0 auto;
  background: #fbfaf6;
  overflow: hidden;
}

/* Skyline background layer */
.skyline-layer {
  position: absolute;
  inset: 0;
  background-image: url('hero-skyline.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  z-index: 0;
}

/* Left-to-right and bottom fade over skyline */
.skyline-soft-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(251,250,246,.97)  0%,
      rgba(251,250,246,.90) 20%,
      rgba(251,250,246,.50) 34%,
      rgba(251,250,246,.10) 48%,
      rgba(251,250,246,0)   68%
    ),
    linear-gradient(180deg,
      rgba(251,250,246,0)   0%,
      rgba(251,250,246,0)  70%,
      rgba(251,250,246,1)  96%
    );
}

/* ── SITE HEADER (hero-embedded, not sticky) ── */
.site-header {
  position: relative;
  z-index: 5;
  height: 125px;
  display: grid;
  grid-template-columns: 330px 1fr 160px;
  align-items: start;
  gap: 28px;
  padding: 29px 66px 0;
}
.logo-link {
  display: block;
  width: 260px;
  position: relative;
  top: -57px;
}
.site-logo {
  width: 260px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 62px;
  padding-top: 45px;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
  position: relative;
  top: -32px;
}
.main-nav a {
  text-decoration: none;
  color: #082e62;
}
.site-header .login-button {
  position: relative;
  justify-self: end;
  top: 0;
  margin-top: 14px;
  width: 92px;
  min-width: 92px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ff4f32;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  line-height: 42px;
  box-shadow: 0 12px 24px rgba(255,79,50,.18);
}

/* ── HERO CONTENT ── */
.hero-content {
  position: relative;
  z-index: 3;
  height: 575px;
}
.hero-copy {
  position: absolute;
  left: 66px;
  top: 28px;
  width: 560px;
}
.pill {
  display: inline-flex;
  height: 42px;
  padding: 0 26px;
  border: 2px solid #7bd7d3;
  border-radius: 999px;
  color: #009c9a;
  background: rgba(255,255,255,.48);
  align-items: center;
  font-weight: 900;
  font-size: 17px;
}
.hero-copy h1 {
  margin: 28px 0 18px;
  font-size: 54px;
  line-height: .99;
  letter-spacing: -2.8px;
  font-weight: 950;
  color: #073166;
}
.hero-copy h1 span { color: #ff4f32; }
.hero-subcopy {
  width: 530px;
  margin: 0 0 22px;
  color: #0d3a74;
  font-size: 17.8px;
  line-height: 1.42;
}
.hero-subcopy strong {
  font-weight: 950;
  color: #002e63;
}
.waitlist-form {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 17px;
  position: relative;
  z-index: 9;
}
.waitlist-form input {
  width: 360px;
  height: 50px;
  border-radius: 999px;
  border: none;
  padding: 0 22px;
  font-size: 16px;
  outline: none;
}
button { border: none; cursor: pointer; }
.waitlist-form button {
  height: 50px;
  min-width: 220px;
  border-radius: 999px;
  background: #ff5a2f;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.early-note {
  margin: 0;
  color: #476794;
  font-size: 15.5px;
  font-weight: 800;
}
.early-note span {
  color: #ff4f32;
  font-size: 18px;
}
.hero-mascot {
  position: absolute;
  z-index: 4;
  right: 138px;
  top: 95px;
  width: 345px;
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(0,28,60,.12));
}

/* ── HOW IT WORKS ── */
.how-section {
  position: relative;
  z-index: 5;
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 44px;
  background: #fbfaf6;
}
.how-section h2,
.difference h2 {
  font-size: 19px;
  letter-spacing: 1px;
  color: #009c9a;
  font-weight: 950;
  margin: 0 0 23px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 130px 1fr 130px 1fr 130px 1fr;
  align-items: start;
  gap: 0;
}
.step { text-align: center; min-width: 0; }
.step h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 10px 0 7px;
  color: #072e62;
  font-weight: 950;
}
.step p {
  max-width: 185px;
  margin: 0 auto;
  color: #0d3a74;
  font-size: 13.5px;
  line-height: 1.55;
}
.icon { height: 58px; margin: 0 auto 3px; position: relative; }

/* Step icons */
.search-icon::before {
  content: '$';
  position: absolute;
  width: 54px; height: 54px;
  border: 4px solid #087c82;
  border-radius: 50%;
  left: 50%; transform: translateX(-50%);
  top: 0;
  color: #009c9a;
  font-weight: 950;
  font-size: 31px;
  line-height: 54px;
}
.search-icon::after {
  content: '';
  position: absolute;
  width: 28px; height: 4px;
  background: #087c82;
  left: calc(50% + 18px);
  top: 45px;
  transform: rotate(45deg);
  border-radius: 6px;
}
.mail-icon::before {
  content: '';
  position: absolute;
  width: 58px; height: 41px;
  border: 4px solid #087c82;
  left: 50%; transform: translateX(-50%);
  top: 7px;
}
.mail-icon::after {
  content: '';
  position: absolute;
  width: 39px; height: 39px;
  border-left: 4px solid #087c82;
  border-bottom: 4px solid #087c82;
  left: 50%; top: 3px;
  transform: translateX(-50%) rotate(-45deg);
}
.mail-icon span {
  position: absolute;
  right: calc(50% - 52px);
  top: -4px;
  background: #ff4f32;
  color: #fff;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 950;
  line-height: 24px;
  z-index: 2;
}
.globe-icon::before {
  content: '';
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 58px; height: 58px;
  border: 4px solid #087c82;
  border-radius: 50%;
}
.globe-icon::after {
  content: '';
  position: absolute;
  right: calc(50% - 48px);
  top: 4px;
  width: 20px; height: 20px;
  background: #ff4f32;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.globe-icon i::before {
  content: '';
  position: absolute;
  left: 50%; top: 4px;
  width: 3px; height: 50px;
  background: #087c82;
}
.globe-icon i::after {
  content: '';
  position: absolute;
  left: calc(50% - 25px);
  top: 27px;
  width: 50px; height: 3px;
  background: #087c82;
}
.plane-icon::before {
  content: '✈';
  color: #087c82;
  font-size: 58px;
  line-height: 58px;
  font-weight: 700;
}
.step-number {
  width: 28px; height: 28px;
  background: #009c9a;
  color: #fff;
  border-radius: 50%;
  font-weight: 950;
  line-height: 28px;
  margin: 0 auto;
  font-size: 15px;
}
.dotted-arrow {
  height: 2px;
  margin-top: 38px;
  border-top: 2px dotted #00a9a5;
  position: relative;
}
.dotted-arrow::after {
  content: '›';
  position: absolute;
  right: -6px; top: -14px;
  font-size: 28px;
  color: #00a9a5;
  font-weight: 400;
}

/* ── VAYSCAPE DIFFERENCE ── */
.difference {
  position: relative;
  max-width: 1290px;
  margin: 0 auto 39px;
  background: #eef9fb;
  border-radius: 17px;
  padding: 22px 30px 30px;
  box-shadow: 0 20px 50px rgba(33,83,110,.06);
  text-align: center;
}
.difference h2 { margin-bottom: 21px; }
.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.difference article {
  min-height: 135px;
  border-right: 1px solid #bed4dc;
  padding: 0 45px;
}
.difference article:last-child { border-right: none; }
.difference h3 {
  font-size: 18px;
  margin: 12px 0 8px;
  color: #073166;
  font-weight: 950;
}
.difference p {
  font-size: 14px;
  color: #0d3a74;
  line-height: 1.43;
  margin: 0;
}
.diff-icon {
  width: 45px; height: 45px;
  margin: 0 auto;
  position: relative;
  color: #009c9a;
}
.tag::before  { content: '◇'; font-size: 62px; line-height: 42px; color: #009c9a; }
.doc::before  { content: '▤'; font-size: 48px; line-height: 43px; }
.clock::before { content: '◷'; font-size: 53px; line-height: 43px; }
.heart::before { content: '♡'; font-size: 58px; line-height: 43px; }

/* ── DEALS SECTION ── */
.deals-section {
  max-width: 1290px;
  margin: 0 auto 25px;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 18px 13px;
}
.section-head h2 {
  font-size: 20px;
  color: #073166;
  margin: 0;
  font-weight: 950;
}
.section-head a {
  color: #009c9a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
}
.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.deal-card {
  border: 1px solid #d6dfec;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(9,43,83,.08);
}
.image-wrap {
  height: 145px;
  position: relative;
  overflow: hidden;
}
.image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.image-wrap span {
  position: absolute;
  left: 12px; top: 10px;
  padding: 7px 12px;
  background: #00a9a5;
  color: #fff;
  font-size: 11px;
  border-radius: 12px;
  font-weight: 950;
}
.deal-body { padding: 16px 16px 14px; }
.deal-body h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: #073166;
}
.deal-body p {
  font-size: 13.8px;
  line-height: 1.35;
  color: #0d3a74;
  height: 40px;
  margin: 0 0 9px;
}
.price {
  color: #ff4f32;
  font-size: 31px;
  font-weight: 950;
  line-height: 1;
  margin: 0 0 14px;
}
.price small { font-size: 14px; }
.price em {
  font-size: 12px;
  color: #073166;
  font-style: normal;
}
.deal-meta {
  border-top: 1px solid #d6dfec;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #0d3a74;
  font-size: 11.5px;
  font-weight: 950;
}
.price-note {
  text-align: center;
  font-size: 14px;
  color: #314f81;
  margin: 18px 0 0;
}

/* ── PRICING BAND ── */
.pricing-band {
  max-width: 1290px;
  margin: 28px auto 19px;
  border-radius: 17px;
  background: #fff0e9;
  display: grid;
  grid-template-columns: 180px 430px 1fr;
  align-items: start;
  min-height: 220px;
  padding: 26px 44px 26px 24px;
  column-gap: 24px;
}
.pricing-mascot-wrap {
  align-self: center;
  justify-self: start;
  width: 175px;
  height: 196px;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.pricing-mascot {
  width: 162px;
  max-width: none;
  height: auto;
  display: block;
}
.get-list {
  border-right: 1px solid #ffcab9;
  padding-right: 24px;
}
.get-list h2,
.how-get-it h2 {
  margin: 0 0 12px;
  color: #ff4f32;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: .4px;
}
.get-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.get-list li {
  font-size: 13.5px;
  color: #073166;
  font-weight: 900;
  margin: 5px 0;
  line-height: 1.15;
  white-space: nowrap;
}
.get-list li::before {
  content: '✓';
  display: inline-flex;
  width: 16px; height: 16px;
  background: #ff4f32;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-right: 7px;
}
.how-get-it {
  padding-left: 4px;
  padding-top: 0;
  margin-top: 0;
  align-self: start;
  color: #073166;
}
.how-get-it p {
  margin: 0;
  max-width: 650px;
  color: #073166;
  font-size: 15px;
  line-height: 1.32;
  font-weight: 900;
}

/* ── FINAL CTA BANNER ── */
.final-cta {
  position: relative;
  max-width: 1290px;
  margin: 0 auto 19px;
  background: #073a78;
  border-radius: 12px;
  min-height: 86px;
  height: auto;
  display: grid;
  grid-template-columns: 430px 1fr;
  align-items: center;
  padding: 18px 34px;
  color: #fff;
  overflow: visible;
}
.final-cta h2 {
  margin: 0;
  font-size: 25px;
}
.final-cta p {
  margin: 5px 0 0;
  font-size: 15px;
}
.footer-form {
  display: grid;
  grid-template-columns: 360px 220px;
  grid-template-rows: 50px 18px;
  column-gap: 18px;
  align-items: center;
  justify-content: end;
  justify-self: end;
  width: 100%;
}
.footer-form input {
  width: 360px;
  height: 50px;
  border-radius: 999px;
  border: none;
  padding: 0 22px;
  font-size: 16px;
  outline: none;
}
.footer-form button {
  grid-column: 2;
  grid-row: 1;
  height: 50px;
  min-width: 220px;
  border-radius: 999px;
  background: #ff5a2f;
  color: #fff;
  font-weight: 950;
  font-size: 16px;
  cursor: pointer;
}
.footer-form small {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  width: 220px;
  text-align: center;
  color: #d9f5f4;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  margin-top: 2px;
}
.cta-mascot { display: none; }

/* ── FOOTER ── */
.footer {
  max-width: 1290px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 170px;
  align-items: center;
  padding: 0 24px 24px;
  color: #073166;
}
.footer img { width: 160px; }
.footer nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 900;
}
.footer a {
  text-decoration: none;
  color: #082e62;
}
.socials {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  font-size: 30px;
  color: #073166;
  align-items: center;
}
.footer p {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: #486694;
  margin: 6px 0 0;
}

/* ── BEEHIIV (hidden — triggered via JS) ── */
.beehiiv-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  left: -9999px;
}

/* ── HONEST CAVEAT ── */
.honest-caveat {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #d6dfec;
}
.caveat-label {
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ff4f32;
  margin: 0 0 4px;
}
.caveat-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: #0d3a74;
  margin: 0;
  height: auto;
  border-left: 2px solid #ff4f32;
  padding-left: 8px;
}

/* ── FOOTER (2-col, no socials) ── */
.footer {
  grid-template-columns: 280px 1fr;
}
/* ══════════════════════════════════════════════════
   TABLET  (600px – 900px)
   Deal cards go 2-column. Other adjustments.
══════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* ── STICKY NAV ── */
  .sticky-nav {
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 64px;
    padding: 10px 20px;
  }
  .sticky-logo-link img { width: 120px; }
  .sticky-menu          { display: none; }
  .sticky-cta           { min-width: 130px; height: 38px; font-size: 13px; top: 0; }

  /* ── HERO ── */
  .hero-shell { min-height: 0; height: auto; overflow: hidden; }

  /* Hide main nav links on mobile — sticky nav handles navigation */
  .main-nav { display: none; }

  /* Header: just the logo, centred */
  .site-header {
    grid-template-columns: 1fr;
    justify-items: flex-start;
    padding: 20px 24px 0;
    height: auto;
  }
  .logo-link {
    position: relative;
    top: 0;
    width: 180px;
  }
  .site-logo { width: 180px; }

  /* Hero content: stack vertically */
  .hero-content {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 32px;
  }

  /* Mascot: above copy on mobile */
  .hero-mascot {
    position: relative;
    right: auto; top: auto; bottom: auto;
    width: min(280px, 65vw);
    display: block;
    margin: 16px auto -10px;
    order: -1;
  }

  /* Copy: full width, padded */
  .hero-copy {
    position: relative;
    left: auto; top: auto;
    width: 100%;
    padding: 0 24px;
    margin: 0;
    order: 1;
  }
  .pill { font-size: 14px; padding: 0 18px; height: 36px; }
  .hero-copy h1 {
    font-size: clamp(32px, 8vw, 44px);
    letter-spacing: -1.5px;
    margin: 16px 0 14px;
  }
  .hero-subcopy {
    width: 100%;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  /* Form: stack input above button */
  .waitlist-form {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    max-width: 100%;
  }
  .waitlist-form input  { width: 100%; height: 48px; font-size: 15px; }
  .waitlist-form button { width: 100%; height: 48px; font-size: 15px; min-width: 0; }
  .early-note           { font-size: 13px; }

  /* ── HOW IT WORKS ── */
  .how-section { padding: 32px 24px 32px; }
  .how-section h2 { font-size: 16px; margin-bottom: 28px; }
  .steps { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .dotted-arrow { display: none; }
  .step p { max-width: 100%; font-size: 13px; }
  .step h3 { font-size: 15px; }

  /* ── DIFFERENCE ── */
  .difference { margin: 0 16px 28px; padding: 20px 16px 24px; }
  .difference h2 { font-size: 16px; margin-bottom: 18px; }
  .difference-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .difference article {
    border-right: none;
    border-bottom: 1px solid #bed4dc;
    padding: 16px 14px;
  }
  .difference article:nth-child(odd)  { border-right: 1px solid #bed4dc; }
  .difference article:last-child,
  .difference article:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .difference h3 { font-size: 15px; margin: 8px 0 6px; }
  .difference p  { font-size: 13px; }
  .diff-icon     { width: 36px; height: 36px; }

  /* ── DEALS ── */
  .deals-section { padding: 0 16px; margin-bottom: 20px; }
  .section-head  { margin: 0 0 14px; }
  .section-head h2 { font-size: 16px; }
  .deal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .deal-card    { margin-bottom: 0; }
  .image-wrap   { height: 120px; }
  .deal-body    { padding: 12px 12px 14px; }
  .deal-body h3 { font-size: 15px; margin-bottom: 4px; }
  .deal-body p  { font-size: 12px; height: auto; margin-bottom: 6px; }
  .price        { font-size: 24px; margin-bottom: 8px; }
  .deal-meta    { font-size: 10px; gap: 4px 6px; }
  .caveat-label { font-size: 9.5px; }
  .caveat-text  { font-size: 11.5px; }
  .price-note   { font-size: 12px; margin: 12px 0 0; }

  /* ── PRICING BAND ── */
  .pricing-band {
    display: grid;
    grid-template-columns: 100px 1fr;
    margin: 0 16px 20px;
    padding: 20px 20px 24px;
    column-gap: 16px;
    min-height: 0;
  }
  .pricing-mascot-wrap {
    grid-row: 1 / 3;
    width: 90px;
    height: auto;
    align-self: start;
    margin-top: 8px;
  }
  .pricing-mascot   { width: 90px; }
  .get-list         { grid-column: 2; border-right: none; padding-right: 0; border-bottom: 1px solid #ffcab9; padding-bottom: 16px; margin-bottom: 0; }
  .get-list h2      { font-size: 16px; margin-bottom: 10px; }
  .get-list li      { font-size: 12.5px; white-space: normal; }
  .how-get-it       { grid-column: 2; padding-top: 14px; }
  .how-get-it h2    { font-size: 16px; margin-bottom: 8px; }
  .how-get-it p     { font-size: 13px; line-height: 1.5; max-width: 100%; }

  /* ── FINAL CTA ── */
  .final-cta {
    display: block;
    height: auto;
    min-height: 0;
    margin: 0 16px 20px;
    padding: 24px 20px;
    grid-template-columns: none;
    overflow: visible;
    border-radius: 10px;
  }
  .final-cta h2 { font-size: 18px; line-height: 1.3; margin-bottom: 6px; }
  .final-cta > div:first-child { margin-bottom: 18px; }
  .final-cta p  { font-size: 13px; }

  /* Footer form: stack on mobile */
  .footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-template-columns: none;
    grid-template-rows: none;
  }
  .footer-form input  { width: 100%; height: 46px; }
  .footer-form button {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: 46px;
    min-width: 0;
  }
  .footer-form small  {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    text-align: center;
    color: #d9f5f4;
    font-size: 11px;
  }
  #footer-success {
    text-align: center;
    font-size: 13px;
    max-width: 100%;
  }

  /* ── FOOTER ── */
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 0 24px 28px;
  }
  .footer img { width: 140px; }
  .footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    font-size: 13px;
  }
  .footer p { font-size: 11px; }
}

/* ══════════════════════════════════════════════════
   PHONE  (max 540px)
   Single column deals, tighter type, smaller mascot
══════════════════════════════════════════════════ */
@media (max-width: 540px) {

  /* Hero */
  .hero-mascot  { width: min(240px, 60vw); }
  .hero-copy h1 { font-size: clamp(28px, 7.5vw, 36px); }

  /* Steps: single column on small phones */
  .steps { grid-template-columns: 1fr; gap: 20px; }

  /* Difference: single column */
  .difference-grid { grid-template-columns: 1fr; }
  .difference article { border-right: none; }
  .difference article:nth-child(odd) { border-right: none; }
  .difference article:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid #bed4dc; }

  /* Deals: single column */
  .deal-grid { grid-template-columns: 1fr; gap: 14px; }
  .image-wrap { height: 150px; }

  /* Pricing band: single column */
  .pricing-band {
    grid-template-columns: 1fr;
  }
  .pricing-mascot-wrap {
    grid-row: auto;
    width: 80px;
    margin: 0 auto 12px;
    display: flex;
    justify-content: center;
  }
  .pricing-mascot { width: 80px; }
  .get-list  { grid-column: 1; }
  .how-get-it { grid-column: 1; }

  /* CTA */
  .final-cta { margin: 0 12px 16px; padding: 20px 16px; }
  .final-cta h2 { font-size: 16px; }
}

/* ── MOBILE-ONLY HERO SKYLINE REPOSITION ──
   Keeps desktop untouched. Moves the skyline into the top hero area
   behind the mascot on tablet/phone layouts only.
*/
@media (max-width: 900px) {
  .hero-shell {
    background: #fbfaf6;
  }

  .skyline-layer {
    background-size: auto 430px;
    background-position: center 56px;
  }

  .skyline-soft-fade {
    background:
      linear-gradient(180deg,
        rgba(251,250,246,.18) 0%,
        rgba(251,250,246,.08) 32%,
        rgba(251,250,246,.62) 58%,
        rgba(251,250,246,1) 82%,
        rgba(251,250,246,1) 100%
      ),
      linear-gradient(90deg,
        rgba(251,250,246,.78) 0%,
        rgba(251,250,246,.28) 40%,
        rgba(251,250,246,.10) 70%,
        rgba(251,250,246,.50) 100%
      );
  }

  .site-header,
  .hero-content,
  .hero-copy,
  .hero-mascot {
    position: relative;
  }

  .site-header {
    z-index: 6;
  }

  .hero-content {
    z-index: 4;
    padding-top: 6px;
  }

  .hero-mascot {
    z-index: 5;
    margin-top: 22px;
    margin-bottom: 10px;
  }

  .hero-copy {
    z-index: 6;
  }
}

@media (max-width: 540px) {
  .skyline-layer {
    background-size: auto 390px;
    background-position: center 58px;
  }

  .site-header {
    padding-top: 18px;
  }

  .hero-mascot {
    width: min(286px, 74vw);
    margin-top: 24px;
    margin-bottom: 8px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .deal-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 14px;
  }

  .deal-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
}

/* ── MOBILE-ONLY HERO HEIGHT + SKYLINE TIGHTENING ──
   Desktop remains untouched. These overrides only apply below 900px.
*/
@media (max-width: 900px) {
  .skyline-layer {
    background-size: auto 410px;
    background-position: center top;
  }

  .skyline-soft-fade {
    background:
      linear-gradient(180deg,
        rgba(251,250,246,.05) 0%,
        rgba(251,250,246,.04) 30%,
        rgba(251,250,246,.50) 58%,
        rgba(251,250,246,1) 82%,
        rgba(251,250,246,1) 100%
      ),
      linear-gradient(90deg,
        rgba(251,250,246,.72) 0%,
        rgba(251,250,246,.22) 40%,
        rgba(251,250,246,.08) 70%,
        rgba(251,250,246,.44) 100%
      );
  }

  .site-header {
    padding-top: 12px;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 26px;
  }

  .hero-mascot {
    width: min(254px, 62vw);
    margin-top: 8px;
    margin-bottom: 4px;
  }
}

@media (max-width: 540px) {
  .skyline-layer {
    background-size: auto 370px;
    background-position: center top;
  }

  .site-header {
    padding-top: 10px;
  }

  .hero-mascot {
    width: min(252px, 66vw);
    margin-top: 6px;
    margin-bottom: 2px;
  }
}

/* ── MOBILE-ONLY FINAL MASCOT ADJUSTMENTS ──
   Desktop remains untouched. Keep the top hero mascot, reduce it by ~15%,
   and hide the lower pricing-section mascot on mobile only.
*/
@media (max-width: 900px) {
  .hero-mascot {
    width: min(216px, 53vw);
  }

  .pricing-mascot-wrap {
    display: none;
  }

  .pricing-band {
    grid-template-columns: 1fr;
  }

  .get-list,
  .how-get-it {
    grid-column: 1;
  }
}

@media (max-width: 540px) {
  .hero-mascot {
    width: min(214px, 56vw);
  }
}
