/* CoParenting System marketing site v3
   Bright, human-first AI capture and recall story. */

:root {
  --ink: #18233f;
  --ink-soft: #33415f;
  --muted: #46536e;
  --muted-light: #778199;
  --cream: #fff7e9;
  --cream-deep: #ffe9d6;
  --ivory: #fffefb;
  --paper: #fff9f1;
  --peach: #ffb8cc;
  --peach-light: #ffe5ee;
  --terracotta: #d92f58;
  --terracotta-dark: #941a3b;
  --terracotta-soft: #ffdbe6;
  --sage: #d9f7df;
  --sage-deep: #aee9bf;
  --sage-ink: #1a603c;
  --butter: #ffd84d;
  --plum: #3b2359;
  --plum-soft: #553871;
  --cobalt: #315bea;
  --cobalt-dark: #2346c7;
  --sky: #dfeaff;
  --line: #dddcf3;
  --line-strong: #bfc0e2;
  --focus: #2156f3;
  --shadow-soft: 0 1px 2px rgba(24, 35, 63, 0.06), 0 10px 28px rgba(49, 91, 234, 0.09);
  --shadow-lift: 0 1px 0 rgba(24, 35, 63, 0.06), 0 22px 58px rgba(59, 35, 89, 0.15);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --container: 1180px;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: Aptos, "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--ivory);
  background: var(--ink);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 253, 249, 0.97);
  border-bottom: 1px solid rgba(203, 188, 175, 0.72);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 64px), var(--container));
  min-height: 76px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
}

.brand img {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.brand-name {
  color: var(--ink);
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand-name span {
  color: var(--muted);
  font-weight: 520;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink-soft);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 620;
  transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: var(--cream);
}

.site-nav .nav-cta {
  gap: 8px;
  margin-left: 8px;
  padding-inline: 17px;
  color: var(--ivory);
  background: var(--terracotta);
}

.site-nav .nav-cta:hover {
  color: var(--ivory);
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  padding: 0;
  gap: 5px;
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Shared type and controls */
.eyebrow,
.section-kicker,
.panel-kicker {
  color: var(--terracotta-dark);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--terracotta);
}

.section-kicker-light {
  color: #f1b89f;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 720;
  line-height: 1;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

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

.button-primary {
  color: var(--ivory);
  background: var(--terracotta);
  box-shadow: 0 12px 24px -14px rgba(146, 59, 41, 0.74);
}

.button-primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 15px 30px -14px rgba(146, 59, 41, 0.72);
}

.button-secondary {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--line-strong);
  box-shadow: 0 1px 0 rgba(65, 46, 34, 0.04);
}

.button-secondary:hover {
  background: var(--paper);
  border-color: #a99687;
}

.section-heading h2,
.ai-control-copy h2,
.recall-copy h2,
.everyday-copy h2,
.privacy-copy h2,
.final-cta h2 {
  max-width: 820px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.section-heading .section-kicker,
.ai-control-copy .section-kicker,
.recall-copy .section-kicker,
.everyday-copy .section-kicker,
.privacy-copy .section-kicker,
.final-cta .section-kicker {
  margin-bottom: 20px;
}

.section-heading > p:last-child,
.ai-control-copy > p,
.recall-copy > p,
.everyday-copy > p,
.privacy-copy > p,
.final-cta p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 98px 0 0;
  background: var(--cream);
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}

.hero-shape-one {
  top: 40px;
  right: -120px;
  width: 510px;
  height: 430px;
  background: var(--peach);
  border-radius: 54% 46% 63% 37% / 45% 58% 42% 55%;
  opacity: 0.78;
  transform: rotate(-9deg);
}

.hero-shape-two {
  bottom: 40px;
  left: -150px;
  width: 330px;
  height: 260px;
  background: var(--sage);
  border-radius: 38% 62% 48% 52% / 60% 37% 63% 40%;
  opacity: 0.82;
  transform: rotate(12deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(440px, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 84px;
}

.hero-copy {
  padding-bottom: 32px;
}

.hero-copy h1 {
  max-width: 680px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(56px, 6vw, 78px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero-lede {
  max-width: 630px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
}

.hero-note {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-assistant {
  position: relative;
  min-height: 530px;
  padding: 28px;
  background: var(--ivory);
  border: 1px solid rgba(203, 188, 175, 0.92);
  border-radius: 34px;
  box-shadow: var(--shadow-lift);
}

.assistant-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.assistant-topline > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.assistant-topline strong {
  color: var(--ink);
  font-size: 14px;
}

.assistant-topline > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #4e8768;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #e3efe5;
}

.assistant-conversation {
  display: grid;
  padding: 34px 0 26px;
  gap: 22px;
}

.message {
  max-width: 86%;
}

.message span {
  display: block;
  margin: 0 10px 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.message p {
  padding: 17px 19px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.55;
}

.message-user {
  justify-self: end;
}

.message-user span {
  text-align: right;
}

.message-user p {
  color: #fff;
  background: var(--terracotta);
  border-bottom-right-radius: 6px;
}

.message-assistant p {
  color: var(--ink-soft);
  background: var(--sage);
  border-bottom-left-radius: 6px;
}

.source-ribbon {
  display: flex;
  flex-wrap: wrap;
  padding-top: 19px;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.source-ribbon span {
  padding: 8px 11px;
  color: var(--sage-ink);
  background: #edf5eb;
  border: 1px solid #c7d9c4;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.assistant-caveat {
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.floating-note {
  position: absolute;
  min-width: 176px;
  padding: 13px 15px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note span {
  color: var(--terracotta-dark);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.floating-note strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 12px;
}

.floating-note-voice {
  top: -24px;
  right: -36px;
  transform: rotate(3deg);
}

.floating-note-source {
  bottom: 62px;
  left: -56px;
  background: #fff8dc;
  transform: rotate(-2deg);
}

.capture-ribbon {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  min-height: 108px;
  margin-top: 90px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
}

.capture-ribbon > p {
  padding-left: 28px;
  color: var(--terracotta-dark);
  font-family: var(--font-serif);
  font-size: 19px;
}

.capture-ribbon ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.capture-ribbon li {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  gap: 10px;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.capture-ribbon li span {
  color: var(--terracotta-dark);
  font-size: 10px;
}

/* AI capture story */
.ai-help-section {
  padding: 126px 0 134px;
  background: var(--ivory);
}

.section-heading-wide {
  max-width: 900px;
}

.section-heading-wide > p:last-child {
  max-width: 730px;
  margin-top: 25px;
}

.capture-story {
  display: grid;
  grid-template-columns: minmax(480px, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  margin-top: 76px;
  gap: 90px;
}

.capture-demo {
  position: relative;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid var(--ink);
  border-radius: 30px;
  box-shadow: 12px 14px 0 var(--butter), var(--shadow-lift);
}

.capture-demo::before {
  position: absolute;
  top: -55px;
  right: -45px;
  width: 150px;
  height: 150px;
  background: var(--peach);
  border-radius: 50%;
  content: "";
  opacity: 0.72;
}

.capture-demo-top,
.capture-demo-top > div,
.capture-option,
.ai-transform,
.capture-ready {
  display: flex;
  align-items: center;
}

.capture-demo-top {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  padding-bottom: 18px;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.capture-demo-top > div {
  gap: 9px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #27b96f;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #d9f7df;
}

.capture-demo-top strong {
  color: var(--ink);
  font-size: 15px;
}

.ai-on {
  padding: 7px 11px;
  color: #ffffff;
  background: var(--cobalt);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.capture-options {
  display: grid;
  margin-top: 18px;
  gap: 10px;
}

.capture-option {
  position: relative;
  min-width: 0;
  min-height: 76px;
  padding: 12px 14px;
  gap: 13px;
  border: 1px solid rgba(24, 35, 63, 0.16);
  border-radius: 18px;
}

.capture-option-voice {
  background: #ffe3ec;
}

.capture-option-photo {
  background: #dfeaff;
}

.capture-option-message {
  background: #def8e5;
}

.capture-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: #ffffff;
  border-radius: 15px;
}

.capture-option-voice .capture-icon {
  background: var(--terracotta);
}

.capture-option-photo .capture-icon {
  background: var(--cobalt);
}

.capture-option-message .capture-icon {
  background: #198b55;
}

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

.capture-option > span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.capture-option small,
.ai-transform small {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.capture-option strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.capture-option em {
  margin-left: auto;
  padding: 5px 8px;
  color: #ffffff;
  background: var(--terracotta-dark);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
}

.ai-transform {
  margin-top: 16px;
  padding: 15px;
  gap: 12px;
  color: var(--ink);
  background: var(--butter);
  border: 1px solid #d8ad00;
  border-radius: 18px;
}

.ai-spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--plum);
  border-radius: 50%;
  font-size: 19px;
}

.ai-transform > div {
  display: grid;
  min-width: 0;
}

.ai-transform small {
  color: #5a4500;
}

.ai-transform strong {
  font-size: 13px;
  line-height: 1.35;
}

.capture-ready {
  justify-content: space-between;
  padding: 18px 4px 2px;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
}

.capture-ready strong {
  color: var(--cobalt-dark);
  font-size: 12px;
}

.editor-preview figcaption,
.memory-screen figcaption {
  padding: 12px 15px;
  color: var(--muted);
  background: var(--ivory);
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 680;
}

.ai-journey {
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.ai-journey li {
  display: grid;
  grid-template-columns: 52px 1fr;
  padding: 25px 0;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.journey-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--terracotta-dark);
  background: var(--terracotta-soft);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 780;
}

.ai-journey h3 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.18;
}

.ai-journey p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* AI review */
.ai-control-section {
  padding: 126px 0;
  background: var(--peach-light);
  border-block: 1px solid #ead0c3;
}

.ai-control-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 92px;
}

.ai-control-copy > p {
  max-width: 600px;
  margin-top: 25px;
}

.warm-checklist {
  margin-top: 40px;
  list-style: none;
  border-top: 1px solid #d9bdae;
}

.warm-checklist li {
  display: grid;
  grid-template-columns: 104px 1fr;
  padding: 17px 0;
  gap: 20px;
  border-bottom: 1px solid #e1c8bb;
}

.warm-checklist strong {
  color: var(--terracotta-dark);
  font-size: 14px;
}

.warm-checklist span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.editor-preview {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  box-shadow: var(--shadow-lift);
}

.soft-label {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  gap: 7px;
  color: var(--terracotta-dark);
  background: #fff8e8;
  border: 1px solid #e3c884;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 11px;
  font-weight: 740;
}

.tall-crop img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: top center;
}

/* Recall */
.recall-section {
  padding: 132px 0;
  color: var(--ivory);
  background: var(--plum);
}

.recall-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.83fr) minmax(520px, 1.17fr);
  align-items: center;
  gap: 96px;
}

.recall-copy h2 {
  color: var(--ivory);
}

.recall-copy > p {
  max-width: 620px;
  margin-top: 26px;
  color: #d9cbd1;
}

.recall-prompts {
  display: grid;
  margin-top: 38px;
  gap: 10px;
}

.recall-prompts span {
  padding: 13px 16px;
  color: #f8ede9;
  background: var(--plum-soft);
  border: 1px solid #6d5863;
  border-radius: 14px;
  font-family: var(--font-serif);
  font-size: 16px;
}

.recall-copy .recall-note {
  margin-top: 20px;
  color: #aa98a1;
  font-size: 11px;
  line-height: 1.55;
}

.recall-visual {
  position: relative;
  padding: 0 0 70px 58px;
}

.memory-screen {
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid #6b5761;
  border-radius: 26px;
  box-shadow: 0 32px 70px -28px rgba(0, 0, 0, 0.48);
}

.memory-screen img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.recall-query {
  position: absolute;
  right: 30px;
  bottom: 0;
  width: min(420px, 78%);
  padding: 20px 22px;
  color: var(--ink);
  background: var(--butter);
  border: 1px solid #d0b964;
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
  transform: rotate(1deg);
}

.recall-query span,
.recall-query strong {
  display: block;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recall-query span {
  color: #493709;
}

.recall-query p {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.3;
}

.recall-query strong {
  margin-top: 14px;
  color: var(--terracotta-dark);
}

/* Screens and interactions */
.screenshot-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: 0;
  cursor: zoom-in;
}

.screenshot-button img {
  transition: transform 240ms ease, filter 240ms ease;
}

.screenshot-button:hover img {
  filter: saturate(1.03) contrast(1.01);
  transform: scale(1.005);
}

.open-cue {
  position: absolute;
  right: 13px;
  bottom: 13px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  gap: 7px;
  color: var(--ivory);
  background: var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.screenshot-button:hover .open-cue,
.screenshot-button:focus-visible .open-cue {
  opacity: 1;
  transform: translateY(0);
}

/* Product tour */
.tour-section {
  padding: 132px 0 140px;
  background: var(--cream);
}

.tour-heading {
  max-width: 880px;
}

.tour-heading > p:last-child {
  max-width: 710px;
  margin-top: 24px;
}

.tour-shell {
  margin-top: 68px;
}

.tour-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tour-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  min-height: 78px;
  padding: 14px 15px;
  column-gap: 9px;
  text-align: left;
  background: rgba(255, 253, 249, 0.62);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.tour-tabs button:hover {
  background: var(--ivory);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.tour-tabs button > span {
  grid-row: 1 / span 2;
  padding-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
}

.tour-tabs button strong {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.25;
}

.tour-tabs button small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.tour-tabs button[aria-selected="true"] {
  background: var(--terracotta-soft);
  border-color: #d69a86;
  box-shadow: 0 1px 0 rgba(65, 46, 34, 0.04);
}

.tour-tabs button[aria-selected="true"] > span,
.tour-tabs button[aria-selected="true"] strong {
  color: var(--terracotta-dark);
}

.tour-panels {
  min-width: 0;
  margin-top: 26px;
}

.tour-panel {
  padding: 34px;
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.tour-panel-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 28px;
}

.tour-panel-copy h3 {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.tour-panel-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.screen-frame {
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
}

.tour-panel .screenshot-button img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.tour-panel figcaption {
  padding: 10px 13px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.noscript-note {
  margin-top: 18px;
  padding: 14px 16px;
  color: var(--ink-soft);
  background: #fff7d9;
  border: 1px solid #d9c06f;
  border-radius: 14px;
  font-size: 14px;
}

/* Everyday load */
.everyday-section {
  padding: 130px 0;
  background: var(--sage);
  border-block: 1px solid var(--sage-deep);
}

.everyday-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.88fr) minmax(500px, 1.12fr);
  align-items: start;
  gap: 100px;
}

.everyday-copy > p {
  max-width: 630px;
  margin-top: 25px;
  color: #53665a;
}

.life-moments {
  border-top: 1px solid #afc3ac;
}

.life-moments article {
  padding: 24px 0 26px;
  border-bottom: 1px solid #b7cbb4;
}

.life-moments span {
  color: var(--sage-ink);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.life-moments h3 {
  max-width: 560px;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

/* Privacy */
.privacy-section {
  padding: 132px 0 118px;
  color: var(--ivory);
  background: #2f2a26;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.85fr) minmax(510px, 1.15fr);
  align-items: start;
  gap: 96px;
}

.privacy-copy h2 {
  color: var(--ivory);
}

.privacy-copy > p {
  max-width: 650px;
  margin-top: 24px;
  color: #cfc3b9;
}

.privacy-copy > p + p {
  color: #aa9c91;
  font-size: 14px;
}

.control-panel {
  padding: 28px;
  background: #39322d;
  border: 1px solid #584c43;
  border-radius: 26px;
}

.control-panel-title {
  padding-bottom: 19px;
  color: #f1b89f;
  border-bottom: 1px solid #5a4d44;
  font-family: var(--font-serif);
  font-size: 22px;
}

.control-panel ul {
  list-style: none;
}

.control-panel li {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 17px 0;
  gap: 18px;
  border-bottom: 1px solid #51463e;
}

.control-panel li:last-child {
  border-bottom: 0;
}

.control-panel strong {
  color: var(--ivory);
  font-size: 13px;
}

.control-panel span {
  color: #bcaea3;
  font-size: 13px;
  line-height: 1.5;
}

.provider-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 26px;
  gap: 8px;
  border-top: 1px solid #51463e;
}

.provider-row span {
  padding: 8px 12px;
  color: #d6c8bd;
  background: #39322d;
  border: 1px solid #584c43;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

/* Legal */
.legal-section {
  padding: 28px 0;
  background: #fff7dc;
  border-block: 1px solid #dbc47c;
}

.legal-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 34px;
}

.legal-inner strong {
  color: #5b4516;
  font-size: 14px;
}

.legal-inner p {
  color: #6e5a2c;
  font-size: 13px;
  line-height: 1.55;
}

/* Final CTA and footer */
.final-cta {
  background: var(--peach);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 390px;
  gap: 70px;
}

.final-cta h2 {
  max-width: 740px;
}

.final-cta .section-kicker {
  color: #713020;
}

.final-cta p {
  max-width: 620px;
  margin-top: 18px;
  color: #5c5049;
}

.final-actions {
  display: flex;
  flex-direction: column;
  min-width: 240px;
  gap: 11px;
}

.button-dark {
  color: var(--ivory);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--terracotta-dark);
}

.button-cream {
  color: var(--ink);
  background: var(--ivory);
  border-color: #c9ad9c;
}

.button-cream:hover {
  background: #fff8f0;
  border-color: #ae8e7b;
}

.site-footer {
  padding: 58px 0;
  color: #b9ada4;
  background: #28231f;
  border-top: 1px solid #4b4038;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(320px, 1fr) minmax(280px, 0.9fr);
  align-items: start;
  gap: 52px;
}

.site-footer .brand-name {
  color: var(--ivory);
}

.site-footer .brand-name span {
  color: #b9ada4;
}

.footer-brand > p {
  max-width: 330px;
  margin-top: 12px;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 20px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  color: #ded3cb;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-legal {
  padding-top: 8px;
  color: #978980;
  font-size: 12px;
  line-height: 1.65;
}

/* Lightbox */
.lightbox {
  width: min(96vw, 1440px);
  max-width: none;
  max-height: 94vh;
  margin: auto;
  padding: 0;
  overflow: hidden;
  background: #28231f;
  border: 1px solid #66574d;
  border-radius: 22px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55);
}

.lightbox::backdrop {
  background: rgba(28, 22, 19, 0.88);
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  max-height: 94vh;
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 12px 0 20px;
  gap: 20px;
  color: var(--ivory);
  border-bottom: 1px solid #55483f;
}

.lightbox-header p {
  overflow: hidden;
  color: #cbbdb4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  min-height: 44px;
  gap: 8px;
  color: var(--ivory);
  background: #3d342e;
  border: 1px solid #66574d;
  border-radius: 12px;
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--terracotta-dark);
}

.lightbox-close span {
  font-size: 20px;
  line-height: 1;
}

.lightbox-canvas {
  overflow: auto;
  background: #1f1b18;
}

.lightbox-canvas img {
  width: auto;
  min-width: min(100%, 920px);
  max-width: none;
  height: auto;
  max-height: calc(94vh - 60px);
  margin: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(400px, 0.9fr) minmax(460px, 1.1fr);
    gap: 52px;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 6.1vw, 70px);
  }

  .floating-note-voice {
    right: -22px;
  }

  .floating-note-source {
    left: -22px;
  }

  .capture-story,
  .ai-control-grid,
  .recall-grid,
  .everyday-grid,
  .privacy-grid {
    gap: 60px;
  }
}

@media (max-width: 980px) {
  .container,
  .header-inner {
    width: min(calc(100% - 48px), var(--container));
  }

  .hero-grid,
  .capture-story,
  .ai-control-grid,
  .recall-grid,
  .everyday-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h1 {
    font-size: clamp(58px, 8.5vw, 74px);
  }

  .hero-assistant {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .capture-ribbon {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .capture-ribbon > p {
    padding: 0 24px 16px;
  }

  .capture-ribbon li:first-child {
    border-left: 0;
  }

  .capture-story {
    gap: 70px;
  }

  .capture-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .ai-journey {
    width: min(100%, 760px);
  }

  .editor-preview {
    width: min(100%, 760px);
  }

  .recall-visual,
  .control-panel {
    width: min(100%, 760px);
  }

  .everyday-copy,
  .privacy-copy {
    max-width: 760px;
  }

  .tour-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-legal {
    grid-column: 1 / -1;
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .js .nav-toggle {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    padding: 12px;
    background: var(--ivory);
    border: 1px solid var(--line-strong);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow-lift);
  }

  .js .site-nav[data-open="false"] {
    display: none;
  }

  .js .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
    padding-inline: 14px;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin: 8px 0 0;
  }

  .tour-panel-copy {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .legal-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 86px;
    gap: 38px;
  }

  .final-actions {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .container,
  .header-inner {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

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

  .brand-name {
    font-size: 15px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 13vw, 58px);
    line-height: 1.01;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-assistant {
    min-height: 0;
    padding: 20px;
    border-radius: 24px;
  }

  .message {
    max-width: 94%;
  }

  .floating-note {
    display: none;
  }

  .capture-ribbon {
    margin-top: 64px;
    border-radius: 20px 20px 0 0;
  }

  .capture-ribbon ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capture-ribbon li {
    border-top: 1px solid var(--line);
  }

  .capture-ribbon li:nth-child(odd) {
    border-left: 0;
  }

  .ai-help-section,
  .ai-control-section,
  .recall-section,
  .tour-section,
  .everyday-section,
  .privacy-section {
    padding-block: 88px;
  }

  .section-heading h2,
  .ai-control-copy h2,
  .recall-copy h2,
  .everyday-copy h2,
  .privacy-copy h2,
  .final-cta h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .section-heading > p:last-child,
  .ai-control-copy > p,
  .recall-copy > p,
  .everyday-copy > p,
  .privacy-copy > p,
  .final-cta p {
    font-size: 17px;
  }

  .capture-story {
    margin-top: 54px;
  }

  .capture-visual {
    min-height: 0;
    padding: 16px 0 0;
  }

  .capture-visual::before {
    inset: 0 12px 14px;
  }

  .screen-card-main,
  .screen-card-float {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 0;
    transform: none;
  }

  .screen-card-float {
    margin-top: 16px;
  }

  .ai-journey li {
    grid-template-columns: 46px 1fr;
  }

  .warm-checklist li,
  .control-panel li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .tall-crop img {
    height: 480px;
  }

  .recall-visual {
    padding: 0 0 92px;
  }

  .recall-query {
    right: 10px;
    width: 88%;
  }

  .tour-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
  }

  .tour-tabs button {
    flex: 0 0 190px;
    scroll-snap-align: start;
  }

  .tour-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .tour-panel-copy h3 {
    font-size: 29px;
  }

  .screen-frame {
    border-radius: 14px;
  }

  .open-cue {
    display: none;
  }

  .life-moments h3 {
    font-size: 24px;
  }

  .control-panel {
    padding: 20px;
  }

  .provider-row {
    margin-top: 46px;
  }

  .final-actions {
    flex-direction: column;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .lightbox {
    width: 100vw;
    max-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .lightbox-inner {
    max-height: 100vh;
  }

  .lightbox-header {
    min-height: 64px;
    padding-left: 14px;
  }

  .lightbox-canvas img {
    min-width: 100%;
    max-height: calc(100vh - 64px);
  }
}

@media (max-width: 380px) {
  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-name span {
    display: none;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .capture-ribbon li {
    padding-inline: 12px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* v3: brighter, more energetic, and deliberately mobile-first */
.site-header {
  background: rgba(255, 254, 251, 0.96);
  border-bottom-color: rgba(49, 91, 234, 0.16);
  box-shadow: 0 3px 20px rgba(49, 91, 234, 0.06);
  backdrop-filter: blur(14px);
}

.site-nav .nav-cta,
.button-primary {
  background: var(--terracotta);
}

.button {
  border-radius: 999px;
}

.button:hover {
  transform: translateY(-2px) scale(1.02);
}

.button:active {
  transform: scale(0.98);
}

.button-secondary {
  color: var(--cobalt-dark);
  background: #ffffff;
  border-color: #8da7ff;
}

.button-secondary:hover {
  background: var(--sky);
  border-color: var(--cobalt);
}

.hero {
  background: var(--cream);
}

.hero-shape-one {
  background: var(--peach);
  opacity: 0.96;
}

.hero-shape-two {
  background: var(--sage);
  opacity: 1;
}

.hero-copy h1 span {
  position: relative;
  z-index: 0;
  color: var(--terracotta-dark);
  white-space: nowrap;
}

.hero-copy h1 span::after {
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: 0.05em;
  left: -0.08em;
  height: 0.18em;
  background: var(--butter);
  border-radius: 999px;
  content: "";
  transform: rotate(-1.5deg);
}

.hero-assistant,
.capture-ribbon,
.editor-preview,
.tour-panel {
  border: 2px solid var(--ink);
}

.hero-assistant {
  box-shadow: 12px 14px 0 var(--sky), var(--shadow-lift);
}

.source-ribbon span {
  background: #def8e5;
  border-color: #9edaae;
}

.floating-note-voice {
  background: #ffe3ec;
  border-color: #f083a2;
}

.floating-note-source {
  background: #fff2ad;
  border-color: #d8ad00;
}

.capture-ribbon {
  overflow: hidden;
  background: #ffffff;
}

.capture-ribbon li {
  transition: filter 160ms ease, transform 160ms ease;
}

.capture-ribbon li:nth-child(1) {
  background: #ffe3ec;
}

.capture-ribbon li:nth-child(2) {
  background: #fff2ad;
}

.capture-ribbon li:nth-child(3) {
  background: #dfeaff;
}

.capture-ribbon li:nth-child(4) {
  background: #def8e5;
}

.capture-ribbon li:hover {
  z-index: 1;
  filter: saturate(1.08);
  transform: translateY(-3px);
}

.ai-help-section {
  background: #ffffff;
}

.journey-number {
  color: #ffffff;
  background: var(--cobalt);
}

.ai-control-section {
  background: var(--peach-light);
  border-block-color: #ffb8cc;
}

.warm-checklist {
  border-top-color: #ef9ab3;
}

.warm-checklist li {
  border-bottom-color: #f1aec2;
}

.soft-label {
  color: #713f00;
  background: var(--butter);
  border-color: #d4aa00;
}

.recall-prompts span {
  background: #60427c;
  border-color: #80609c;
}

.tour-section {
  background: #f5f7ff;
}

.tour-tabs button {
  background: #ffffff;
}

.tour-tabs button[aria-selected="true"] {
  background: var(--butter);
  border-color: #d8ad00;
}

.tour-tabs button[aria-selected="true"] > span,
.tour-tabs button[aria-selected="true"] strong {
  color: var(--ink);
}

.everyday-section {
  background: var(--sage);
}

.privacy-section {
  background: #162443;
}

.control-panel,
.provider-row span {
  background: #21345d;
  border-color: #4f6ca8;
}

.control-panel-title {
  color: #ffb8cc;
  border-bottom-color: #405987;
}

.control-panel li,
.provider-row {
  border-color: #405987;
}

.final-cta {
  background: #ffd47a;
  background-image: radial-gradient(circle at 10% 15%, #ffb8cc 0 15%, transparent 15.5%), radial-gradient(circle at 94% 90%, #b9f1c8 0 18%, transparent 18.5%);
}

.site-footer {
  background: #121b33;
  border-top-color: var(--cobalt);
}

.screenshot-button,
.screenshot-button img,
.screen-frame,
.editor-preview,
.memory-screen {
  min-width: 0;
  max-width: 100%;
}

.screenshot-button img {
  display: block;
  width: 100%;
}

@media (max-width: 980px) {
  .capture-demo,
  .ai-journey {
    width: min(100%, 760px);
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 70px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 66px;
  }

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

  .brand-name {
    font-size: 16px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 2px solid var(--ink);
    border-radius: 16px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid {
    gap: 42px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .hero-copy h1 {
    font-family: var(--font-sans);
    font-size: clamp(43px, 12vw, 54px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-wrap: pretty;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .button {
    min-height: 54px;
  }

  .hero-note {
    font-size: 12px;
  }

  .hero-assistant {
    padding: 18px;
    border-radius: 24px;
    box-shadow: 7px 8px 0 var(--sky), var(--shadow-soft);
  }

  .assistant-topline {
    padding-bottom: 16px;
  }

  .assistant-conversation {
    padding-block: 22px 18px;
    gap: 16px;
  }

  .message p {
    padding: 14px 15px;
    font-size: 14px;
  }

  .source-ribbon {
    padding-top: 15px;
  }

  .capture-ribbon {
    margin-top: 46px;
    border-bottom: 2px solid var(--ink);
    border-radius: 20px;
  }

  .capture-ribbon > p {
    padding: 14px 18px 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 800;
  }

  .capture-ribbon li {
    min-height: 62px;
  }

  .ai-help-section,
  .ai-control-section,
  .recall-section,
  .tour-section,
  .everyday-section,
  .privacy-section {
    padding-block: 72px;
  }

  .section-heading h2,
  .ai-control-copy h2,
  .recall-copy h2,
  .everyday-copy h2,
  .privacy-copy h2,
  .final-cta h2 {
    font-family: var(--font-sans);
    font-size: clamp(36px, 10.5vw, 46px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.02;
    text-wrap: pretty;
  }

  .capture-story {
    margin-top: 42px;
    gap: 52px;
  }

  .capture-demo {
    padding: 16px;
    border-radius: 24px;
    box-shadow: 7px 8px 0 var(--butter), var(--shadow-soft);
  }

  .capture-option {
    min-height: 70px;
    padding: 10px 11px;
  }

  .capture-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .capture-option strong {
    font-size: 14px;
  }

  .capture-ready {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .ai-journey h3 {
    font-family: var(--font-sans);
    font-size: 21px;
    font-weight: 760;
  }

  .editor-preview,
  .memory-screen,
  .tour-panel,
  .screen-frame {
    contain: inline-size;
  }

  .tall-crop img {
    height: 320px;
  }

  .recall-visual {
    padding-bottom: 76px;
  }

  .recall-query {
    right: 8px;
    width: 92%;
  }

  .tour-panel {
    padding: 16px;
  }

  .tour-panel .screenshot-button img,
  .memory-screen img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top center;
  }

  .tour-panel-copy h3,
  .life-moments h3,
  .control-panel-title {
    font-family: var(--font-sans);
    font-weight: 760;
  }

  .final-cta-inner {
    padding-block: 72px;
  }
}

@media (max-width: 380px) {
  .brand-name span {
    display: inline;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .capture-option em {
    display: none;
  }
}

/* v4: mature, gender-neutral brightness. Content and information order are unchanged. */
:root {
  --ink: #17233d;
  --ink-soft: #34425b;
  --muted: #526078;
  --muted-light: #778196;
  --cream: #f7f3eb;
  --cream-deep: #eee6d8;
  --ivory: #fcfbf8;
  --paper: #f7f5f0;
  --peach: #e4e9f1;
  --peach-light: #f1f0ec;
  --terracotta: #2f55b7;
  --terracotta-dark: #29499e;
  --terracotta-soft: #e6ecf9;
  --sage: #eaf1eb;
  --sage-deep: #cbd9cf;
  --sage-ink: #365d47;
  --butter: #e7b54f;
  --plum: #2f263e;
  --plum-soft: #493d58;
  --cobalt: #2f55b7;
  --cobalt-dark: #29499e;
  --sky: #e8eef8;
  --line: #dde1e8;
  --line-strong: #bcc5d1;
  --shadow-soft: 0 1px 2px rgba(23, 35, 61, 0.05), 0 10px 26px rgba(23, 35, 61, 0.08);
  --shadow-lift: 0 1px 2px rgba(23, 35, 61, 0.05), 0 22px 52px rgba(23, 35, 61, 0.12);
  --radius-sm: 7px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

.site-header {
  background: rgba(252, 251, 248, 0.97);
  border-bottom-color: rgba(23, 35, 61, 0.12);
  box-shadow: 0 2px 14px rgba(23, 35, 61, 0.04);
}

.site-nav .nav-cta,
.button-primary {
  background: var(--cobalt);
}

.site-nav .nav-cta:hover,
.button-primary:hover {
  background: var(--cobalt-dark);
}

.button {
  border-radius: 9px;
}

.button:hover {
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--cobalt-dark);
  background: #ffffff;
  border-color: #9aabd0;
}

.button-secondary:hover {
  background: #f3f6fb;
  border-color: var(--cobalt);
}

.eyebrow,
.section-kicker,
.panel-kicker {
  color: var(--cobalt-dark);
}

.eyebrow > span {
  background: var(--cobalt);
}

.hero {
  background: var(--cream);
}

.hero-shape-one {
  top: 82px;
  right: -90px;
  width: 340px;
  height: 390px;
  background: #dfe6f1;
  border-radius: 18px;
  opacity: 0.82;
  transform: rotate(5deg);
}

.hero-shape-two {
  bottom: 58px;
  left: -118px;
  width: 270px;
  height: 190px;
  background: #dfe9e1;
  border-radius: 14px;
  opacity: 0.9;
  transform: rotate(-4deg);
}

.hero-copy h1 span {
  color: #a52b44;
}

.hero-copy h1 span::after {
  right: -0.03em;
  bottom: 0.04em;
  left: -0.03em;
  height: 0.11em;
  background: #d7c48a;
  border-radius: 1px;
  transform: none;
}

.hero-assistant,
.capture-ribbon,
.editor-preview,
.tour-panel {
  border: 1px solid #9ca8b8;
}

.hero-assistant {
  border-radius: 18px;
  box-shadow: var(--shadow-lift);
}

.message-user p {
  background: var(--cobalt);
  border-radius: 12px 12px 4px 12px;
}

.message-assistant p {
  background: #e8f0ea;
  border-radius: 12px 12px 12px 4px;
}

.source-ribbon span {
  color: var(--sage-ink);
  background: #f1f5f1;
  border-color: #b8c9bc;
  border-radius: 6px;
}

.floating-note {
  border-radius: 8px;
}

.floating-note-voice {
  background: #f5f6f8;
  border-color: #aeb8c5;
}

.floating-note-source {
  background: #f3e8c5;
  border-color: #c8a551;
}

.capture-ribbon {
  background: #ffffff;
  border-radius: 12px 12px 0 0;
}

.capture-ribbon li {
  background: #ffffff !important;
  border-top: 3px solid transparent;
  transform: none !important;
}

.capture-ribbon li:nth-child(1) {
  border-top-color: var(--cobalt);
}

.capture-ribbon li:nth-child(2) {
  border-top-color: #b48525;
}

.capture-ribbon li:nth-child(3) {
  border-top-color: #406a52;
}

.capture-ribbon li:nth-child(4) {
  border-top-color: var(--ink);
}

.capture-ribbon li:hover {
  background: #f7f8fa !important;
  filter: none;
}

.capture-demo {
  border: 1px solid #8e9aac;
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
}

.capture-demo::before {
  top: -70px;
  right: -66px;
  width: 138px;
  height: 138px;
  background: #dfe6f1;
  border-radius: 10px;
  opacity: 0.8;
  transform: rotate(10deg);
}

.ai-on {
  border-radius: 6px;
}

.capture-option {
  background: #fafafa;
  border-color: #d2d7df;
  border-radius: 10px;
}

.capture-option-voice {
  border-left: 4px solid var(--cobalt);
}

.capture-option-photo {
  border-left: 4px solid #b48525;
}

.capture-option-message {
  border-left: 4px solid #406a52;
}

.capture-option-voice .capture-icon {
  background: var(--cobalt);
}

.capture-option-photo .capture-icon {
  background: #a57820;
}

.capture-option-message .capture-icon {
  background: #406a52;
}

.capture-icon {
  border-radius: 8px;
}

.capture-option em,
.ai-spark {
  border-radius: 7px;
}

.ai-transform {
  background: #f1e5bd;
  border-color: #c9a651;
  border-radius: 10px;
}

.ai-spark {
  background: var(--ink);
}

.journey-number {
  color: #ffffff;
  background: var(--cobalt);
  border-radius: 8px;
}

.ai-control-section {
  background: #f1f0ec;
  border-block-color: #d8d4cd;
}

.warm-checklist {
  border-top-color: #cbc7bf;
}

.warm-checklist li {
  border-bottom-color: #d7d3cc;
}

.warm-checklist strong {
  color: var(--cobalt-dark);
}

.editor-preview,
.memory-screen,
.tour-panel,
.screen-frame {
  border-radius: 14px;
}

.soft-label {
  color: #57420b;
  background: #f1e5bd;
  border-color: #c9a651;
  border-radius: 6px;
}

.recall-section {
  background: #2f263e;
}

.section-kicker-light {
  color: #d7c48a;
}

.recall-prompts span {
  background: #3c314c;
  border-color: #5b4d6c;
  border-radius: 7px;
}

.recall-query {
  background: #e4c36f;
  border-color: #b89032;
  border-radius: 10px;
  transform: none;
}

.tour-section {
  background: #f3f5f8;
}

.tour-tabs button {
  border-radius: 8px;
}

.tour-tabs button[aria-selected="true"] {
  color: #ffffff;
  background: var(--cobalt);
  border-color: var(--cobalt-dark);
}

.tour-tabs button[aria-selected="true"] > span,
.tour-tabs button[aria-selected="true"] strong,
.tour-tabs button[aria-selected="true"] small {
  color: #ffffff;
}

.everyday-section {
  background: #eaf1eb;
  border-block-color: #cbd9cf;
}

.privacy-section {
  background: #17233d;
}

.control-panel,
.provider-row span {
  background: #22314f;
  border-color: #536988;
  border-radius: 12px;
}

.control-panel-title {
  color: #dfc982;
  border-bottom-color: #465b7c;
}

.control-panel li,
.provider-row {
  border-color: #465b7c;
}

.provider-row span {
  border-radius: 6px;
}

.legal-section {
  background: #f4edd9;
  border-block-color: #d5c49a;
}

.final-cta {
  background: #e9dfc8;
  background-image: none;
  border-top: 1px solid #cabd9d;
}

.final-cta .section-kicker {
  color: var(--cobalt-dark);
}

.final-cta p {
  color: var(--ink-soft);
}

.button-dark {
  background: var(--ink);
}

.button-dark:hover {
  background: var(--cobalt-dark);
}

.button-cream {
  border-color: #a99e87;
}

.site-footer {
  background: #111a2d;
  border-top-color: #34486a;
}

.nav-toggle {
  border-radius: 9px;
}

@media (max-width: 640px) {
  .hero-shape-one,
  .hero-shape-two {
    display: none;
  }

  .hero-copy h1,
  .section-heading h2,
  .ai-control-copy h2,
  .recall-copy h2,
  .everyday-copy h2,
  .privacy-copy h2,
  .final-cta h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.03;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 12vw, 52px);
  }

  .section-heading h2,
  .ai-control-copy h2,
  .recall-copy h2,
  .everyday-copy h2,
  .privacy-copy h2,
  .final-cta h2 {
    font-size: clamp(38px, 10.5vw, 45px);
  }

  .nav-toggle {
    border-width: 1px;
    border-radius: 9px;
  }

  .hero-assistant,
  .capture-demo {
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
  }

  .capture-ribbon {
    border-bottom-width: 1px;
    border-radius: 10px;
  }

  .capture-ribbon li {
    border-top-width: 2px;
  }

  .capture-demo {
    border-radius: 14px;
  }

  .capture-icon {
    border-radius: 7px;
  }

  .tour-panel {
    border-radius: 12px;
  }
}
