:root {
  --paper: #F4F2EC;
  --cream: #EAE8DC;
  --surface: #F3F3F3;
  --surface-soft: #F6F6F6;
  --surface-cool: #F3F6F9;
  --ink: #0C0C13;
  --muted: #4D4E4F;
  --label: #9C9C9C;
  --line-color: #D5D5D5;
  --red: #D13A31;
  --red-dark: #CE4F3C;
  --red-mid: #D56B5A;
  --red-light: #E0968B;
  --red-soft: #F1D1CD;
  --red-wash: #FAEFEE;
  --green: #0E3746;
  --line: rgba(12, 12, 19, 0.13);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 80px rgba(45, 37, 25, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  width: var(--shell);
  height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-decoration: none;
}

.wordmark-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--red);
  color: var(--paper);
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.08);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--red);
}

.nav-download {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-download:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.language-switcher button {
  min-width: 38px;
  height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--label);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--red);
  color: var(--paper);
}

.language-switcher button:hover:not([aria-pressed="true"]) {
  color: var(--red);
}

.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  padding-block: 70px 88px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-intro h2,
.assistant-copy h2,
.philosophy-copy h2,
.final-cta h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(55px, 6.3vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--red);
  font-weight: 500;
}

.hero-lede {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
}

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

.button {
  min-width: 188px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button small,
.button strong {
  display: block;
  line-height: 1.08;
}

.button small {
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.75;
}

.button strong {
  font-size: 15px;
  font-weight: 700;
}

.button-primary {
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(209, 58, 49, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 34px rgba(209, 58, 49, 0.3);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface-soft);
}

.button-secondary:hover {
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(45, 37, 25, 0.08);
}

.button-icon {
  color: currentColor;
  font-size: 18px;
}

.play-icon {
  font-size: 18px;
}

.hero-note {
  margin: 12px 0 0;
  color: var(--label);
  font-size: 11px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 34px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.trust-row li {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trust-row li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--red);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--red-soft);
  filter: blur(1px);
  z-index: -3;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(209, 58, 49, 0.28);
  border-radius: 50%;
  z-index: -2;
}

.orbit-one {
  width: 560px;
  height: 560px;
}

.orbit-two {
  width: 640px;
  height: 410px;
  transform: rotate(-20deg);
}

.phone {
  width: 318px;
  height: 630px;
  padding: 10px;
  border: 3px solid var(--ink);
  border-radius: 48px;
  background: var(--ink);
  box-shadow: 0 40px 80px rgba(24, 23, 20, 0.24), 0 8px 18px rgba(24, 23, 20, 0.1);
  transform: rotate(2.2deg);
}

.phone-top {
  position: absolute;
  z-index: 2;
  width: 292px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
}

.dynamic-island {
  width: 86px;
  height: 23px;
  border-radius: 99px;
  background: var(--ink);
}

.phone-screen {
  height: 100%;
  padding: 48px 18px 18px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--paper);
}

.app-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-kicker {
  color: var(--red);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.app-heading h2 {
  margin: 3px 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
}

.coach-card {
  display: flex;
  gap: 10px;
  margin-top: 21px;
  padding: 14px;
  border-radius: 17px;
  border: 1px solid var(--red-soft);
  background: var(--red-wash);
  color: var(--ink);
}

.coach-spark {
  flex: 0 0 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--red);
  color: var(--paper);
}

.coach-card b {
  font-size: 10px;
}

.coach-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}

.day-label {
  margin: 23px 2px 10px;
  display: flex;
  justify-content: space-between;
  color: var(--label);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 7px;
}

.timeline-item {
  min-height: 69px;
  display: grid;
  grid-template-columns: 35px 10px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 9px 10px 9px 8px;
  border: 1px solid var(--line-color);
  border-radius: 14px;
  background: var(--surface-soft);
}

.timeline-item time {
  color: var(--label);
  font-size: 8px;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.timeline-item div {
  display: grid;
  gap: 3px;
}

.timeline-item b {
  font-size: 9px;
}

.timeline-item small {
  color: var(--label);
  font-size: 7.5px;
}

.timeline-item.done {
  opacity: 0.65;
}

.timeline-item.done .timeline-dot {
  background: var(--red);
}

.timeline-item.active {
  border-color: rgba(209, 58, 49, 0.35);
  background: var(--red-wash);
}

.check,
.place-pin {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.ask-bar {
  height: 42px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--line-color);
  border-radius: 14px;
  color: var(--label);
  font-size: 8px;
}

.ask-bar span:first-child {
  color: var(--red);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(33, 29, 23, 0.12);
  backdrop-filter: blur(12px);
}

.floating-note p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.floating-note b {
  color: var(--ink);
  font-size: 10px;
}

.mini-orb,
.return-glyph {
  flex: 0 0 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--red);
  color: var(--paper);
}

.note-ai {
  top: 64px;
  left: 0;
}

.note-return {
  right: -8px;
  bottom: 76px;
}

.note-return .return-glyph {
  background: var(--green);
}

.manifesto {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.manifesto > p:first-child {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.manifesto h2 {
  max-width: 940px;
  margin: 0 auto;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 4.7vw, 62px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.manifesto-end {
  margin: 24px 0 0;
  color: var(--red);
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  font-style: italic;
}

.possibilities {
  padding: 90px 0 120px;
}

.section-intro {
  max-width: 690px;
}

.section-intro h2,
.assistant-copy h2,
.philosophy-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5.3vw, 68px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.section-intro > p:last-child,
.assistant-copy > p,
.philosophy-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.plan-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.plan-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.plan-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(209, 58, 49, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(209, 58, 49, 0.04), 0 0 0 70px rgba(209, 58, 49, 0.025);
}

.plan-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-icon {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding-inline: 7px;
  border-radius: 10px;
  background: var(--red);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.plan-label {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-card h3 {
  max-width: 470px;
  margin: 22px 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
}

.plan-card > p {
  max-width: 520px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.travel-card {
  background: var(--red-wash);
  color: var(--ink);
}

.travel-card .plan-icon {
  background: var(--red);
  color: var(--paper);
}

.travel-card .plan-label {
  color: var(--red);
}

.travel-card > p {
  color: var(--muted);
}

.travel-card::after {
  border-color: rgba(209, 58, 49, 0.14);
  box-shadow: 0 0 0 34px rgba(209, 58, 49, 0.04), 0 0 0 70px rgba(209, 58, 49, 0.025);
}

.mini-itinerary {
  width: min(100%, 470px);
  margin-top: 25px;
  display: grid;
  gap: 8px;
}

.mini-itinerary span {
  display: grid;
  grid-template-columns: 44px 8px 1fr;
  gap: 9px;
  align-items: center;
  color: var(--ink);
  font-size: 11px;
}

.mini-itinerary time {
  color: var(--label);
  font-size: 9px;
}

.mini-itinerary i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--red);
  border-radius: 50%;
}

.metric-row {
  margin-top: 38px;
  display: flex;
  gap: 9px;
}

.metric-row span {
  min-width: 74px;
  padding: 13px 10px;
  border-radius: 13px;
  background: var(--red-wash);
  text-align: center;
}

.metric-row b,
.metric-row small {
  display: block;
}

.metric-row b {
  color: var(--red);
  font-size: 19px;
}

.metric-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.learning-card {
  background: var(--cream);
}

.learning-card .plan-icon {
  background: var(--green);
}

.learning-card .plan-label {
  color: var(--green);
}

.learning-stack {
  margin-top: 34px;
  display: flex;
  align-items: center;
}

.learning-stack span {
  padding: 10px 17px;
  border: 1px solid rgba(14, 55, 70, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.learning-stack span + span {
  margin-left: -6px;
}

.life-card {
  background: var(--red-soft);
}

.tag-cloud {
  max-width: 300px;
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--red-dark);
  font-size: 9px;
  font-weight: 700;
}

.loop-section {
  padding: 112px 0 120px;
  background: var(--ink);
  color: var(--paper);
}

.section-intro.light > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.section-intro.light .eyebrow {
  color: var(--red-light);
}

.loop-steps {
  margin: 68px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.loop-steps li {
  min-height: 315px;
  position: relative;
  padding: 22px 26px 24px;
  border-top: 1px solid var(--white-line);
  border-right: 1px solid var(--white-line);
}

.loop-steps li:last-child {
  border-right: 0;
}

.step-number {
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.step-symbol {
  height: 120px;
  display: grid;
  place-items: center;
  color: var(--red-mid);
  font-family: "Newsreader", Georgia, serif;
  font-size: 58px;
}

.loop-steps h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
}

.loop-steps p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.assistant-section {
  padding: 130px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.assistant-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.assistant-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.assistant-list li span {
  color: var(--red);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.conversation-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.conversation-head {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-color);
}

.conversation-head .mini-orb {
  flex-basis: 42px;
  height: 42px;
  border-radius: 14px;
}

.conversation-head b,
.conversation-head small {
  display: block;
}

.conversation-head b {
  font-size: 13px;
}

.conversation-head small {
  margin-top: 2px;
  color: var(--label);
  font-size: 9px;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(14, 55, 70, 0.12);
}

.context-used {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.context-used span {
  padding: 6px 9px;
  border: 1px solid var(--red-soft);
  border-radius: 999px;
  background: var(--red-wash);
  color: var(--red-dark);
  font-size: 8px;
  font-weight: 700;
}

.message {
  margin-top: 20px;
  border-radius: 18px;
  font-size: 12px;
}

.user-message {
  width: 84%;
  margin-left: auto;
  padding: 15px 17px;
  border-bottom-right-radius: 5px;
  background: var(--cream);
  color: var(--muted);
}

.evo-message {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 18px;
  border-bottom-left-radius: 5px;
  border: 1px solid var(--red-soft);
  background: var(--red-wash);
  color: var(--ink);
}

.evo-message .mini-orb {
  flex-basis: 34px;
  height: 34px;
  background: var(--red);
  color: var(--paper);
}

.evo-message b {
  font-size: 12px;
}

.evo-message p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.message-summary {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.message-summary span {
  padding: 9px 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

.message-summary b {
  margin-right: 3px;
  color: var(--red);
}

.message-actions {
  display: flex;
  gap: 8px;
  margin: 12px 0 0 46px;
}

.message-actions span {
  padding: 8px 11px;
  border: 1px solid var(--line-color);
  border-radius: 999px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.philosophy {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  padding: 90px 0 130px;
  border-top: 1px solid var(--line);
}

.philosophy-art {
  width: min(440px, 100%);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.growth-ring {
  position: absolute;
  border: 1px solid rgba(209, 58, 49, 0.34);
  border-radius: 50%;
}

.ring-a {
  inset: 3%;
}

.ring-b {
  inset: 18%;
  border-style: dashed;
}

.ring-c {
  inset: 33%;
}

.growth-center {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-size: 58px;
  box-shadow: 0 18px 40px rgba(209, 58, 49, 0.25);
}

.philosophy-art::before,
.philosophy-art::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.philosophy-art::before {
  top: 17%;
  right: 18%;
}

.philosophy-art::after {
  bottom: 8%;
  left: 36%;
  background: var(--red-mid);
}

.philosophy-copy blockquote {
  margin: 30px 0;
  padding: 22px 0 22px 22px;
  border-left: 3px solid var(--red);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  line-height: 1.18;
}

.social-section {
  padding: 110px 0 120px;
  border-top: 1px solid var(--line);
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
}

.progress-row {
  max-width: 960px;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.progress-row article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  text-align: left;
}

.progress-row article > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.progress-row h3 {
  margin: 42px 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 26px;
  line-height: 1.05;
}

.progress-row p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.final-cta {
  min-height: 570px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 80px 24px;
  background: var(--red);
  color: var(--paper);
  text-align: center;
}

.final-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.final-cta .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.final-cta p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.final-actions {
  justify-content: center;
}

.button-light {
  background: var(--paper);
  color: var(--red);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--paper);
}

.button-light:hover,
.button-outline-light:hover {
  background: var(--paper);
  color: var(--red-dark);
}

.final-orbit {
  position: absolute;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.018);
}

.site-footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  position: relative;
}

.footer-brand p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

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

.copyright {
  position: absolute;
  right: 0;
  bottom: 24px;
  margin: 0;
  color: var(--label);
  font-size: 10px;
}

:where(a, button):focus-visible {
  outline: 3px solid var(--red-mid);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr 0.9fr;
    gap: 32px;
  }

  .phone {
    transform: scale(0.9) rotate(2deg);
  }

  .note-ai {
    left: -30px;
  }

  .note-return {
    right: -30px;
  }

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

  .loop-steps li:nth-child(2) {
    border-right: 0;
  }

  .loop-steps li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--white-line);
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 680px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
    text-align: center;
  }

  .hero .eyebrow,
  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 670px;
    margin-top: 10px;
  }

  .note-ai {
    left: 2%;
  }

  .note-return {
    right: 2%;
  }

  .plan-grid,
  .assistant-section,
  .philosophy {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    max-width: 650px;
  }

  .assistant-copy {
    max-width: 650px;
  }

  .conversation-card {
    max-width: 620px;
  }

  .philosophy-art {
    max-width: 360px;
  }

  .philosophy-copy {
    max-width: 640px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .site-header {
    height: 70px;
  }

  .wordmark-mark {
    width: 31px;
    height: 31px;
  }

  .nav-download {
    padding: 9px 15px;
  }

  .header-actions {
    gap: 7px;
  }

  .language-switcher button {
    min-width: 34px;
    padding-inline: 7px;
  }

  .hero {
    padding: 48px 0 60px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 67px);
  }

  .hero-lede {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-visual {
    min-height: 590px;
    transform: scale(0.88);
    margin: -20px -25px -30px;
  }

  .orbit-one {
    width: 510px;
    height: 510px;
  }

  .orbit-two {
    width: 540px;
  }

  .phone {
    transform: scale(0.86) rotate(1.5deg);
  }

  .note-ai {
    top: 54px;
    left: 5px;
  }

  .note-return {
    right: 0;
    bottom: 52px;
  }

  .manifesto {
    padding: 82px 0;
  }

  .possibilities,
  .assistant-section,
  .social-section {
    padding: 82px 0;
  }

  .section-intro h2,
  .assistant-copy h2,
  .philosophy-copy h2 {
    font-size: 43px;
  }

  .plan-grid {
    margin-top: 38px;
  }

  .plan-card {
    min-height: 310px;
    padding: 24px;
  }

  .plan-card h3 {
    font-size: 30px;
  }

  .loop-section {
    padding: 84px 0;
  }

  .loop-steps {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .loop-steps li {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .loop-steps li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--white-line);
  }

  .loop-steps li:last-child {
    border-bottom: 0;
  }

  .step-symbol {
    height: 76px;
    justify-content: start;
  }

  .assistant-section {
    gap: 48px;
  }

  .conversation-card {
    padding: 17px;
    border-radius: 24px;
  }

  .user-message {
    width: 92%;
  }

  .message-summary {
    grid-template-columns: 1fr;
  }

  .message-actions {
    margin-left: 0;
  }

  .philosophy {
    padding: 76px 0 92px;
    gap: 46px;
  }

  .progress-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .progress-row article {
    min-height: 190px;
  }

  .final-cta {
    min-height: 620px;
  }

  .final-cta h2 {
    font-size: clamp(48px, 14vw, 65px);
  }

  .final-actions {
    display: grid;
  }

  .site-footer {
    padding: 48px 0 70px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    left: 0;
    right: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
