:root {
  --purple: #6B4FD6;
  --lavender: #A78BFA;
  --pink: #FF8DB8;
  --yellow: #F9D166;
  --teal: #7ED6C5;
  --cream: #F7F4FF;
  --ink: #2A2140;
  /* Supporting copy people actually read (~5.8:1 on cream). */
  --text-secondary: #4C435C;
  /* Footnotes, labels, and tertiary hints (~4.6:1 on cream). */
  --muted: #5A5368;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(107, 79, 214, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 17px/1.55 "Segoe UI", "Avenir Next", ui-rounded, system-ui, sans-serif;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); }
.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--purple);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 20;
}
.skip:focus { left: 12px; }

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 139, 250, 0.18);
}
.top-inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(107, 79, 214, 0.22);
}
.brand-littles {
  display: block;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--purple);
}
.heart {
  color: var(--pink);
  margin-left: 2px;
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}
.brand-notebook {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--muted);
}
nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
nav a:hover { color: var(--purple); }
nav a[aria-current="page"] { color: var(--purple); text-decoration: underline; text-underline-offset: 4px; }

/* The conversion action stays reachable from every page, at every width. */
.nav-cta,
.nav-cta[aria-current="page"] {
  color: white;
  background: var(--purple);
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 0 #533bb0;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}
.nav-cta:hover { color: white; background: #573abd; transform: translateY(-1px); }
.nav-cta:active { transform: translateY(2px); box-shadow: 0 1px 0 #533bb0; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 72px;
}
/* Kept well behind the headline: decoration must not compete with the copy. */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.34;
  pointer-events: none;
}
.blob-pink {
  width: 220px;
  height: 220px;
  background: var(--pink);
  top: 40px;
  right: 8%;
  animation: drift 10s ease-in-out infinite;
}
.blob-teal {
  width: 180px;
  height: 180px;
  background: var(--teal);
  bottom: 40px;
  left: 6%;
  animation: drift 12s ease-in-out infinite reverse;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(255, 141, 184, 0.22);
}
h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; }
.lead, .section-intro {
  max-width: 560px;
  color: var(--text-secondary);
  font-size: 1.12rem;
  line-height: 1.62;
}
.quiet {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-top: 14px;
  line-height: 1.55;
}
/* One primary action, one low-commitment escape hatch beside it. */
.cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.cta-row .text-link { margin-top: 0; }
.hero-actions { margin-top: 28px; }
.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  color: white;
  background: var(--purple);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 0 #533bb0;
  transition: transform 0.18s ease, background 0.18s ease;
}
.button:hover { background: #573abd; transform: translateY(-2px); }
.button:active { transform: translateY(3px); box-shadow: 0 2px 0 #533bb0; }

.hero-art {
  position: relative;
  min-height: 460px;
  /* float-front/back move up to -12px; rotation also lifts corners.
     Keep that motion inside .hero { overflow: hidden } so tops are not clipped. */
  padding-top: 24px;
  pointer-events: none;
}
.device {
  background: #2A2140;
  border-radius: 32px;
  padding: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.device img { border-radius: 24px; }
.device-back {
  position: absolute;
  width: 46%;
  right: 4%;
  top: 42px;
  transform: rotate(8deg);
  opacity: 0.92;
  animation: float-back 7s ease-in-out infinite;
}
.device-front {
  position: relative;
  width: 58%;
  z-index: 2;
  transform: rotate(-4deg);
  animation: float-front 5.5s ease-in-out infinite;
}
.device-solo {
  width: min(320px, 100%);
  margin-inline: auto;
}
/* Sits in the gutter beside the phones. It must not cover the screenshot,
   which is the actual product demonstration. */
.sprite-play {
  position: absolute;
  width: 190px;
  left: -122px;
  bottom: -16px;
  z-index: 3;
  /* The artwork ships with its own opaque scene, so round it into a card
     instead of letting a bare rectangle float on the page. */
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(42, 33, 64, 0.16);
  animation: bob 4.5s ease-in-out infinite;
}

.strip {
  background: white;
  border-block: 1px solid rgba(168, 139, 250, 0.2);
}
.strip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  padding: 16px 0;
  font-weight: 800;
  color: var(--purple);
}
.strip-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.section { padding-block: 78px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.pillar {
  background: white;
  border-radius: var(--radius);
  padding: 22px 22px 26px;
  box-shadow: 0 10px 24px rgba(107, 79, 214, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.pillar img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 8px;
}
.pillar p { color: var(--text-secondary); margin-bottom: 0; }

.day { background: linear-gradient(180deg, #efe9ff 0%, var(--cream) 100%); }
.walkthrough-section {
  background: linear-gradient(180deg, #efe9ff 0%, var(--cream) 100%);
  padding-block: 78px;
}
.walkthrough-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.walkthrough-tab {
  border: 2px solid rgba(107, 79, 214, 0.28);
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 11px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.walkthrough-tab:hover { border-color: var(--purple); color: var(--purple); }
.walkthrough-tab:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 2px;
}
.walkthrough-tab.is-active {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
  box-shadow: 0 4px 0 #533bb0;
}
.walkthrough-subtitle {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 640px;
}
.walkthrough-panel { margin-top: 22px; }
.walkthrough-layout {
  display: grid;
  gap: 18px;
}
.walkthrough-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.walkthrough-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  text-align: left;
  min-height: 44px;
  border: 2px solid transparent;
  background: white;
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(107, 79, 214, 0.06);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.walkthrough-step:hover { border-color: rgba(107, 79, 214, 0.28); }
.walkthrough-step:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 2px;
}
.walkthrough-step.is-active {
  border-color: var(--purple);
  background: #f8f5ff;
}
.walkthrough-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #efe9ff;
  color: var(--purple);
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.walkthrough-step.is-active .walkthrough-step-num {
  background: var(--purple);
  color: white;
}
.walkthrough-step-label {
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.2;
}
.walkthrough-stage {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: 28px 36px;
  align-items: center;
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 24px rgba(107, 79, 214, 0.08);
}
.walkthrough-device { margin: 0; }
.walkthrough-progress {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.walkthrough-title {
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.walkthrough-caption {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.58;
}
.walkthrough-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.walkthrough-arrow {
  border: 2px solid rgba(107, 79, 214, 0.28);
  background: white;
  color: var(--purple);
  font: inherit;
  font-weight: 800;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.walkthrough-arrow:hover { background: #f4f0ff; }
.walkthrough-arrow:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 2px;
}
.walkthrough-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.walkthrough-arrow-primary {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
  box-shadow: 0 4px 0 #533bb0;
}
.walkthrough-arrow-primary:hover:not(:disabled) { background: #573abd; }
.walkthrough-bridge {
  margin: 32px 0 0;
  padding: 18px 22px;
  border-radius: 20px;
  background: white;
  color: var(--text-secondary);
  line-height: 1.55;
  box-shadow: 0 8px 20px rgba(107, 79, 214, 0.07);
  max-width: 720px;
}
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.showcase.reverse { direction: rtl; }
.showcase.reverse > * { direction: ltr; }
.kicker {
  color: var(--pink);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 8px;
}
.showcase-copy p { color: var(--text-secondary); line-height: 1.58; }

.who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}
.who-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(107, 79, 214, 0.08);
  transition: transform 0.22s ease;
}
.who-card:hover { transform: translateY(-4px); }
.who-card img { width: 100%; max-height: 340px; object-fit: cover; object-position: top; }
.who-sprite {
  object-fit: contain !important;
  background: #fff6fb;
  padding: 16px;
  max-height: 240px !important;
}
.who-card div { padding: 8px 24px 24px; }
.who-lead {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}
.who-card ul { margin: 10px 0 0; padding-left: 18px; color: var(--text-secondary); }
.who-card li + li { margin-top: 6px; }

.trust {
  background: #e7f8f4;
  padding-block: 80px;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.trust-list { padding-left: 18px; color: #395d56; }
.trust-list li + li { margin-top: 10px; }
.text-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
  text-underline-offset: 4px;
}
.trust-art { display: grid; place-items: center; }
.logged {
  width: min(320px, 100%);
  animation: bob 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 20px rgba(42, 33, 64, 0.12));
}

.closing {
  position: relative;
  text-align: center;
  padding: 90px 0 80px;
  overflow: hidden;
}
.closing-kids {
  position: absolute;
  width: 180px;
  right: 6%;
  bottom: 20px;
  opacity: 0.9;
  animation: bob 6s ease-in-out infinite;
}
.closing-inner { position: relative; }
.closing .section-intro { margin-inline: auto; }

.footer {
  border-top: 1px solid #ded5f3;
  padding-block: 24px 32px;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-inner, .footer-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links { gap: 16px; }

.policy { max-width: 760px; padding-block: 48px 80px; }
.policy h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.policy h2 { font-size: 1.4rem; margin-top: 36px; }
.policy p { color: var(--text-secondary); }
.updated { color: var(--muted); margin-top: 6px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.price-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  box-shadow: 0 10px 24px rgba(107, 79, 214, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card.featured {
  box-shadow: var(--shadow);
  outline: 2px solid rgba(107, 79, 214, 0.28);
}
.price-card h3 { margin: 0; }
.price {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--purple);
}
.price span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
}
.price-card ul {
  margin: 8px 0 18px;
  padding-left: 18px;
  color: var(--text-secondary);
  flex: 1;
}
.price-card li + li { margin-top: 8px; }
/* Flex stretches these to full card width, so the label needs centring. */
.price-card .button { text-align: center; }
.button-ghost {
  background: white;
  color: var(--purple);
  box-shadow: 0 6px 0 rgba(107, 79, 214, 0.18);
  border: 2px solid rgba(107, 79, 214, 0.28);
}
.button-ghost:hover { background: #f4f0ff; }

/* Plan cards: one factual qualifier each, so the two never argue. */
.plan-badge {
  align-self: flex-start;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #efe9ff;
  color: var(--purple);
}
.plan-badge.neutral { background: #eef1f6; color: #5c6478; }
.price-unit {
  margin: -4px 0 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 700;
}
.price-card .plan-note {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(168, 139, 250, 0.22);
  color: var(--muted);
  font-size: 0.86rem;
}
.pricing-note {
  margin-top: 26px;
  max-width: 640px;
}

/* Home pricing preview: answers "what does it cost" without a page change. */
.plan-peek {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.peek {
  background: white;
  border-radius: var(--radius);
  padding: 24px 24px 26px;
  box-shadow: 0 10px 24px rgba(107, 79, 214, 0.08);
}
.peek .price { font-size: 2rem; }
.peek p:last-child { margin-bottom: 0; }
.peek-sub { color: var(--text-secondary); margin: 6px 0 0; line-height: 1.55; }
.peek-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Numbered expectation-setting. Answers "what happens after I click". */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
/* The badge is absolutely positioned rather than a grid cell, so a step can hold
   any mix of elements and bare text without items spilling into the number column. */
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 46px;
  min-height: 32px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #efe9ff;
  color: var(--purple);
  font-weight: 800;
  font-size: 0.95rem;
}
.steps strong { color: var(--ink); display: block; }

/* FAQ sits beside the decision it unblocks. */
.faq {
  margin-top: 30px;
  display: grid;
  gap: 12px;
  max-width: 760px;
}
.faq details {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(107, 79, 214, 0.07);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 800;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid var(--purple);
  border-bottom: 2.5px solid var(--purple);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:focus-visible { outline: 3px solid var(--lavender); outline-offset: -3px; }
.faq p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--text-secondary);
  line-height: 1.58;
}

/* Reassurance rendered as text, not colour alone. */
.assurance {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.5;
}
.assurance li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; }
.assurance li::before {
  content: "✓";
  color: #2f8f70;
  font-weight: 800;
}

/* Acquisition forms (Laravel signup / provider-setup) */
.acquire-body { min-height: 100vh; display: flex; flex-direction: column; }
.acquire { flex: 1; padding: 48px 0 72px; }
.acquire-shell { max-width: 560px; }
.acquire-panel {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px 34px;
  box-shadow: var(--shadow);
}
.acquire-panel h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}
.acquire-panel .lead { margin: 0 0 22px; }
.acquire-form label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}
.acquire-form .optional { font-weight: 500; }
.acquire-form input,
.acquire-form select {
  width: 100%;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(168, 139, 250, 0.45);
  border-radius: 14px;
  font: inherit;
  color: var(--ink);
  background: white;
}
.acquire-form input[readonly] {
  background: var(--cream);
  color: var(--muted);
}
.button-block {
  display: block;
  width: 100%;
  text-align: center;
  border: 0;
  cursor: pointer;
  font: inherit;
  margin-top: 8px;
}
.form-error {
  background: #ffe8ee;
  color: #a11d45;
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}
.acquire-actions { margin-top: 24px; }
.acquire-subhead {
  margin: 28px 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.acquire-back {
  display: block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.acquire-back:hover { text-decoration: underline; }

/* What you are buying, restated next to the button that charges you. */
.order-summary {
  background: var(--cream);
  border-radius: 20px;
  padding: 18px 20px;
  margin: 0 0 22px;
}
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.order-row + .order-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(168, 139, 250, 0.24);
}
.order-row dt { font-weight: 800; margin: 0; }
.order-row dd { margin: 0; color: var(--text-secondary); }
.order-row .amount { color: var(--purple); font-weight: 800; font-size: 1.15rem; }

/* Let the buyer say which path they are on, then show only their fields. */
.choice-set {
  border: 0;
  margin: 0 0 8px;
  padding: 0;
}
.choice-set legend {
  padding: 0;
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}
/* Scoped to .acquire-form so it outranks the generic `.acquire-form label` rule. */
.acquire-form .choice {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  background: white;
  border: 2px solid rgba(168, 139, 250, 0.4);
  border-radius: 18px;
  padding: 14px 16px;
  margin: 0 0 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
}
.acquire-form .choice:hover { border-color: rgba(107, 79, 214, 0.5); }
.acquire-form .choice input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--purple);
}
.choice strong { display: block; font-weight: 800; }
.choice strong + span { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.45; }
.acquire-form .choice:has(input:checked) {
  border-color: var(--purple);
  background: #f8f5ff;
}
.acquire-form .choice:has(input:focus-visible) {
  outline: 3px solid var(--lavender);
  outline-offset: 2px;
}

.secure-note {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.86rem;
}
.secure-note::before { content: "🔒"; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}
.js .reveal { animation: none; }
.js .reveal.in {
  animation: rise 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
@keyframes float-front {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(-4deg); }
}
@keyframes float-back {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-10px) rotate(8deg); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(18px, -14px); }
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 860px) {
  .hero-grid, .pillars, .showcase, .showcase.reverse, .who, .trust-grid, .pricing-grid, .plan-peek, .walkthrough-stage {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .walkthrough-steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }
  .walkthrough-step {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .walkthrough-stage { padding: 20px; }
  .hero-art { min-height: 420px; max-width: 420px; margin-inline: auto; }
  .device-front { width: 62%; }
  .closing-kids { display: none; }
  /* Drop the section jump link only. Pricing and the CTA always stay. */
  nav a[data-nav-optional] { display: none; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1120px); }
  .top-inner { min-height: 68px; gap: 10px; }
  .brand-icon { width: 40px; height: 40px; }
  .brand-notebook { display: none; }
  nav { gap: 12px; }
  .nav-cta { padding: 9px 14px; }
  .hero { padding-bottom: 40px; }
  .sprite-play { width: 150px; left: -10px; }
  .section, .trust { padding-block: 56px; }
  .order-row { flex-direction: column; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .heart, .device-front, .device-back, .sprite-play, .logged, .blob, .closing-kids, .reveal {
    animation: none !important;
    opacity: 1;
  }
  .device-front { transform: rotate(-4deg); }
  .device-back { transform: rotate(8deg); }
}
