/* =========================================================
   Hey Human — Personal Coach landing (exploratory concept)
   Warm, light "Rosebud register" skinned into Hey Human's mark.
   Shepard, Front-End Designer. 2026-07-13.
   ========================================================= */

:root {
  /* Warm neutral base */
  --cream:      #FBF7F0;
  --cream-2:    #F5EEE3;
  --white:      #FFFFFF;
  --card:       #FFFFFF;

  /* Ink (warm near-black, matches the logo #131313) */
  --ink:        #201F1A;
  --ink-soft:   #4B4A43;
  --muted:      #7A776D;
  --hairline:   #EAE2D4;

  /* Growth green — echoes the tree in the mark + Rosebud's green */
  --green:      #2F6F5B;
  --green-deep: #234E42;
  --green-tint: #E7EFE9;
  --green-soft: #DCE9DE;

  /* Warm accents (terracotta / amber) for optimism */
  --amber:      #E39A5B;
  --amber-tint: #F7E9D7;
  --peach:      #F6EADB;
  --clay:       #C9744A;

  /* Sky tint for variety */
  --sky-tint:   #E7EEF0;

  --shadow-sm:  0 2px 8px rgba(35, 30, 20, 0.05);
  --shadow:     0 14px 40px rgba(35, 30, 20, 0.08);
  --shadow-lg:  0 30px 70px rgba(35, 30, 20, 0.12);

  --r-sm: 14px;
  --r:    22px;
  --r-lg: 32px;
  --r-pill: 999px;

  --maxw: 1140px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.center { text-align: center; }
.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--green); border-radius: 2px; }
.center .eyebrow::before { display: none; }
.lede { color: var(--ink-soft); font-size: 1.16rem; max-width: 620px; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn i { font-size: 16px; line-height: 1; }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 111, 91, 0.28);
}
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(47, 111, 91, 0.34); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); background: rgba(255,255,255,.6); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 240, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--hairline); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 30px; width: auto; }
.brand .wordmark { height: 32px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.95rem; color: var(--ink-soft); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-login { font-family:'Poppins',sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.nav-cta .btn-primary { padding: 10px 20px; font-size: 0.9rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--ink); }
.nav-toggle i { font-size: 22px; line-height: 1; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 40px;
  background:
    radial-gradient(1100px 600px at 78% -8%, var(--peach) 0%, rgba(246,234,219,0) 60%),
    radial-gradient(900px 620px at 8% 8%, var(--green-tint) 0%, rgba(231,239,233,0) 62%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.05rem); margin: 20px 0 22px; }
.hero h1 .accent { color: var(--green); position: relative; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 12px;
  background: var(--amber-tint); z-index: -1; border-radius: 8px;
}
.hero p.lede { font-size: 1.22rem; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--cream);
  margin-left: -12px; background-size: cover;
}
.avatars span:first-child { margin-left: 0; }
.a1 { background: linear-gradient(135deg,#DCE9DE,#9DBFAE); }
.a2 { background: linear-gradient(135deg,#F7E9D7,#E39A5B); }
.a3 { background: linear-gradient(135deg,#E7EEF0,#9BB6BE); }
.a4 { background: linear-gradient(135deg,#EFE4D2,#C9744A); }
.proof-text { font-size: 0.92rem; color: var(--muted); }
.proof-text strong { color: var(--ink); }
.stars { color: var(--amber); letter-spacing: 2px; font-size: .95rem; }

/* hero product mock (placeholder for real product/photo) */
.hero-visual { position: relative; }
.mock {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--hairline);
}
.mock-head { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--hairline); margin-bottom: 16px; }
.mock-head img { height: 26px; }
.mock-tag { margin-left: auto; font-size: 0.72rem; font-weight: 600; color: var(--green); background: var(--green-tint); padding: 4px 11px; border-radius: var(--r-pill); }
.bubble { padding: 13px 16px; border-radius: 18px; margin-bottom: 12px; font-size: 0.95rem; line-height: 1.5; max-width: 90%; }
.bubble.you { background: var(--cream-2); color: var(--ink); margin-left: auto; border-bottom-right-radius: 6px; }
.bubble.coach { background: var(--green-tint); color: var(--green-deep); border-bottom-left-radius: 6px; }
.bubble.coach strong { color: var(--green-deep); }
.mock-input { display: flex; align-items: center; gap: 10px; margin-top: 8px; border: 1px solid var(--hairline); border-radius: var(--r-pill); padding: 11px 16px; color: var(--muted); font-size: .9rem; }
.mock-input .dot { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; background: var(--green); display: grid; place-items: center; }
.mock-input .dot svg { width: 15px; height: 15px; color: #fff; }
.mock-input .dot i { font-size: 13px; line-height: 1; color: #fff; }
.float-chip {
  position: absolute; z-index: 3; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 12px 15px; display: flex; align-items: center; gap: 10px; font-size: .84rem; font-weight: 600;
  border: 1px solid var(--hairline);
}
.chip-1 { top: -30px; left: -48px; }
.chip-2 { bottom: 26px; right: -30px; }
.chip-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; }
.chip-ic svg { width: 17px; height: 17px; }
.chip-ic i { font-size: 15px; line-height: 1; }
.blob { position: absolute; border-radius: 50%; filter: blur(8px); z-index: 0; opacity: .55; }
.blob-1 { width: 220px; height: 220px; background: var(--green-soft); top: -40px; right: -40px; }
.blob-2 { width: 180px; height: 180px; background: var(--amber-tint); bottom: -30px; left: -40px; }

/* ---------- logo / trust strip ---------- */
.trust { padding: 34px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--cream); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 42px; flex-wrap: wrap; }
.trust-label { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.trust-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.logo-ph { height: 26px; width: 120px; border-radius: 7px; background: repeating-linear-gradient(90deg, #E7DECF 0 8px, #EFE8DB 8px 16px); opacity: .8; }

/* ---------- generic section head ---------- */
.head { max-width: 680px; margin: 0 auto 56px; }
.head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 16px 0 16px; }

/* ---------- empathy / reframe ---------- */
.reframe { background: var(--cream); padding: 60px 0; }
.reframe-card {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff; border-radius: var(--r-lg); padding: 60px; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.reframe-card h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.6rem); max-width: 720px; }
.reframe-card p { color: rgba(255,255,255,.86); font-size: 1.12rem; max-width: 640px; margin-top: 18px; }
.reframe-card .quiet { color: rgba(255,255,255,.66); font-size: .95rem; margin-top: 26px; }
.reframe-mark { position: absolute; right: -30px; bottom: -40px; width: 260px; opacity: .12; }
.reframe-mark img { filter: brightness(0) invert(1); width: 100%; }

/* ---------- how it works (3 steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r);
  padding: 34px 30px; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-n { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .85rem; color: var(--green); letter-spacing: .1em; }
.step-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin: 16px 0 20px; }
.step-ic svg { width: 27px; height: 27px; }
.step-ic i { font-size: 24px; line-height: 1; }
.step h3 { font-size: 1.34rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 1rem; }
.ic-green { background: var(--green-tint); color: var(--green); }
.ic-amber { background: var(--amber-tint); color: var(--clay); }
.ic-sky   { background: var(--sky-tint); color: #4E7480; }
.step-line { position: absolute; top: 62px; right: -26px; width: 26px; font-size: 20px; line-height: 1; color: var(--hairline); z-index: 3; }
.step:last-child .step-line { display: none; }

/* ---------- use cases grid ---------- */
.uses { background: var(--cream-2); }
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.use {
  background: var(--white); border-radius: var(--r); padding: 30px 28px;
  border: 1px solid var(--hairline); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.use:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.use-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; }
.use-ic svg { width: 23px; height: 23px; }
.use-ic i { font-size: 21px; line-height: 1; }
.use h3 { font-size: 1.16rem; margin-bottom: 8px; }
.use p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- differentiator split ---------- */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.diff-list { list-style: none; margin-top: 26px; }
.diff-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.diff-list .tick { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--green-tint); color: var(--green); display: grid; place-items: center; margin-top: 2px; }
.diff-list .tick svg { width: 15px; height: 15px; }
.diff-list .tick i { font-size: 14px; line-height: 1; }
.diff-list b { display: block; font-family:'Poppins',sans-serif; font-size: 1.05rem; margin-bottom: 2px; }
.diff-list span.t { color: var(--ink-soft); font-size: .98rem; }
.diff-visual { position: relative; }
.compare {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
}
.compare-row { padding: 22px 26px; display: flex; gap: 14px; align-items: flex-start; }
.compare-row + .compare-row { border-top: 1px solid var(--hairline); }
.compare-row .lab { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: var(--r-pill); flex: 0 0 auto; }
.lab-old { background: var(--cream-2); color: var(--muted); }
.lab-new { background: var(--green-tint); color: var(--green); }
.compare-row p { font-size: 1.02rem; }
.compare-row.old p { color: var(--muted); }
.compare-row.new p { color: var(--ink); }

/* ---------- The difference: side-by-side chat comparison ---------- */
.diff-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 22px; }
.diff-tab { font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .01em; color: var(--ink-soft); background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-pill); padding: 8px 18px; cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease; }
.diff-tab:hover { border-color: var(--green-soft); color: var(--green); }
.diff-tab:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.diff-tab.is-active { background: var(--green-tint); color: var(--green); border-color: var(--green-soft); box-shadow: var(--shadow-sm); }
.diff-panel { display: none; }
.diff-panel.is-active { display: block; }
.diff-chat { position: relative; }
.diff-chat-ask { text-align: center; margin-bottom: 22px; }
.diff-chat-asklab { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.diff-chat-ask .bubble { display: inline-block; text-align: left; max-width: 82%; margin: 0; }
.diff-chat-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.diff-chat-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-sm); box-shadow: var(--shadow-sm); padding: 16px; display: flex; flex-direction: column; }
.diff-chat-old { background: #FAF8F3; }
.diff-chat-new { border-color: var(--green-soft); }
.diff-chat-head { display: flex; align-items: center; gap: 9px; padding-bottom: 12px; border-bottom: 1px solid var(--hairline); margin-bottom: 14px; }
.diff-chat-avatar { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; }
.diff-chat-old .diff-chat-avatar { background: var(--cream-2); color: var(--muted); }
.diff-chat-old .diff-chat-avatar i { font-size: 12px; line-height: 1; }
.diff-chat-new .diff-chat-head img { height: 24px; }
.diff-chat-name { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: var(--r-pill); }
.diff-chat-old .diff-chat-name { background: var(--cream-2); color: var(--muted); }
.diff-chat-new .diff-chat-name { background: var(--green-tint); color: var(--green); }
.diff-chat-bubble { padding: 13px 16px; border-radius: 18px; border-bottom-left-radius: 6px; font-size: .93rem; line-height: 1.5; }
.diff-chat-old .diff-chat-bubble { background: var(--cream-2); color: var(--muted); }
.diff-chat-new .diff-chat-bubble { background: var(--green-tint); color: var(--green-deep); }
.diff-chat-bubble ol, .diff-chat-bubble ul { margin: 9px 0 0; padding-left: 20px; }
.diff-chat-bubble li { margin-bottom: 4px; }
.diff-chat-bubble p { margin: 0 0 9px; }
.diff-chat-bubble p:last-child { margin-bottom: 0; }
.diff-chat-bubble ol + :not(li), .diff-chat-bubble ul + :not(li) { margin-top: 9px; }

/* ---------- The difference: centered intro + 3 feature columns + full-width switcher ---------- */
.diff-intro { max-width: 720px; margin: 0 auto; }
.diff-intro h2 { margin-left: auto; margin-right: auto; }
.diff-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  max-width: 980px;
  margin: 34px auto 46px;
}
.diff-features .diff-feature { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; margin: 0; }
.diff-features .tick { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--green-tint); color: var(--green); display: grid; place-items: center; }
.diff-features .tick i { font-size: 15px; line-height: 1; }
.diff-features b { font-family: 'Poppins', sans-serif; font-size: 1.08rem; }
.diff-features .t { color: var(--ink-soft); font-size: .98rem; line-height: 1.5; max-width: 30ch; }
#difference .diff-visual { max-width: 1000px; margin: 0 auto; }

@media (max-width: 940px) {
  .diff-chat-cols { grid-template-columns: 1fr; gap: 14px; }
  .diff-chat-ask .bubble { max-width: 100%; }
  .diff-features { grid-template-columns: 1fr; gap: 24px; max-width: 420px; margin: 28px auto 36px; }
}

/* ---------- featured testimonial (full-bleed cinematic banner) ----------
   Charlotte D, real member. Rosebud register: full-width photo, subject on the
   right, white text over the calmer left, dark left-to-transparent scrim for
   legibility. Rodney, 2026-07-15. */
.testimonial-banner {
  position: relative;
  width: 100%;                 /* full-bleed: spans the viewport, no .wrap */
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);      /* fallback while the photo loads */
  isolation: isolate;
}
.tb-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% center; /* Charlotte sits right; bias the crop to keep her framed */
  z-index: 0;
}
/* left-to-transparent dark scrim so white text stays legible over the mid-tone wall */
.tb-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(20, 19, 15, 0.88) 0%,
    rgba(20, 19, 15, 0.68) 28%,
    rgba(20, 19, 15, 0.34) 54%,
    rgba(20, 19, 15, 0.00) 78%
  );
}
.tb-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 24px;   /* aligns with the page's left gutter */
}
.tb-content { max-width: 600px; color: #fff; }
.tb-headline {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  margin: 0 0 20px;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.38);
}
.tb-quote {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(1.12rem, 1.9vw, 1.55rem);
  line-height: 1.44;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 24px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}
.tb-attr { display: flex; flex-direction: column; gap: 2px; }
.tb-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; color: #fff; }
.tb-role { font-size: 0.86rem; color: rgba(255, 255, 255, 0.78); letter-spacing: 0.02em; }

@media (max-width: 760px) {
  /* Phones: banner goes taller and content anchors to the bottom over a
     stronger bottom-up scrim, so text reads cleanly and Charlotte stays in frame. */
  .testimonial-banner { min-height: 78vh; align-items: flex-end; }
  .tb-photo { object-position: 68% center; }
  .tb-scrim {
    background: linear-gradient(
      180deg,
      rgba(20, 19, 15, 0.34) 0%,
      rgba(20, 19, 15, 0.56) 44%,
      rgba(20, 19, 15, 0.90) 100%
    );
  }
  .tb-inner { padding-top: 40px; padding-bottom: 46px; }
  .tb-content { max-width: 100%; }
  .tb-headline { font-size: 1.8rem; margin-bottom: 14px; }
  .tb-quote { font-size: 1.06rem; line-height: 1.42; margin-bottom: 18px; }
}

/* ---------- testimonials ---------- */
.testi { background: var(--cream-2); }
.quote {
  background: #fff; border-radius: var(--r); padding: 34px 34px; border: 1px solid var(--hairline);
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.quote .stars { margin-bottom: 14px; }
.quote p { font-size: 1.12rem; line-height: 1.65; color: var(--ink); flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote .nm { font-family:'Poppins',sans-serif; font-weight: 600; font-size: .98rem; }
.quote .rl { color: var(--muted); font-size: .85rem; }

/* ---------- testimonials grid (centered flex, 2 per row) ----------
   Flex-wrap + justify-center keeps any trailing card centered rather than
   orphaned left: 2 cards sit side by side, 3 lay out as 2 + 1 centered,
   4 fall into a clean 2x2. Rodney, 2026-07-15. */
.testi-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; max-width: 900px; margin: 46px auto 0; }
.testi-grid > .quote { flex: 1 1 380px; max-width: 438px; margin: 0; }

/* ---------- final CTA ---------- */
.cta { background: var(--cream); }
.cta-card {
  background:
    radial-gradient(700px 340px at 15% 10%, var(--green-tint) 0, rgba(231,239,233,0) 60%),
    radial-gradient(700px 340px at 90% 90%, var(--peach) 0, rgba(246,234,219,0) 60%),
    var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: 74px 48px; text-align: center; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.cta-card img.mk { height: 56px; margin: 0 auto 22px; }
.cta-card h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 640px; margin: 0 auto 18px; }
.cta-card p { color: var(--ink-soft); font-size: 1.14rem; max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-fine { margin-top: 18px; font-size: .88rem; color: var(--muted); }

/* ---------- footer ---------- */
.footer { background: var(--green-deep); color: rgba(255,255,255,.72); padding: 66px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand img { height: 30px; filter: brightness(0) invert(1); }
.footer-blurb { margin-top: 18px; max-width: 300px; font-size: .95rem; color: rgba(255,255,255,.62); }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-family:'Poppins',sans-serif; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: rgba(255,255,255,.72); font-size: .95rem; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); font-size: .85rem; flex-wrap: wrap; gap: 12px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .section { padding: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .reframe { padding: 46px 0; }
  .reframe-card { padding: 46px 34px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .testi-grid { max-width: 560px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .section { padding: 58px 0; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 auto; }
  .use-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-chip { display: none; }
  .nav-login { display: none; }
  .cta-card { padding: 52px 26px; }
  .reframe { padding: 38px 0; }
  .reframe-card { padding: 38px 26px; }
  .quote { padding: 26px 22px; }
  .quote p { font-size: 1.04rem; }
}

/* =========================================================
   Memory section — native card cluster (visual aid)
   Recreates the app's "Your memory" screen in brand tokens.
   Rodney, Back-End Developer. 2026-07-15.
   ========================================================= */
.mem-cluster { display: flex; flex-direction: column; gap: 14px; }

.mem-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 20px 22px;
}
.mem-master { background: var(--white); }

.mem-head { display: flex; align-items: flex-start; gap: 14px; }
.mem-ic {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--green-tint);
  color: var(--green);
  display: grid; place-items: center;
}
.mem-ic i { font-size: 17px; line-height: 1; }
.mem-htext { flex: 1 1 auto; min-width: 0; }
.mem-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.mem-sub { font-size: 0.86rem; color: var(--muted); margin-top: 2px; }

/* switch (decorative, shown on) */
.mem-switch {
  flex: 0 0 auto;
  width: 44px; height: 25px;
  border-radius: var(--r-pill);
  background: var(--green);
  position: relative;
  margin-top: 3px;
}
.mem-switch::after {
  content: "";
  position: absolute;
  top: 3px; left: 22px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(35, 30, 20, 0.28);
}
.mem-switch.is-off { background: var(--hairline); }
.mem-switch.is-off::after { left: 3px; }

.mem-body { margin-top: 12px; }
.mem-para { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.55; }

.mem-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mem-chip {
  background: var(--cream-2);
  border: 1px solid var(--hairline);
  color: var(--ink-soft);
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

.mem-people { display: flex; flex-direction: column; gap: 12px; }
.mem-person { display: flex; align-items: flex-start; gap: 11px; }
.mem-avatar {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--clay);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  display: grid; place-items: center;
}
.mem-pname { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.mem-pnote { font-size: 0.84rem; color: var(--muted); line-height: 1.4; }

.mem-goals { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.mem-goals li { position: relative; padding-left: 20px; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.45; }
.mem-goals li::before {
  content: "";
  position: absolute;
  left: 2px; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.mem-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.mem-span2 { grid-column: 1 / -1; }

/* Memory section reads as its own band: darker surface tone (same --cream-2
   as "What people use it for" / the Stories section), so it separates from
   the lighter #difference section above it. Rodney, 2026-07-15. */
#memory { background: var(--cream-2); }

/* Memory sticky-column: the tall stacked cards (left) scroll while the
   shorter copy column (right) pins, releasing when their bottoms align.
   align-items:start lets the sticky child move within the grid row.
   Rodney, 2026-07-15. */
#memory .diff-grid { align-items: start; }
.mem-copy { position: sticky; top: 98px; align-self: start; }
@media (max-width: 940px) {
  .mem-copy { position: static; top: auto; }
}

@media (max-width: 620px) {
  .mem-grid { grid-template-columns: 1fr; }
  .mem-card { padding: 18px 18px; }
}

/* =========================================================
   Pricing — two-card plan compare (Rosebud register, HH green)
   Monthly (plain) + Annual (featured, SAVE badge + green tint).
   Rodney, 2026-07-15.
   ========================================================= */
.pricing { background: var(--cream); }
.pricing .head { margin-bottom: 48px; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 760px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 40px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.price-card.is-featured {
  background:
    radial-gradient(520px 300px at 50% -10%, var(--green-tint) 0, rgba(231,239,233,0) 66%),
    var(--white);
  border: 2px solid var(--green);
  box-shadow: var(--shadow);
}
.price-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--green);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 20px rgba(47, 111, 91, 0.30);
  white-space: nowrap;
}
.price-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin: 18px 0 8px;
}
.price-amount .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.7rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-amount .per { font-size: 1.05rem; color: var(--muted); font-weight: 500; }
/* comparison line (struck was + now); reserved height keeps both cards aligned */
.price-compare { min-height: 26px; font-size: 1rem; margin-bottom: 4px; }
.price-was { color: var(--muted); text-decoration: line-through; font-weight: 500; margin-right: 6px; }
.price-now { color: var(--ink); font-weight: 700; }
.price-billed { font-size: 0.88rem; color: var(--muted); min-height: 22px; }
.price-card .btn { margin-top: 26px; width: 100%; }
.price-note { text-align: center; margin-top: 24px; font-size: 0.86rem; color: var(--muted); }

@media (max-width: 620px) {
  .price-grid { grid-template-columns: 1fr; max-width: 400px; gap: 34px; }
  .price-card { padding: 36px 26px; }
}

/* --- Charlotte modifier: photo on the LEFT, text on the RIGHT. Scoped so
   Brooklyn (base .tb-* rules) is untouched. Shepard, 2026-07-21. --- */

/* Keep Charlotte (left of frame) in shot; bias the crop left. */
.testimonial-banner--right .tb-photo {
  object-position: 33% center;
}

/* Dark-on-the-right scrim so white text clears the bright dappled woodland. */
.testimonial-banner--right .tb-scrim {
  background: linear-gradient(
    to left,
    rgba(20, 19, 15, 0.92) 0%,
    rgba(20, 19, 15, 0.90) 24%,
    rgba(20, 19, 15, 0.62) 52%,
    rgba(20, 19, 15, 0.00) 82%
  );
}

/* Push the 600px content block to the right; right gutter kept by .tb-inner padding. */
.testimonial-banner--right .tb-content {
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 760px) {
  /* Portrait box crops width hard; keep her face framed. */
  .testimonial-banner--right .tb-photo {
    object-position: 30% center;
  }
  /* Mobile stays bottom-up (content anchors bottom, full width). */
  .testimonial-banner--right .tb-scrim {
    background: linear-gradient(
      180deg,
      rgba(20, 19, 15, 0.34) 0%,
      rgba(20, 19, 15, 0.58) 44%,
      rgba(20, 19, 15, 0.92) 100%
    );
  }
  /* Full-width content on mobile, not right-pinned. */
  .testimonial-banner--right .tb-content {
    margin-left: 0;
    margin-right: 0;
  }
}
