
:root {
  --lt-green-950: #0f4523;
  --lt-green-900: #145629;
  --lt-green-800: #1b682e;
  --lt-green-700: #277d32;
  --lt-leaf: #82b52f;
  --lt-lime: #b9e52e;
  --lt-cream: #fffdf7;
  --lt-soft: #f1f7eb;
  --lt-soft-2: #e7f2df;
  --lt-gold: #f5c94f;
  --lt-purple: #6e54ad;
  --lt-ink: #1f2c23;
  --lt-muted: #627068;
  --lt-line: rgba(20, 86, 41, .16);
  --lt-white: #fff;
  --shadow-sm: 0 7px 22px rgba(19, 69, 35, .08);
  --shadow-md: 0 16px 44px rgba(19, 69, 35, .12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--lt-ink);
  background: var(--lt-cream);
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--lt-green-950);
  color: white;
  padding: .7rem 1rem;
  border-radius: 0 0 12px 12px;
  z-index: 1000;
}
.skip-link:focus { top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,247,.96);
  border-bottom: 1px solid var(--lt-line);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--max);
  min-height: 92px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand img { width: 178px; height: auto; }
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-link {
  position: relative;
  padding: 12px 12px;
  border-radius: 12px;
  font-size: .97rem;
  font-weight: 700;
  color: #26342b;
  transition: background .18s ease, color .18s ease;
}
.nav-link:hover, .nav-link:focus-visible { background: var(--lt-soft); color: var(--lt-green-800); }
.nav-link[aria-current="page"] { color: var(--lt-green-800); }
.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 13px;
  right: 13px;
  bottom: 5px;
  border-radius: 99px;
  background: var(--lt-gold);
}
.nav-cta {
  margin-left: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--lt-green-700), var(--lt-green-900));
  box-shadow: 0 7px 18px rgba(20,86,41,.18);
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--lt-green-900); color: white; }

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--lt-line);
  border-radius: 14px;
  background: white;
  color: var(--lt-green-900);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
}

.page-banner {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,253,247,.96) 0%, rgba(255,253,247,.82) 46%, rgba(255,253,247,.15) 78%, rgba(255,253,247,0) 100%),
    url("../assets/backgrounds/meadow.webp") center 53% / cover no-repeat;
  border-bottom: 1px solid var(--lt-line);
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--lt-lime), var(--lt-green-700), var(--lt-leaf));
  opacity: .8;
}
.page-banner-inner {
  position: relative;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 42px 0 48px;
}
.eyebrow {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(241,247,235,.92);
  color: var(--lt-green-800);
  font-weight: 800;
  font-size: .83rem;
  letter-spacing: .015em;
}
.page-banner h1 {
  margin: 0;
  max-width: 700px;
  color: var(--lt-green-950);
  font-size: clamp(2.25rem, 4.6vw, 4.3rem);
  letter-spacing: -.04em;
  line-height: .98;
}
.page-banner p {
  max-width: 660px;
  margin: 18px 0 0;
  color: #38483d;
  font-size: clamp(1rem, 1.65vw, 1.2rem);
}

main { min-height: 50vh; }
.content-wrap {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 62px 0 82px;
}
.shell-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--lt-line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}
.shell-card h2 {
  margin: 0 0 12px;
  color: var(--lt-green-900);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}
.shell-card p { color: var(--lt-muted); font-size: 1.04rem; }
.shell-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 20px;
  border: 2px solid var(--lt-green-800);
  border-radius: 999px;
  font-weight: 800;
  color: var(--lt-green-800);
  background: white;
}
.button.primary { background: var(--lt-green-800); color: white; }
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.site-footer {
  background: var(--lt-green-950);
  color: #f4fbf4;
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 28px 34px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(130px, .7fr));
  gap: 38px;
}
.footer-brand img {
  width: 175px;
  filter: brightness(0) invert(1);
  opacity: .96;
}
.footer-brand p {
  max-width: 370px;
  color: #d2e4d5;
  margin: 17px 0 0;
  font-size: .94rem;
}
.footer-email {
  display: inline-block;
  margin-top: 12px;
  color: #f4fbf4;
  font-size: .92rem;
  font-weight: 700;
}
.footer-email:hover { text-decoration: underline; }
.footer-column h2 {
  margin: 0 0 13px;
  color: var(--lt-gold);
  font-size: .93rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.footer-column a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: #e8f2e9;
  font-size: .94rem;
}
.footer-column a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-bottom-inner {
  max-width: var(--max);
  min-height: 70px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #c9daca;
  font-size: .84rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 980px) {
  .header-inner { min-height: 78px; padding: 0 20px; }
  .brand img { width: 153px; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 14px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    background: var(--lt-cream);
    border-bottom: 1px solid var(--lt-line);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .nav-link { padding: 13px 16px; }
  .nav-link[aria-current="page"]::after { display: none; }
  .nav-cta { margin: 7px 0 0; text-align: center; }
  .footer-top { grid-template-columns: 1.35fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .page-banner {
    min-height: 300px;
    background:
      linear-gradient(180deg, rgba(255,253,247,.88) 0%, rgba(255,253,247,.78) 52%, rgba(255,253,247,.18) 100%),
      url("../assets/backgrounds/meadow.webp") 64% center / cover no-repeat;
  }
  .page-banner-inner, .content-wrap { width: min(100% - 34px, var(--max)); }
  .page-banner-inner { padding-top: 42px; }
  .page-banner h1 { max-width: 92%; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 42px 20px 28px; gap: 28px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { align-items: flex-start; flex-direction: column; padding: 20px; }
}

@media (max-width: 430px) {
  .footer-top { grid-template-columns: 1fr; }
  .shell-links { flex-direction: column; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}


/* ============================================================
   STAGE 4 — REAL HOMEPAGE
   Uses existing Little Talks / Little Beacons artwork and
   screenshots supplied from the current app builds.
   ============================================================ */

.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--lt-line);
  background:
    linear-gradient(90deg,
      rgba(255,253,247,.97) 0%,
      rgba(255,253,247,.91) 34%,
      rgba(255,253,247,.50) 58%,
      rgba(255,253,247,.04) 100%),
    url("../assets/backgrounds/meadow.webp") center 53% / cover no-repeat;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 11px;
  background: linear-gradient(90deg, var(--lt-lime), var(--lt-green-700), var(--lt-leaf));
  opacity: .88;
}
.home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  min-height: 650px;
  margin: 0 auto;
  padding: 70px 28px 72px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(510px, 1.1fr);
  gap: 44px;
  align-items: center;
}
.hero-copy { max-width: 570px; }
.hero-eyebrow { background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); }
.hero-copy h1 {
  margin: 16px 0 20px;
  max-width: 600px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--lt-green-950);
}
.hero-copy h1 span { color: var(--lt-green-700); }
.hero-lead {
  margin: 0;
  max-width: 570px;
  color: #334339;
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button.large { padding: 14px 22px; font-size: 1rem; }
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.hero-notes span {
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(20,86,41,.14);
  background: rgba(255,255,255,.72);
  color: var(--lt-green-900);
  font-size: .83rem;
  font-weight: 800;
}

.hero-products {
  position: relative;
  min-height: 525px;
}
.device {
  position: absolute;
  overflow: hidden;
  background: #121816;
  border: 5px solid #15201a;
  box-shadow: 0 22px 60px rgba(17,54,29,.24), inset 0 0 0 1px rgba(255,255,255,.25);
}
.device img { width: 100%; height: 100%; object-fit: cover; background: #eef7ee; }
.tablet-device {
  left: 0;
  top: 22px;
  width: min(575px, 87%);
  aspect-ratio: 1.34 / 1;
  border-radius: 31px;
  transform: rotate(-1.3deg);
}
.tablet-device img { object-position: center 18%; }
.phone-device {
  right: 1%;
  bottom: 5px;
  width: 250px;
  aspect-ratio: .78 / 1;
  border-radius: 34px;
  border-width: 6px;
  transform: rotate(2.2deg);
  z-index: 3;
  background: #eaf3e9;
}
.phone-device img {
  object-fit: contain;
  object-position: center top;
  background: #eaf3e9;
}
.device-camera {
  position: absolute;
  width: 45px;
  height: 5px;
  border-radius: 99px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0e0c;
  z-index: 2;
}
.device-speaker {
  position: absolute;
  width: 64px;
  height: 6px;
  border-radius: 99px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #060806;
  z-index: 2;
}
.hero-robin {
  position: absolute;
  width: 108px;
  left: -22px;
  bottom: 4px;
  z-index: 4;
  filter: drop-shadow(0 8px 11px rgba(21,70,35,.18));
}

.home-proof {
  background: var(--lt-green-950);
  color: white;
}
.home-proof-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 19px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.home-proof strong { font-size: 1.12rem; }
.home-proof span { color: #dce9df; }
.home-proof a { color: #dff7a6; font-weight: 800; white-space: nowrap; }

.home-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 28px;
}
.section-heading { max-width: 750px; margin-bottom: 40px; }
.section-heading.centered { margin: 0 auto 46px; text-align: center; }
.section-heading h2 {
  margin: 11px 0 13px;
  color: var(--lt-green-950);
  font-size: clamp(2.15rem, 3.7vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-heading p { margin: 0; color: var(--lt-muted); font-size: 1.08rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--lt-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-image {
  height: 225px;
  overflow: hidden;
  background: var(--lt-soft);
  border-bottom: 1px solid var(--lt-line);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.crop-board img { object-position: 50% 47%; transform: scale(1.04); }
.crop-predictive img { object-position: 50% 20%; transform: scale(1.06); }
.crop-personal img { object-position: 0% 44%; transform: scale(1.08); transform-origin: left center; }
.crop-edit img { object-position: 50% 31%; transform: scale(1.02); }
.feature-body { padding: 23px 22px 25px; }
.feature-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--lt-green-700);
  font-size: .77rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .065em;
}
.feature-body h3 { margin: 0 0 9px; color: var(--lt-green-950); font-size: 1.3rem; }
.feature-body p { margin: 0; color: var(--lt-muted); font-size: .94rem; line-height: 1.6; }

.connection-section {
  color: white;
  background:
    radial-gradient(circle at 20% 10%, rgba(185,229,46,.10), transparent 27%),
    linear-gradient(145deg, #0e4223, #17642e 58%, #1f7130);
}
.connection-inner { max-width: 1320px; margin: 0 auto; padding: 94px 28px; }
.light-heading h2 { color: white; }
.light-heading p { color: #d9e7dc; }
.dark-eyebrow { background: rgba(255,255,255,.11); color: #eaffbc; border: 1px solid rgba(255,255,255,.12); }

.message-flow {
  display: grid;
  grid-template-columns: 1fr 58px 1fr 58px 1fr;
  gap: 8px;
  align-items: center;
}
.flow-step {
  min-width: 0;
  padding: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
}
.flow-number {
  width: 35px;
  height: 35px;
  margin: -2px 0 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--lt-green-950);
  background: #e6ff9c;
  font-weight: 900;
}
.flow-image {
  height: 255px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: #eaf3e9;
}
.flow-image img { width: 100%; height: 100%; object-fit: cover; }
.landscape-shot img { object-position: center 19%; }
.portrait-shot img { object-position: center 12%; }
.loop-shot img { object-position: center 17%; }
.flow-step h3 { margin: 18px 0 7px; font-size: 1.25rem; }
.flow-step p { margin: 0; color: #dce8df; font-size: .93rem; }
.flow-arrow {
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: #dffc90;
}
.connection-note {
  width: fit-content;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 12px 18px;
  border-radius: 999px;
  color: #173b23;
  background: #f6e9b5;
  text-align: center;
}
.connection-note strong { margin-right: 5px; }

.split-showcase {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 76px;
  align-items: center;
}
.split-copy h2 {
  margin: 12px 0 18px;
  color: var(--lt-green-950);
  font-size: clamp(2.15rem, 3.6vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.split-copy > p { color: var(--lt-muted); font-size: 1.05rem; }
.tick-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 9px; }
.tick-list li { position: relative; padding-left: 30px; font-weight: 700; color: #34443a; }
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--lt-green-700);
  font-size: .75rem;
}
.text-link { color: var(--lt-green-800); font-weight: 900; }

.insights-stack {
  position: relative;
  min-height: 600px;
}
.screenshot-card {
  position: absolute;
  overflow: hidden;
  background: #15181e;
  border: 1px solid rgba(20,86,41,.15);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}
.screenshot-label {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.93);
  color: var(--lt-green-950);
  font-size: .79rem;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(0,0,0,.13);
}
.screenshot-card img { width: 100%; height: 100%; object-fit: cover; }
.insights-main {
  left: 0;
  top: 0;
  width: 64%;
  height: 555px;
  transform: rotate(-1.5deg);
}
.insights-main img { object-position: center 12%; }
.profile-peek {
  right: 0;
  top: 98px;
  width: 49%;
  height: 430px;
  transform: rotate(2.2deg);
}
.profile-peek img { object-position: center 4%; }

.personal-section { background: var(--lt-soft); border-block: 1px solid var(--lt-line); }
.personal-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 28px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}
.personal-device { min-height: 450px; position: relative; }
.mini-tablet {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1.2 / 1;
  border-radius: 30px;
  transform: rotate(-1deg);
}
.mini-tablet img { object-position: center 31%; }
.personal-copy h2 {
  margin: 12px 0 16px;
  color: var(--lt-green-950);
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.personal-copy p { color: var(--lt-muted); font-size: 1.05rem; margin-bottom: 24px; }

.tester-section { padding: 58px 28px 72px; background: var(--lt-cream); }
.tester-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 48px 42px 165px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(215,175,43,.35);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 10%, rgba(245,201,79,.28), transparent 28%),
    linear-gradient(135deg, #fff9df, #f6f8e9);
  box-shadow: var(--shadow-sm);
}
.tester-robin {
  position: absolute;
  width: 130px;
  left: 24px;
  bottom: 15px;
  filter: drop-shadow(0 8px 9px rgba(30,70,40,.15));
}
.tester-eyebrow { background: rgba(255,255,255,.64); }
.tester-copy h2 { margin: 10px 0 11px; color: var(--lt-green-950); font-size: 2.45rem; line-height: 1.05; }
.tester-copy p { margin: 0; color: #526157; }
.tester-mini-form label { display: block; margin-bottom: 8px; font-weight: 900; color: var(--lt-green-950); }
.tester-input-row { display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.tester-input-row input {
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid rgba(20,86,41,.22);
  border-radius: 14px;
  background: white;
  outline: none;
}
.tester-input-row input:focus { border-color: var(--lt-green-700); box-shadow: 0 0 0 3px rgba(39,125,50,.13); }
.tester-mini-form small { display: block; margin-top: 8px; color: #718076; font-size: .76rem; }

@media (max-width: 1100px) {
  .home-hero-inner { grid-template-columns: .9fr 1.1fr; gap: 22px; }
  .tablet-device { width: 95%; }
  .phone-device { width: 220px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .message-flow { grid-template-columns: 1fr 34px 1fr 34px 1fr; }
  .flow-image { height: 215px; }
  .split-showcase { gap: 42px; }
  .tester-inner { padding-left: 135px; grid-template-columns: 1fr; gap: 26px; }
  .tester-robin { width: 110px; }
}
@media (max-width: 850px) {
  .home-hero { background-position: 62% center; }
  .home-hero-inner { min-height: auto; padding-top: 48px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-products { min-height: 510px; max-width: 700px; width: 100%; margin: 0 auto; }
  .tablet-device { width: 88%; }
  .phone-device { width: 205px; }
  .home-proof-inner { grid-template-columns: 1fr; gap: 5px; }
  .home-proof a { margin-top: 5px; }
  .message-flow { grid-template-columns: 1fr; gap: 16px; }
  .flow-arrow { transform: rotate(90deg); height: 28px; }
  .flow-image { height: 330px; }
  .split-showcase { grid-template-columns: 1fr; }
  .insights-stack { min-height: 650px; }
  .personal-inner { grid-template-columns: 1fr; }
  .personal-device { min-height: auto; }
  .tester-inner { padding: 36px; }
  .tester-robin { display: none; }
}
@media (max-width: 620px) {
  .home-hero-inner { padding: 38px 20px 52px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 14vw, 4.1rem); }
  .hero-products { min-height: 390px; }
  .tablet-device { top: 12px; width: 95%; border-width: 4px; border-radius: 23px; }
  .phone-device { width: 160px; right: 0; border-radius: 25px; }
  .hero-robin { width: 75px; left: -6px; }
  .home-proof-inner { padding-inline: 20px; }
  .home-section, .connection-inner, .personal-inner { padding: 68px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-image { height: 255px; }
  .flow-image { height: 245px; }
  .connection-note { border-radius: 20px; }
  .insights-stack { min-height: 560px; }
  .insights-main { width: 82%; height: 470px; }
  .profile-peek { width: 62%; height: 330px; top: 180px; }
  .tester-section { padding: 40px 20px 58px; }
  .tester-inner { padding: 30px 22px; }
  .tester-copy h2 { font-size: 2rem; }
  .tester-input-row { grid-template-columns: 1fr; }
}


/* ============================================================
   STAGE 4 DISPLAY CORRECTION
   Full product screenshots preserve their real aspect ratios.
   Feature-card thumbnails remain deliberately cropped.
   ============================================================ */

/* HERO DEVICES */
.tablet-device {
  width: min(560px, 82%);
  aspect-ratio: 1536 / 1384;
}
.tablet-device img {
  object-fit: contain !important;
  object-position: center center !important;
}
.phone-device {
  width: 285px;
  aspect-ratio: 1384 / 1536;
  background: #eaf3e9;
}
.phone-device img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #eaf3e9;
}

/* LITTLE MESSAGES STORY - COMPLETE REAL SCREENS */
.flow-image {
  height: auto !important;
  display: grid;
  place-items: center;
  background: #eaf3e9;
}
.flow-image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
}
.landscape-shot { aspect-ratio: 1536 / 1384; }
.portrait-shot { aspect-ratio: 1384 / 1536; }

/* INSIGHTS / PROFILE / PDF - NO CROP */
.insights-stack {
  min-height: 680px;
}
.screenshot-card {
  background: #f7faf7;
}
.screenshot-card img {
  object-fit: contain !important;
  object-position: center center !important;
}
.insights-main {
  left: 0; top: 32px; width: 48%; height: auto;
  aspect-ratio: 1384 / 1536;
  transform: rotate(-1.2deg);
}
.report-peek {
  right: 0; top: 0; width: 46%; height: auto;
  aspect-ratio: 1062 / 1500;
  transform: rotate(1.5deg);
  overflow: visible;
  background: #fff;
  z-index: 3;
}
.report-peek img {
  border-radius: 24px;
  background: white;
}
.report-open {
  position: absolute;
  right: 14px; bottom: 14px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: 999px;
  background: #145629; color: white;
  font-size: .8rem; font-weight: 900;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.report-open:hover { background: #0f4420; }
.profile-peek {
  right: 4%; top: 430px; width: 48%; height: auto;
  aspect-ratio: 1536 / 1384;
  transform: rotate(1deg);
  z-index: 4;
}

/* SETTINGS CAPTURE IS PORTRAIT */
.personal-device {
  min-height: 520px;
  display: grid;
  place-items: center;
}
.mini-tablet {
  position: relative; inset: auto;
  width: min(440px, 86%);
  max-width: 440px;
  aspect-ratio: 1384 / 1536;
  margin-inline: auto;
}
.mini-tablet img {
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 1100px) {
  .phone-device { width: 245px; }
  .insights-stack { min-height: 630px; }
}
@media (max-width: 850px) {
  .tablet-device { width: 82%; }
  .phone-device { width: 215px; }
  .insights-stack { min-height: 770px; max-width: 650px; width: 100%; margin-inline: auto; }
  .insights-main { width: 52%; left: 1%; }
  .report-peek { width: 43%; right: 1%; }
  .profile-peek { width: 54%; top: 485px; right: 2%; }
}
@media (max-width: 620px) {
  .tablet-device { width: 90%; }
  .phone-device { width: 170px; }
  .insights-stack { min-height: 660px; }
  .insights-main { width: 59%; }
  .report-peek { width: 48%; }
  .profile-peek { width: 62%; top: 405px; }
  .report-open { font-size: .72rem; padding: 7px 10px; }
}


/* ============================================================
   STAGE 5 — SIMPLER HOMEPAGE + LOCAL-FIRST TRUST MESSAGE
   ============================================================ */

.compact-section { padding-top: 76px; padding-bottom: 78px; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.benefit-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.benefit-image {
  height: 190px;
  overflow: hidden;
  background: var(--lt-soft);
  border-bottom: 1px solid var(--lt-line);
}
.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.benefit-card:nth-child(1) .benefit-image img { object-position: center 44%; }
.benefit-card:nth-child(2) .benefit-image img { object-position: left 41%; transform: scale(1.05); transform-origin: left center; }
.benefit-card:nth-child(3) .benefit-image img { object-position: center 18%; }
.benefit-card:nth-child(4) .benefit-image img { object-position: center 9%; }
.benefit-card > div:last-child { padding: 22px; }
.benefit-card h3 { margin: 0 0 8px; color: var(--lt-green-950); font-size: 1.28rem; }
.benefit-card p { margin: 0 0 14px; color: var(--lt-muted); font-size: .94rem; line-height: 1.58; }
.benefit-card a { color: var(--lt-green-800); font-weight: 900; font-size: .9rem; }

.compact-connection .connection-inner { padding-top: 76px; padding-bottom: 76px; }
.simplified-flow .flow-step p { display: none; }
.simplified-flow .flow-step h3 { margin-bottom: 0; text-align: center; }
.simplified-flow .flow-image { height: 225px; }

.local-first-section {
  padding: 84px 28px;
  background:
    radial-gradient(circle at 85% 15%, rgba(186,227,64,.14), transparent 26%),
    linear-gradient(180deg, #fbfdf7 0%, #eef7e9 100%);
  border-bottom: 1px solid var(--lt-line);
}
.local-first-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 62px;
  align-items: center;
}
.local-first-copy h2 {
  margin: 12px 0 17px;
  color: var(--lt-green-950);
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.local-first-copy > p {
  margin: 0;
  color: #435248;
  font-size: 1.08rem;
  line-height: 1.68;
}
.local-points {
  margin: 28px 0;
  display: grid;
  gap: 12px;
}
.local-points > div {
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 14px;
  border: 1px solid rgba(20,86,41,.13);
  border-radius: 15px;
  background: rgba(255,255,255,.68);
}
.local-points strong { color: var(--lt-green-900); }
.local-points span { color: var(--lt-muted); font-size: .93rem; }
.local-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }

.local-visual {
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  gap: 12px;
  align-items: center;
}
.local-device {
  position: relative;
  height: 410px;
  overflow: hidden;
  border: 6px solid #17231b;
  border-radius: 30px;
  background: #ecf3e9;
  box-shadow: var(--shadow-md);
}
.local-device img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #ecf3e9;
}
.local-device-label {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: var(--lt-green-950);
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 5px 16px rgba(0,0,0,.12);
}
.local-child { transform: rotate(-1.3deg); }
.local-parent { transform: rotate(1.5deg); }
.local-link {
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--lt-green-800);
  font-weight: 1000;
}
.local-link span:first-child {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff7c7;
  border: 1px solid rgba(215,175,43,.35);
  font-size: .76rem;
  letter-spacing: .08em;
}
.local-link span:last-child { font-size: 2.25rem; }
.local-link div {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--lt-green-700) 0 8px, transparent 8px 14px);
}

@media (max-width: 1100px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .local-first-inner { gap: 38px; }
  .local-visual { grid-template-columns: 1fr 78px 1fr; }
  .local-device { height: 350px; }
}
@media (max-width: 850px) {
  .local-first-inner { grid-template-columns: 1fr; }
  .local-visual { max-width: 700px; width: 100%; margin: 0 auto; }
  .local-device { height: 410px; }
}
@media (max-width: 620px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-image { height: 230px; }
  .local-first-section { padding: 66px 20px; }
  .local-points > div { grid-template-columns: 1fr; gap: 3px; }
  .local-visual { grid-template-columns: 1fr; gap: 14px; }
  .local-device { height: 390px; }
  .local-link { grid-template-columns: 1fr auto 1fr; gap: 8px; }
  .local-link div { width: 100%; }
  .local-link span:last-child { transform: rotate(90deg); }
}

/* ============================================================
   STAGE 6 — LITTLE TALKS AAC PAGE
   ============================================================ */

.product-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,253,247,.96) 0%, rgba(255,253,247,.89) 38%, rgba(255,253,247,.2) 72%),
    url("../assets/backgrounds/meadow.webp") center 53% / cover no-repeat;
  border-bottom: 1px solid var(--lt-line);
}
.product-hero-inner {
  max-width: var(--max);
  min-height: 610px;
  margin: 0 auto;
  padding: 70px 28px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 50px;
  align-items: center;
}
.product-copy { max-width: 590px; }
.product-copy h1 {
  margin: 14px 0 20px;
  color: var(--lt-green-950);
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.product-copy > p { margin: 0; color: #3f5045; font-size: 1.15rem; line-height: 1.66; }
.product-device-wrap { position: relative; min-height: 490px; }
.product-tablet {
  position: absolute;
  inset: 10px 0 auto auto;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 1.34 / 1;
  border-radius: 31px;
  transform: rotate(-1deg);
}
.product-tablet img { object-fit: contain; object-position: center top; background: #eef7ee; }
.product-robin {
  position: absolute;
  width: 112px;
  left: -15px;
  bottom: 0;
  z-index: 4;
  filter: drop-shadow(0 8px 12px rgba(21,70,35,.18));
}

.product-strip { background: var(--lt-green-950); color: white; }
.product-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-strip-inner div { padding-right: 18px; border-right: 1px solid rgba(255,255,255,.14); }
.product-strip-inner div:last-child { border-right: none; }
.product-strip strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.product-strip span { color: #dce9df; font-size: .87rem; }

.product-section { max-width: var(--max); margin: 0 auto; padding: 90px 28px; }
.alt-product-section {
  max-width: none;
  background: var(--lt-soft);
  border-block: 1px solid var(--lt-line);
}
.alt-product-section > * { max-width: var(--max); margin-inline: auto; }

.wide-feature {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 56px;
  align-items: center;
}
.wide-feature-image,
.product-feature-shot,
.edit-feature-shot,
.settings-shot,
.next-app-shot {
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 27px;
  background: white;
  box-shadow: var(--shadow-md);
}
.wide-feature-image img,
.product-feature-shot img,
.edit-feature-shot img { width: 100%; height: auto; display: block; }

.wide-feature-copy h3 { margin: 0 0 14px; color: var(--lt-green-950); font-size: 2rem; }
.wide-feature-copy p { color: var(--lt-muted); font-size: 1.03rem; }

.two-feature-row { display: grid; gap: 60px; }
.product-feature-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.product-feature-card.reverse-card .product-feature-shot { order: 2; }
.product-feature-text h2,
.settings-copy h2,
.next-app-copy h2 {
  margin: 10px 0 14px;
  color: var(--lt-green-950);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.product-feature-text p,
.settings-copy p,
.next-app-copy p { color: var(--lt-muted); font-size: 1.05rem; }
.small-note {
  padding: 13px 14px;
  border-left: 4px solid var(--lt-green-700);
  border-radius: 8px;
  background: white;
}

.edit-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 54px;
  align-items: center;
}
.edit-feature-copy { display: grid; gap: 15px; }
.mini-point {
  padding: 18px;
  border: 1px solid var(--lt-line);
  border-radius: 17px;
  background: var(--lt-soft);
}
.mini-point strong { display: block; margin-bottom: 4px; color: var(--lt-green-900); font-size: 1.05rem; }
.mini-point span { color: var(--lt-muted); }

.settings-showcase {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: center;
}
.settings-copy p, .next-app-copy p { margin-bottom: 24px; }
.settings-shot { max-height: 580px; }
.settings-shot img,
.next-app-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.settings-shot img { max-height: 580px; }

.local-callout {
  padding: 72px 28px;
  background: linear-gradient(145deg, #104422, #17632e 58%, #1f7130);
  color: white;
}
.local-callout-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: center;
}
.local-callout .eyebrow {
  background: rgba(255,255,255,.1);
  color: #e6ffab;
  border: 1px solid rgba(255,255,255,.12);
}
.local-callout h2 {
  margin: 12px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.local-callout p { color: #dce9df; font-size: 1.07rem; }
.local-callout .text-link { color: #e4fb9c; }

.next-app-section { padding: 82px 28px; background: #fffdf7; }
.next-app-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.next-app-shot { max-height: 500px; background: #edf6ed; }
.next-app-shot img { max-height: 500px; }

@media (max-width: 980px) {
  .product-hero-inner,
  .wide-feature,
  .product-feature-card,
  .edit-feature,
  .settings-showcase,
  .local-callout-inner,
  .next-app-inner { grid-template-columns: 1fr; }

  .product-device-wrap { min-height: 500px; max-width: 760px; width: 100%; margin: 0 auto; }
  .product-feature-card.reverse-card .product-feature-shot { order: 0; }
  .product-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .product-strip-inner div:nth-child(2) { border-right: none; }
  .settings-shot, .next-app-shot { max-width: 720px; }
}
@media (max-width: 620px) {
  .product-hero-inner,
  .product-section,
  .local-callout,
  .next-app-section { padding-inline: 20px; }
  .product-hero-inner { padding-top: 44px; padding-bottom: 52px; }
  .product-device-wrap { min-height: 340px; }
  .product-robin { width: 78px; }
  .product-strip-inner { grid-template-columns: 1fr; padding-inline: 20px; }
  .product-strip-inner div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding-bottom: 14px;
  }
  .product-strip-inner div:last-child { border-bottom: none; }
}

/* ============================================================
   STAGE 7 — LITTLE BEACONS PAGE
   ============================================================ */

.beacons-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,253,247,.97) 0%, rgba(255,253,247,.90) 39%, rgba(255,253,247,.18) 74%),
    url("../assets/backgrounds/meadow.webp") center 52% / cover no-repeat;
  border-bottom: 1px solid var(--lt-line);
}
.beacons-hero-inner {
  max-width: var(--max);
  min-height: 610px;
  margin: 0 auto;
  padding: 70px 28px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.beacons-copy { max-width: 600px; }
.beacons-copy h1 {
  margin: 14px 0 20px;
  color: var(--lt-green-950);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.beacons-copy > p { margin: 0; color: #3f5045; font-size: 1.15rem; line-height: 1.66; }

.beacons-device-wrap { position: relative; min-height: 500px; }
.beacons-phone-frame {
  position: absolute;
  right: 10%;
  top: 12px;
  width: min(440px, 78%);
  height: 485px;
  padding: 13px 10px 12px;
  overflow: hidden;
  border: 7px solid #15201a;
  border-radius: 44px;
  background: #edf5ec;
  box-shadow: 0 22px 60px rgba(17,54,29,.24), inset 0 0 0 1px rgba(255,255,255,.2);
  transform: rotate(1.7deg);
}
.beacons-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: 30px;
  background: #edf5ec;
}
.beacons-phone-speaker {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 68px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #090d0a;
}
.beacons-robin {
  position: absolute;
  width: 118px;
  left: 4%;
  bottom: 0;
  z-index: 4;
  filter: drop-shadow(0 8px 12px rgba(21,70,35,.18));
}

.beacons-section { max-width: var(--max); margin: 0 auto; padding: 90px 28px; }
.beacons-soft {
  max-width: none;
  background: var(--lt-soft);
  border-block: 1px solid var(--lt-line);
}
.beacons-soft > * { max-width: var(--max); margin-inline: auto; }

.beacons-message-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.beacons-panel {
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 25px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.beacons-panel-shot {
  height: 310px;
  overflow: hidden;
  border-bottom: 1px solid var(--lt-line);
  background: #eef6ed;
}
.beacons-panel-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #eef6ed;
}
.beacons-panel-copy { padding: 20px 22px 24px; }
.panel-step {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--lt-green-700);
  color: white;
  font-weight: 900;
}
.beacons-panel h3 { margin: 0 0 7px; color: var(--lt-green-950); font-size: 1.28rem; }
.beacons-panel p { margin: 0; color: var(--lt-muted); font-size: .94rem; line-height: 1.58; }

.beacons-profile-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: center;
}
.beacons-profile-shot {
  max-height: 590px;
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 28px;
  background: #171a21;
  box-shadow: var(--shadow-md);
}
.beacons-profile-shot img {
  width: 100%;
  height: 100%;
  max-height: 590px;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.beacons-profile-copy h2,
.backup-copy h2,
.report-copy h2 {
  margin: 11px 0 16px;
  color: var(--lt-green-950);
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.beacons-profile-copy > p,
.backup-copy > p,
.report-copy > p { color: var(--lt-muted); font-size: 1.05rem; }
.profile-points { margin-top: 24px; display: grid; gap: 12px; }
.profile-points div {
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  border-radius: 15px;
  border: 1px solid var(--lt-line);
  background: white;
}
.profile-points strong { color: var(--lt-green-900); }
.profile-points span { color: var(--lt-muted); font-size: .92rem; }

.backup-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 62px;
  align-items: center;
}
.backup-visual {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 12px;
  align-items: center;
}
.backup-box {
  min-height: 185px;
  padding: 28px 22px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--lt-line);
  border-radius: 24px;
  background: #f5faef;
  box-shadow: var(--shadow-sm);
}
.backup-box strong { display: block; color: var(--lt-green-950); font-size: 1.35rem; }
.backup-box span { color: var(--lt-muted); font-size: .92rem; }
.parent-box { background: #eef6ff; }
.backup-arrow { text-align: center; color: var(--lt-green-700); font-size: 2.8rem; font-weight: 900; }

.insights-deep-section {
  padding: 92px 28px;
  color: white;
  background:
    radial-gradient(circle at 18% 8%, rgba(188,230,50,.10), transparent 26%),
    linear-gradient(145deg, #0e4223, #17642e 58%, #1f7130);
}
.insights-deep-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.insights-deep-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.insights-deep-copy > p { color: #dce9df; font-size: 1.06rem; }
.insight-points {
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}
.insight-points div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}
.insight-points strong { display: block; margin-bottom: 3px; color: #efffc1; }
.insight-points span { color: #dce9df; font-size: .88rem; }
.insights-privacy-note {
  padding: 13px 14px;
  border-left: 4px solid #dfff8a;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.insights-deep-shot {
  overflow: hidden;
  max-height: 640px;
  border-radius: 27px;
  border: 1px solid rgba(255,255,255,.15);
  background: #15181e;
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
}
.insights-deep-shot img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.report-section { padding: 92px 28px; background: #fffdf7; }
.report-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 62px;
  align-items: center;
}
.report-preview {
  max-height: 650px;
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-md);
}
.report-preview img {
  width: 100%;
  height: 100%;
  max-height: 650px;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.report-copy .small-note { margin-top: 16px; }

.beacons-local-section {
  padding: 72px 28px;
  background: #edf7e9;
  border-block: 1px solid var(--lt-line);
}
.beacons-local-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: center;
}
.beacons-local-inner h2 {
  margin: 11px 0 0;
  color: var(--lt-green-950);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.beacons-local-inner p { color: var(--lt-muted); font-size: 1.05rem; }

@media (max-width: 980px) {
  .beacons-hero-inner,
  .beacons-profile-layout,
  .backup-layout,
  .insights-deep-inner,
  .report-inner,
  .beacons-local-inner { grid-template-columns: 1fr; }

  .beacons-device-wrap { min-height: 500px; }
  .beacons-phone-frame { left: 50%; right: auto; transform: translateX(-50%) rotate(1.2deg); }
  .beacons-message-grid { grid-template-columns: 1fr; }
  .beacons-panel-shot { height: 430px; }
  .backup-visual { max-width: 720px; width: 100%; margin: 0 auto; }
}
@media (max-width: 620px) {
  .beacons-hero-inner,
  .beacons-section,
  .insights-deep-section,
  .report-section,
  .beacons-local-section { padding-inline: 20px; }

  .beacons-hero-inner { padding-top: 44px; padding-bottom: 52px; }
  .beacons-device-wrap { min-height: 420px; }
  .beacons-phone-frame { width: min(350px, 92%); height: 400px; }
  .beacons-robin { width: 80px; left: 0; }
  .beacons-panel-shot { height: 300px; }
  .profile-points div { grid-template-columns: 1fr; gap: 3px; }
  .backup-visual { grid-template-columns: 1fr; }
  .backup-arrow { transform: rotate(90deg); }
  .insight-points { grid-template-columns: 1fr; }
}

/* ============================================================
   STAGE 8 — BACKUP VISUAL FIX + FEATURES PAGE
   ============================================================ */

/* Replace the generic backup boxes with genuine app screenshots. */
.real-backup-flow {
  grid-template-columns: 1fr 95px 1fr;
  gap: 14px;
}
.backup-screen-card {
  position: relative;
  height: 430px;
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 26px;
  background: #f3f7f0;
  box-shadow: var(--shadow-md);
}
.backup-screen-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #f3f7f0;
}
.backup-screen-label {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--lt-green-950);
  background: rgba(255,255,255,.95);
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 5px 15px rgba(0,0,0,.12);
}
.real-backup-arrow {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--lt-green-700);
}
.real-backup-arrow span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff7c6;
  border: 1px solid rgba(215,175,43,.35);
  color: #5a501b;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.real-backup-arrow b {
  font-size: 2.7rem;
  line-height: 1;
}

/* Features page */
.features-hero {
  background:
    linear-gradient(90deg, rgba(255,253,247,.97), rgba(255,253,247,.89) 45%, rgba(255,253,247,.3) 80%),
    url("../assets/backgrounds/meadow.webp") center 54% / cover no-repeat;
  border-bottom: 1px solid var(--lt-line);
}
.features-hero-inner {
  max-width: var(--max);
  min-height: 570px;
  margin: 0 auto;
  padding: 70px 28px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.features-hero-copy h1 {
  margin: 14px 0 20px;
  max-width: 700px;
  color: var(--lt-green-950);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.features-hero-copy p {
  margin: 0;
  max-width: 650px;
  color: #405047;
  font-size: 1.15rem;
  line-height: 1.67;
}
.features-hero-visual {
  display: grid;
  grid-template-columns: 1fr 85px 1fr;
  gap: 10px;
  align-items: center;
}
.features-device {
  position: relative;
  height: 370px;
  overflow: hidden;
  border: 6px solid #17231b;
  border-radius: 28px;
  background: #edf5ec;
  box-shadow: var(--shadow-md);
}
.features-device > span {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: var(--lt-green-950);
  font-size: .75rem;
  font-weight: 900;
}
.features-device img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #edf5ec;
}
.child-feature-device { transform: rotate(-1.2deg); }
.parent-feature-device { transform: rotate(1.5deg); }
.features-bridge {
  display: grid;
  place-items: center;
  gap: 7px;
  color: var(--lt-green-800);
}
.features-bridge span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff6be;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .07em;
}
.features-bridge b { font-size: 2.4rem; }

.feature-index-section {
  background: var(--lt-green-950);
}
.feature-index-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
}
.feature-index-inner a {
  padding: 10px 14px;
  border-right: 1px solid rgba(255,255,255,.12);
  color: white;
}
.feature-index-inner a:last-child { border-right: none; }
.feature-index-inner strong { display: block; margin-bottom: 3px; }
.feature-index-inner span { color: #dce9df; font-size: .8rem; }

.features-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 28px;
}
.features-alt {
  max-width: none;
  background: var(--lt-soft);
  border-block: 1px solid var(--lt-line);
}
.features-alt > * { max-width: var(--max); margin-inline: auto; }

.feature-chapter {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 60px;
  align-items: center;
}
.feature-chapter-copy h2 {
  margin: 11px 0 16px;
  color: var(--lt-green-950);
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.feature-chapter-copy > p {
  color: var(--lt-muted);
  font-size: 1.05rem;
  line-height: 1.66;
}
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 9px;
}
.feature-bullets li {
  position: relative;
  padding-left: 28px;
  color: #3e4d43;
  font-weight: 700;
}
.feature-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lt-green-700);
  font-weight: 1000;
}
.feature-chapter-shot {
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 27px;
  background: #eef6ed;
  box-shadow: var(--shadow-md);
}
.feature-chapter-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.reverse-chapter .feature-chapter-copy { order: 2; }

.feature-double-shot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.feature-double-shot > div {
  max-height: 500px;
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.feature-double-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.feature-example {
  margin-top: 24px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  border: 1px solid var(--lt-line);
  background: var(--lt-soft);
}
.feature-example span { font-size: 1.15rem; font-weight: 900; color: var(--lt-green-950); }
.feature-example b { color: var(--lt-green-700); }
.feature-example em { color: var(--lt-muted); font-style: normal; }

.features-dark {
  max-width: none;
  color: white;
  background:
    radial-gradient(circle at 18% 8%, rgba(188,230,50,.1), transparent 26%),
    linear-gradient(145deg,#0e4223,#17642e 58%,#1f7130);
}
.features-dark > * { max-width: var(--max); margin-inline: auto; }

.feature-message-flow {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  gap: 10px;
  align-items: center;
}
.feature-message-flow article {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 23px;
  background: rgba(255,255,255,.07);
}
.feature-message-flow article img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center top;
  border-radius: 16px;
  background: #eef6ed;
}
.feature-message-flow article strong {
  display: block;
  margin: 15px 0 4px;
  font-size: 1.2rem;
}
.feature-message-flow article span { color: #dce9df; font-size: .9rem; }
.feature-message-flow > b {
  text-align: center;
  color: #dfff90;
  font-size: 2.3rem;
}

.feature-backup-pair {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  gap: 10px;
  align-items: center;
}
.feature-backup-pair > div {
  position: relative;
  height: 440px;
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 25px;
  background: #f2f7ef;
  box-shadow: var(--shadow-md);
}
.feature-backup-pair > div span {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: var(--lt-green-950);
  font-size: .76rem;
  font-weight: 900;
}
.feature-backup-pair img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}
.feature-backup-pair > b {
  text-align: center;
  color: var(--lt-green-700);
  font-size: 2.4rem;
}

.feature-insights-stack {
  position: relative;
  min-height: 560px;
}
.feature-insights-shot,
.feature-report-peek {
  position: absolute;
  overflow: hidden;
  border-radius: 25px;
  border: 1px solid var(--lt-line);
  background: white;
  box-shadow: var(--shadow-md);
}
.feature-insights-shot {
  left: 0;
  top: 0;
  width: 68%;
  height: 520px;
  transform: rotate(-1.4deg);
}
.feature-report-peek {
  right: 0;
  top: 115px;
  width: 49%;
  height: 390px;
  transform: rotate(2deg);
}
.feature-insights-shot img,
.feature-report-peek img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.features-settings-section {
  padding: 86px 28px;
  background: #fffdf7;
}
.features-settings-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: center;
}
.features-settings-copy h2 {
  margin: 11px 0 16px;
  color: var(--lt-green-950);
  font-size: clamp(2.2rem,4vw,3.5rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.features-settings-copy p { color: var(--lt-muted); font-size: 1.05rem; }
.features-settings-shot {
  max-height: 570px;
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}
.features-settings-shot img {
  width: 100%;
  height: 100%;
  max-height: 570px;
  object-fit: contain;
  object-position: center top;
}

.feature-next-section {
  padding: 68px 28px;
  background: #edf7e9;
  border-block: 1px solid var(--lt-line);
}
.feature-next-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}
.feature-next-inner h2 {
  margin: 9px 0 0;
  color: var(--lt-green-950);
  font-size: clamp(2rem,3.5vw,3rem);
}
.feature-next-actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 1050px) {
  .features-hero-inner,
  .feature-chapter,
  .features-settings-inner { grid-template-columns: 1fr; }

  .features-hero-visual { max-width: 760px; width: 100%; margin: 0 auto; }
  .feature-index-inner { grid-template-columns: repeat(3,1fr); }
  .feature-index-inner a:nth-child(3) { border-right: none; }
  .reverse-chapter .feature-chapter-copy { order: 0; }
}
@media (max-width: 820px) {
  .feature-message-flow { grid-template-columns: 1fr; }
  .feature-message-flow > b { transform: rotate(90deg); }
  .feature-backup-pair { grid-template-columns: 1fr; }
  .feature-backup-pair > b { transform: rotate(90deg); }
  .feature-next-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .real-backup-flow,
  .features-hero-visual { grid-template-columns: 1fr; }
  .real-backup-arrow b,
  .features-bridge b { transform: rotate(90deg); }

  .backup-screen-card { height: 390px; }
  .features-hero-inner,
  .features-section,
  .features-settings-section,
  .feature-next-section { padding-inline: 20px; }

  .features-hero-inner { padding-top: 44px; padding-bottom: 52px; }
  .features-device { height: 340px; }
  .feature-index-inner { grid-template-columns: 1fr 1fr; padding-inline: 20px; }
  .feature-index-inner a { border-bottom: 1px solid rgba(255,255,255,.12); }
  .feature-double-shot { grid-template-columns: 1fr; }
  .feature-backup-pair > div { height: 390px; }
  .feature-insights-stack { min-height: 510px; }
  .feature-insights-shot { width: 80%; height: 445px; }
  .feature-report-peek { width: 58%; height: 310px; top: 170px; }
}

/* ============================================================
   STAGE 9 — ABOUT PAGE
   ============================================================ */

.about-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,253,247,.97) 0%, rgba(255,253,247,.9) 43%, rgba(255,253,247,.25) 80%),
    url("../assets/backgrounds/meadow.webp") center 53% / cover no-repeat;
  border-bottom: 1px solid var(--lt-line);
}
.about-hero-inner {
  max-width: var(--max);
  min-height: 540px;
  margin: 0 auto;
  padding: 72px 28px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
}
.about-copy h1 {
  margin: 14px 0 20px;
  color: var(--lt-green-950);
  font-size: clamp(3rem,5vw,5rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.about-copy p {
  margin: 0;
  max-width: 690px;
  color: #405047;
  font-size: 1.15rem;
  line-height: 1.68;
}
.about-art {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.about-logo-mark {
  width: min(430px,85%);
  filter: drop-shadow(0 14px 28px rgba(21,70,35,.12));
}
.about-robin {
  position: absolute;
  width: 120px;
  left: 8%;
  bottom: 0;
  filter: drop-shadow(0 8px 11px rgba(21,70,35,.18));
}

.about-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 28px;
}
.about-story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.about-story-copy h2,
.about-real-life-copy h2,
.about-build-copy h2 {
  margin: 11px 0 16px;
  color: var(--lt-green-950);
  font-size: clamp(2.2rem,4vw,3.55rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.about-story-copy p,
.about-real-life-copy p,
.about-build-copy p {
  color: var(--lt-muted);
  font-size: 1.05rem;
  line-height: 1.68;
}
.about-story-visual {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  gap: 10px;
  align-items: center;
}
.about-device {
  position: relative;
  height: 350px;
  overflow: hidden;
  border: 6px solid #17231b;
  border-radius: 28px;
  background: #edf5ec;
  box-shadow: var(--shadow-md);
}
.about-device span {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: var(--lt-green-950);
  font-size: .75rem;
  font-weight: 900;
}
.about-device img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}
.about-link {
  text-align: center;
  color: var(--lt-green-700);
  font-size: 2.5rem;
  font-weight: 900;
}

.about-values-section {
  padding: 90px 28px;
  background: var(--lt-soft);
  border-block: 1px solid var(--lt-line);
}
.about-values-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.about-values-grid article {
  padding: 26px 22px;
  border: 1px solid var(--lt-line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.value-number {
  display: block;
  margin-bottom: 18px;
  color: var(--lt-green-700);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.about-values-grid h3 {
  margin: 0 0 9px;
  color: var(--lt-green-950);
  font-size: 1.25rem;
}
.about-values-grid p {
  margin: 0;
  color: var(--lt-muted);
  line-height: 1.62;
  font-size: .94rem;
}

.about-real-life-section { padding: 92px 28px; }
.about-real-life-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: center;
}
.about-real-life-shot {
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 27px;
  background: #eef6ed;
  box-shadow: var(--shadow-md);
}
.about-real-life-shot img {
  width: 100%;
  display: block;
}

.about-local-section {
  padding: 76px 28px;
  color: white;
  background: linear-gradient(145deg,#104422,#17632e 58%,#1f7130);
}
.about-local-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.about-local-inner .eyebrow {
  background: rgba(255,255,255,.1);
  color: #e6ffab;
  border: 1px solid rgba(255,255,255,.12);
}
.about-local-inner h2 {
  margin: 11px 0 0;
  font-size: clamp(2.2rem,4vw,3.7rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.about-local-inner p {
  color: #dce9df;
  font-size: 1.07rem;
  line-height: 1.66;
}
.about-local-inner .button.primary {
  background: #e4fb9c;
  color: var(--lt-green-950);
}

.about-build-section {
  padding: 90px 28px;
  background: #fffdf7;
}
.about-build-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
}
.about-build-card {
  padding: 34px;
  display: grid;
  gap: 7px;
  border: 1px solid var(--lt-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(245,201,79,.2), transparent 30%),
    linear-gradient(145deg,#f5faef,#fff7d9);
  box-shadow: var(--shadow-sm);
}
.about-build-card strong {
  margin-top: 14px;
  color: var(--lt-green-950);
  font-size: 1.35rem;
}
.about-build-card strong:first-child { margin-top: 0; }
.about-build-card span {
  color: var(--lt-muted);
  font-size: 1rem;
}

.about-next-section {
  padding: 68px 28px;
  background: #edf7e9;
  border-block: 1px solid var(--lt-line);
}
.about-next-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.about-next-inner h2 {
  margin: 9px 0 0;
  color: var(--lt-green-950);
  font-size: clamp(2rem,3.5vw,3rem);
}
.about-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1000px) {
  .about-hero-inner,
  .about-story-grid,
  .about-real-life-inner,
  .about-local-inner,
  .about-build-inner { grid-template-columns: 1fr; }

  .about-art { min-height: 300px; }
  .about-values-grid { grid-template-columns: repeat(2,1fr); }
  .about-story-visual { max-width: 760px; width: 100%; margin: 0 auto; }
}
@media (max-width: 700px) {
  .about-next-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .about-hero-inner,
  .about-section,
  .about-values-section,
  .about-real-life-section,
  .about-local-section,
  .about-build-section,
  .about-next-section { padding-inline: 20px; }

  .about-hero-inner { padding-top: 44px; padding-bottom: 52px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-story-visual { grid-template-columns: 1fr; }
  .about-link { transform: rotate(90deg); }
  .about-device { height: 330px; }
}

/* ============================================================
   STAGE 10 — TESTER, SUPPORT, CONTACT, LEGAL & 404
   ============================================================ */

.finish-hero {
  background:
    linear-gradient(90deg, rgba(255,253,247,.97), rgba(255,253,247,.9) 47%, rgba(255,253,247,.3) 84%),
    url("../assets/backgrounds/meadow.webp") center 54% / cover no-repeat;
  border-bottom: 1px solid var(--lt-line);
}
.finish-hero-inner {
  max-width: var(--max);
  min-height: 470px;
  margin: 0 auto;
  padding: 70px 28px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
}
.finish-hero h1 {
  margin: 14px 0 18px;
  max-width: 780px;
  color: var(--lt-green-950);
  font-size: clamp(3rem,5vw,4.9rem);
  line-height: .99;
  letter-spacing: -.045em;
}
.finish-hero p {
  max-width: 720px;
  color: #405047;
  font-size: 1.13rem;
  line-height: 1.67;
}
.finish-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 28px;
}

/* Tester */
.tester-hero-card, .contact-card {
  padding: 30px;
  display: grid;
  gap: 9px;
  border: 1px solid rgba(20,86,41,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}
.tester-hero-card strong {
  margin-bottom: 8px;
  color: var(--lt-green-950);
  font-size: 1.4rem;
}
.tester-hero-card span {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--lt-green-900);
  background: var(--lt-soft);
  font-weight: 800;
}
.tester-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: start;
}
.tester-info h2, .contact-help h2 {
  margin: 11px 0 16px;
  color: var(--lt-green-950);
  font-size: clamp(2.2rem,4vw,3.45rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.tester-info > p, .contact-help > p { color: var(--lt-muted); font-size: 1.04rem; line-height: 1.67; }
.tester-steps { margin-top: 28px; display: grid; gap: 13px; }
.tester-steps article {
  padding: 16px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border: 1px solid var(--lt-line);
  border-radius: 16px;
  background: var(--lt-soft);
}
.tester-steps b {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--lt-green-700);
}
.tester-steps strong { display: block; color: var(--lt-green-950); margin-bottom: 3px; }
.tester-steps span { color: var(--lt-muted); font-size: .92rem; }

.tester-form-card, .contact-form-card {
  padding: 28px;
  border: 1px solid var(--lt-line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-md);
}
.tester-form-card h2, .contact-form-card h2 { margin-top: 0; color: var(--lt-green-950); font-size: 1.8rem; }
.tester-form-card > p { color: var(--lt-muted); }
.tester-form-card form, .contact-form-card {
  display: grid;
  gap: 9px;
}
.tester-form-card label, .contact-form-card label {
  margin-top: 7px;
  color: var(--lt-green-950);
  font-weight: 900;
}
.tester-form-card label span, .contact-form-card label span { color: var(--lt-muted); font-weight: 500; }
.tester-form-card input,
.tester-form-card select,
.tester-form-card textarea,
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(20,86,41,.22);
  border-radius: 12px;
  background: #fff;
  font: inherit;
}
.tester-form-card textarea, .contact-form-card textarea { resize: vertical; }
.consent-row {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin: 8px 0 4px;
  font-weight: 500 !important;
}
.consent-row input { width: auto; margin-top: 3px; }
.form-status {
  padding: 11px 12px;
  margin: 4px 0 0;
  border-radius: 11px;
  background: #fff6c8;
  color: #5e531c;
  font-size: .9rem;
}
.tester-form-card small { display: block; margin-top: 13px; color: var(--lt-muted); }
.tester-privacy-band, .support-contact-band {
  padding: 70px 28px;
  color: white;
  background: linear-gradient(145deg,#104422,#17632e 58%,#1f7130);
}
.tester-privacy-inner, .support-contact-band {
  max-width: none;
}
.tester-privacy-inner, .support-contact-band {
  margin: 0 auto;
}
.tester-privacy-inner {
  max-width: var(--max);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.tester-privacy-band .eyebrow, .support-contact-band .eyebrow {
  background: rgba(255,255,255,.1);
  color: #e6ffab;
  border: 1px solid rgba(255,255,255,.12);
}
.tester-privacy-band h2, .support-contact-band h2 {
  margin: 11px 0 0;
  font-size: clamp(2rem,3.7vw,3.3rem);
  line-height: 1.05;
}
.tester-privacy-band p, .support-contact-band p { color: #dce9df; font-size: 1.05rem; }

/* Support */
.support-hero-visual {
  display: grid;
  grid-template-columns: 1fr 45px 1fr;
  gap: 8px;
  align-items: center;
}
.support-hero-visual div {
  height: 280px;
  overflow: hidden;
  border: 5px solid #17231b;
  border-radius: 24px;
  background: #edf5ec;
  box-shadow: var(--shadow-sm);
}
.support-hero-visual img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center top;
}
.support-hero-visual b { text-align: center; color: var(--lt-green-700); font-size: 2rem; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.support-grid article {
  padding: 25px 22px;
  border: 1px solid var(--lt-line);
  border-radius: 21px;
  background: var(--lt-soft);
}
.support-grid article > span { color: var(--lt-green-700); font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.support-grid h2 { color: var(--lt-green-950); font-size: 1.25rem; }
.support-grid p { color: var(--lt-muted); line-height: 1.6; font-size: .93rem; }
.faq-section {
  padding: 88px 28px;
  background: #fffdf7;
  border-block: 1px solid var(--lt-line);
}
.faq-list { max-width: 920px; margin: 0 auto; display: grid; gap: 10px; }
.faq-list details {
  border: 1px solid var(--lt-line);
  border-radius: 14px;
  background: white;
  overflow: hidden;
}
.faq-list summary {
  padding: 16px 18px;
  cursor: pointer;
  color: var(--lt-green-950);
  font-weight: 900;
}
.faq-list details p { padding: 0 18px 18px; margin: 0; color: var(--lt-muted); line-height: 1.62; }
.support-contact-band {
  max-width: none;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: center;
}
.support-contact-band > * { max-width: 650px; }
.support-contact-band .button.primary { background: #e4fb9c; color: var(--lt-green-950); }

/* Contact */
.contact-card span { color: var(--lt-muted); font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.contact-card a { color: var(--lt-green-800); font-size: 1.25rem; font-weight: 900; }
.contact-card small { color: var(--lt-muted); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 60px;
  align-items: start;
}

/* Legal */
.legal-hero {
  padding: 78px 28px 72px;
  background:
    linear-gradient(90deg,rgba(255,253,247,.96),rgba(255,253,247,.82)),
    url("../assets/backgrounds/meadow.webp") center 55% / cover no-repeat;
  border-bottom: 1px solid var(--lt-line);
}
.legal-hero-inner { max-width: 980px; margin: 0 auto; }
.legal-hero h1 {
  margin: 13px 0 17px;
  color: var(--lt-green-950);
  font-size: clamp(2.8rem,4.6vw,4.5rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.legal-hero p { max-width: 850px; color: #405047; font-size: 1.08rem; line-height: 1.68; }
.legal-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 28px 92px;
}
.legal-section article {
  padding: 0 0 27px;
  margin: 0 0 27px;
  border-bottom: 1px solid var(--lt-line);
}
.legal-section h2 { color: var(--lt-green-950); font-size: 1.45rem; }
.legal-section p { color: #526157; line-height: 1.7; }
.legal-note {
  padding: 18px;
  border-left: 4px solid var(--lt-green-700);
  border-radius: 10px;
  background: var(--lt-soft);
  color: var(--lt-green-950);
}

/* 404 */
.not-found {
  min-height: 65vh;
  padding: 80px 28px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background: var(--lt-soft);
}
.not-found img { width: 120px; margin-bottom: 10px; }
.not-found h1 {
  margin: 13px 0;
  color: var(--lt-green-950);
  font-size: clamp(2.6rem,5vw,4.3rem);
}
.not-found p { color: var(--lt-muted); font-size: 1.08rem; }

@media (max-width: 1000px) {
  .finish-hero-inner,
  .tester-layout,
  .tester-privacy-inner,
  .contact-layout,
  .support-contact-band { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: repeat(2,1fr); }
  .tester-hero-card, .contact-card { max-width: 650px; }
}
@media (max-width: 700px) {
  .support-hero-visual { grid-template-columns: 1fr; }
  .support-hero-visual b { transform: rotate(90deg); }
}
@media (max-width: 620px) {
  .finish-hero-inner, .finish-section, .faq-section,
  .tester-privacy-band, .support-contact-band,
  .legal-hero, .legal-section { padding-inline: 20px; }
  .finish-hero-inner { padding-top: 44px; padding-bottom: 50px; }
  .support-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STAGE 12 — PHONE & TABLET POLISH
   Final responsive pass for touch devices, narrow screens and
   medium tablet widths. Kept as overrides so desktop styling is
   unchanged unless space actually becomes tight.
   ============================================================ */

html, body { max-width: 100%; overflow-x: clip; }
main, main > section, header, footer { min-width: 0; }
p, li, a, span, strong { overflow-wrap: break-word; }
button, .button, .nav-link, input, select, textarea { touch-action: manipulation; }

/* Smoother tablet transition before the full mobile layout. */
@media (max-width: 1024px) {
  :root { --radius-lg: 28px; --radius-md: 21px; }

  .home-section, .product-section, .beacons-section, .features-section,
  .about-section, .finish-section { padding-top: 70px; padding-bottom: 70px; }

  .section-heading { margin-bottom: 32px; }
  .section-heading.centered { margin-bottom: 36px; }

  .feature-grid, .benefit-grid, .about-values-grid, .support-grid {
    gap: 16px;
  }

  .finish-hero-inner, .about-hero-inner, .features-hero-inner,
  .product-hero-inner, .beacons-hero-inner { gap: 36px; }

  .tester-layout, .contact-layout, .feature-chapter, .about-story-grid,
  .about-real-life-inner, .beacons-profile-layout, .backup-layout,
  .report-inner, .settings-showcase, .next-app-inner { gap: 38px; }
}

@media (max-width: 820px) {
  /* Common page gutters and rhythm. */
  .header-inner { min-height: 72px; padding-inline: 18px; gap: 14px; }
  .brand img { width: 142px; }
  .menu-toggle { width: 44px; height: 44px; border-radius: 13px; }
  .main-nav {
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 18px 18px;
  }
  .nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
  }
  .nav-cta { justify-content: center; }

  .page-banner-inner, .content-wrap {
    width: calc(100% - 36px);
  }
  .content-wrap { padding-top: 48px; padding-bottom: 58px; }
  .shell-card { border-radius: 24px; }

  .home-section, .connection-inner, .personal-inner, .local-first-section,
  .product-section, .local-callout, .next-app-section, .beacons-section,
  .insights-deep-section, .report-section, .beacons-local-section,
  .features-section, .features-settings-section, .feature-next-section,
  .about-section, .about-values-section, .about-real-life-section,
  .about-local-section, .about-build-section, .about-next-section,
  .finish-section, .faq-section, .tester-privacy-band, .support-contact-band,
  .legal-hero, .legal-section {
    padding-inline: 18px;
  }

  /* Hero copy gets room first; imagery follows naturally underneath. */
  .home-hero {
    background:
      linear-gradient(180deg, rgba(255,253,247,.97) 0%, rgba(255,253,247,.91) 48%, rgba(255,253,247,.58) 74%, rgba(255,253,247,.20) 100%),
      url("../assets/backgrounds/meadow.webp") 62% center / cover no-repeat;
  }
  .home-hero-inner {
    min-height: 0;
    padding: 42px 18px 54px;
    gap: 32px;
  }
  .hero-copy { max-width: 100%; }
  .hero-copy h1 {
    margin-top: 13px;
    margin-bottom: 16px;
    font-size: clamp(2.65rem, 9vw, 4.25rem);
    line-height: 1;
  }
  .hero-lead { font-size: 1.06rem; line-height: 1.58; }
  .hero-actions { margin-top: 24px; }
  .hero-notes { margin-top: 18px; gap: 7px; }

  /* The desktop overlapping device collage becomes a controlled layout. */
  .hero-products {
    min-height: 0;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    display: block;
  }
  .tablet-device {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    transform: none;
    border-radius: 24px;
  }
  .phone-device {
    position: relative;
    inset: auto;
    width: min(220px, 46vw);
    margin: -34px 3% 0 auto;
    transform: rotate(1deg);
    border-radius: 28px;
  }
  .hero-robin { left: 2px; bottom: 0; width: 78px; }

  .home-proof-inner { padding: 17px 18px; }
  .home-proof strong { font-size: 1.02rem; }
  .home-proof span { font-size: .92rem; }

  /* Cards and media. */
  .feature-grid, .benefit-grid, .about-values-grid, .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-image, .benefit-image { height: 210px; }

  .message-flow, .feature-message-flow { gap: 14px; }
  .flow-step { padding: 15px; border-radius: 22px; }
  .flow-image, .simplified-flow .flow-image { height: auto !important; }
  .landscape-shot { aspect-ratio: 1536 / 1384; }
  .portrait-shot { aspect-ratio: 1384 / 1536; }

  .split-showcase, .personal-inner, .local-first-inner,
  .product-hero-inner, .wide-feature, .product-feature-card, .edit-feature,
  .settings-showcase, .local-callout-inner, .next-app-inner,
  .beacons-hero-inner, .beacons-profile-layout, .backup-layout,
  .insights-deep-inner, .report-inner, .beacons-local-inner,
  .features-hero-inner, .feature-chapter, .features-settings-inner,
  .about-hero-inner, .about-story-grid, .about-real-life-inner,
  .about-local-inner, .about-build-inner, .finish-hero-inner,
  .tester-layout, .tester-privacy-inner, .contact-layout, .support-contact-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-hero, .beacons-hero, .features-hero, .about-hero, .finish-hero {
    background:
      linear-gradient(180deg, rgba(255,253,247,.97) 0%, rgba(255,253,247,.91) 54%, rgba(255,253,247,.46) 100%),
      url("../assets/backgrounds/meadow.webp") 62% center / cover no-repeat;
  }
  .product-hero-inner, .beacons-hero-inner, .features-hero-inner,
  .about-hero-inner, .finish-hero-inner {
    min-height: 0;
    padding: 46px 18px 54px;
  }
  .product-copy h1, .beacons-copy h1, .features-hero-copy h1,
  .about-copy h1, .finish-hero h1 {
    font-size: clamp(2.6rem, 9vw, 4.3rem);
  }

  .product-device-wrap { min-height: 0; max-width: 700px; }
  .product-tablet {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    transform: none;
  }
  .product-robin { left: 0; width: 82px; }

  .beacons-device-wrap { min-height: 0; display: grid; place-items: center; }
  .beacons-phone-frame {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    width: min(390px, 78vw);
    height: auto;
    aspect-ratio: .86 / 1;
    transform: none;
  }
  .beacons-robin { left: 3%; width: 82px; }

  .features-hero-visual, .about-story-visual, .local-visual {
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  /* Overlapping screenshots are great on desktop, but read better in a grid on touch screens. */
  .insights-stack, .feature-insights-stack {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }
  .insights-main, .report-peek, .profile-peek,
  .feature-insights-shot, .feature-report-peek {
    position: relative;
    inset: auto;
    top: auto; left: auto; right: auto;
    width: 100%;
    height: auto;
    transform: none;
  }
  .insights-main { aspect-ratio: 1384 / 1536; }
  .report-peek { aspect-ratio: 1062 / 1500; }
  .profile-peek { aspect-ratio: 1536 / 1384; grid-column: 1 / -1; width: 70%; justify-self: center; }
  .feature-insights-shot, .feature-report-peek { aspect-ratio: 1384 / 1536; }

  .personal-device { min-height: 0; }
  .mini-tablet { width: min(430px, 76vw); }

  .product-strip-inner { gap: 0; }
  .product-strip-inner div { padding: 14px 16px; }

  .feature-index-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-inline: 18px; }
  .feature-index-inner a { border-bottom: 1px solid rgba(255,255,255,.12); }

  .beacons-panel-shot { height: auto; aspect-ratio: 1.25 / 1; }
  .real-backup-flow, .feature-backup-pair { gap: 14px; }
  .backup-screen-card, .feature-backup-pair > div { height: auto; aspect-ratio: 1384 / 1536; }

  .tester-section { padding-inline: 18px; }
  .tester-inner { padding: 28px; border-radius: 25px; }
  .tester-form-card, .contact-form-card, .tester-hero-card, .contact-card {
    padding: 23px;
    border-radius: 21px;
  }
  .tester-form-card input, .tester-form-card select, .tester-form-card textarea,
  .contact-form-card input, .contact-form-card select, .contact-form-card textarea {
    min-height: 48px;
    font-size: 16px; /* prevents iOS form zoom */
  }
  .tester-form-card textarea, .contact-form-card textarea { min-height: 120px; }

  .footer-top { padding-inline: 18px; }
  .footer-bottom-inner { padding-inline: 18px; }
}

@media (max-width: 560px) {
  .page-banner { min-height: 245px; }
  .page-banner-inner { padding: 34px 0 42px; }
  .page-banner h1 { font-size: clamp(2.15rem, 11vw, 3.2rem); max-width: 100%; }
  .page-banner p { margin-top: 13px; font-size: 1rem; }
  .eyebrow { font-size: .78rem; padding: 6px 10px; }

  .hero-copy h1, .product-copy h1, .beacons-copy h1,
  .features-hero-copy h1, .about-copy h1, .finish-hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.6rem);
    letter-spacing: -.038em;
  }

  .section-heading h2, .split-copy h2, .personal-copy h2,
  .local-first-copy h2, .product-feature-text h2, .settings-copy h2,
  .next-app-copy h2, .beacons-profile-copy h2, .backup-copy h2,
  .report-copy h2, .features-settings-copy h2, .about-story-copy h2,
  .about-real-life-copy h2, .about-build-copy h2, .tester-info h2,
  .contact-help h2 {
    font-size: clamp(1.9rem, 9.5vw, 2.65rem);
  }

  .hero-actions, .local-actions, .feature-next-actions, .about-next-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .hero-actions .button, .local-actions .button,
  .feature-next-actions .button, .about-next-actions .button {
    width: 100%;
  }
  .button { min-height: 50px; padding-inline: 17px; }

  .hero-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-notes span { text-align: center; }

  .phone-device {
    width: min(205px, 55vw);
    margin-top: -22px;
  }
  .hero-robin { width: 62px; }

  .feature-grid, .benefit-grid, .about-values-grid, .support-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .feature-image, .benefit-image { height: auto; aspect-ratio: 16 / 10; }
  .feature-body, .benefit-card > div:last-child { padding: 19px; }

  .local-points > div, .profile-points div { grid-template-columns: 1fr; gap: 3px; }

  .features-hero-visual, .about-story-visual, .local-visual,
  .real-backup-flow, .feature-backup-pair {
    grid-template-columns: minmax(0, 1fr);
  }
  .features-bridge, .about-link, .local-link span:last-child,
  .real-backup-arrow b, .feature-backup-pair > b, .backup-arrow {
    transform: rotate(90deg);
  }
  .local-link { grid-template-columns: 1fr auto 1fr; }

  .features-device, .about-device, .local-device {
    height: auto;
    min-height: 0;
    aspect-ratio: 1384 / 1536;
  }

  .insights-stack, .feature-insights-stack { grid-template-columns: minmax(0, 1fr); }
  .profile-peek { grid-column: auto; width: 100%; }
  .report-open { right: 9px; bottom: 9px; }

  .product-strip-inner { grid-template-columns: 1fr; padding-inline: 18px; }
  .product-strip-inner div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding: 14px 0;
  }
  .product-strip-inner div:last-child { border-bottom: 0; }

  .feature-index-inner { grid-template-columns: 1fr; }
  .feature-index-inner a { border-right: 0; padding: 12px 6px; }

  .feature-double-shot { grid-template-columns: 1fr; }
  .feature-example { grid-template-columns: auto 1fr; }
  .feature-example em { grid-column: 1 / -1; }

  .insight-points { grid-template-columns: 1fr; }
  .support-hero-visual { gap: 12px; }
  .support-hero-visual div { height: auto; aspect-ratio: 1384 / 1536; }

  .tester-steps article { grid-template-columns: 36px minmax(0, 1fr); gap: 11px; }
  .tester-form-card, .contact-form-card { padding: 20px 17px; }
  .tester-hero-card, .contact-card { padding: 20px; }
  .contact-card a { font-size: 1.08rem; }

  .footer-top { grid-template-columns: 1fr; gap: 22px; padding-top: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { gap: 12px; }
  .footer-legal { gap: 10px 15px; }
}

@media (max-width: 380px) {
  .header-inner { padding-inline: 14px; }
  .brand img { width: 130px; }
  .home-hero-inner, .product-hero-inner, .beacons-hero-inner,
  .features-hero-inner, .about-hero-inner, .finish-hero-inner { padding-inline: 15px; }
  .home-section, .connection-inner, .personal-inner, .local-first-section,
  .product-section, .beacons-section, .features-section, .about-section,
  .finish-section, .faq-section { padding-inline: 15px; }
  .hero-notes { grid-template-columns: 1fr; }
  .tester-inner { padding: 22px 16px; }
}
