:root {
  --ink: #102f3b;
  --ink-deep: #092530;
  --cream: #f6ecd7;
  --paper: #fffaf0;
  --coral: #e7604c;
  --coral-dark: #b83f31;
  --gold: #d2a44c;
  --blue-soft: #dce9e8;
  --line: rgba(16, 47, 59, 0.18);
  --muted: #53666d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 37, 48, 0.14);
  --radius: 26px;
  --radius-small: 15px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 12%, rgba(231, 96, 76, 0.11), transparent 22rem),
    linear-gradient(180deg, #fffaf0 0%, #f6ecd7 42%, #fffaf0 100%);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 4px solid rgba(231, 96, 76, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 15px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink-deep);
  transform: translateY(-180%);
}

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

.test-ribbon {
  padding: 8px 18px;
  color: var(--white);
  background: var(--ink-deep);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(16, 47, 59, 0.09);
  background: rgba(255, 250, 240, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner,
.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50% 50% 46% 54%;
  color: var(--white);
  background: var(--coral);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 700;
  transform: rotate(-5deg);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
  background: rgba(16, 47, 59, 0.08);
}

.header-badge {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
  padding: 80px 0 72px;
}

.hero-copy,
.book-page-hero > div {
  min-width: 0;
}

.hero-compact {
  min-height: auto;
  padding: 70px 0 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
}

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.3vw, 6.3rem);
  font-weight: 600;
  overflow-wrap: break-word;
}

.hero-compact h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 600;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.lead {
  max-width: 670px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-review-links {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-review-title {
  margin: 0 0 12px;
  font-weight: 850;
}

.hero-review-links .button {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
}

.button,
button.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
button.button:hover {
  box-shadow: 0 10px 30px rgba(8, 37, 48, 0.17);
  transform: translateY(-2px);
}

.button-coral,
button.button-coral {
  border-color: var(--coral);
  background: var(--coral);
}

.button-ghost,
button.button-ghost {
  color: var(--ink);
  background: transparent;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.92rem;
}

.button[aria-disabled="true"],
button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.book-stage {
  position: relative;
  display: grid;
  justify-items: center;
}

.book-stage::before {
  position: absolute;
  right: -2%;
  bottom: 6%;
  width: 104%;
  aspect-ratio: 1;
  border: 1px solid rgba(16, 47, 59, 0.16);
  border-radius: 50%;
  content: "";
}

.book-cover {
  position: relative;
  z-index: 1;
  width: min(100%, 345px);
  height: auto;
  border-radius: 5px 13px 13px 5px;
  box-shadow: -12px 25px 55px rgba(8, 37, 48, 0.27), inset 8px 0 10px rgba(255, 255, 255, 0.18);
  transform: rotate(2.2deg);
}

.note-chip {
  position: absolute;
  z-index: 2;
  right: -10px;
  bottom: 40px;
  max-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(16, 47, 59, 0.12);
  border-radius: 15px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  transform: rotate(-3deg);
}

.trust-bar {
  display: grid;
  overflow: hidden;
  margin: 0 auto 70px;
  border: 1px solid var(--line);
  border-radius: 18px;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.58);
}

.trust-bar-two-items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
}

.section {
  padding: 84px 0;
}

.section-dark {
  color: var(--cream);
  background: var(--ink-deep);
}

.section-dark .eyebrow,
.section-dark .section-intro,
.section-dark .microcopy {
  color: #d8e6e5;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-intro {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.decoder-card {
  overflow: hidden;
  border: 1px solid rgba(16, 47, 59, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.decoder-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  color: var(--white);
  background: var(--ink);
}

.decoder-top p {
  margin: 5px 0 0;
  color: #d8e6e5;
  font-size: 0.9rem;
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.decoder-body {
  padding: clamp(24px, 5vw, 52px);
}

.field {
  margin-bottom: 30px;
}

.field label,
.field-label,
.question legend {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 850;
}

.field-help {
  display: block;
  margin: -5px 0 11px;
  color: var(--muted);
  font-size: 0.86rem;
}

textarea,
input[type="text"],
input[type="email"],
input[type="datetime-local"] {
  width: 100%;
  border: 1.5px solid rgba(16, 47, 59, 0.26);
  border-radius: var(--radius-small);
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 118px;
  padding: 15px 16px;
  resize: vertical;
}

input[type="text"],
input[type="email"],
input[type="datetime-local"] {
  min-height: 50px;
  padding: 11px 14px;
}

.questions {
  display: grid;
  gap: 13px;
  margin: 34px 0;
}

.question {
  display: grid;
  margin: 0;
  padding: 19px;
  border: 1px solid rgba(16, 47, 59, 0.15);
  border-radius: 17px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  background: var(--paper);
}

.question legend {
  float: left;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.question-count {
  display: inline-grid;
  width: 29px;
  height: 29px;
  margin-right: 9px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 0.78rem;
}

.segmented {
  display: flex;
  gap: 5px;
}

.segmented label {
  position: relative;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: block;
  min-width: 58px;
  padding: 8px 10px;
  border: 1px solid rgba(16, 47, 59, 0.2);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.segmented input:checked + span {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.segmented input:focus-visible + span {
  outline: 4px solid rgba(231, 96, 76, 0.42);
  outline-offset: 3px;
}

.form-error {
  display: none;
  margin: 16px 0 0;
  padding: 11px 14px;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  color: #7d281f;
  background: #fff0ed;
  font-size: 0.9rem;
  font-weight: 700;
}

[hidden] {
  display: none !important;
}

.outcome-choice {
  min-width: 0;
  margin: 40px 0 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
}

.outcome-choice legend {
  padding: 0 8px;
  font-size: 1.15rem;
  font-weight: 850;
}

.outcome-choice .field-help {
  margin: 4px 0 22px;
}

.outcome-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 12px;
}

.outcome-options label {
  display: flex;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.outcome-options input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--ink);
}

.outcome-options label:has(input:checked) {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.outcome-options span {
  overflow-wrap: anywhere;
}

.form-error.is-visible {
  display: block;
}

.result-card {
  display: none;
  margin-top: 30px;
  padding: clamp(22px, 4vw, 36px);
  border: 2px solid var(--gold);
  border-radius: 20px;
  background: #fff7de;
}

.result-card.is-visible {
  display: block;
  animation: rise 280ms ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-label {
  margin: 0 0 6px;
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.result-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.result-card p {
  max-width: 680px;
}

.result-detail {
  padding-top: 15px;
  border-top: 1px solid rgba(16, 47, 59, 0.16);
  color: var(--muted);
  font-size: 0.92rem;
}

.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.choice-grid,
.card-grid,
.format-grid {
  display: grid;
  gap: 18px;
}

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

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

.format-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0;
}

.choice-card,
.info-card,
.format-card {
  padding: clamp(23px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.72);
}

.choice-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  align-items: flex-start;
}

.choice-card .button {
  margin-top: auto;
}

.card-number {
  display: inline-grid;
  width: 39px;
  height: 39px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--coral);
  font-family: var(--serif);
  font-weight: 700;
}

.choice-card p,
.info-card p,
.format-card p {
  color: var(--muted);
}

.review-panel,
.feedback-panel,
.newsletter-panel {
  margin-top: 34px;
  padding: clamp(26px, 5vw, 48px);
  border-radius: var(--radius);
}

.review-panel,
.feedback-panel {
  border: 1px solid var(--line);
  background: var(--white);
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(30px, 6vw, 70px);
  color: var(--cream);
  background: var(--ink);
}

.panel-kicker {
  margin: 0 0 8px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-panel .panel-kicker {
  color: #f7a89d;
}

.review-panel h3,
.feedback-panel h3,
.newsletter-panel h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.format-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  background: var(--paper);
}

.format-card .button {
  width: 100%;
  margin-top: auto;
}

.format-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.neutral-box {
  margin-top: 26px;
  padding: 22px;
  border-radius: 17px;
  background: var(--blue-soft);
}

.neutral-box ul {
  margin: 12px 0 0;
  padding-left: 21px;
}

.neutral-box li + li {
  margin-top: 7px;
}

.feedback-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 14px 0 28px;
}

.feedback-tags label,
.consent-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feedback-tags label {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
}

.feedback-tags input,
.consent-line input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--coral);
}

.success-message {
  display: none;
  margin-top: 18px;
  padding: 15px 17px;
  border-radius: 13px;
  color: #173c2c;
  background: #dbf1e2;
  font-weight: 750;
}

.success-message.is-visible {
  display: block;
}

.newsletter-panel input[type="email"] {
  border-color: rgba(255, 255, 255, 0.35);
}

.newsletter-panel .consent-line {
  margin: 15px 0 18px;
  color: #d8e6e5;
  font-size: 0.84rem;
}

.newsletter-panel .consent-line a {
  color: var(--white);
}

.newsletter-panel .microcopy {
  color: #bdcdcf;
}

.live-note {
  margin: 0 0 24px;
  padding: 14px 17px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.material-notice {
  display: grid;
  margin: 0 0 35px;
  padding: 19px 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  grid-template-columns: auto 1fr;
  gap: 13px;
  background: var(--white);
}

.material-notice strong {
  display: block;
}

.material-notice p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.book-page-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(45px, 9vw, 110px);
  padding: 78px 0 86px;
}

.book-page-hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.5rem);
}

.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.book-meta span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 750;
}

.principle-list {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
}

.principle-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.privacy-copy {
  max-width: 820px;
  padding-bottom: 90px;
}

.privacy-copy h2 {
  margin-top: 50px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.privacy-copy h3 {
  margin-top: 28px;
}

.privacy-copy table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.privacy-copy th,
.privacy-copy td {
  padding: 13px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.privacy-copy th {
  background: var(--blue-soft);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 250, 240, 0.78);
  font-size: 0.84rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.only-print {
  display: none;
}

/* Approved three-page journey; existing hero typography and decoder layout retained. */
.journey-current section[id], .journey-current main[id] { scroll-margin-top: 100px; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; gap: 12px; text-decoration-thickness: 1px; text-underline-offset: 5px; font-weight: 750; }
.section-tinted { background: rgba(220, 233, 232, 0.55); }
.story-row { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.story-row-reverse { grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr); }
.story-row-reverse .story-copy { order: 2; }
.story-copy { min-width: 0; }
.story-copy h2 { font-size: clamp(2rem, 3.5vw, 3.3rem); line-height: 1.1; }
.story-copy p:not(.eyebrow) { color: var(--muted); margin: 20px 0 0; }
.section-dark .story-copy p:not(.eyebrow) { color: #d8e6e5; }
.story-art { display: block; width: 100%; height: auto; border-radius: 18px; box-shadow: 0 14px 40px rgba(8, 37, 48, .16); }
.sample-heading { display: flex; gap: 32px; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.sample-heading .section-heading { margin: 0; max-width: 680px; }
.sample-heading > .button { flex-shrink: 0; }
.sample-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.sample-card { display: block; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); text-decoration: none; }
.sample-page { display: grid; place-items: center; padding: 30px; background: #e4e8e2; }
.sample-page img { display: block; width: min(100%, 300px); height: auto; box-shadow: 0 10px 26px rgba(8, 37, 48, .2); transition: transform 180ms ease; }
.sample-card:hover .sample-page img { transform: translateY(-3px); }
.sample-caption { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 26px; }
.sample-caption strong { display: block; font-size: 1.1rem; line-height: 1.4; }
.sample-caption span span { display: block; margin-top: 4px; color: var(--muted); font-size: .88rem; }
.sample-caption > span:last-child { font-size: 1.65rem; }
.sample-note { margin: 22px 0 0; color: var(--muted); font-size: .92rem; }
.purchase-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.purchase-inner h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.5rem); }
.purchase-actions .text-link { margin-top: 22px; }
.button-light { color: var(--ink-deep); background: var(--cream); border-color: var(--cream); }
.bonus-introduction { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 60px; align-items: center; margin-bottom: 42px; }
.bonus-introduction .section-heading { margin: 0; }
.bonus-introduction .text-link { margin-top: 22px; }
.bonus-illustration { display: block; width: 100%; height: auto; border-radius: 22px; box-shadow: var(--shadow); }
.review-stars { display: flex; gap: 8px; margin: 0 0 12px; }
.review-stars i { display: block; width: 29px; height: 29px; flex: 0 0 auto; background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23946622' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='m16 3 4 8.2 9 1.3-6.5 6.3 1.5 9L16 23.5 8 27.8l1.5-9L3 12.5l9-1.3Z'/%3E%3C/svg%3E"); }
.review-stars-large { gap: 10px; margin-bottom: 27px; }
.review-stars-large i { width: 38px; height: 38px; }
.review-section { padding-top: 32px; }
.review-invitation { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; padding: clamp(28px, 5vw, 60px); border: 1px solid rgba(148, 102, 34, .35); border-radius: var(--radius); background: #fff3de; }
.review-copy { min-width: 0; }
.review-copy h2 { font-size: clamp(2.25rem, 4.5vw, 3.6rem); }
.review-copy .eyebrow { display: flex; }
.review-editions { display: grid; gap: 16px; }
.review-edition { display: grid; grid-template-columns: 28px minmax(0, 1fr) 20px; align-items: center; gap: 15px; min-height: 100px; padding: 24px; color: var(--white); background: var(--coral-dark); border: 2px solid var(--coral-dark); border-radius: 17px; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease; }
.review-edition:hover { transform: translateY(-2px); box-shadow: 0 9px 25px rgba(8, 37, 48, .17); }
.review-edition strong { display: block; line-height: 1.3; font-size: 1.1rem; }
.review-edition small { display: block; margin-top: 5px; font-size: .79rem; }
.edition-symbol, .edition-arrow { font-size: 1.7rem; line-height: 1; }
.feedback-link-row { display: flex; justify-content: center; margin-top: 26px; }
.feedback-link-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; max-width: 520px; min-height: 76px; padding: 20px 24px; border: 1px solid var(--line); border-radius: var(--radius-small); color: var(--ink); background: var(--paper); font-size: 1rem; font-weight: 750; text-decoration: none; transition: background-color 160ms ease, border-color 160ms ease; }
.feedback-link-card:hover { background: var(--blue-soft); border-color: var(--muted); }
.feedback-link-card > span:first-child { min-width: 0; }
.feedback-link-card > span:last-child { flex: 0 0 auto; font-size: 1.35rem; line-height: 1; }
.button-review, button.button-review { background: var(--coral-dark); border-color: var(--coral-dark); }
.feedback-page { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: start; gap: clamp(38px, 6vw, 80px); padding-top: 78px; padding-bottom: 100px; }
.feedback-intro h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
.feedback-intro .lead { font-size: 1.13rem; }
.feedback-book { display: flex; gap: 22px; align-items: center; margin: 32px 0 20px; padding-top: 28px; border-top: 1px solid var(--line); }
.feedback-book img { width: 82px; height: auto; flex: 0 0 auto; border-radius: 3px; box-shadow: 0 7px 16px rgba(8, 37, 48, .15); }
.feedback-book strong { display: block; font-family: var(--serif); font-size: 1.2rem; line-height: 1.3; }
.feedback-book span { display: block; margin-top: 9px; color: var(--muted); font-size: .88rem; }
.feedback-page-panel { min-width: 0; margin: 0; box-shadow: 0 16px 48px rgba(8, 37, 48, .06); }
.feedback-topics { min-width: 0; margin: 0; padding: 0; border: 0; }
.feedback-topics legend { padding: 0; font-weight: 850; }
.optional-label { color: var(--muted); font-weight: 400; font-size: .9rem; }
.feedback-page-panel .feedback-tags { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 8px; }
.feedback-page-panel .feedback-tags label { min-width: 0; min-height: 72px; align-items: center; padding: 14px 13px; border-radius: 13px; font-size: .8rem; }
.feedback-page-panel .feedback-tags input { margin: 0; }
.feedback-page-panel .feedback-tags label > span { min-width: 0; }
.feedback-page-panel textarea { min-height: 180px; }
.form-privacy { margin: 0 0 20px; color: var(--muted); font-size: .84rem; }
.preview-form-note { margin: 0 0 20px; padding: 14px 16px; border-left: 3px solid var(--gold); border-radius: 6px; color: var(--muted); background: var(--paper); font-size: .84rem; }
.privacy-page { max-width: 820px; padding-top: 64px; padding-bottom: 80px; }
.privacy-page h1 { font-size: clamp(2.75rem, 6vw, 4.4rem); }
.privacy-page h2 { margin-top: 38px; font-size: 1.75rem; line-height: 1.2; }

@media (max-width: 1000px) {
  .sample-heading { align-items: flex-start; flex-direction: column; }
  .review-invitation { gap: 30px; }
  .review-edition { padding: 18px; gap: 10px; }
}
@media (max-width: 820px) {
  .journey-current .header-inner { flex-direction: column; align-items: flex-start; gap: 9px; padding: 12px 0; }
  .journey-current .brand-name { max-width: none; }
  .journey-current .site-nav { display: grid; width: 100%; grid-template-columns: minmax(0, .9fr) minmax(0, 1.3fr) minmax(0, .95fr); gap: 4px; }
  .journey-current .site-nav a, .journey-current .site-nav a:not([aria-current="page"]) { display: block; min-height: 44px; padding: 10px 4px; text-align: center; font-size: .83rem; }
  .journey-current section[id], .journey-current main[id] { scroll-margin-top: 124px; }
  .story-row, .story-row-reverse, .purchase-inner, .bonus-introduction, .review-invitation, .feedback-page { grid-template-columns: 1fr; }
  .story-row-reverse .story-copy { order: 0; }
  .story-copy h2 { max-width: 650px; font-size: clamp(2rem, 6vw, 3rem); }
  .story-art { max-width: 700px; }
  .bonus-introduction { gap: 30px; }
  .bonus-illustration { max-width: 560px; }
  .review-invitation { gap: 32px; }
  .review-copy h2 { max-width: 520px; }
  .review-edition { min-height: 96px; padding: 23px; }
  .feedback-page { padding-top: 48px; gap: 34px; }
  .feedback-intro h1 { max-width: 660px; }
  .feedback-book { max-width: 440px; margin-top: 22px; }
}
@media (max-width: 560px) {
  .sample-grid { grid-template-columns: 1fr; gap: 24px; }
  .sample-page { padding: 24px; }
  .sample-caption { padding: 20px; }
  .sample-heading > .button { width: 100%; }
  .review-invitation { padding: 25px 18px; }
  .review-stars-large { gap: 7px; }
  .review-stars-large i { width: 34px; height: 34px; }
  .review-edition { grid-template-columns: minmax(0, 1fr) 20px; padding: 20px 16px; }
  .edition-symbol { display: none; }
  .review-edition strong { font-size: 1rem; }
  .feedback-page-panel { padding: 25px 20px; }
  .feedback-page-panel .button { width: 100%; }
  .feedback-page-panel .feedback-tags { display: grid; grid-template-columns: 1fr; }
}
@media print { .bonus-introduction { display: none !important; } }

@media (max-width: 820px) {
  .header-inner {
    min-height: 64px;
  }

  .site-nav a:not([aria-current="page"]) {
    display: none;
  }

  .hero,
  .book-page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-copy {
    order: 1;
  }

  .book-stage {
    order: 2;
  }

  .book-cover {
    width: min(76vw, 310px);
  }

  .book-stage::before {
    right: 4%;
    width: 80%;
  }

  .note-chip {
    right: 7%;
  }

  .choice-grid,
  .card-grid,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

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

  .segmented {
    width: 100%;
  }

  .segmented label {
    flex: 1;
  }

  .segmented span {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .shell {
    width: min(100% - 26px, 1160px);
  }

  .brand-name {
    max-width: 120px;
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .site-nav a {
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  .hero,
  .book-page-hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
    overflow-wrap: anywhere;
  }

  .button-row .button {
    width: 100%;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 66px 0;
  }

  .decoder-top {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .privacy-pill {
    white-space: normal;
  }

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

  .feedback-tags {
    display: grid;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-copy {
    overflow-x: auto;
  }
}

@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;
  }
}

@media print {
  @page {
    size: A4;
    margin: 15mm;
  }

  body {
    color: #111;
    background: #fff;
    font-size: 11pt;
  }

  body::before,
  .test-ribbon,
  .site-header,
  .hero,
  .trust-bar,
  .section-heading,
  .decoder-top,
  .button-row,
  .microcopy,
  .section:not(.decoder-section),
  .site-footer,
  .material-notice {
    display: none !important;
  }

  .decoder-section,
  .decoder-section .shell,
  .decoder-card,
  .decoder-body {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .only-print {
    display: block;
    margin-bottom: 9mm;
  }

  .only-print h1 {
    margin: 0 0 3mm;
    font-size: 25pt;
  }

  textarea,
  input[type="text"] {
    border: 1px solid #777;
    background: #fff;
  }

  .question {
    break-inside: avoid;
    padding: 10px;
    border-color: #aaa;
    background: #fff;
  }

  .segmented span {
    border-color: #777;
  }

  .segmented input:checked + span {
    color: #fff;
    background: #111;
  }

  .result-card {
    break-inside: avoid;
    border-color: #333;
    background: #fff;
  }
}
