:root {
  --ink: #151514;
  --muted: #656761;
  --soft: #8c8f87;
  --line: rgba(21, 21, 20, 0.1);
  --paper: #f7faf4;
  --paper-solid: #fbfdf9;
  --card: rgba(255, 255, 255, 0.72);
  --green: #91ed27;
  --green-strong: #75d80d;
  --green-dark: #397b00;
  --purple: #7446e8;
  --orange: #ff871f;
  --shadow: 0 24px 70px rgba(36, 57, 19, 0.11);
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --page: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: var(--paper);
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background:
    radial-gradient(circle at 8% 4%, rgba(145, 237, 39, 0.13), transparent 28rem),
    linear-gradient(180deg, #fbfdf9 0%, var(--paper) 30%, #f8faf6 100%);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body,
  main {
    overflow-x: clip;
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.8rem, 7vw, 6.85rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 850;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(116, 70, 232, 0.7);
  outline-offset: 4px;
}

.ambient-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ambient {
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(80px);
}

.ambient-one {
  top: -17rem;
  right: -12rem;
  background: rgba(145, 237, 39, 0.2);
}

.ambient-two {
  top: 42rem;
  left: -20rem;
  background: rgba(116, 70, 232, 0.08);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  padding: 15px 0;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 252, 248, 0.86);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
}

.header-inner {
  width: var(--page);
  min-height: 52px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 6px 9px rgba(46, 57, 33, 0.14));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #4f514c;
  font-size: 0.89rem;
  font-weight: 720;
}

.desktop-nav a,
.site-footer nav a,
.text-link {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover,
.text-link:hover {
  color: var(--green-dark);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-control {
  position: relative;
}

.language-control::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.language-control select {
  min-height: 40px;
  padding: 0 31px 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 850;
  appearance: none;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 820;
  letter-spacing: -0.018em;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  min-height: 42px;
  padding-inline: 18px;
  color: var(--ink);
  background: var(--green);
  font-size: 0.84rem;
  box-shadow: 0 8px 22px rgba(117, 216, 13, 0.23);
}

.header-cta-short {
  display: none;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 13px 30px rgba(117, 216, 13, 0.25);
}

.button-primary:hover {
  background: #9bf537;
  box-shadow: 0 16px 34px rgba(117, 216, 13, 0.31);
}

.button-quiet {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.67);
  box-shadow: 0 8px 24px rgba(36, 57, 19, 0.06);
}

.hero {
  width: var(--page);
  min-height: 820px;
  margin: 0 auto;
  padding: 126px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label,
.demo-kicker {
  margin-bottom: 17px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(57, 123, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-strong);
  box-shadow: 0 0 0 4px rgba(117, 216, 13, 0.14);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.55;
  letter-spacing: -0.019em;
}

.hero-mobile-cue {
  display: none;
}

.hero-mobile-after-demo {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.hero-trust > li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-strong);
}

.product-demo {
  position: relative;
  min-width: 0;
  padding: 24px 18px 18px;
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-content: center;
  border-radius: 48px;
  background:
    radial-gradient(circle at 82% 16%, rgba(145, 237, 39, 0.25), transparent 34%),
    radial-gradient(circle at 13% 76%, rgba(116, 70, 232, 0.11), transparent 38%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.48), rgba(247, 250, 244, 0.14));
  box-shadow: inset 0 0 0 1px rgba(21, 21, 20, 0.055);
  isolation: isolate;
}

.product-demo::before {
  position: absolute;
  top: 54%;
  left: 50%;
  z-index: 0;
  width: min(36vw, 390px);
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145, 237, 39, 0.2), rgba(145, 237, 39, 0.035) 57%, transparent 73%);
  transform: translate(-50%, -50%);
}

.hero-visual-brand {
  position: absolute;
  top: 112px;
  left: 18px;
  z-index: 1;
  padding: 8px 11px 8px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(40, 55, 25, 0.12);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  transform: rotate(-3deg);
  pointer-events: none;
}

.hero-visual-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(36, 57, 19, 0.16);
}

.hero-visual-brand > span {
  display: grid;
  gap: 1px;
  text-align: left;
}

.hero-visual-brand strong {
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1;
}

.hero-visual-brand small {
  max-width: 104px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 760;
  line-height: 1.15;
}

.hero-stickers {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-sticker {
  position: absolute;
  width: auto;
  filter: drop-shadow(0 13px 17px rgba(42, 56, 27, 0.15));
}

.hero-sticker-one {
  top: 115px;
  right: 13px;
  height: 66px;
  transform: rotate(11deg);
}

.hero-sticker-two {
  right: 10px;
  bottom: 76px;
  height: 72px;
  transform: rotate(9deg);
}

.hero-sticker-three {
  bottom: 44px;
  left: 12px;
  height: 78px;
  transform: rotate(-10deg);
}

.demo-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 350px);
  min-height: 82px;
  margin-bottom: 12px;
  text-align: center;
}

.demo-kicker {
  margin-bottom: 5px;
}

.demo-caption {
  min-height: 41px;
  margin-bottom: 9px;
  color: #3f413d;
  font-size: 0.96rem;
  font-weight: 780;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.demo-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.demo-dots i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(21, 21, 20, 0.15);
  transition: width 240ms var(--ease), background 240ms ease;
}

.demo-dots i.is-active {
  width: 22px;
  background: var(--green-strong);
}

.demo-device {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.hero-scroll-cue {
  position: relative;
  z-index: 3;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4d5049;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.01em;
}

.hero-scroll-cue i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(145, 237, 39, 0.2);
  font-style: normal;
}

.demo-phone-shell {
  position: relative;
  height: clamp(450px, 41vw, 500px);
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  display: block;
  border: 7px solid #171715;
  border-radius: 40px;
  background: #f6f8f3;
  box-shadow: 0 28px 72px rgba(32, 44, 20, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.48) inset;
  container-type: inline-size;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 320ms var(--ease), box-shadow 320ms ease;
}

.demo-phone-shell::after {
  display: none;
}

.demo-video,
.demo-video-poster,
.demo-video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.demo-video,
.demo-video-poster img {
  display: block;
  object-fit: cover;
}

.demo-video {
  z-index: 1;
  background: #f6f8f3;
  pointer-events: none;
}

.demo-video-poster {
  z-index: 2;
  display: block;
  background: #f6f8f3;
  pointer-events: none;
}

.product-demo[data-has-video-frame="true"] .demo-video-poster {
  visibility: hidden;
}

.demo-control-label {
  position: relative;
  z-index: 3;
  min-height: 44px;
  margin-top: 12px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(21, 21, 20, 0.09);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 9px 24px rgba(36, 57, 19, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 780;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .demo-control-label:hover {
    border-color: rgba(57, 123, 0, 0.2);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
    transform: translateY(-1px);
  }
}

.demo-control-label:active {
  transform: translateY(0) scale(0.98);
}

.demo-control-label:focus-visible {
  outline: 3px solid rgba(116, 70, 232, 0.72);
  outline-offset: 3px;
}

.demo-control-label:disabled {
  cursor: default;
  opacity: 0.66;
  transform: none;
}

.product-demo[data-loaded="false"] .demo-control-label {
  visibility: hidden;
  pointer-events: none;
}

.demo-control-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.demo-control-icon::before {
  width: 4px;
  height: 6px;
  content: "";
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.product-demo[data-playback="paused"] .demo-control-icon::before {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 4px solid transparent;
  border-right: 0;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
}

.product-demo[data-playback="ended"] .demo-control-icon::before {
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  content: "↻";
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.product-demo[data-playback="error"] .demo-control-icon::before {
  width: 6px;
  height: 6px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: currentColor;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.outcome-card {
  min-height: 300px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 16px 46px rgba(36, 57, 19, 0.055);
}

.outcome-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(145, 237, 39, 0.13), rgba(255, 255, 255, 0.76));
}

.outcome-number {
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(145, 237, 39, 0.18);
  font-size: 0.73rem;
  font-weight: 900;
}

.outcome-card h3 {
  margin: 38px 0 13px;
}

.outcome-card p,
.feature-copy > p,
.motivation-copy > p,
.privacy-card p,
.faq-list p,
.legal-content p,
.support-card p,
.utility-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.thought-strip {
  padding-top: 82px;
  padding-bottom: 82px;
}

.thought-strip-inner {
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(380px, 1.25fr) minmax(240px, 0.7fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thought-strip-inner .section-label {
  margin: 0;
  align-self: start;
}

.thought-strip-inner h2,
.thought-strip-inner > p:last-child {
  margin: 0;
}

.thought-strip-inner h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.thought-strip-inner > p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.feature-layout,
.motivation-card {
  min-height: 680px;
  padding: clamp(36px, 6vw, 74px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(239, 247, 232, 0.9));
  box-shadow: var(--shadow);
}

.feature-copy,
.motivation-copy {
  max-width: 600px;
}

.feature-copy > p,
.motivation-copy > p {
  font-size: 1.08rem;
  line-height: 1.65;
}

.feature-pills {
  margin: 27px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-pills > span {
  padding: 9px 12px;
  border: 1px solid rgba(109, 53, 216, 0.1);
  border-radius: 999px;
  color: var(--purple);
  background: rgba(109, 53, 216, 0.065);
  font-size: 0.74rem;
  font-weight: 820;
}

.family-plan-card {
  margin-top: 18px;
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  border: 1px solid rgba(21, 21, 20, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(145, 237, 39, 0.16), rgba(255, 255, 255, 0.78));
}

.family-plan-copy {
  max-width: 760px;
}

.family-plan-copy .section-label {
  margin-bottom: 10px;
}

.family-plan-copy h3 {
  margin-bottom: 13px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.family-plan-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.family-plan-price {
  min-width: 176px;
  display: grid;
  justify-items: end;
  line-height: 1.1;
}

.family-plan-price strong {
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.family-plan-price > span {
  margin-top: 3px;
  color: var(--green-dark);
  font-weight: 850;
}

.family-plan-price small {
  margin-top: 12px;
  color: var(--muted);
}

.check-list {
  margin: 28px 0 26px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 720;
}

.check-list i {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--green-dark);
  background: rgba(145, 237, 39, 0.2);
  font-size: 0.68rem;
  font-style: normal;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 820;
}

.screen-crop {
  position: relative;
  justify-self: center;
  width: min(100%, 320px);
  height: 570px;
  overflow: hidden;
  border: 7px solid #171715;
  border-radius: 48px;
  background: #f5f7f2;
  box-shadow: 0 32px 70px rgba(25, 37, 17, 0.2);
  transform: rotate(1.5deg);
}

.screen-crop::after {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 33%;
  height: 18px;
  content: "";
  border-radius: 999px;
  background: #151514;
  transform: translateX(-50%);
}

.screen-crop img {
  width: 100%;
  height: auto;
}

/* A close-up of the real household UI. Source is 1320 × 2868. */
.screen-crop-household {
  width: min(100%, 400px);
  height: auto;
  aspect-ratio: 1320 / 1730;
  border: 1px solid rgba(38, 28, 55, 0.09);
  border-radius: 30px;
  background: #f7f9f6;
  box-shadow: 0 20px 55px rgba(38, 28, 55, 0.10);
  transform: none;
}
.screen-crop-household::after { content: none; }
.screen-crop-household img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transform: translateY(-6.276%);
}

.motivation-card {
  background: linear-gradient(135deg, #171715 0%, #22251e 100%);
  color: #fff;
}

.motivation-card .section-label {
  color: var(--green);
}

.motivation-copy > p {
  color: rgba(255, 255, 255, 0.64);
}

.screen-crop-bounties {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  transform: rotate(-1.5deg);
}

.motivation-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.motivation-heading > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.motivation-grid {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  gap: 20px;
}

.motivation-grid .motivation-card {
  min-height: 700px;
  padding: 48px 48px 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
  border: 0;
  border-radius: 48px;
}

.motivation-grid .motivation-copy {
  max-width: 470px;
}

.motivation-grid h3 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  line-height: 0.98;
}

.motivation-grid .motivation-copy > p:last-child,
.reward-copy > p:last-child {
  margin: 18px 0 0;
  font-size: 0.97rem;
  line-height: 1.6;
}

.motivation-grid .screen-crop-bounties {
  width: min(86%, 280px);
  height: 420px;
  margin-top: auto;
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
  transform: none;
}

.reward-card {
  position: relative;
  min-height: 700px;
  padding: 48px;
  overflow: hidden;
  border-radius: 48px;
  color: #fff;
  background: radial-gradient(circle at 72% 70%, #7b46e2, #4a257f 50%, #2d1749 100%);
  box-shadow: 0 30px 90px rgba(67, 32, 118, 0.22);
}

.reward-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  opacity: 0.2;
}

.reward-copy,
.sticker-cloud {
  position: relative;
  z-index: 1;
}

.reward-card .section-label {
  color: var(--green);
}

.reward-copy > p:last-child {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.7);
}

.sticker-cloud {
  min-height: 370px;
  margin-top: 10px;
}

.reward {
  position: absolute;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(15, 5, 28, 0.3));
  transition: transform 260ms var(--ease);
}

.reward:hover {
  transform: translateY(-8px) rotate(2deg) scale(1.04);
}

.reward-one { top: 58px; left: 0; height: 120px; transform: rotate(-10deg); }
.reward-two { top: 8px; right: -4px; height: 168px; transform: rotate(8deg); }
.reward-three { bottom: 2px; left: 13%; height: 144px; transform: rotate(5deg); }
.reward-four { right: 2%; bottom: -7px; height: 152px; transform: rotate(-8deg); }
.reward-five { top: 139px; left: 38%; height: 130px; transform: rotate(-4deg); }
.reward-six { top: 14px; left: 33%; height: 112px; transform: rotate(5deg); }

.sticker-row {
  min-height: 108px;
  margin-top: 28px;
  display: flex;
  align-items: center;
}

.sticker-row img {
  width: auto;
  height: 92px;
  max-width: 108px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
  transition: transform 240ms var(--ease);
}

.sticker-row img + img {
  margin-left: -20px;
}

.sticker-row img:nth-child(2) { transform: rotate(7deg); }
.sticker-row img:nth-child(3) { transform: rotate(-6deg); }
.sticker-row img:nth-child(4) { transform: rotate(5deg); }
.sticker-row img:hover { transform: translateY(-8px) scale(1.06); }

.privacy-card {
  padding: 34px 38px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.privacy-card > img {
  filter: drop-shadow(0 9px 14px rgba(35, 48, 25, 0.12));
}

.privacy-card .section-label {
  margin-bottom: 4px;
}

.privacy-card h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.privacy-card p {
  max-width: 670px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 110px);
}

.faq .section-heading {
  position: sticky;
  top: 118px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details,
.support-faq details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary,
.support-faq summary {
  padding: 23px 40px 23px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.faq-list summary::-webkit-details-marker,
.support-faq summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after,
.support-faq summary::before,
.support-faq summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 14px;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.faq-list summary::after,
.support-faq summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after,
.support-faq details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list p,
.support-faq details p {
  padding: 0 34px 24px 0;
  line-height: 1.65;
}

.final-cta {
  width: var(--page);
  margin: 40px auto 0;
  padding: 28px 0 80px;
}

.final-cta-inner {
  padding: clamp(38px, 6vw, 74px);
  display: grid;
  grid-template-columns: auto minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(26px, 4vw, 52px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(145, 237, 39, 0.93), rgba(182, 250, 104, 0.92));
  box-shadow: 0 30px 80px rgba(83, 148, 20, 0.2);
}

.final-cta-inner > img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  aspect-ratio: 1;
  filter: drop-shadow(0 15px 20px rgba(58, 89, 27, 0.2));
}

.final-cta .section-label {
  margin-bottom: 8px;
  color: #315e05;
}

.final-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.final-cta-copy p:last-child {
  margin-bottom: 0;
  color: rgba(21, 21, 20, 0.66);
}

.beta-form {
  min-width: 0;
}

.beta-form-row {
  padding: 6px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  border: 1px solid rgba(21, 21, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 35px rgba(50, 95, 12, 0.11);
}

.beta-form input[type="email"] {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.beta-form input::placeholder {
  color: #8c9385;
}

.beta-submit {
  min-width: 145px;
  box-shadow: none;
}

.beta-submit:disabled {
  cursor: progress;
  opacity: 0.55;
}

.beta-note,
.beta-status,
.beta-fallback {
  margin: 9px 10px 0;
  font-size: 0.75rem;
}

.beta-note {
  color: rgba(21, 21, 20, 0.58);
}

.beta-status[data-state="success"] { color: #285f00; font-weight: 760; }
.beta-status[data-state="error"] { color: #8d2e2e; font-weight: 760; }
.beta-fallback { display: inline-flex; gap: 6px; text-decoration: underline; }
.beta-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  width: var(--page);
  min-height: 120px;
  margin: 0 auto;
  padding: 30px 0 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-brand {
  color: var(--ink);
  font-size: 1.2rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer nav {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.mobile-beta-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js.reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}

.js.reveal-ready .reveal {
  transition: opacity 650ms ease, transform 750ms var(--ease);
}

/* Utility, support, and policy pages */
.legal-body {
  background: var(--paper);
}

.legal-main {
  width: var(--page);
  margin: 0 auto;
  padding: 152px 0 96px;
}

.legal-hero {
  max-width: 830px;
  margin-bottom: 66px;
}

.legal-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.legal-hero > p {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1.15rem;
}

.legal-hero small {
  color: var(--soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 6px;
}

.legal-index a {
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 720;
}

.legal-index a:hover {
  color: var(--green-dark);
  background: rgba(145, 237, 39, 0.12);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding: 0 0 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2,
.support-faq h2,
.support-contact h2,
.utility-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.legal-content p + p {
  margin-top: 16px;
}

.legal-content a,
.support-contact a:not(.button) {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-callout {
  padding: 22px 24px;
  border: 1px solid rgba(57, 123, 0, 0.12);
  border-radius: var(--radius-md);
  background: rgba(145, 237, 39, 0.1);
}

.legal-footer {
  margin-top: 40px;
}

.support-grid {
  margin-bottom: 82px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
}

.support-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green-dark);
  background: rgba(145, 237, 39, 0.18);
}

.support-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-card h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.support-faq {
  max-width: 820px;
  margin-bottom: 82px;
}

.support-faq > h2 {
  margin-bottom: 26px;
}

.support-contact {
  padding: 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  border-radius: var(--radius-lg);
  background: rgba(145, 237, 39, 0.14);
}

.support-contact > img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  aspect-ratio: 1;
}

.support-contact h2,
.support-contact p {
  margin-bottom: 8px;
}

.utility-steps {
  max-width: 900px;
  display: grid;
  gap: 14px;
}

.utility-step {
  padding: 26px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.utility-step > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(145, 237, 39, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
}

.utility-step h2 {
  margin: 4px 0 8px;
  font-size: 1.35rem;
}

.utility-note {
  max-width: 900px;
  margin-top: 28px;
  padding: 25px 28px;
  border-radius: var(--radius-md);
  color: var(--muted);
  background: rgba(116, 70, 232, 0.07);
}

.utility-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 36px, 820px);
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: min(760px, 100svh);
    padding-top: 112px;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.72fr);
    gap: clamp(26px, 4vw, 42px);
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 6.8vw, 4.8rem);
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .hero-trust {
    margin-top: 20px;
  }

  .product-demo {
    padding-inline: 12px;
    border-radius: 40px;
  }

  .demo-phone-shell {
    height: clamp(390px, 58svh, 430px);
  }

  .product-demo::before {
    width: min(76vw, 400px);
  }

  .thought-strip-inner {
    grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1.55fr);
  }

  .thought-strip-inner > p:last-child {
    grid-column: 2;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 220px;
  }

  .feature-layout,
  .motivation-card {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }

  .privacy-card {
    grid-template-columns: auto 1fr;
  }

  .privacy-card .button {
    grid-column: 2;
    justify-self: start;
  }

  .final-cta-inner {
    grid-template-columns: auto 1fr;
  }

  .beta-form {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
  }

  .site-footer p {
    justify-self: end;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --page: calc(100% - 30px);
    --radius-xl: 30px;
    --radius-lg: 24px;
  }

  html {
    scroll-padding-top: 84px;
  }

  body {
    font-size: 15px;
  }

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

  .site-header.is-scrolled {
    padding: 7px 0;
  }

  .brand {
    gap: 8px;
    font-size: 1.3rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.75rem;
  }

  .language-control select {
    min-height: 38px;
    padding-left: 11px;
    padding-right: 27px;
  }

  .language-control::after {
    right: 10px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.75rem, 12.4vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .hero {
    padding: 94px 0 54px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "eyebrow"
      "headline"
      "lede"
      "cue"
      "showcase"
      "actions"
      "trust";
    gap: 0;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .hero-actions-desktop,
  .hero-copy .hero-trust-desktop {
    display: none;
  }

  .hero-mobile-after-demo {
    display: contents;
  }

  .hero-mobile-lede {
    display: none;
  }

  .hero-copy .eyebrow {
    grid-area: eyebrow;
    justify-self: start;
  }

  .hero-copy h1 {
    grid-area: headline;
  }

  .hero-lede {
    grid-area: lede;
  }

  .hero-mobile-cue {
    grid-area: cue;
    margin: -5px 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green-dark);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: -0.005em;
  }

  .hero-mobile-cue i {
    font-size: 0.9rem;
    font-style: normal;
  }

  .product-demo {
    grid-area: showcase;
  }

  .hero-actions {
    grid-area: actions;
  }

  .hero-trust {
    grid-area: trust;
  }

  .eyebrow {
    max-width: 100%;
    padding: 7px 10px;
    font-size: 0.65rem;
    letter-spacing: 0.075em;
  }

  .hero-lede {
    margin-bottom: 18px;
    font-size: 1.01rem;
    line-height: 1.47;
  }

  .hero-actions {
    display: grid;
    margin-top: 2px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 23px;
    display: grid;
    gap: 8px;
  }

  .product-demo {
    width: 100%;
    margin: 0 0 20px;
    padding: 18px 14px 16px;
    border-radius: 34px;
  }

  .hero-visual-brand {
    top: 98px;
    left: 9px;
    padding: 7px 9px 7px 7px;
    border-radius: 16px;
  }

  .hero-visual-brand img {
    width: 37px;
    height: 37px;
    border-radius: 10px;
  }

  .hero-visual-brand small {
    max-width: 82px;
    font-size: 0.56rem;
  }

  .hero-sticker-one {
    top: 100px;
    right: 6px;
    height: 58px;
  }

  .hero-sticker-two {
    right: 6px;
    bottom: 66px;
    height: 62px;
  }

  .hero-sticker-three {
    bottom: 44px;
    left: 5px;
    height: 66px;
  }

  .demo-copy {
    min-height: 68px;
    margin-bottom: 10px;
  }

  .demo-caption {
    min-height: 36px;
    font-size: 0.88rem;
  }

  .demo-phone-shell {
    height: clamp(360px, 55svh, 470px);
    min-height: 0;
    border-width: 6px;
    border-radius: 32px;
  }

  .demo-phone-shell::after {
    height: 15px;
  }

  .demo-control-label {
    margin-top: 12px;
  }

  .hero-scroll-cue {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .thought-strip {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .thought-strip-inner {
    padding: 36px 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .thought-strip-inner h2 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .thought-strip-inner > p:last-child {
    grid-column: auto;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .outcome-card {
    min-height: 230px;
    padding: 25px;
  }

  .feature-layout,
  .motivation-card {
    min-height: auto;
    padding: 32px 22px 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .family-plan-card {
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .family-plan-price {
    justify-items: start;
  }

  .feature-copy > p,
  .motivation-copy > p {
    font-size: 1rem;
  }

  .screen-crop {
    width: min(100%, 285px);
    height: 470px;
    border-width: 6px;
    border-bottom: 0;
    border-radius: 42px 42px 0 0;
    transform: none;
  }

  .motivation-card {
    padding-bottom: 0;
  }

  .motivation-heading {
    margin-bottom: 30px;
  }

  .motivation-heading > p:last-child {
    font-size: 1rem;
  }

  .motivation-grid {
    grid-template-columns: 1fr;
  }

  .motivation-grid .motivation-card {
    min-height: 620px;
    padding: 34px 24px 0;
    border-radius: 36px;
  }

  .motivation-grid h3 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .motivation-grid .screen-crop-bounties {
    width: min(88%, 270px);
    height: 390px;
  }

  .reward-card {
    min-height: 620px;
    padding: 34px 24px;
    border-radius: 36px;
  }

  .sticker-cloud {
    min-height: 340px;
    margin-top: 18px;
  }

  .reward-one { height: 100px; }
  .reward-two { height: 142px; }
  .reward-three { height: 122px; }
  .reward-four { height: 128px; }
  .reward-five { height: 112px; }
  .reward-six { height: 94px; }

  .sticker-row {
    min-height: 85px;
  }

  .sticker-row img {
    width: auto;
    height: 72px;
    max-width: 84px;
  }

  .sticker-row img + img {
    margin-left: -15px;
  }

  .privacy-card {
    padding: 27px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .privacy-card > img {
    width: 58px;
  }

  .privacy-card .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .faq {
    display: block;
  }

  .faq .section-heading {
    position: static;
  }

  .faq-list summary,
  .support-faq summary {
    font-size: 1rem;
  }

  .final-cta {
    padding-bottom: 92px;
  }

  .final-cta-inner {
    padding: 32px 22px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .final-cta-inner > img {
    width: 86px;
    height: 86px;
  }

  .beta-form-row {
    padding: 5px;
    grid-template-columns: 1fr;
    border-radius: 23px;
  }

  .beta-form input[type="email"] {
    min-height: 50px;
  }

  .beta-submit {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 100px;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .site-footer p,
  .site-footer nav {
    justify-self: start;
    text-align: left;
  }

  .mobile-beta-cta {
    position: fixed;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 45;
    min-height: 52px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(145, 237, 39, 0.9);
    box-shadow: 0 16px 34px rgba(43, 71, 19, 0.2);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    font-weight: 850;
    opacity: 0;
    pointer-events: none;
    transform: translateY(80px);
    transition: opacity 220ms ease, transform 340ms var(--ease);
  }

  .mobile-beta-cta.is-visible {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .legal-main {
    padding: 120px 0 74px;
  }

  .legal-hero {
    margin-bottom: 44px;
  }

  .legal-hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .legal-layout {
    display: block;
  }

  .legal-index {
    position: static;
    margin-bottom: 42px;
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .legal-index::-webkit-scrollbar {
    display: none;
  }

  .legal-index a {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
  }

  .support-grid {
    margin-bottom: 58px;
  }

  .support-card {
    padding: 24px;
  }

  .support-icon {
    margin-bottom: 28px;
  }

  .support-contact {
    grid-template-columns: 1fr;
  }

  .support-contact .button {
    width: 100%;
  }

  .utility-step {
    padding: 22px;
    grid-template-columns: 38px 1fr;
    gap: 15px;
  }

  .utility-step > span {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 360px) {
  .hero {
    grid-template-areas:
      "eyebrow"
      "headline"
      "cue"
      "showcase"
      "lede"
      "actions"
      "trust";
  }

  .product-demo {
    margin-bottom: 16px;
  }

  .hero-lede {
    display: none;
  }

  .hero-mobile-lede {
    grid-area: lede;
    margin: 0 0 16px;
    display: block;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.47;
    letter-spacing: -0.019em;
  }
}

@media (max-width: 340px) {
  .header-inner {
    gap: 10px;
  }

  .header-cta-long {
    display: none;
  }

  .header-cta-short {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js.reveal-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}

/* Shared campaign art, with real native UI kept separate from lifestyle imagery. */
.voice-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,88px); align-items: center; }
.voice-story-visual { position: relative; min-height: 580px; background: #edffd2; border-radius: 44px; isolation: isolate; overflow: hidden; }
.voice-person { position: absolute; bottom: -2px; left: 4%; width: 94%; height: 92%; object-fit: contain; object-position: bottom; z-index: 1; }
.story-word { position: absolute; left: 7%; top: 5%; color: #588120; font-size: clamp(62px,7.5vw,105px); font-weight: 900; letter-spacing: -.07em; line-height: 1; }
.story-sticker { position: absolute; right: -15px; bottom: 30px; z-index: 2; width: 165px; height: auto; }
.voice-story h2, .focus-story h2 { font-size: clamp(36px,4.2vw,60px); line-height: 1.06; letter-spacing: -.055em; margin: 14px 0 24px; }
.voice-story-copy > p:not(.section-label), .focus-story-copy > p:not(.section-label) { font-size: 18px; line-height: 1.65; color: var(--muted); max-width: 450px; }
.voice-story-copy .text-link { margin-top: 20px; }
.voice-story-copy .story-footnote { font-size: 13px; margin-top: 22px; }
.focus-story { display: grid; grid-template-columns: 1.08fr 1fr; gap: 24px; align-items: stretch; }
.focus-story-photo { position: relative; min-height: 700px; overflow: hidden; border-radius: 40px; background: #f7efe1; }
/* The contextual photo shows the person; all readable product pixels below are native captures. */
.focus-story-photo > img { position: absolute; width: 100%; height: 164%; object-fit: cover; object-position: center top; }
.focus-photo-caption { position: absolute; top: 30px; left: 30px; font-size: clamp(35px,4vw,58px); font-weight: 850; line-height: 1; letter-spacing: -.05em; color: #30291d; text-shadow: 0 1px 18px #fff7e9; }
.focus-story-copy { position: relative; padding: 42px 40px 0; border-radius: 40px; background: #f3edff; overflow: hidden; }
.focus-native { width: min(260px,76%); height: 340px; overflow: hidden; margin: 30px auto 0; border: 6px solid #211932; border-bottom: 0; border-radius: 38px 38px 0 0; box-shadow: 0 20px 45px #29194318; }
.focus-native img { display: block; width: 100%; height: auto; }
.focus-sticker { position: absolute; width: 144px; height: auto; bottom: 25px; right: -15px; }
.family-plan-price strong { font-size: 36px; white-space: nowrap; }
.family-plan-price small { max-width: 230px; line-height: 1.5; }
.hero-sticker { object-fit: contain; }
.hero-sticker-three { height: 110px; width: 110px; }
.reward { object-fit: contain; }
@keyframes nudge-sticker-drift { 0%,100% { translate: 0 0; rotate: -3deg; } 50% { translate: 0 -12px; rotate: 3deg; } }
.float-sticker, .hero-sticker, .reward { animation: nudge-sticker-drift 6s ease-in-out infinite; animation-play-state: paused; }
.motion-visible .float-sticker, .motion-visible .hero-sticker, .motion-visible .reward { animation-play-state: running; }
.hero-sticker-two, .reward-two, .reward-five { animation-delay: -2s; }
.hero-sticker-three, .reward-three, .reward-six { animation-delay: -4s; }
html[data-page-hidden="true"] .float-sticker, html[data-page-hidden="true"] .hero-sticker, html[data-page-hidden="true"] .reward { animation-play-state: paused; }
@media (max-width: 760px) {
  .voice-story, .focus-story { grid-template-columns: 1fr; gap: 26px; }
  .voice-story-visual { min-height: 480px; border-radius: 32px; }
  .voice-story-copy { padding: 0 8px; }
  .voice-story h2, .focus-story h2 { font-size: clamp(36px,9vw,52px); }
  .focus-story-photo { min-height: 450px; border-radius: 32px; }
  .focus-story-photo > img { height: 172%; }
  .focus-photo-caption { top: 25px; left: 25px; font-size: 43px; }
  .focus-story-copy { padding: 32px 25px 0; border-radius: 32px; }
  .focus-native { height: 320px; }
  .story-sticker { width: 140px; }
  .family-plan-price strong { font-size: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .float-sticker, .hero-sticker, .reward { animation: none !important; }
}
.voice-story [id], .focus-story [id] { scroll-margin-top: 115px; }
.focus-native { height: auto; border-bottom: 6px solid #211932; border-radius: 38px; margin-bottom: 30px; }
.focus-story-photo > img { height: 183%; }
@media(max-width:760px) { .focus-native { height: auto; } .focus-story-photo > img { height: 190%; } }

@media (max-width: 760px) {
  .screen-crop.screen-crop-household {
    width: 100%;
    height: auto;
    border: 1px solid rgba(38, 28, 55, 0.09);
    border-radius: 24px;
  }
}
