:root {
  --bg: #f6efe3;
  --bg-deep: #ead8bf;
  --paper: rgba(255, 250, 244, 0.88);
  --paper-strong: #fff9f2;
  --paper-dark: #1c1e32;
  --ink: #1f2240;
  --ink-soft: #5c607e;
  --line: rgba(31, 34, 64, 0.11);
  --line-strong: rgba(31, 34, 64, 0.2);
  --coral: #ef6a4c;
  --coral-deep: #d85235;
  --gold: #f1b51c;
  --leaf: #2d915f;
  --sky: #79b7ff;
  --berry: #8b66ff;
  --shadow-soft: 0 18px 60px rgba(42, 34, 77, 0.12);
  --shadow-strong: 0 24px 80px rgba(33, 27, 63, 0.18);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(241, 181, 28, 0.24), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(121, 183, 255, 0.2), transparent 26%),
    radial-gradient(circle at 75% 72%, rgba(239, 106, 76, 0.12), transparent 20%),
    linear-gradient(180deg, #f8f1e5 0%, #f3eee8 40%, #f7f4ef 100%);
}

body.modal-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.65;
  pointer-events: none;
}

.ambient-one {
  top: 64px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(241, 181, 28, 0.6), rgba(241, 181, 28, 0));
}

.ambient-two {
  left: -70px;
  bottom: 20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(121, 183, 255, 0.45), rgba(121, 183, 255, 0));
}

.page-shell {
  width: min(calc(100% - 36px), var(--content-width));
  margin: 0 auto;
  overflow-x: clip;
}

.offer-ribbon {
  padding: 10px 18px;
  background: linear-gradient(90deg, #1e2141, #2d915f);
  color: #fff;
  text-align: center;
}

.offer-ribbon p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.offer-ribbon strong {
  color: #ffe4a2;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(255, 250, 243, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(31, 34, 64, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, #201e34, #353355);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 24px rgba(31, 34, 64, 0.2);
  overflow: hidden;
}

.brand-star {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 64% 35%, 100% 35%, 72% 58%, 82% 100%, 50% 75%, 18% 100%, 28% 58%, 0% 35%, 36% 35%);
}

.brand-trail {
  position: absolute;
  right: -2px;
  bottom: 10px;
  width: 34px;
  height: 16px;
  border-radius: 999px 999px 999px 0;
  background: linear-gradient(90deg, var(--coral), #ffb75e);
  transform: rotate(-18deg);
}

.brand-text {
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-text span {
  color: var(--coral);
}

.main-nav,
.header-actions,
.hero-actions,
.footer-links,
.trust-row,
.billing-toggle {
  display: flex;
  align-items: center;
}

.main-nav,
.footer-links {
  gap: 20px;
}

.header-actions {
  gap: 12px;
}

.main-nav a,
.footer-links a {
  font-weight: 700;
  color: rgba(31, 34, 64, 0.9);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible,
.billing-option:hover,
.billing-option:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff986a 0%, var(--coral) 46%, var(--coral-deep) 100%);
  box-shadow: 0 16px 30px rgba(239, 106, 76, 0.32);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 34, 64, 0.1);
}

.button-ghost {
  color: var(--ink);
  border-color: rgba(31, 34, 64, 0.18);
  background: transparent;
}

.button-large {
  padding: 16px 26px;
}

.button-block {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 34px;
  align-items: center;
  padding: 44px 0 26px;
}

.hero-copy,
.hero-stage,
.conversion-copy,
.sample-lead-copy,
.sample-sheet,
.pricing-card,
.trial-signup-copy,
.trial-signup-form,
.faq-panel,
.cta-panel,
.problem-card,
.position-card,
.journey-card,
.pack-panel,
.routine-card,
.testimonial-card,
.showcase-copy {
  min-width: 0;
}

.eyebrow,
.card-kicker,
.panel-tag,
.plan-label,
.card-label {
  margin: 0 0 10px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.plan-label,
.card-label {
  color: var(--leaf);
}

.hero h1,
.section-intro h2,
.quest-card h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3.6rem, 7vw, 6.3rem);
}

.hero-text,
.section-intro p,
.problem-card p,
.journey-card p,
.pack-panel p,
.quote-card p,
.benefit-stack span,
.routine-card p,
.testimonial-card p,
.plan-note,
.faq-list p,
.cta-panel p,
.site-footer p,
.form-note {
  color: var(--ink-soft);
}

.hero-text {
  max-width: 62ch;
  margin: 20px 0 0;
  font-size: 1.14rem;
  line-height: 1.72;
}

.hero-actions {
  gap: 14px;
  margin: 28px 0 18px;
  flex-wrap: wrap;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.floating-note,
.stamp,
.quest-badge,
.billing-option span,
.featured-tag {
  border-radius: 999px;
}

.trust-row span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 34, 64, 0.08);
  box-shadow: 0 8px 20px rgba(31, 34, 64, 0.06);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.hero-stats div,
.proof-bar,
.problem-card,
.position-card,
.journey-card,
.pack-panel,
.quote-card,
.benefit-stack div,
.routine-card,
.testimonial-card,
.pricing-card,
.faq-panel,
.cta-panel {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-stats dt,
.journey-number,
.price span,
.routine-time {
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
}

.hero-stats dt {
  font-size: 2rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 10px 0 0;
  line-height: 1.5;
}

.hero-stage {
  position: relative;
  min-height: 680px;
  padding: 24px;
  isolation: isolate;
}

.orbital,
.spark {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.orbital {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.orbital-one {
  top: 86px;
  right: 46px;
  width: 280px;
  height: 280px;
}

.orbital-two {
  left: 44px;
  bottom: 96px;
  width: 180px;
  height: 180px;
}

.spark {
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 64% 35%, 100% 35%, 72% 58%, 82% 100%, 50% 75%, 18% 100%, 28% 58%, 0% 35%, 36% 35%);
  opacity: 0.95;
}

.spark-one {
  top: 110px;
  left: 92px;
}

.spark-two {
  right: 94px;
  bottom: 146px;
}

.spark-three {
  top: 290px;
  right: 166px;
}

.stage-backdrop {
  position: absolute;
  inset: 46px 16px 10px;
  border-radius: 42px;
  background:
    linear-gradient(160deg, rgba(26, 31, 58, 0.94), rgba(41, 47, 91, 0.92)),
    radial-gradient(circle at top right, rgba(121, 183, 255, 0.3), transparent 32%);
  box-shadow: var(--shadow-strong);
}

.stage-backdrop::before,
.stage-backdrop::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.stage-backdrop::before {
  top: 26px;
  right: 30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(241, 181, 28, 0.95), rgba(241, 181, 28, 0));
  opacity: 0.85;
}

.stage-backdrop::after {
  left: -18px;
  bottom: 90px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(121, 183, 255, 0.3), rgba(121, 183, 255, 0));
}

.floating-note,
.quest-card,
.stamp {
  position: absolute;
}

.floating-note {
  z-index: 3;
  padding: 12px 18px;
  background: rgba(255, 248, 232, 0.95);
  color: var(--ink);
  box-shadow: 0 18px 26px rgba(17, 20, 43, 0.18);
  font-weight: 800;
  max-width: 230px;
}

.floating-note-top {
  top: 12px;
  right: 46px;
  transform: rotate(-5deg);
}

.floating-note-side {
  left: 0;
  top: 150px;
  transform: rotate(-7deg);
}

.floating-note-bottom {
  right: 186px;
  bottom: 24px;
  max-width: 248px;
  transform: rotate(4deg);
}

.quest-card {
  border-radius: 30px;
}

.quest-card-main {
  z-index: 2;
  top: 96px;
  left: 94px;
  width: min(440px, calc(100% - 160px));
  padding: 28px;
  background: linear-gradient(180deg, #fffaf3, #fff2e2);
  box-shadow: 0 28px 54px rgba(17, 20, 43, 0.22);
}

.quest-card-main::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(31, 34, 64, 0.12);
  border-radius: 22px;
  pointer-events: none;
}

.quest-card-main h2 {
  margin-top: 10px;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.quest-card-main p {
  margin: 14px 0 20px;
  line-height: 1.68;
  color: var(--ink-soft);
}

.quest-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.quest-strip span,
.worksheet-chip {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(241, 181, 28, 0.14);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.worksheet-preview {
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 34, 64, 0.08);
}

.worksheet-preview-top,
.worksheet-chip-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.worksheet-preview-top {
  justify-content: space-between;
  margin-bottom: 12px;
}

.worksheet-stars {
  display: flex;
  gap: 6px;
}

.worksheet-stars span {
  width: 11px;
  height: 11px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 64% 35%, 100% 35%, 72% 58%, 82% 100%, 50% 75%, 18% 100%, 28% 58%, 0% 35%, 36% 35%);
}

.quest-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quest-badge {
  padding: 7px 11px;
  background: rgba(45, 145, 95, 0.12);
  color: var(--leaf);
  font-size: 0.85rem;
  font-weight: 800;
}

.quest-date {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-soft);
}

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

.mini-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(31, 34, 64, 0.08);
}

.mini-card strong,
.benefit-stack strong,
.proof-bar strong,
.routine-card h3,
.testimonial-card footer,
.faq-list summary {
  display: block;
}

.mini-card strong {
  margin-bottom: 4px;
}

.mini-card span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.mini-card-activity,
.mini-card-maze,
.mini-card-create {
  overflow: hidden;
}

.mini-lines {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.mini-lines span,
.rescue-clue span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 34, 64, 0.12);
}

.mini-lines span:last-child,
.rescue-clue span:last-child {
  width: 72%;
}

.step-dots {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.step-dots span,
.footstep-row span {
  aspect-ratio: 1;
  border-radius: 50% 50% 42% 42%;
  background: linear-gradient(180deg, #59b77e, #2d915f);
  opacity: 0.9;
}

.maze-preview,
.sample-maze {
  position: relative;
  min-height: 86px;
  margin-top: 12px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(31, 34, 64, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 34, 64, 0.05) 1px, transparent 1px),
    rgba(255, 252, 247, 0.88);
  background-size: 22px 22px;
  overflow: hidden;
}

.maze-line,
.maze-dot {
  position: absolute;
  display: block;
}

.maze-line {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef6a4c, #f1b51c);
}

.maze-line-a {
  top: 18px;
  left: 18px;
  width: 64px;
}

.maze-line-b {
  top: 40px;
  left: 50px;
  width: 72px;
  transform: rotate(-24deg);
}

.maze-line-c {
  right: 18px;
  bottom: 18px;
  width: 84px;
}

.maze-line-d {
  top: 30px;
  right: 30px;
  width: 44px;
  transform: rotate(90deg);
}

.maze-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.maze-start {
  top: 16px;
  left: 10px;
  background: #2d915f;
}

.maze-end {
  right: 10px;
  bottom: 14px;
  background: #ef6a4c;
}

.cutouts {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cutouts span,
.bonus-token {
  position: relative;
  border: 2px dashed rgba(31, 34, 64, 0.14);
  background: rgba(255, 247, 237, 0.92);
}

.cutouts span {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.cutouts span:nth-child(1) {
  background: rgba(121, 183, 255, 0.26);
}

.cutouts span:nth-child(2) {
  background: rgba(239, 106, 76, 0.2);
}

.cutouts span:nth-child(3) {
  background: rgba(241, 181, 28, 0.22);
}

.quest-card-alt {
  z-index: 1;
  right: 38px;
  bottom: 72px;
  width: 270px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(124, 184, 255, 0.92), rgba(214, 233, 255, 0.92));
  box-shadow: 0 20px 30px rgba(17, 20, 43, 0.18);
}

.quest-card-mini {
  z-index: 1;
  width: 190px;
  padding: 18px;
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 16px 24px rgba(17, 20, 43, 0.16);
}

.quest-card-mini-left {
  left: 46px;
  bottom: 116px;
  transform: rotate(-7deg);
}

.quest-card-mini-right {
  right: 34px;
  top: 190px;
  transform: rotate(9deg);
}

.mini-sheet-kicker,
.sample-label {
  margin: 0 0 8px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quest-card-mini strong {
  display: block;
  line-height: 1.35;
}

.quest-card-mini span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.spark-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spark-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.spark-list li + li,
.check-list li + li {
  margin-top: 12px;
}

.spark-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.spark-list li::before {
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.4));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.check-list li::before {
  background: linear-gradient(180deg, #4fc484, #2d915f);
  box-shadow: 0 0 0 4px rgba(79, 196, 132, 0.14);
}

.stamp {
  right: 62px;
  top: 80px;
  z-index: 2;
  padding: 13px 18px;
  border: 2px dashed rgba(255, 255, 255, 0.64);
  color: #fff8eb;
  font-weight: 800;
  letter-spacing: 0.05em;
  transform: rotate(12deg);
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
  padding: 18px;
  border-radius: 24px;
}

.proof-bar div {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.proof-bar span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 26px 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 237, 214, 0.96), rgba(255, 249, 240, 0.94)),
    radial-gradient(circle at top right, rgba(239, 106, 76, 0.14), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
}

.conversion-copy h2,
.risk-reversal h3,
.sample-dialog h2,
.sample-sheet h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  letter-spacing: -0.04em;
}

.conversion-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  max-width: 13ch;
}

.conversion-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sample-lead-section {
  padding-top: 70px;
}

.sample-lead-backdrop {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(121, 183, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(241, 181, 28, 0.18), transparent 32%),
    linear-gradient(160deg, rgba(255, 247, 230, 0.86), rgba(255, 251, 244, 0.64));
  overflow: hidden;
}

.sample-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 251, 245, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.sample-lead-card h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  letter-spacing: -0.04em;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.98;
  max-width: 11ch;
}

.sample-lead-copy p:last-of-type {
  margin: 14px 0 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.sample-benefits {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.sample-benefits span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 34, 64, 0.08);
  font-weight: 800;
}

.section {
  position: relative;
  padding: 88px 0 0;
}

.section-graphic {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
}

.section-graphic-left {
  left: -38px;
}

.section-graphic-right {
  right: -34px;
}

.section-intro,
.problem-grid,
.journey-grid,
.showcase-grid,
.routine-grid,
.testimonial-grid,
.pricing-grid,
.risk-reversal,
.faq-panel,
.cta-panel,
.sample-lead-card {
  position: relative;
  z-index: 1;
}

.compass-graphic {
  top: 34px;
  width: 180px;
  height: 180px;
}

.compass-ring,
.compass-needle,
.compass-star,
.rocket-body,
.rocket-window,
.rocket-fin,
.rocket-flame,
.rocket-star,
.footprint,
.footprint-swoosh,
.treasure-lid,
.treasure-box,
.treasure-coin,
.treasure-gem,
.mail-envelope,
.mail-letter,
.mail-burst {
  position: absolute;
  display: block;
}

.compass-ring {
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(31, 34, 64, 0.15);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.48), transparent 62%);
}

.compass-ring-inner {
  inset: 26px;
  border-style: solid;
  border-color: rgba(241, 181, 28, 0.24);
}

.compass-needle {
  left: 50%;
  top: 50%;
  width: 18px;
  height: 72px;
  transform-origin: center 12px;
  clip-path: polygon(50% 0%, 100% 78%, 50% 62%, 0% 78%);
}

.compass-needle-coral {
  background: linear-gradient(180deg, #ffb39c, var(--coral));
  transform: translate(-50%, -50%) rotate(24deg);
}

.compass-needle-sky {
  background: linear-gradient(180deg, #d9ecff, var(--sky));
  transform: translate(-50%, -50%) rotate(204deg);
}

.compass-star {
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0% 50%, 39% 36%);
  box-shadow: 0 0 0 8px rgba(241, 181, 28, 0.12);
}

.rocket-graphic {
  top: 70px;
  width: 160px;
  height: 220px;
}

.rocket-body {
  left: 44px;
  top: 40px;
  width: 74px;
  height: 132px;
  border-radius: 999px 999px 26px 26px;
  background: linear-gradient(180deg, #fff9f2, #cfe4ff);
  border: 2px solid rgba(31, 34, 64, 0.08);
  transform: rotate(-18deg);
  box-shadow: 0 18px 28px rgba(31, 34, 64, 0.12);
}

.rocket-window {
  left: 68px;
  top: 78px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #86c2ff, #4b84e5);
  border: 5px solid #fff;
  transform: rotate(-18deg);
}

.rocket-fin {
  width: 30px;
  height: 42px;
  background: linear-gradient(180deg, #ffb39c, var(--coral));
  border-radius: 12px 12px 20px 20px;
}

.rocket-fin-left {
  left: 32px;
  top: 126px;
  transform: rotate(14deg);
}

.rocket-fin-right {
  left: 98px;
  top: 116px;
  transform: rotate(-24deg);
}

.rocket-flame {
  left: 54px;
  top: 152px;
  width: 48px;
  height: 74px;
  background: radial-gradient(circle at top, #fff0b5 0%, #f1b51c 46%, rgba(241, 181, 28, 0) 76%);
  transform: rotate(-18deg);
  filter: blur(1px);
}

.rocket-star {
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 64% 35%, 100% 35%, 72% 58%, 82% 100%, 50% 75%, 18% 100%, 28% 58%, 0% 35%, 36% 35%);
}

.rocket-star-one {
  right: 18px;
  top: 34px;
}

.rocket-star-two {
  left: 18px;
  top: 112px;
}

.footprints-graphic {
  top: 48px;
  width: 170px;
  height: 220px;
}

.footprint {
  width: 28px;
  height: 40px;
  border-radius: 55% 55% 44% 44%;
  background: linear-gradient(180deg, rgba(45, 145, 95, 0.22), rgba(45, 145, 95, 0.38));
}

.footprint::before,
.footprint::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.footprint::before {
  width: 12px;
  height: 12px;
  left: -4px;
  top: 4px;
}

.footprint::after {
  width: 10px;
  height: 10px;
  right: -3px;
  top: 10px;
}

.footprint-one {
  left: 82px;
  top: 0;
  transform: rotate(26deg);
}

.footprint-two {
  left: 28px;
  top: 54px;
  transform: rotate(-18deg);
}

.footprint-three {
  left: 94px;
  top: 102px;
  transform: rotate(18deg);
}

.footprint-four {
  left: 36px;
  top: 154px;
  transform: rotate(-22deg);
}

.footprint-swoosh {
  inset: 24px 12px auto auto;
  width: 128px;
  height: 162px;
  border: 2px dashed rgba(121, 183, 255, 0.26);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 120px 0 0;
  transform: rotate(10deg);
}

.treasure-graphic {
  top: 72px;
  width: 188px;
  height: 180px;
}

.pricing .treasure-graphic {
  top: 28px;
  left: -86px;
  opacity: 0.34;
  transform: scale(0.82);
}

.pricing .section-intro {
  min-height: 150px;
  padding-left: 132px;
}

.treasure-box {
  left: 24px;
  bottom: 24px;
  width: 132px;
  height: 78px;
  border-radius: 18px;
  background: linear-gradient(180deg, #4a3257, #2a1f3d);
  box-shadow: 0 16px 24px rgba(31, 34, 64, 0.12);
}

.treasure-box::before,
.treasure-lid::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 18px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd56e, #f1b51c);
}

.treasure-lid {
  left: 34px;
  top: 34px;
  width: 114px;
  height: 56px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, #6d4b7e, #412d57);
  transform: rotate(-12deg);
}

.treasure-coin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff0b5, #f1b51c 62%, #d99a00 100%);
  box-shadow: 0 8px 16px rgba(241, 181, 28, 0.18);
}

.treasure-coin-one {
  left: 18px;
  top: 102px;
}

.treasure-coin-two {
  right: 18px;
  top: 74px;
}

.treasure-gem {
  right: 42px;
  bottom: 18px;
  width: 24px;
  height: 24px;
  background: linear-gradient(180deg, #9ad4ff, #5f8dff);
  transform: rotate(45deg);
  border-radius: 5px;
}

.mail-graphic {
  top: 26px;
  width: 180px;
  height: 160px;
}

.mail-envelope {
  left: 30px;
  top: 56px;
  width: 118px;
  height: 78px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefc, #f2f7ff);
  border: 2px solid rgba(31, 34, 64, 0.08);
  box-shadow: 0 16px 24px rgba(31, 34, 64, 0.12);
}

.mail-envelope::before,
.mail-envelope::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 49%, rgba(121, 183, 255, 0.18) 50%, transparent 51%);
}

.mail-envelope::after {
  background: linear-gradient(225deg, transparent 49%, rgba(239, 106, 76, 0.14) 50%, transparent 51%);
}

.mail-letter {
  left: 54px;
  top: 24px;
  width: 74px;
  height: 66px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffdf8, #fff3dd);
  border: 1px solid rgba(31, 34, 64, 0.08);
  transform: rotate(-8deg);
}

.mail-letter::before,
.mail-letter::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 34, 64, 0.12);
}

.mail-letter::before {
  top: 18px;
}

.mail-letter::after {
  top: 34px;
}

.mail-burst {
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0% 50%, 39% 36%);
}

.mail-burst-one {
  left: 18px;
  top: 36px;
}

.mail-burst-two {
  right: 28px;
  top: 18px;
}

.mail-burst-three {
  right: 12px;
  bottom: 26px;
}

.story-scene {
  position: absolute;
  inset: 0;
}

.scene-sun,
.scene-cloud,
.scene-hill,
.scene-character,
.scene-map,
.scene-star {
  position: absolute;
  display: block;
}

.scene-sun {
  top: 24px;
  right: 74px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe18c 0%, #f1b51c 64%, rgba(241, 181, 28, 0) 70%);
  opacity: 0.92;
}

.scene-cloud {
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.scene-cloud::before,
.scene-cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.scene-cloud-one {
  top: 44px;
  left: 120px;
  width: 96px;
}

.scene-cloud-one::before {
  width: 34px;
  height: 34px;
  left: 18px;
  top: -12px;
}

.scene-cloud-one::after {
  width: 40px;
  height: 40px;
  right: 14px;
  top: -16px;
}

.scene-cloud-two {
  top: 120px;
  right: 220px;
  width: 82px;
}

.scene-cloud-two::before {
  width: 28px;
  height: 28px;
  left: 12px;
  top: -10px;
}

.scene-cloud-two::after {
  width: 34px;
  height: 34px;
  right: 12px;
  top: -14px;
}

.scene-hill {
  left: -8%;
  width: 116%;
  border-radius: 50%;
}

.scene-hill-back {
  bottom: 94px;
  height: 180px;
  background: linear-gradient(180deg, #b8e3b1, #71bd73);
}

.scene-hill-front {
  bottom: -44px;
  height: 220px;
  background: linear-gradient(180deg, #7bd07a, #31945e);
}

.scene-character-kid {
  left: 108px;
  bottom: 118px;
  width: 82px;
  height: 124px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffe1ae, #f0b25a);
  box-shadow: 0 14px 24px rgba(31, 34, 64, 0.12);
}

.scene-character-kid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffe6c4;
}

.scene-character-kid::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 16px;
  width: 50px;
  height: 20px;
  border-radius: 999px;
  background: #7d4f2a;
}

.scene-character-dino {
  left: 218px;
  bottom: 114px;
  width: 104px;
  height: 84px;
  border-radius: 58% 44% 52% 42%;
  background: linear-gradient(180deg, #86d364, #4dac47);
  box-shadow: 0 14px 24px rgba(31, 34, 64, 0.12);
}

.scene-character-dino::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 3px 3px 0 0 #1f2240 inset;
}

.scene-character-dino::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: -16px;
  width: 40px;
  height: 18px;
  border-radius: 0 20px 20px 0;
  background: #4dac47;
  transform: rotate(-18deg);
}

.scene-map {
  right: 94px;
  bottom: 112px;
  width: 126px;
  height: 96px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf7, #f7ecce);
  border: 2px dashed rgba(31, 34, 64, 0.12);
  transform: rotate(8deg);
}

.scene-map::before,
.scene-map::after {
  content: "";
  position: absolute;
}

.scene-map::before {
  left: 18px;
  right: 18px;
  top: 22px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #79b7ff, #ef6a4c);
  transform: rotate(-18deg);
}

.scene-map::after {
  left: 26px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border: 2px dashed rgba(45, 145, 95, 0.32);
  border-radius: 50%;
}

.scene-star {
  width: 16px;
  height: 16px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 64% 35%, 100% 35%, 72% 58%, 82% 100%, 50% 75%, 18% 100%, 28% 58%, 0% 35%, 36% 35%);
}

.scene-star-one {
  left: 70px;
  top: 92px;
}

.scene-star-two {
  right: 188px;
  top: 74px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-intro.narrow,
.section-intro.left {
  max-width: 680px;
}

.section-intro h2,
.cta-panel h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
}

.section-intro p,
.cta-panel p {
  margin: 14px 0 0;
  font-size: 1.08rem;
  line-height: 1.74;
}

.problem-grid,
.journey-grid,
.showcase-grid,
.routine-grid,
.testimonial-grid,
.pricing-grid,
.faq-contact {
  display: grid;
  gap: 22px;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-card,
.position-card,
.journey-card,
.pack-panel,
.quote-card,
.benefit-stack div,
.routine-card,
.testimonial-card,
.pricing-card,
.faq-panel,
.cta-panel {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.problem-card h3,
.position-card h3,
.journey-card h3,
.pack-panel h3,
.routine-card h3,
.pricing-card h3 {
  margin: 0 0 10px;
}

.problem-card.highlight {
  background: linear-gradient(180deg, rgba(255, 236, 219, 0.95), rgba(255, 247, 240, 0.95));
}

.position-card {
  background: linear-gradient(180deg, rgba(29, 31, 55, 0.95), rgba(42, 45, 78, 0.95));
  color: #fff;
}

.position-card .check-list li {
  color: rgba(255, 255, 255, 0.9);
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-card {
  position: relative;
  min-height: 232px;
  padding-top: 74px;
}

.journey-number {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(31, 34, 64, 0.26);
}

.showcase-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
  padding: 20px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(121, 183, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.52), rgba(255, 246, 233, 0.36));
}

.pack-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pack-panel {
  min-height: 208px;
}

.pack-panel.tall {
  grid-row: span 2;
  min-height: 434px;
}

.theme-sun {
  background: linear-gradient(180deg, rgba(255, 244, 202, 0.96), rgba(255, 232, 154, 0.92));
}

.theme-sky {
  background: linear-gradient(180deg, rgba(226, 239, 255, 0.95), rgba(206, 228, 255, 0.92));
}

.theme-peach {
  background: linear-gradient(180deg, rgba(255, 236, 224, 0.95), rgba(255, 222, 199, 0.92));
}

.theme-ink {
  background: linear-gradient(180deg, rgba(34, 38, 69, 0.97), rgba(27, 31, 58, 0.97));
  color: #fff;
}

.theme-ink p {
  color: rgba(255, 255, 255, 0.75);
}

.quote-card {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(255, 242, 227, 0.96));
  border-radius: 30px;
  padding: 28px;
}

.quote-card p {
  margin: 0;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-size: 1.55rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.benefit-stack {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.benefit-stack div {
  border-radius: 22px;
}

.benefit-stack strong {
  margin-bottom: 6px;
}

.routine-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.routine-card {
  min-height: 220px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 244, 230, 0.88));
}

.routine-card:nth-child(1) {
  background:
    radial-gradient(circle at top right, rgba(241, 181, 28, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 244, 230, 0.88));
}

.routine-card:nth-child(2) {
  background:
    radial-gradient(circle at top left, rgba(121, 183, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 244, 230, 0.88));
}

.routine-card:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(45, 145, 95, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 244, 230, 0.88));
}

.routine-time {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31, 34, 64, 0.08);
  font-size: 0.95rem;
  font-weight: 800;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  margin: 0;
  min-height: 220px;
}

.testimonial-card p {
  margin: 0;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-size: 1.48rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.testimonial-card footer {
  margin-top: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 700;
}

.testimonial-card.featured {
  background: linear-gradient(180deg, rgba(255, 228, 205, 0.96), rgba(255, 244, 232, 0.94));
}

.billing-toggle {
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px;
}

.billing-option {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-soft);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.billing-option span {
  margin-left: 6px;
  padding: 4px 8px;
  background: rgba(45, 145, 95, 0.12);
  color: var(--leaf);
  font-size: 0.8rem;
}

.billing-option.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: "";
  position: absolute;
  top: -32px;
  right: -24px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 181, 28, 0.2), rgba(241, 181, 28, 0));
}

.pricing-card h3 {
  font-size: 1.75rem;
}

.featured-tag {
  position: absolute;
  top: 18px;
  left: 22px;
  margin: 0;
  padding: 9px 12px;
  background: linear-gradient(135deg, #ffb44d, var(--coral));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

.featured-tier {
  transform: translateY(-8px);
  padding-top: 68px;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.98), rgba(255, 236, 222, 0.96));
  border: 2px solid rgba(239, 106, 76, 0.2);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0;
}

.price span {
  font-size: 3.25rem;
  line-height: 1;
  font-weight: 800;
}

.price small {
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 800;
}

.plan-note {
  margin: 0 0 18px;
  line-height: 1.65;
}

.trial-signup-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 24px;
  margin-top: 28px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(28, 30, 50, 0.97), rgba(42, 46, 78, 0.96)),
    radial-gradient(circle at top right, rgba(241, 181, 28, 0.16), transparent 30%);
  box-shadow: var(--shadow-soft);
}

.trial-signup-panel h3 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.02;
}

.trial-signup-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.trial-signup-form {
  display: grid;
  gap: 16px;
}

.trial-signup-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}

.trial-signup-form input {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
}

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

.trial-plan-option {
  display: grid;
  gap: 6px;
  padding: 16px;
  text-align: left;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.trial-plan-option strong {
  color: #fff;
  font-size: 1rem;
}

.trial-plan-option span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.trial-plan-option.is-selected {
  background: linear-gradient(135deg, rgba(255, 152, 106, 0.32), rgba(239, 106, 76, 0.34));
  border-color: rgba(255, 152, 106, 0.68);
  box-shadow: 0 12px 22px rgba(18, 22, 45, 0.18);
}

.pricing-status {
  min-height: 1.5rem;
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  text-align: left;
}

.risk-reversal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(31, 34, 64, 0.08);
  box-shadow: var(--shadow-soft);
}

.risk-reversal h3 {
  font-size: 1.8rem;
  line-height: 1.02;
}

.risk-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.risk-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(45, 145, 95, 0.1);
  color: var(--leaf);
  font-weight: 800;
}

.faq-contact {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.faq-list details {
  border-top: 1px solid rgba(31, 34, 64, 0.12);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(31, 34, 64, 0.12);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
}

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

.faq-list p {
  margin: 0 0 18px;
  line-height: 1.72;
}

.cta-panel {
  background:
    linear-gradient(160deg, rgba(28, 30, 50, 0.97), rgba(42, 46, 78, 0.96)),
    radial-gradient(circle at top right, rgba(241, 181, 28, 0.18), transparent 30%);
  color: #fff;
}

.cta-panel p,
.cta-panel .form-note {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form,
.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.lead-form {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(29, 31, 55, 0.95), rgba(45, 49, 83, 0.96));
  box-shadow: 0 20px 36px rgba(18, 22, 45, 0.18);
}

.lead-form label,
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.lead-form label {
  color: #fff;
}

.lead-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
}

.lead-form .form-note {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.95rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 78px 0 34px;
}

.site-footer p {
  margin: 14px 0 0;
  max-width: 44ch;
  line-height: 1.65;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-meta {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-soft);
}

.sample-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.sample-modal[hidden] {
  display: none;
}

.sample-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 45, 0.62);
  backdrop-filter: blur(10px);
}

.sample-dialog {
  position: relative;
  width: min(1020px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fffaf2, #fff6eb);
  box-shadow: 0 28px 90px rgba(12, 16, 35, 0.28);
}

.sample-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 34, 64, 0.08);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.sample-dialog-copy {
  max-width: 680px;
  margin-bottom: 22px;
}

.sample-dialog h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
}

.sample-dialog-copy p:last-child {
  margin-top: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.sample-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 18px;
}

.sample-sheet {
  border-radius: 26px;
  padding: 24px;
  background: #fffdf9;
  border: 1px solid rgba(31, 34, 64, 0.08);
  box-shadow: 0 18px 36px rgba(32, 26, 60, 0.1);
}

.sample-sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-weight: 700;
}

.sample-sheet h3 {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}

.sample-sheet p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.68;
}

.sample-sheet-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sample-task-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(246, 239, 227, 0.72);
}

.sample-task-card-wide {
  grid-column: span 2;
}

.sample-task-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.sample-task-head strong,
.sample-note-list li {
  display: block;
}

.sample-task-head span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.footstep-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.rescue-clue {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.dino-scene {
  position: relative;
  min-height: 120px;
  margin-top: 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(121, 183, 255, 0.18), rgba(255, 252, 247, 0.85));
  overflow: hidden;
}

.dino-hill,
.dino-sun,
.dino-egg,
.sample-cloud,
.sample-path {
  position: absolute;
  display: block;
}

.dino-hill {
  left: -6%;
  right: -6%;
  bottom: -26px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(180deg, #69c387, #2d915f);
}

.dino-sun {
  top: 16px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd362 0%, #f1b51c 68%, rgba(241, 181, 28, 0) 72%);
}

.dino-egg {
  bottom: 30px;
  width: 24px;
  height: 32px;
  border-radius: 50% 50% 46% 46%;
  background: linear-gradient(180deg, #fff8eb, #ffeecf);
  border: 2px solid rgba(31, 34, 64, 0.08);
}

.dino-egg::after {
  content: "";
  position: absolute;
  inset: 7px 9px auto auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(239, 106, 76, 0.26);
  box-shadow: -8px 7px 0 rgba(121, 183, 255, 0.28);
}

.dino-egg-one {
  left: 26px;
}

.dino-egg-two {
  left: 68px;
}

.dino-egg-three {
  left: 110px;
}

.sample-note-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sample-note-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.6;
}

.sample-note-list li + li {
  margin-top: 12px;
}

.sample-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4fc484, #2d915f);
}

.bonus-cutouts {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bonus-token {
  padding: 14px;
  border-radius: 16px;
}

.bonus-token strong {
  display: block;
  margin-bottom: 4px;
}

.bonus-token span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.sample-illustration {
  position: relative;
  min-height: 160px;
  margin-top: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(121, 183, 255, 0.2), rgba(241, 181, 28, 0.12));
  overflow: hidden;
}

.sample-mountain,
.sample-sun {
  position: absolute;
  display: block;
}

.sample-mountain {
  left: -10%;
  right: -10%;
  bottom: -22px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(180deg, #59b77e, #2d915f);
}

.sample-sun {
  top: 24px;
  right: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd362 0%, #f1b51c 68%, rgba(241, 181, 28, 0) 72%);
}

.sample-cloud {
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.sample-cloud::before,
.sample-cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.sample-cloud-one {
  top: 28px;
  left: 26px;
  width: 68px;
}

.sample-cloud-one::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: -10px;
}

.sample-cloud-one::after {
  width: 28px;
  height: 28px;
  right: 10px;
  top: -14px;
}

.sample-cloud-two {
  top: 54px;
  left: 88px;
  width: 54px;
}

.sample-cloud-two::before {
  width: 18px;
  height: 18px;
  left: 8px;
  top: -8px;
}

.sample-cloud-two::after {
  width: 22px;
  height: 22px;
  right: 8px;
  top: -10px;
}

.sample-path {
  left: 38px;
  bottom: 18px;
  width: 124px;
  height: 36px;
  border-bottom: 4px dashed rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.sample-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 22px;
  flex-wrap: wrap;
}

.policy-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 214, 153, 0.35), transparent 34%),
    linear-gradient(180deg, #f8f4ea 0%, #f3ede0 100%);
  color: #17324d;
}

.policy-shell {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.policy-back {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #9a4f1f;
  font-weight: 700;
  text-decoration: none;
}

.policy-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(183, 131, 55, 0.18);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(23, 50, 77, 0.12);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.policy-card h1,
.policy-card h2 {
  color: #17324d;
}

.policy-card h2 {
  margin-top: 2rem;
}

.policy-card p,
.policy-card li {
  color: #36516c;
  line-height: 1.7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1160px) {
  .hero,
  .showcase-grid,
  .faq-contact,
  .trial-signup-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .routine-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-band,
  .risk-reversal,
  .sample-spread,
  .sample-lead-card {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: 12ch;
  }

  .hero-stage {
    min-height: 620px;
  }

  .section-graphic {
    transform: scale(0.88);
    opacity: 0.78;
  }

  .pricing .treasure-graphic {
    left: -96px;
    top: 24px;
    opacity: 0.26;
    transform: scale(0.68);
  }

  .pricing .section-intro {
    min-height: 0;
    padding-left: 102px;
  }

  .scene-map {
    right: 48px;
  }
}

@media (max-width: 1280px) {
  .pricing .treasure-graphic {
    display: none;
  }

  .pricing .section-intro {
    min-height: 0;
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    justify-content: stretch;
  }

  .header-actions,
  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .hero,
  .problem-grid,
  .pack-board,
  .routine-grid,
  .testimonial-grid,
  .pricing-grid,
  .trial-plan-grid,
  .faq-contact,
  .proof-bar,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .conversion-actions,
  .risk-points,
  .sample-modal-actions {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 20px;
  }

  .section-graphic {
    display: none;
  }

  .pricing .section-intro {
    padding-left: 0;
  }

  .sample-lead-card {
    padding: 24px;
  }

  .sample-lead-backdrop {
    border-radius: 28px;
  }

  .story-scene {
    opacity: 0.75;
  }

  .hero-stage {
    min-height: 720px;
    padding: 18px;
  }

  .stage-backdrop {
    inset: 54px 6px 0;
  }

  .floating-note-side {
    left: 16px;
    top: 120px;
  }

  .quest-card-main {
    left: 24px;
    width: calc(100% - 48px);
  }

  .quest-card-alt {
    left: 24px;
    right: 24px;
    bottom: 34px;
    width: auto;
  }

  .quest-card-mini-right {
    right: 24px;
    top: 198px;
  }

  .quest-card-mini-left {
    left: 24px;
    bottom: 168px;
  }

  .stamp {
    right: 32px;
  }

}

@media (max-width: 620px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .offer-ribbon {
    padding: 10px 14px;
  }

  .offer-ribbon p {
    max-width: 31ch;
    margin: 0 auto;
    font-size: 0.9rem;
  }

  .site-header {
    gap: 14px;
    margin-top: 14px;
    padding: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .brand-text {
    font-size: 1.45rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.75rem, 13vw, 3.45rem);
    line-height: 0.98;
  }

  .section-intro h2,
  .cta-panel h2 {
    font-size: 2rem;
    line-height: 1.02;
  }

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

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

  .hero-actions {
    display: grid;
  }

  .hero {
    gap: 22px;
    padding-top: 18px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .trust-row span {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stage {
    min-height: 760px;
    padding: 14px;
  }

  .sample-lead-section {
    padding-top: 52px;
  }

  .sample-lead-card h2 {
    max-width: none;
  }

  .story-scene {
    display: none;
  }

  .floating-note-top,
  .stamp {
    display: none;
  }

  .floating-note-side {
    left: 12px;
    right: 12px;
    top: 74px;
    width: auto;
    transform: rotate(-4deg);
  }

  .quest-card-main {
    left: 16px;
    top: 126px;
    width: calc(100% - 32px);
    padding: 20px;
  }

  .quest-card-main h2 {
    font-size: 1.8rem;
    line-height: 1.02;
  }

  .quest-card-main p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .quest-topline {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .worksheet-preview {
    padding: 12px;
  }

  .mini-card {
    padding: 12px;
  }

  .section {
    padding-top: 64px;
  }

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

  .floating-note-bottom,
  .quest-card-alt,
  .quest-card-mini {
    display: none;
  }

  .pack-panel.tall {
    grid-row: auto;
    min-height: 220px;
  }

  .quote-card p,
  .testimonial-card p {
    font-size: 1.3rem;
  }

  .sample-dialog {
    padding: 22px;
  }

  .sample-sheet-board {
    grid-template-columns: 1fr;
  }

  .sample-task-card-wide {
    grid-column: auto;
  }

  .sample-modal-actions,
  .conversion-actions,
  .risk-points,
  .sample-benefits {
    display: grid;
  }
}

@media (max-width: 420px) {
  .offer-ribbon p {
    max-width: 28ch;
    font-size: 0.86rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3rem);
  }

  .hero-stage {
    min-height: 720px;
  }

  .quest-card-main {
    top: 118px;
    padding: 18px;
  }

  .quest-card-main h2 {
    font-size: 1.65rem;
  }
}
