:root {
  --bg: #efefef;
  --surface: #f6f3ee;
  --surface-strong: #f4f4f4;
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.72);
  --line: rgba(17, 17, 17, 0.22);
  --serif: "Bodoni Moda", Georgia, serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --ui: "Plus Jakarta Sans", "Helvetica Neue", sans-serif;
  --brown-900: #3e1f14;
  --brown-800: #552816;
  --brown-700: #6c341c;
  --gold: #d8a948;
  --gold-soft: #e8cf96;
  --cream: #efe4b4;
  --orange: #c4471b;
  --shadow: 0 24px 48px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.page {
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
  padding: 36px 0 32px;
}

.top-nav,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  margin-top: 36px;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 410px;
}

.hero-figure {
  position: absolute;
  top: 48px;
  width: min(29vw, 360px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0.76;
  mix-blend-mode: multiply;
  filter: saturate(0.72) contrast(1.08);
  pointer-events: none;
}

.hero-figure--left {
  left: 0;
  transform: translateX(-36%);
}

.hero-figure--right {
  right: 0;
  transform: translateX(36%) scaleX(-1);
}

.hero-figure img {
  width: 124%;
  height: 124%;
  object-fit: cover;
  transform: translate(-10%, -8%) scale(1.02);
}

.hero-figure--right img {
  transform: translate(-8%, -10%) scale(1.02);
}

.phone {
  position: relative;
  overflow: hidden;
  border: 1.4px solid rgba(0, 0, 0, 0.32);
  border-radius: 42px;
  background: #faf8f2;
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 130px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
  z-index: 5;
}

.phone::after {
  content: "";
  position: absolute;
  top: 21px;
  right: 44px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #8fe2ff, #234b74 68%, #000);
  z-index: 6;
}

.phone-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 54px 16px 18px;
}

.phone--hero {
  width: 324px;
  height: 662px;
  z-index: 2;
}

.hero-title {
  max-width: 930px;
  margin: 26px auto 0;
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 102px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-align: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 960px;
  margin: 48px auto 0;
}

.hero-copy p,
.story p {
  margin: 0;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.65;
  text-align: center;
}

.ornament {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 42px auto 0;
}

.ornament__halo {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 169, 72, 0.55), rgba(216, 169, 72, 0));
  filter: blur(12px);
}

.ornament img {
  position: relative;
  width: 48px;
  height: 48px;
}

.screen-home {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 85% 6%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #4b4b4b, #414141);
  color: #191919;
}

.screen-status,
.screen-mini-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.screen-status__icons,
.screen-mini-status__icons {
  display: flex;
  gap: 4px;
}

.screen-status__icons span,
.screen-mini-status__icons span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.82);
}

.screen-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.screen-days span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  border-radius: 50%;
  background: #efe4b4;
  color: #3f2519;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.screen-days .is-active {
  background: #5b2b17;
  color: #fff;
}

.screen-days .is-glow {
  box-shadow: 0 0 16px rgba(255, 247, 186, 0.98);
}

.screen-days--mini {
  margin-top: 0;
}

.screen-days--mini span {
  width: 26px;
  height: 26px;
  font-size: 7px;
}

.screen-greeting,
.screen-headline {
  margin: 0;
  color: #111;
  font-family: var(--ui);
}

.screen-greeting {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
}

.screen-greeting--mini {
  margin-top: 12px;
  font-size: 12px;
}

.screen-headline {
  margin-top: 4px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.08;
}

.screen-headline--mini {
  font-size: 22px;
}

.screen-card {
  margin-top: 12px;
  border-radius: 18px;
  padding: 14px 14px 15px;
  overflow: hidden;
}

.screen-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.screen-card__eyebrow,
.screen-card__ref,
.screen-card__body,
.screen-card__quote,
.screen-card__mentor-title,
.screen-card__mentor-body,
.screen-section__title {
  margin: 0;
}

.screen-card__eyebrow,
.screen-card__ref,
.screen-section__title {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.screen-card--verse {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 54%),
    linear-gradient(135deg, #97342f, #7f2829 58%, #611919);
  color: #fff7ef;
}

.screen-card--gold {
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(180deg, #e4b860, #d49c45);
  color: #fffdf5;
}

.screen-card--mentor {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: center;
  background: linear-gradient(135deg, #c9491d, #a83c18);
  color: #fff8ef;
}

.screen-card__body {
  margin-top: 8px;
  font-family: var(--ui);
  font-size: 12px;
  line-height: 1.45;
}

.screen-card__body--center {
  text-align: center;
}

.screen-card__quote {
  margin-top: 12px;
  font-family: var(--ui);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.screen-card__mentor-image {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.screen-card__mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-card__mentor-title,
.topic-card__copy p,
.routine-card p {
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 700;
}

.screen-card__mentor-body,
.topic-card__copy small,
.routine-card small {
  margin-top: 4px;
  display: block;
  font-family: var(--ui);
  font-size: 11px;
  line-height: 1.35;
}

.screen-card__mentor-button {
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #9d3516;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
}

.screen-section {
  margin-top: 14px;
}

.topic-row,
.topic-stack {
  display: grid;
  gap: 8px;
}

.topic-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 8px;
}

.topic-card {
  position: relative;
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(90deg, #e2b55d, #8d4c1f);
  color: #fffdf3;
}

.topic-card img {
  position: absolute;
  right: -16px;
  top: -14px;
  width: 88px;
  height: 88px;
  object-fit: cover;
  opacity: 0.9;
}

.topic-card--dark {
  background: linear-gradient(90deg, #4b2414, #6c3b1f);
}

.topic-card__copy {
  position: relative;
  z-index: 1;
  max-width: 110px;
}

.routine-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.routine-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 8px 10px;
  border-radius: 15px;
  background: rgba(72, 39, 23, 0.88);
  color: #f8ede0;
}

.routine-card img,
.mentor-mini-card img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
}

.routine-card--muted {
  background: rgba(226, 184, 98, 0.2);
  color: rgba(17, 17, 17, 0.72);
}

.routine-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e2b55d;
}

.screen-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin-top: auto;
  padding: 8px 8px 10px;
  border-radius: 18px;
  background: #fefefe;
  color: rgba(72, 39, 23, 0.45);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 600;
}

.screen-nav span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 12px;
}

.screen-nav .is-current {
  background: linear-gradient(135deg, #d56c38, #b53a1a);
  color: #fff;
}

.how-it-works,
.live-session,
.story {
  margin-top: 78px;
}

.how-it-works h2,
.live-session h2,
.story h2 {
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

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

.walkthrough-card {
  padding: 22px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 1.25px) 0 0 / 28px 28px,
    var(--surface-strong);
}

.walkthrough-card__title {
  min-height: 54px;
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
  text-transform: uppercase;
}

.walkthrough-phone {
  display: flex;
  justify-content: center;
}

.phone-mini {
  position: relative;
  width: 286px;
  min-height: 540px;
  padding: 24px 14px 18px;
  overflow: hidden;
  border: 1.4px solid rgba(0, 0, 0, 0.26);
  border-radius: 38px;
  background: #faf8f2;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.1);
}

.phone-mini::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 116px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
}

.phone-mini--onboarding {
  text-align: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(216, 169, 72, 0.22), transparent 20%),
    linear-gradient(180deg, #4f2717, #4a2215);
  color: #fff;
}

.screen-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
}

.screen-avatar {
  width: 96px;
  height: 96px;
  margin: 28px auto 0;
  padding: 4px;
  border: 1.4px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(216, 169, 72, 0.32);
}

.screen-avatar img,
.session-screen__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.screen-onboarding__title,
.screen-onboarding__copy,
.screen-lock,
.screen-input,
.screen-continue {
  margin: 0;
  font-family: var(--ui);
}

.screen-onboarding__title {
  max-width: 10ch;
  margin: 24px auto 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
}

.screen-onboarding__copy {
  max-width: 18ch;
  margin: 18px auto 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

.screen-input,
.screen-continue {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  margin-top: 36px;
  padding: 0 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #a0a0a0;
  font-size: 16px;
}

.screen-lock {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.screen-continue {
  margin-top: 164px;
  justify-content: center;
  color: #383838;
  font-weight: 600;
}

.phone-mini--verse,
.phone-mini--topics {
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.07), transparent 18%),
    linear-gradient(180deg, #4b4b4b, #414141);
}

.phone-mini--mentor {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 12%, rgba(216, 169, 72, 0.18), transparent 18%),
    linear-gradient(180deg, #4d2819, #381d13);
  color: #fff4e6;
}

.screen-card--mini {
  padding: 12px 12px 13px;
}

.mentor-mini-ring {
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 188px;
  aspect-ratio: 1 / 1;
  margin: 18px auto 2px;
  padding: 24px 14px 16px;
  border: 2px solid rgba(232, 207, 150, 0.95);
  border-radius: 50%;
}

.mentor-mini-ring p,
.mentor-mini-ring strong,
.mentor-mini-ring span {
  margin: 0;
  font-family: var(--mono);
  text-transform: uppercase;
}

.mentor-mini-ring p {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 244, 230, 0.74);
}

.mentor-mini-ring strong {
  font-size: 22px;
  line-height: 1.1;
}

.mentor-mini-ring span {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mentor-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.mentor-mini-card--alt {
  background: rgba(255, 255, 255, 0.04);
}

.mentor-mini-card p,
.mentor-mini-card small {
  margin: 0;
  font-family: var(--ui);
}

.mentor-mini-card p {
  font-size: 15px;
  font-weight: 700;
}

.mentor-mini-card small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 244, 230, 0.74);
  font-size: 12px;
  line-height: 1.4;
}

.topic-stack {
  margin-top: 76px;
}

.live-session {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.session-shell {
  width: 100%;
  display: flex;
  justify-content: center;
}

.phone--session {
  width: min(100%, 414px);
  min-height: 760px;
  background: linear-gradient(180deg, #4d2819, #3b1d13);
}

.session-screen {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 12%, rgba(216, 169, 72, 0.18), transparent 18%),
    linear-gradient(180deg, #4d2819, #381d13);
  color: #fff4e6;
}

.session-screen__top {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.session-screen__avatar {
  width: 88px;
  height: 88px;
  padding: 4px;
  border: 1.4px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(216, 169, 72, 0.25);
}

.console-ring {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 230px;
  aspect-ratio: 1 / 1;
  padding: 28px 20px 22px;
  border: 2px solid rgba(232, 207, 150, 0.95);
  border-radius: 50%;
}

.ring-kicker,
.ring-name,
.ring-timer,
.status-label,
.session-screen__copy,
.form-note {
  margin: 0;
}

.ring-kicker,
.status-label {
  color: rgba(255, 244, 230, 0.72);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ring-name,
.ring-timer {
  font-family: var(--mono);
  text-transform: uppercase;
}

.ring-name {
  font-size: 18px;
  font-weight: 600;
}

.ring-timer {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.session-pill {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: #fff4e6;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.session-screen__copy {
  margin-top: 20px;
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  color: rgba(255, 244, 230, 0.86);
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 244, 230, 0.84);
  font-family: var(--ui);
  font-size: 12px;
}

.companion-toggle-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.companion-toggle {
  min-height: 84px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 244, 230, 0.72);
  text-align: left;
}

.companion-toggle span,
.companion-toggle small {
  display: block;
}

.companion-toggle span {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: #fff4e6;
  text-transform: uppercase;
}

.companion-toggle small {
  margin-top: 4px;
  font-family: var(--ui);
  font-size: 11px;
  line-height: 1.4;
}

.companion-toggle:hover,
.companion-toggle:focus-visible,
.companion-toggle.is-active {
  border-color: var(--gold);
  outline: none;
}

.conversation-panel {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.message-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 164px;
  max-height: 260px;
  overflow: auto;
  padding: 16px;
}

.message {
  max-width: 90%;
  padding: 12px 14px;
  border-radius: 14px;
  font-family: var(--ui);
  font-size: 13px;
  line-height: 1.55;
}

.message--system {
  align-self: center;
  max-width: 100%;
  padding: 0;
  color: rgba(255, 244, 230, 0.66);
}

.message--user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.08);
}

.message--assistant {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.composer {
  padding: 0 16px 16px;
}

.composer textarea {
  width: 100%;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  resize: vertical;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 14px;
}

.composer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.ghost-btn,
.send-btn,
.voice-toggle {
  min-height: 40px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
}

.ghost-btn,
.voice-toggle {
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 244, 230, 0.84);
}

.voice-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.send-btn {
  margin-left: auto;
  padding: 0 16px;
  border: 0;
  background: var(--gold);
  color: #2e190f;
  font-weight: 700;
  text-transform: uppercase;
}

.form-note {
  margin-top: 14px;
  color: rgba(255, 244, 230, 0.7);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.story {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.story p + p {
  margin-top: 24px;
}

.story-figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.story-figures img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 28px;
  filter: saturate(0.78) contrast(1.06);
}

.footer {
  margin-top: 86px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.session-live .console-ring {
  box-shadow: 0 0 30px rgba(216, 169, 72, 0.28);
}

@media (max-width: 1180px) {
  .hero-figure {
    width: min(30vw, 380px);
  }
}

@media (max-width: 960px) {
  .page {
    width: min(100% - 26px, 100%);
    padding-top: 20px;
  }

  .hero-figure {
    display: none;
  }

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

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

  .story-figures {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .top-nav,
  .footer {
    gap: 12px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .nav-pill {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero {
    margin-top: 22px;
  }

  .phone--hero {
    width: 256px;
    height: 522px;
  }

  .phone::before {
    width: 102px;
    height: 22px;
  }

  .phone::after {
    top: 19px;
    right: 37px;
    width: 8px;
    height: 8px;
  }

  .phone-inner {
    padding: 46px 12px 14px;
  }

  .screen-days span {
    width: 26px;
    height: 26px;
    font-size: 7px;
  }

  .screen-greeting {
    font-size: 12px;
  }

  .screen-headline {
    font-size: 24px;
  }

  .screen-card {
    margin-top: 10px;
    padding: 11px 11px 12px;
  }

  .screen-card__quote {
    font-size: 18px;
  }

  .screen-card--mentor {
    grid-template-columns: 46px 1fr;
  }

  .screen-card__mentor-button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 6px;
  }

  .topic-row {
    grid-template-columns: 1fr;
  }

  .routine-card {
    min-height: 52px;
  }

  .screen-nav {
    font-size: 9px;
  }

  .hero-title {
    margin-top: 24px;
    font-size: clamp(42px, 17vw, 62px);
  }

  .hero-copy {
    gap: 18px;
    margin-top: 30px;
  }

  .hero-copy p,
  .story p {
    font-size: 15px;
    line-height: 1.7;
  }

  .how-it-works,
  .live-session,
  .story {
    margin-top: 56px;
  }

  .walkthrough-card {
    padding: 18px 12px 16px;
  }

  .walkthrough-card__title {
    min-height: 0;
    font-size: 13px;
  }

  .phone-mini {
    width: min(100%, 244px);
    min-height: 470px;
  }

  .screen-onboarding__title {
    font-size: 22px;
  }

  .screen-onboarding__copy {
    font-size: 13px;
  }

  .screen-continue {
    margin-top: 122px;
  }

  .phone--session {
    width: 100%;
    min-height: 740px;
  }

  .console-ring {
    width: 204px;
  }

  .companion-toggle-group {
    grid-template-columns: 1fr;
  }

  .composer-actions {
    flex-wrap: wrap;
  }

  .send-btn {
    width: 100%;
    margin-left: 0;
  }
}
