:root {
  --deep-sea: #0b2f38;
  --deep-sea-2: #123b46;
  --deep-sea-3: #1c5360;
  --sand: #f2e8d8;
  --sand-deep: #e7dac5;
  --sand-light: #faf4e9;
  --sage: #9caf9c;
  --sage-light: #dfe7dc;
  --forest: #2f6048;
  --forest-dark: #234b38;
  --cream: #fffdf8;
  --coral: #c8684c;
  --coral-soft: #f5ded5;
  --ink: #172d31;
  --muted: #607177;
  --line: #d6cbb9;
  --white: #ffffff;

  /* Compatibility aliases used by the legal pages. */
  --navy: var(--deep-sea);
  --blue: var(--deep-sea-2);
  --blue-bright: var(--deep-sea-3);
  --blue-soft: #e2e9e7;
  --green: var(--forest);
  --green-dark: var(--forest-dark);
  --green-soft: var(--sage-light);
  --orange: var(--coral);
  --red: #a64b46;
  --surface: var(--sand);

  --shadow-sm: 0 12px 32px rgba(11, 47, 56, 0.09);
  --shadow-lg: 0 32px 80px rgba(11, 47, 56, 0.19);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 38px;
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, select { font: inherit; }

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--deep-sea);
  background: var(--cream);
  border-radius: 10px;
  font-weight: 850;
  transform: translateY(-170%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  padding: 18px 0;
  color: var(--cream);
  background: var(--deep-sea);
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--sand);
  background: var(--deep-sea-2);
  border: 2px solid var(--sage);
  border-radius: 15px;
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
}

.brand-mark > span {
  position: absolute;
  right: -5px;
  bottom: -5px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--deep-sea);
  background: var(--sage);
  border: 2px solid var(--deep-sea);
  border-radius: 999px;
  font-size: 11px;
}

.brand-text {
  display: block;
  color: inherit;
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.04em;
}

.brand-sub {
  display: block;
  margin-top: 5px;
  color: #c8d5d1;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  padding: 9px 12px;
  color: #dfe8e5;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--cream);
  background: rgba(156, 175, 156, 0.16);
  outline: none;
}

.language-picker select {
  min-width: 67px;
  padding: 8px 28px 8px 11px;
  color: var(--cream);
  background-color: var(--deep-sea-2);
  border: 1px solid rgba(255, 253, 248, 0.25);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 850;
}

.language-picker select:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(156, 175, 156, 0.38), transparent 25rem),
    radial-gradient(circle at 4% 82%, rgba(231, 218, 197, 0.84), transparent 28rem),
    var(--sand);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(11, 47, 56, 0.11);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
  padding-top: 76px;
  padding-bottom: 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 17px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 770px;
  margin: 0;
  color: var(--deep-sea);
  font-size: clamp(48px, 5.5vw, 74px);
  font-weight: 900;
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.hero-copy {
  max-width: 670px;
  margin: 28px 0 0;
  color: #4c6267;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.52;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 4px solid rgba(47, 96, 72, 0.3); outline-offset: 3px; }

.button-primary {
  color: var(--cream);
  background: var(--forest);
  box-shadow: 0 14px 30px rgba(47, 96, 72, 0.22);
}

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

.button-quiet {
  color: var(--deep-sea);
  background: rgba(255, 253, 248, 0.6);
  border-color: rgba(11, 47, 56, 0.24);
}

.button-quiet:hover { background: var(--cream); }

.hero-proof {
  display: flex;
  max-width: 690px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 47, 56, 0.18);
}

.hero-proof > span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding-right: 18px;
}

.hero-proof > span + span {
  padding-left: 22px;
  border-left: 1px solid rgba(11, 47, 56, 0.18);
}

.hero-proof strong {
  color: var(--deep-sea);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
}

.hero-proof small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.preview-wrap {
  position: relative;
  width: min(440px, 100%);
  margin-inline: auto;
}

.preview-orbit {
  position: absolute;
  border: 1px solid rgba(11, 47, 56, 0.16);
  border-radius: 50%;
}

.preview-orbit-one { inset: -26px -28px 76px 52px; }
.preview-orbit-two { inset: 88px 52px -34px -36px; }

.app-preview-card {
  position: relative;
  z-index: 2;
  padding: 20px;
  background: var(--cream);
  border: 8px solid var(--deep-sea);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  color: var(--deep-sea);
  font-size: 13px;
  font-weight: 850;
}

.preview-logo { display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.05em; }
.preview-logo > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--sand);
  background: var(--deep-sea);
  border-radius: 9px;
  font-size: 17px;
}

.preview-language {
  padding: 5px 8px;
  background: var(--sand-light);
  border: 1px solid var(--sand-deep);
  border-radius: 8px;
}

.preview-search {
  padding: 11px 13px;
  color: #758287;
  background: var(--sand);
  border: 1px solid var(--sand-deep);
  border-radius: 12px;
  font-size: 13px;
}

.preview-game {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.preview-cover {
  display: flex;
  width: 72px;
  height: 84px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  background: linear-gradient(145deg, var(--deep-sea-2), var(--deep-sea));
  border-radius: 12px;
  box-shadow: 0 9px 20px rgba(11, 47, 56, 0.18);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.preview-cover small { color: var(--sage); font-size: 9px; }
.preview-game small { color: var(--forest); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.preview-game h2 { margin: 4px 0 2px; color: var(--deep-sea); font-size: 24px; line-height: 1.1; }
.preview-game p { margin: 0; color: var(--muted); font-size: 12px; font-weight: 700; }

.preview-verdict {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0;
  padding: 11px 12px;
  color: var(--forest-dark);
  background: var(--sage-light);
  border: 1px solid #c5d3c1;
  border-radius: 12px;
  font-size: 13px;
}

.preview-verdict span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 99px;
  font-weight: 950;
}

.preview-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.preview-scores > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 8px;
  padding: 10px;
  background: var(--sand-light);
  border: 1px solid var(--sand-deep);
  border-radius: 11px;
}

.preview-scores span { color: var(--muted); font-size: 10px; font-weight: 750; }
.preview-scores strong { color: var(--deep-sea); font-size: 18px; line-height: 1; }
.preview-scores i {
  position: relative;
  overflow: hidden;
  height: 5px;
  grid-column: 1 / -1;
  background: #d9d6c9;
  border-radius: 99px;
}

.preview-scores i::after {
  display: block;
  width: var(--score);
  height: 100%;
  background: var(--forest);
  border-radius: inherit;
  content: "";
}

.preview-scores i.watch::after { background: var(--coral); }
.preview-caption { margin: 13px 0 0; color: #7b8789; font-size: 10px; text-align: center; }

.story-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.story-section::before {
  position: absolute;
  top: -190px;
  left: -170px;
  width: 460px;
  height: 460px;
  background: var(--sage-light);
  border-radius: 50%;
  content: "";
  opacity: 0.55;
}

.story-section > .container { position: relative; z-index: 1; }
.story-heading { max-width: 960px; }

.story-comic {
  overflow: hidden;
  margin: 52px 0 18px;
  padding: 10px;
  background: var(--sand-light);
  border: 1px solid var(--sand-deep);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(11, 47, 56, 0.11);
  animation: story-in 620ms cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

.story-comic img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.story-comic-scroll { overflow: hidden; border-radius: 20px; }
.story-comic figcaption { display: none; }

.story-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.story-grid::before {
  position: absolute;
  z-index: 0;
  top: 48px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, var(--sand-deep), var(--sage), var(--forest));
  content: "";
}

.story-card {
  position: relative;
  z-index: 1;
  min-height: 245px;
  padding: 26px;
  background: var(--sand-light);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(11, 47, 56, 0.08);
  animation: story-in 620ms cubic-bezier(0.2, 0.72, 0.25, 1) both;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.story-card:nth-child(2) { animation-delay: 90ms; }
.story-card:nth-child(3) { animation-delay: 180ms; }
.story-card:nth-child(4) { animation-delay: 270ms; }

.story-card:hover {
  box-shadow: 0 22px 46px rgba(11, 47, 56, 0.13);
  transform: translateY(-5px);
}

.story-card-result {
  background: #eef3eb;
  border-color: #c7d6c3;
}

.story-step {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--deep-sea);
  background: var(--sage-light);
  border: 4px solid var(--sand-light);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.11em;
}

.story-card-result .story-step { color: var(--cream); background: var(--forest); border-color: #eef3eb; }

.story-card h3 {
  margin: 0 0 10px;
  color: var(--deep-sea);
  font-size: 23px;
  line-height: 1.2;
}

.story-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

.story-summary {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 19px;
  padding: 23px 27px;
  color: #dce6e2;
  background: var(--deep-sea);
  border-radius: 18px;
}

.story-summary strong { color: var(--sage); font-size: 17px; }
.story-summary span { font-size: 16px; }

@keyframes story-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.beta-section {
  padding: 88px 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 8% 100%, rgba(156, 175, 156, 0.18), transparent 24rem),
    var(--deep-sea);
}

.beta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
}

.beta-intro h2,
.section-heading h2,
.process-section h2,
.feedback-panel h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.beta-intro > p:not(.section-kicker) {
  max-width: 570px;
  margin: 22px 0 0;
  color: #cbd8d4;
  font-size: 18px;
}

.beta-version {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: #dce5e2;
  font-size: 13px;
}

.beta-version > span {
  width: 10px;
  height: 10px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(156, 175, 156, 0.14);
}

.download-stack { display: grid; gap: 13px; }

.download-card {
  display: grid;
  min-height: 102px;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 17px 20px;
  border: 1px solid transparent;
  border-radius: 19px;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.download-card:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(0, 0, 0, 0.17); }
.download-card:focus-visible { outline: 4px solid var(--sage); outline-offset: 3px; }

.download-android { color: var(--cream); background: var(--forest); }
.download-ios { color: var(--deep-sea); background: var(--sand); border-color: var(--sand-deep); }

.download-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 15px;
  font-size: 21px;
  font-weight: 950;
}

.download-card small,
.download-card strong,
.download-card em { display: block; }
.download-card small { opacity: 0.78; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.07em; }
.download-card strong { margin-top: 2px; font-size: 19px; line-height: 1.25; }
.download-card em { margin-top: 3px; opacity: 0.8; font-size: 12px; font-style: normal; font-weight: 650; }
.download-arrow { padding-left: 8px; font-size: 28px; font-weight: 450; }

.install-note {
  margin: 4px 2px 0;
  color: #b8c8c3;
  font-size: 12px;
  line-height: 1.55;
}

.section { padding: 104px 0; }
.sand-section { background: var(--sand); }
.cream-section { background: var(--cream); }

.section-heading { max-width: 850px; }
.section-heading h2 { color: var(--deep-sea); }
.section-heading > p:not(.section-kicker),
.split-heading > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(36px, 7vw, 90px);
}

.split-heading > p { margin: 0 0 4px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 52px;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 28px;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.review-card.featured {
  color: var(--cream);
  background: var(--deep-sea-2);
  border-color: var(--deep-sea-2);
  transform: translateY(-10px);
}

.review-index {
  align-self: flex-end;
  color: #889897;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.featured .review-index { color: #aac0b9; }
.review-count { margin: 17px 0 0; color: var(--forest); font-size: 46px; font-weight: 950; line-height: 1; letter-spacing: -0.05em; }
.featured .review-count { color: var(--sand); }
.review-card h3 { margin: 17px 0 11px; font-size: 22px; line-height: 1.22; }
.review-card > p:not(.review-count) { margin: 0 0 24px; color: var(--muted); font-size: 15px; }
.featured > p:not(.review-count) { color: #ccdad5; }

.status-pill {
  width: fit-content;
  margin-top: auto;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.status-data { color: var(--deep-sea-2); background: var(--sage-light); }
.status-deep { color: var(--deep-sea); background: var(--sage); }
.status-draft { color: #75503e; background: var(--coral-soft); }

.human-note {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 27px 30px;
  color: var(--deep-sea);
  background: var(--sage-light);
  border: 1px solid #bdcdb9;
  border-radius: var(--radius-md);
}

.human-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--sand);
  background: var(--forest);
  border-radius: 18px;
  font-size: 27px;
  font-weight: 950;
}

.human-note h3 { margin: 0; font-size: 20px; }
.human-note p { margin: 6px 0 0; color: #526762; font-size: 15px; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 22px;
}

.pillar-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  background: var(--sand-light);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-md);
}

.pillar-number {
  position: absolute;
  top: 27px;
  right: 27px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
}

.pillar-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--deep-sea);
  background: var(--sage-light);
  border-radius: 18px;
  font-size: 34px;
  font-weight: 950;
}

.pillar-euro { color: var(--forest-dark); background: var(--sand-deep); font-size: 34px; font-weight: 900; }
.pillar-time .pillar-icon { color: var(--cream); background: var(--deep-sea-3); }
.pillar-online .pillar-icon { color: var(--deep-sea); background: var(--coral-soft); }
.pillar-time-symbol { font-size: 18px; letter-spacing: -0.04em; }
.pillar-online-symbol { font-size: 31px; }
.pillar-card h3 { margin: 24px 0 11px; color: var(--deep-sea); font-size: 28px; line-height: 1.12; }
.pillar-card p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.55; }

.meaning-line {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin-top: 42px;
  padding: 32px 36px;
  color: var(--cream);
  background: var(--deep-sea);
  border-radius: var(--radius-md);
}

.meaning-brand strong { display: block; color: var(--sand); font-size: clamp(42px, 5vw, 62px); font-weight: 950; line-height: 0.95; letter-spacing: 0.06em; }
.meaning-brand small { display: block; margin-top: 10px; color: var(--sage); font-size: 13px; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }
.meaning-line span { display: block; color: var(--cream); font-size: clamp(22px, 2.4vw, 31px); font-weight: 850; line-height: 1.2; }
.meaning-line p { margin: 10px 0 0; color: #c8d6d1; font-size: 15px; }

.pricing-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(154, 184, 165, 0.24), transparent 34%),
    var(--surface);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.58fr);
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}

.pricing-copy { max-width: 690px; }

.price-card {
  padding: 34px;
  color: var(--cream);
  background: var(--deep-sea-2);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.price-card > p {
  margin: 0;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card > strong {
  display: inline-block;
  margin-top: 14px;
  color: var(--sand);
  font-size: clamp(52px, 6vw, 74px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-card > span { margin-left: 8px; color: #c8d6d1; font-weight: 750; }
.price-card ul { display: grid; gap: 11px; margin: 28px 0 24px; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 27px; font-weight: 760; }
.price-card li::before { position: absolute; left: 0; color: var(--sage); content: "✓"; font-weight: 950; }
.price-card small { display: block; color: #b8c8c3; line-height: 1.55; }

.process-section {
  color: var(--cream);
  background:
    linear-gradient(110deg, rgba(11, 47, 56, 0.15), transparent 50%),
    var(--forest-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(50px, 9vw, 112px);
}

.process-copy { margin: 22px 0 0; color: #d4ded8; font-size: 18px; }
.text-link { display: inline-flex; gap: 10px; margin-top: 28px; color: var(--sand); font-size: 15px; font-weight: 850; text-underline-offset: 5px; }
.process-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.process-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 19px;
  background: rgba(255, 253, 248, 0.09);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 17px;
}

.process-list li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--deep-sea);
  background: var(--sage);
  border-radius: 13px;
  font-size: 16px;
  font-weight: 950;
}

.process-list strong { font-size: 17px; }
.process-list p { margin: 4px 0 0; color: #d3ddd7; font-size: 14px; }

.feedback-section { background: var(--sand); }
.feedback-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 48px;
  background: var(--cream);
  border: 1px solid var(--sand-deep);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.feedback-panel h2 { max-width: 720px; color: var(--deep-sea); }
.feedback-panel p:not(.section-kicker) { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }

.site-footer {
  padding: 50px 0;
  color: #c9d6d2;
  background: var(--deep-sea);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}

.footer-brand { color: var(--cream); }
.footer-note { max-width: 570px; margin: 15px 0 0; color: #aebfba; font-size: 13px; }
.footer-links { display: flex; max-width: 420px; flex-wrap: wrap; justify-content: flex-end; gap: 8px 19px; }
.footer-links a { color: #d9e2df; font-size: 14px; font-weight: 700; text-underline-offset: 4px; }

/* Legal and method pages share the same adult Deep Sea + Sand system. */
.legal-page { min-height: 100vh; background: var(--sand-light); }
.legal-page .site-header { background: var(--deep-sea); }
.page-hero {
  padding: 72px 0 56px;
  color: var(--deep-sea);
  background:
    radial-gradient(circle at 88% 10%, rgba(156, 175, 156, 0.35), transparent 22rem),
    var(--sand);
}

.page-hero h1 { margin: 0; font-size: clamp(42px, 6vw, 70px); line-height: 1.03; letter-spacing: -0.055em; }
.page-hero p:not(.section-kicker) { max-width: 780px; margin: 20px 0 0; color: #536a6f; font-size: 19px; }
.article { width: min(850px, calc(100% - 42px)); margin: 0 auto; padding: 70px 0 100px; }
.article h2 { margin: 50px 0 14px; color: var(--deep-sea); font-size: 30px; line-height: 1.2; letter-spacing: -0.025em; }
.article h3 { margin: 34px 0 10px; color: var(--deep-sea); font-size: 21px; }
.article p, .article li { color: #435b60; }
.article li + li { margin-top: 8px; }
.article a { color: var(--forest); font-weight: 800; }
.notice {
  margin-bottom: 34px;
  padding: 18px 20px;
  color: #75442f;
  background: var(--coral-soft);
  border: 1px solid #deb3a3;
  border-radius: 15px;
  font-weight: 750;
}

.thresholds { display: grid; gap: 12px; margin-top: 22px; }
.threshold { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 18px; padding: 16px; background: var(--cream); border: 1px solid var(--line); border-radius: 15px; }
.threshold strong { padding: 7px 10px; color: var(--ink); border-radius: 10px; text-align: center; }
.threshold-good strong { background: var(--sage-light); }
.threshold-watch strong { background: #f3dfcc; }
.threshold-critical strong { background: var(--coral-soft); }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy-block { max-width: 790px; }
  .preview-wrap { width: min(500px, 100%); }
  .beta-layout, .pricing-layout, .process-grid { grid-template-columns: 1fr; }
  .download-stack { max-width: 720px; }
  .split-heading { grid-template-columns: 1fr; }
  .split-heading > p { margin-top: 0; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-card.featured { transform: none; }
  .review-card:last-child { grid-column: 1 / -1; min-height: 290px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-grid::before { display: none; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .feedback-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 17px; }
  .container { width: min(100% - 28px, 1180px); }
  .site-header { padding: 14px 0; }
  .brand-mark { width: 43px; height: 43px; }
  .brand-sub { display: none; }
  .language-picker select { min-width: 62px; }
  .hero-grid { gap: 48px; padding-top: 52px; padding-bottom: 66px; }
  .hero h1 { font-size: clamp(45px, 13.5vw, 61px); }
  .hero-copy { font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { flex-wrap: wrap; gap: 20px 0; }
  .hero-proof > span { min-width: 50%; }
  .hero-proof > span:nth-child(3) { padding-left: 0; border-left: 0; }
  .app-preview-card { padding: 14px; border-width: 6px; border-radius: 27px; transform: none; }
  .preview-orbit { display: none; }
  .beta-section, .section { padding: 74px 0; }
  .beta-layout { gap: 38px; }
  .download-card { grid-template-columns: 45px minmax(0, 1fr) auto; gap: 12px; padding: 15px; }
  .download-icon { width: 44px; height: 44px; border-radius: 13px; }
  .download-card strong { font-size: 16px; }
  .review-grid, .pillar-grid { grid-template-columns: 1fr; }
  .review-card, .review-card:last-child { min-height: 310px; grid-column: auto; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card { min-height: 225px; }
  .story-comic { margin-top: 38px; padding: 6px; border-radius: 20px; }
  .story-comic-scroll { overflow-x: auto; border-radius: 14px; overscroll-behavior-inline: contain; scrollbar-color: var(--sage) var(--sand-light); scrollbar-width: thin; }
  .story-comic img { width: 820px; max-width: none; border-radius: 14px; }
  .story-comic figcaption { display: block; padding: 8px 9px 5px; color: var(--forest-dark); font-size: 12px; font-weight: 850; text-align: right; }
  .story-summary { grid-template-columns: 1fr; gap: 6px; }
  .human-note { grid-template-columns: 1fr; padding: 24px; }
  .meaning-line { grid-template-columns: 1fr; gap: 22px; padding: 28px 24px; }
  .price-card { padding: 28px 23px; }
  .price-card > span { display: block; margin: 8px 0 0; }
  .process-grid { gap: 38px; }
  .process-list li { grid-template-columns: 40px 1fr; padding: 16px; }
  .process-list li > span { width: 40px; height: 40px; }
  .feedback-panel { padding: 30px 23px; }
  .feedback-panel .button { width: 100%; }
  .footer-grid { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .article { width: min(100% - 28px, 850px); }
  .threshold { grid-template-columns: 1fr; gap: 7px; }
}

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