:root {
  --ink: #171616;
  --paper: #f5f0e7;
  --surface: #fffdf8;
  --coral: #ff5d61;
  --pink: #e83f78;
  --yellow: #f4cf57;
  --blue: #cfe6ff;
  --green: #ccebd9;
  --line: 2px solid var(--ink);
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: auto;
}

section[id],
aside[id] {
  scroll-margin-top: 118px;
}

html[data-lang="zh"] .en,
html[data-lang="en"] .zh {
  display: none !important;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Avenir Next", "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

button,
input,
summary {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 1.01;
  font-weight: 850;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.07;
  font-weight: 830;
}

h3 {
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.15;
  font-weight: 800;
}

button,
a,
summary {
  transition: none;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 4px solid #6d4aff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: white;
  border: var(--line);
  transform: translateY(-160%);
}

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

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

.anniversary-bar {
  padding: 9px var(--gutter);
  background: var(--ink);
  color: white;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
}

.anniversary-bar p {
  margin: 0;
}

.anniversary-bar strong {
  color: var(--coral);
  letter-spacing: 0.12em;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 14px var(--gutter);
  background: rgba(245, 240, 231, 0.97);
  border-bottom: var(--line);
}

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

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

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 25px;
  letter-spacing: 0.16em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.19em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  min-width: 43px;
  padding: 9px 10px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
}

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

.button-primary {
  background: var(--coral);
}

.button-light {
  background: white;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  padding: 8px 10px;
  border: var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  display: grid;
  width: min(280px, calc(100vw - 32px));
  padding: 10px;
  background: white;
  border: var(--line);
  box-shadow: 6px 6px 0 var(--ink);
}

.mobile-menu nav a {
  padding: 12px;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid #d7d0c5;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.hero {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(26px, 4vw, 66px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 118px) 0 clamp(70px, 8vw, 110px);
}

.hero-copy {
  align-self: start;
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 26px;
  height: 8px;
  margin-right: 10px;
  background: var(--coral);
  content: "";
}

.hero-intro {
  max-width: 710px;
  margin-bottom: 14px;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.58;
}

.hero-thesis {
  margin-bottom: 34px;
  font-size: 15px;
  font-weight: 850;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.text-link {
  font-size: 15px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.text-link span[aria-hidden="true"] {
  margin-left: 5px;
}

.hero-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-principles li {
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.puzzle-scroll-track {
  min-width: 0;
}

.life-puzzle {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.4vw, 46px);
  background: var(--surface);
  border: var(--line);
  border-radius: 28px 28px 0 28px;
  box-shadow: 10px 10px 0 var(--ink);
}

.puzzle-heading h2 {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: clamp(31px, 3.2vw, 47px);
}

.puzzle-instruction {
  margin-bottom: 8px;
  color: #645d56;
  font-size: 13px;
}

.puzzle-skip {
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.puzzle-board {
  margin: 9px -8px 4px;
  padding: 12px 20px;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.life-piece-wrap {
  position: relative;
  min-height: 98px;
  min-width: 0;
  background: rgba(23, 22, 22, 0.035);
  border: 1.5px dashed rgba(23, 22, 22, 0.28);
  border-radius: 14px 14px 0 14px;
}

.life-piece {
  position: absolute;
  z-index: 2;
  inset: -1.5px;
  display: grid;
  width: calc(100% + 3px);
  min-height: calc(100% + 3px);
  gap: 2px;
  align-content: center;
  padding: 17px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 14px 14px 0 14px;
  cursor: pointer;
  text-align: left;
  touch-action: pan-y;
  transform: translate3d(0, 0, 0) rotate(0);
  transition: background-color 120ms linear;
  will-change: transform, opacity;
}

.life-piece:hover,
.life-piece:focus-visible {
  background: #fff;
}

.life-piece:disabled {
  color: inherit;
  cursor: default;
}

.life-piece strong {
  font-size: 18px;
  line-height: 1.15;
}

.life-piece small {
  display: block;
  margin-top: 6px;
  color: #5f5851;
  font-size: 10px;
  font-weight: 730;
  line-height: 1.4;
}

.piece-index {
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.puzzle-connector-wrap {
  position: relative;
  min-height: 74px;
  grid-column: 1 / -1;
  background: rgba(255, 93, 97, 0.1);
  border: 1.5px dashed rgba(23, 22, 22, 0.28);
  border-radius: 0 14px 14px 14px;
}

.puzzle-connector {
  position: absolute;
  z-index: 2;
  inset: -1.5px;
  display: grid;
  min-height: calc(100% + 3px);
  align-content: center;
  padding: 16px 18px;
  background: var(--coral);
  border: 1.5px solid var(--ink);
  border-radius: 0 14px 14px 14px;
  transform: translate3d(0, 0, 0) rotate(0);
  will-change: transform, opacity;
}

.puzzle-connector > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.puzzle-connector strong {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.35;
}

.life-puzzle.is-enhanced[data-complete="false"] [data-scroll-block] {
  opacity: 0;
}

.life-puzzle[data-complete="true"] [data-scroll-block],
.life-puzzle[data-complete="true"] .puzzle-progress-track span {
  will-change: auto;
}

.puzzle-detail {
  min-height: 42px;
  margin: 0;
  color: #514a44;
  font-size: 12px;
  line-height: 1.5;
}

.puzzle-scroll-status {
  margin: 6px 0 12px;
}

.puzzle-progress-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 820;
}

.puzzle-progress-copy strong {
  flex: 0 0 auto;
  font-size: 13px;
}

.puzzle-progress-track {
  height: 8px;
  overflow: hidden;
  background: var(--paper);
  border: 1.5px solid var(--ink);
}

.puzzle-progress-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.puzzle-conclusion {
  min-height: 82px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1.5px solid var(--ink);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms linear, transform 240ms ease;
}

.life-puzzle.is-enhanced[data-complete="false"] .puzzle-conclusion {
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
}

.puzzle-conclusion p {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.puzzle-conclusion a {
  font-size: 12px;
  font-weight: 850;
  text-underline-offset: 4px;
}

.pathfinder-card {
  padding: clamp(26px, 4vw, 54px);
  background: var(--coral);
  border: var(--line);
  border-radius: 28px 28px 0 28px;
  box-shadow: 10px 10px 0 var(--ink);
}

.pathfinder-section {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  margin: 0 auto clamp(76px, 8vw, 112px);
}

.pathfinder-heading > p:last-child {
  max-width: 460px;
  margin: 0;
  font-size: 15px;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 10px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pathfinder-card h2 {
  margin-bottom: 26px;
  font-size: clamp(32px, 3.4vw, 48px);
}

.path-options {
  display: grid;
  gap: 9px;
}

.path-options button {
  display: grid;
  width: 100%;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.68);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.4;
  text-align: left;
}

.path-options button:hover,
.path-options button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}

.path-number {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.path-result {
  min-height: 92px;
  margin-top: 16px;
  padding: 16px;
  background: white;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  font-size: 14px;
}

.path-result p {
  margin: 0;
}

.path-result strong {
  display: block;
  margin-bottom: 3px;
  font-size: 17px;
}

.path-result a {
  display: inline-block;
  margin-top: 9px;
  font-weight: 850;
  text-underline-offset: 4px;
}

.trust-strip {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  background: var(--surface);
  border: var(--line);
}

.trust-strip article {
  display: grid;
  gap: 3px;
  padding: 25px clamp(16px, 2vw, 30px);
  border-right: var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip strong {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.trust-strip span {
  font-size: 12px;
  font-weight: 750;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 150px) 0;
}

.section-heading {
  display: grid;
  max-width: 850px;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.section-heading > p:last-child {
  max-width: 710px;
  margin-bottom: 0;
  font-size: 19px;
}

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

.section-link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 34px;
}

.section-link-row p {
  max-width: 560px;
  margin: 0;
  color: #59524c;
  font-size: 14px;
}

.service-card {
  position: relative;
  min-height: 410px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border: var(--line);
  border-radius: 24px 24px 0 24px;
}

.service-card h3 {
  margin: 54px 0 16px;
  font-size: clamp(32px, 3.6vw, 48px);
}

.service-card > p {
  max-width: 580px;
  font-size: 18px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 740;
}

.service-card li::before {
  content: "→";
}

.service-index {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 17px;
  font-weight: 900;
}

.service-pink {
  background: var(--coral);
}

.service-yellow {
  background: var(--yellow);
}

.service-blue {
  background: var(--blue);
}

.service-green {
  background: var(--green);
}

.destinations-section {
  padding-right: clamp(24px, 5vw, 72px);
  padding-left: clamp(24px, 5vw, 72px);
  background: var(--ink);
  color: white;
  border-radius: 34px 34px 0 34px;
}

.heading-light .eyebrow::before {
  background: var(--coral);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #5b5856;
  border-left: 1px solid #5b5856;
}

.destination-grid article {
  min-height: 280px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid #5b5856;
  border-bottom: 1px solid #5b5856;
}

.destination-grid .flag {
  font-size: 34px;
}

.destination-grid h3 {
  margin: 58px 0 12px;
}

.destination-grid p {
  margin-bottom: 0;
  color: #d7d3ce;
  font-size: 15px;
}

.destination-deep-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 820;
  text-underline-offset: 5px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
}

.story-visual {
  position: sticky;
  top: 130px;
}

.founder-card {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: var(--line);
  border-radius: 28px 28px 0 28px;
  box-shadow: 9px 9px 0 var(--ink);
}

.founder-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: var(--line);
}

.founder-card figcaption {
  display: grid;
  padding: 22px 24px 25px;
}

.founder-card figcaption > strong {
  font-size: 28px;
  line-height: 1.1;
}

.founder-card figcaption > span {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 820;
}

.founder-card figcaption small {
  margin-top: 10px;
  color: #655e57;
  font-size: 11px;
}

.mighty-eight {
  width: 44%;
  margin: -18px 20px 0 auto;
  padding: 16px;
  background: var(--coral);
  border: var(--line);
  border-radius: 14px 14px 0 14px;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(2deg);
}

.story-copy > p:not(.eyebrow) {
  max-width: 760px;
  font-size: 20px;
}

.founder-note {
  max-width: 760px;
  margin: 36px 0 0;
  padding: 24px 26px;
  background: var(--surface);
  border-left: 7px solid var(--coral);
}

.founder-note p {
  margin: 7px 0 0;
  font-size: 17px;
  font-weight: 740;
  line-height: 1.6;
}

.founder-note > strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principle-list {
  display: grid;
  margin-top: 50px;
  border-top: var(--line);
}

.principle-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: var(--line);
}

.principle-list article > strong {
  font-size: 13px;
}

.principle-list h3 {
  margin-bottom: 7px;
  font-size: 23px;
}

.principle-list p {
  margin: 0;
  font-size: 15px;
}

.proof-section {
  border-top: var(--line);
}

.champion-gallery {
  margin: clamp(44px, 6vw, 82px) 0;
}

.champion-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.champion-heading h3 {
  max-width: 780px;
  margin: 6px 0 16px;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.champion-heading > p:last-child {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 15px;
}

.champion-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(40px, 5vw, 64px);
  border: var(--line);
  background: var(--yellow);
}

.champion-stats p {
  display: flex;
  min-height: 132px;
  align-items: end;
  gap: 14px;
  margin: 0;
  padding: 22px;
  border-right: var(--line);
}

.champion-stats p:last-child {
  border-right: 0;
}

.champion-stats strong {
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.champion-stats > p > span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.champion-batch-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: var(--line);
}

.champion-batch-heading-archive {
  margin-top: clamp(42px, 6vw, 74px);
}

.champion-batch-heading p,
.champion-batch-heading > span {
  margin: 0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.champion-batch-heading > span {
  color: #6c655e;
  text-align: right;
}

.champion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.champion-card {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
  margin: 0;
  overflow: hidden;
  border: var(--line);
  border-radius: 22px 22px 0 22px;
  background: var(--surface);
}

.champion-proof {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 30px);
  border-bottom: var(--line);
  background: #ded5c8;
  text-decoration: none;
}

.champion-proof img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
  box-shadow: 7px 7px 0 rgba(23, 22, 22, 0.14);
}

.proof-open {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.champion-proof:focus-visible {
  outline: 4px solid var(--coral);
  outline-offset: -6px;
}

.champion-card figcaption {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 24px;
}

.champion-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.champion-meta {
  margin: 0;
  color: #6c655e;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.outcome-status {
  flex: 0 0 auto;
  padding: 3px 7px;
  border: 1.5px solid var(--ink);
  background: var(--blue);
  font-size: 9px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.champion-card h4 {
  margin: 5px 0 0;
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.champion-card figcaption > p:not(.champion-meta) {
  margin: 0;
  font-size: 13px;
}

.privacy-chip {
  justify-self: start;
  margin-top: 7px;
  padding: 5px 8px;
  border: 1.5px solid var(--ink);
  background: var(--green);
  font-size: 9px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.evidence-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(48px, 6vw, 78px);
  border: var(--line);
  background: var(--surface);
}

.evidence-rules article {
  min-height: 285px;
  padding: 27px;
  border-right: var(--line);
}

.evidence-rules article:last-child {
  border-right: 0;
}

.outcome-label {
  margin-bottom: 78px;
  color: #6c655e;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-rules h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.15;
}

.evidence-rules article > p:last-child {
  margin: 0;
  font-size: 13px;
}

.demo-note {
  max-width: 860px;
  margin: 20px 0 0;
  color: #685f57;
  font-size: 12px;
}

.guides-section {
  padding-top: 40px;
}

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

.guide-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: clamp(27px, 3.2vw, 42px);
  border: var(--line);
  border-radius: 22px 22px 0 22px;
}

.guide-card h3 {
  margin: 64px 0 22px;
  font-size: clamp(30px, 3.3vw, 44px);
}

.guide-card > p:not(.guide-meta) {
  font-size: 15px;
}

.guide-meta {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-card a {
  margin-top: auto;
  font-size: 14px;
  font-weight: 850;
  text-underline-offset: 5px;
}

.guide-coral {
  background: var(--coral);
}

.guide-cream {
  background: var(--surface);
}

.guide-black {
  background: var(--ink);
  color: white;
}

.advisor-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  padding-top: 80px;
  border-top: var(--line);
}

.advisor-intro {
  position: sticky;
  top: 130px;
}

.advisor-intro > p:not(.eyebrow) {
  font-size: 19px;
}

.advisor-boundaries {
  display: grid;
  gap: 9px;
  margin-top: 30px;
}

.advisor-boundaries p {
  display: flex;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.advisor-boundaries p > span:first-child {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--ink);
  color: white;
  border-radius: 50%;
}

.advisor-panel {
  overflow: hidden;
  background: var(--surface);
  border: var(--line);
  border-radius: 26px 26px 0 26px;
  box-shadow: 10px 10px 0 var(--ink);
}

.advisor-header {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 20px 23px;
  background: var(--ink);
  color: white;
}

.advisor-header > div:last-child {
  display: grid;
}

.advisor-header strong {
  font-size: 16px;
}

.advisor-header small {
  color: #beb9b4;
  font-size: 11px;
}

.advisor-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--coral);
  border-radius: 50%;
}

.advisor-avatar img {
  width: 24px;
}

.conversation {
  display: flex;
  min-height: 330px;
  max-height: 480px;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding: 25px;
  background:
    linear-gradient(#e3ded5 1px, transparent 1px),
    linear-gradient(90deg, #e3ded5 1px, transparent 1px);
  background-color: #f3efe7;
  background-size: 26px 26px;
}

.message {
  max-width: 82%;
  padding: 14px 16px;
  border: 1.5px solid var(--ink);
  font-size: 14px;
}

.message p {
  margin: 0;
}

.message-guide {
  align-self: flex-start;
  background: white;
  border-radius: 0 14px 14px 14px;
}

.message-user {
  align-self: flex-end;
  background: var(--coral);
  border-radius: 14px 0 14px 14px;
}

.message-guide strong {
  display: block;
  margin-bottom: 5px;
}

.suggestion-row {
  display: flex;
  gap: 8px;
  padding: 14px 18px 0;
  overflow-x: auto;
}

.suggestion-row button {
  flex: 0 0 auto;
  padding: 8px 11px;
  background: white;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}

.suggestion-row button:hover {
  background: var(--yellow);
}

.advisor-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  padding: 13px 18px 9px;
}

.advisor-form input {
  min-width: 0;
  padding: 14px 16px;
  background: white;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
}

.advisor-form button {
  padding: 12px 20px;
  background: var(--coral);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.advisor-form button:hover {
  background: var(--yellow);
}

.privacy-note {
  margin: 0;
  padding: 0 20px 18px;
  color: #6b635b;
  font-size: 10px;
  text-align: center;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 60px;
  align-items: end;
  padding-right: clamp(28px, 5vw, 70px);
  padding-left: clamp(28px, 5vw, 70px);
  background: var(--coral);
  border: var(--line);
  border-radius: 34px 34px 0 34px;
}

.final-cta h2 {
  margin-bottom: 0;
}

.cta-actions {
  display: grid;
  gap: 15px;
  justify-items: start;
}

.cta-actions .email-link {
  font-size: 20px;
  font-weight: 850;
  text-underline-offset: 5px;
}

.cta-actions p {
  margin: 0;
  font-size: 11px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: end;
  margin-top: 40px;
  padding: 50px var(--gutter) 34px;
  background: var(--ink);
  color: white;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand img {
  width: 34px;
}

.footer-brand div {
  display: grid;
  line-height: 1;
}

.footer-brand strong {
  font-size: 23px;
  letter-spacing: 0.16em;
}

.footer-brand small {
  margin-top: 6px;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.site-footer > p {
  margin: 0;
  color: #c8c3bd;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}

.footer-links a {
  color: #f2eee8;
  font-size: 11px;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--coral);
}

.site-footer .footer-domain {
  color: var(--coral);
  font-size: 20px;
  font-weight: 850;
}

.site-footer .footer-legal {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid #484644;
  font-size: 10px;
}

@media (min-width: 1081px) and (min-height: 760px) {
  .hero-copy {
    position: sticky;
    top: 158px;
  }

  .puzzle-scroll-track {
    min-height: clamp(1450px, 210vh, 1900px);
  }

  .life-puzzle {
    position: sticky;
    top: 126px;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

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

  .puzzle-scroll-track {
    width: min(760px, 100%);
  }

  .life-puzzle {
    width: 100%;
  }

  .pathfinder-section {
    grid-template-columns: 1fr;
  }

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

  .advisor-section {
    grid-template-columns: 1fr;
  }

  .advisor-intro {
    position: static;
    max-width: 760px;
  }
}

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

  .site-header {
    min-height: 76px;
    padding: 11px 16px;
  }

  .brand-copy small {
    display: none;
  }

  .button-small {
    display: none;
  }

  .hero,
  .section,
  .pathfinder-section,
  .trust-strip {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    padding-top: 54px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .trust-strip article:nth-child(-n + 2) {
    border-bottom: var(--line);
  }

  .service-grid,
  .guide-grid,
  .destination-grid,
  .story-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .destinations-section,
  .final-cta {
    padding-right: 22px;
    padding-left: 22px;
    border-radius: 22px 22px 0 22px;
  }

  .destination-grid article {
    min-height: 230px;
  }

  .destination-grid h3 {
    margin-top: 38px;
  }

  .story-visual {
    position: static;
    max-width: 520px;
  }

  .guide-card {
    min-height: 400px;
  }

  .advisor-section {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .advisor-intro {
    padding: 0 3px;
  }

  .advisor-panel {
    box-shadow: 5px 5px 0 var(--ink);
  }

  .conversation {
    min-height: 300px;
    padding: 18px;
  }

  .message {
    max-width: 92%;
  }

  .final-cta {
    gap: 36px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-footer .footer-legal {
    grid-column: auto;
  }

  .footer-links {
    margin: 2px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .anniversary-bar {
    font-size: 10px;
  }

  .language-toggle {
    min-width: 36px;
  }

  .life-puzzle,
  .pathfinder-card {
    padding: 22px;
    border-radius: 18px 18px 0 18px;
    box-shadow: 6px 6px 0 var(--ink);
  }

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

  .life-piece-wrap {
    min-height: 96px;
  }

  .life-piece {
    min-height: calc(100% + 3px);
  }

  .puzzle-board {
    margin-right: -4px;
    margin-left: -4px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .pathfinder-section {
    margin-bottom: 72px;
  }

  .founder-card figcaption > strong {
    font-size: 24px;
  }

  .trust-strip article {
    padding: 20px 15px;
  }

  .champion-grid,
  .champion-stats,
  .evidence-rules {
    grid-template-columns: 1fr;
  }

  .champion-stats p {
    min-height: 94px;
    border-right: 0;
    border-bottom: var(--line);
  }

  .champion-stats p:last-child {
    border-bottom: 0;
  }

  .champion-batch-heading {
    display: block;
  }

  .champion-batch-heading > span {
    display: block;
    margin-top: 5px;
    text-align: left;
  }

  .evidence-rules article {
    min-height: 0;
    border-right: 0;
    border-bottom: var(--line);
  }

  .evidence-rules article:last-child {
    border-bottom: 0;
  }

  .outcome-label {
    margin-bottom: 44px;
  }

  .advisor-form {
    grid-template-columns: 1fr;
  }

  .advisor-form button {
    min-height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .puzzle-scroll-track {
    min-height: 0 !important;
  }

  .hero-copy,
  .life-puzzle {
    position: static !important;
  }
}
