:root {
  color-scheme: light;
  --paper: #f6f0e6;
  --paper-light: #fffaf1;
  --surface: #fffdf8;
  --ink: #2e233d;
  --ink-soft: #5f536a;
  --plum: #40345d;
  --plum-deep: #251b38;
  --lavender: #8879df;
  --lavender-light: #d8d0ff;
  --lavender-pale: #eeeaff;
  --blush: #f4d8cf;
  --mint: #d8e8df;
  --gold: #ead7a1;
  --line: rgba(64, 52, 93, 0.14);
  --shadow: 0 28px 80px rgba(48, 34, 61, 0.14);
  /* Mirrors the current native light-theme practice surfaces. */
  --app-surface: #fcfbf8;
  --app-border: #d8d4cc;
  --app-accent-light: #eeedfe;
  --app-accent-mid: #cfccf5;
  --app-accent-dark: #3c3489;
  --app-paper: #fff3da;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--plum-deep);
  color: white;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(246, 240, 230, 0.92);
  box-shadow: 0 1px 0 rgba(64, 52, 93, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: min(1240px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -1px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(64, 52, 93, 0.14);
  border-radius: 50%;
  background: #eee9ff;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  transform: translateY(3px);
}

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

.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--plum);
}

.site-nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--plum);
  border-radius: 999px;
  color: var(--plum);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--plum);
  color: white;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 152px max(24px, calc((100vw - 1240px) / 2)) 54px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  column-gap: clamp(40px, 6vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 62% 35%,
      rgba(211, 200, 255, 0.58),
      transparent 27%
    ),
    linear-gradient(145deg, #fbf7ef 0%, #f5ede1 60%, #efe6dc 100%);
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -30%;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(64, 52, 93, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-copy,
.hero-stage,
.hero-proof {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 10px;
  color: var(--lavender);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--plum-deep);
  font-size: clamp(58px, 6.5vw, 96px);
  font-weight: 770;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

h1 em,
h2 em {
  color: var(--lavender);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 615px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  background: var(--plum);
  box-shadow: 0 12px 28px rgba(64, 52, 93, 0.22);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--plum-deep);
  box-shadow: 0 16px 34px rgba(64, 52, 93, 0.28);
}

.button-quiet {
  color: var(--plum);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  background: rgba(64, 52, 93, 0.07);
}

.hero-note {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 9px;
  color: #766c7e;
  font-size: 12px;
  font-weight: 650;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #78a98a;
  box-shadow: 0 0 0 5px rgba(120, 169, 138, 0.14);
}

.hero-stage {
  display: grid;
  min-height: 690px;
  place-items: center;
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: 334px;
  height: 680px;
  padding: 9px;
  border: 2px solid #554b61;
  border-radius: 52px;
  background: #15131a;
  box-shadow:
    0 50px 90px rgba(37, 27, 56, 0.27),
    inset 0 0 0 2px #807789;
  transform: rotate(1.2deg);
}

.phone-shell::before,
.phone-shell::after {
  position: absolute;
  left: -5px;
  width: 3px;
  border-radius: 4px 0 0 4px;
  background: #403a48;
  content: "";
}

.phone-shell::before {
  top: 130px;
  height: 56px;
}

.phone-shell::after {
  top: 202px;
  height: 76px;
}

.phone-hardware {
  position: absolute;
  z-index: 8;
  top: 19px;
  left: 50%;
  width: 104px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #111015;
}

.phone-hardware .speaker {
  position: absolute;
  top: 10px;
  left: 37px;
  width: 30px;
  height: 5px;
  border-radius: 99px;
  background: #29252f;
}

.phone-hardware .camera {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #272443;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 43px;
  background: #fbf7f0;
  color: var(--ink);
}

.phone-status {
  display: flex;
  height: 48px;
  padding: 14px 24px 0;
  justify-content: space-between;
  font-size: 10px;
}

.phone-status span {
  color: #251f2e;
  font-size: 7px;
  letter-spacing: 2px;
}

.app-topbar {
  display: flex;
  padding: 12px 22px 17px;
  align-items: center;
  justify-content: space-between;
}

.app-topbar > div {
  display: grid;
  gap: 5px;
}

.app-topbar strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.app-kicker,
.section-label {
  color: #897e90;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.language-orb {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #a494eb;
  border-radius: 50%;
  background: #eee9ff;
  color: var(--plum);
  font-size: 10px;
  font-weight: 900;
}

.today-card {
  position: relative;
  display: flex;
  min-height: 166px;
  margin: 0 16px;
  padding: 20px 14px 18px 19px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, #ddd5ff, #c6bbed);
}

.today-copy {
  position: relative;
  z-index: 2;
  width: 67%;
}

.today-card h2 {
  margin: 9px 0 5px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.02;
}

.today-card p {
  margin: 0;
  color: #5f5572;
  font-size: 9px;
  line-height: 1.4;
}

.today-card img {
  position: absolute;
  right: -5px;
  bottom: 2px;
  width: 112px;
  transform: rotate(-4deg);
}

.phone-button {
  display: inline-flex;
  min-height: 28px;
  margin-top: 14px;
  padding: 0 12px;
  align-items: center;
  border-radius: 99px;
  background: var(--plum);
  color: white;
  font-size: 8px;
  font-weight: 800;
}

.progress-row {
  display: flex;
  margin: 13px 16px 0;
  padding: 13px 14px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(64, 52, 93, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.67);
}

.progress-copy {
  display: grid;
  gap: 4px;
  font-size: 8px;
}

.progress-copy span {
  color: #897f90;
}

.progress-copy strong {
  font-size: 10px;
}

.day-dots {
  display: flex;
  gap: 4px;
}

.day-dots i {
  width: 7px;
  height: 7px;
  border: 1px solid #c6bdcc;
  border-radius: 50%;
}

.day-dots i.done {
  border-color: var(--lavender);
  background: var(--lavender);
}

.section-label {
  margin: 16px 20px 9px;
  font-size: 8.5px;
}

.app-grid {
  display: grid;
  margin: 0 16px;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.app-tile {
  display: grid;
  min-height: 83px;
  padding: 9px 8px;
  grid-template-columns: 38px minmax(0, 1fr) 10px;
  column-gap: 6px;
  border-radius: 17px;
  align-content: center;
  align-items: center;
  border: 1px solid var(--app-border);
  background: var(--app-surface);
  box-shadow: 0 5px 14px rgba(55, 42, 69, 0.035);
}

.app-tile .tile-icon {
  display: grid;
  width: 38px;
  height: 38px;
  grid-row: 1 / span 2;
  place-items: center;
}

.app-tile .tile-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-tile .tile-icon .art-tint {
  fill: var(--app-accent-light);
  stroke: none;
}

.app-tile .tile-icon .art-accent {
  fill: var(--app-accent-mid);
}

.app-tile .tile-icon .art-paper {
  fill: var(--app-paper);
}

.app-tile .tile-icon .art-detail {
  stroke: var(--app-accent-dark);
}

.app-tile strong {
  align-self: end;
  font-size: 11px;
  line-height: 1.15;
}

.app-tile small {
  align-self: start;
  color: #675f70;
  font-size: 8px;
  line-height: 1.25;
}

.tile-chevron {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: var(--app-accent-dark);
  font-size: 20px;
  line-height: 1;
}

.app-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 62px;
  padding: 9px 19px 8px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(64, 52, 93, 0.09);
  background: rgba(255, 253, 248, 0.94);
}

.app-tabs span {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: #958b9a;
  font-size: 7px;
}

.app-tabs i {
  color: inherit;
  font-size: 15px;
  font-style: normal;
  line-height: 1;
}

.app-tabs .active {
  color: var(--lavender);
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(64, 52, 93, 0.12);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 20px 50px rgba(53, 40, 68, 0.15);
  backdrop-filter: blur(16px);
}

.floating-card-word {
  top: 120px;
  left: 0;
  display: grid;
  width: 220px;
  padding: 20px;
  gap: 4px;
  border-radius: 20px;
  transform: rotate(-4deg);
}

.floating-card-word .mini-label {
  margin-bottom: 8px;
  color: var(--lavender);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card-word strong {
  font-family: var(--serif);
  font-size: 26px;
}

.floating-card-word > span:last-child {
  color: #786e7d;
  font-size: 10px;
  line-height: 1.4;
}

.floating-card-coach {
  right: -34px;
  bottom: 48px;
  display: flex;
  width: 250px;
  padding: 15px;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  transform: rotate(3deg);
}

.coach-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--app-accent-light);
  color: var(--app-accent-dark);
  font-weight: 900;
}

.floating-card-coach > span:last-child {
  display: grid;
  gap: 4px;
  color: #766d7b;
  font-size: 9px;
  line-height: 1.3;
}

.floating-card-coach strong {
  color: var(--ink);
  font-size: 11px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(64, 52, 93, 0.1);
  border-radius: 50%;
}

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

.orbit-two {
  width: 690px;
  height: 690px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-glow-one {
  top: 10%;
  right: 8%;
  width: 310px;
  height: 310px;
  background: rgba(216, 208, 255, 0.35);
}

.hero-glow-two {
  right: 35%;
  bottom: -7%;
  width: 260px;
  height: 260px;
  background: rgba(244, 216, 207, 0.35);
}

.hero-proof {
  display: flex;
  margin-top: 44px;
  padding-top: 28px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(64, 52, 93, 0.13);
  color: #827787;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.proof-list {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #6d6274;
  letter-spacing: 0.03em;
  text-transform: none;
}

.proof-list i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lavender);
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.belief-section {
  padding: 150px 0;
  background: var(--surface);
}

.belief-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  align-items: end;
  gap: 100px;
}

.section-intro h2,
.journey-heading h2,
.ecosystem-copy h2,
.principles-heading h2,
.launch-copy h2 {
  margin: 0;
  color: var(--plum-deep);
  font-size: clamp(44px, 5.2vw, 72px);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.belief-copy {
  padding: 0 0 5px 32px;
  border-left: 1px solid var(--line);
}

.belief-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.belief-copy p + p {
  margin-top: 20px;
}

.journey-section {
  padding: 140px 0 160px;
  background:
    linear-gradient(rgba(64, 52, 93, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 52, 93, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 46px 46px;
}

.journey-heading {
  max-width: 720px;
  margin-bottom: 70px;
}

.journey-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.journey-card {
  position: relative;
  min-height: 610px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 14px 40px rgba(55, 42, 69, 0.05);
}

.step-number {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 28px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(64, 52, 93, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--plum);
  font-size: 10px;
  font-weight: 850;
}

.journey-art {
  position: relative;
  display: grid;
  height: 340px;
  margin-bottom: 32px;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
}

.journey-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 31px;
  letter-spacing: -0.035em;
}

.journey-card > p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.discover-art {
  border: 1px solid rgba(60, 52, 137, 0.08);
  background: linear-gradient(145deg, #f4f1ff, #e4defb);
}

.discover-art::before,
.discover-art::after {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(64, 52, 93, 0.11);
  border-radius: 50%;
  content: "";
}

.discover-art::after {
  width: 310px;
  height: 310px;
}

.capture-field {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(380px, 82%);
  padding: 24px 24px 20px;
  grid-template-columns: 1fr auto;
  border: 1px solid rgba(64, 52, 93, 0.12);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 40px rgba(64, 52, 93, 0.12);
}

.capture-field span {
  grid-column: 1 / -1;
  color: #91869a;
  font-size: 10px;
  font-weight: 750;
}

.capture-field strong {
  margin-top: 9px;
  font-family: var(--serif);
  font-size: 31px;
}

.capture-field i {
  display: grid;
  width: 38px;
  height: 38px;
  margin-top: 6px;
  place-items: center;
  border-radius: 50%;
  background: var(--plum);
  color: white;
  font-size: 20px;
  font-style: normal;
}

.source-pill {
  position: absolute;
  z-index: 3;
  bottom: 55px;
  padding: 8px 13px;
  border-radius: 99px;
  background: rgba(64, 52, 93, 0.85);
  color: white;
  font-size: 9px;
}

.understand-art {
  place-content: center;
  border: 1px solid rgba(60, 52, 137, 0.08);
  background: linear-gradient(145deg, #fbf8f2, #eee9ff);
}

.word-chip {
  position: absolute;
  top: 55px;
  left: 44px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
}

.meaning-card {
  width: min(400px, 80%);
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(64, 52, 93, 0.11);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.92);
  transform: rotate(1deg);
}

.meaning-card span {
  color: var(--app-accent-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.meaning-card p {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
}

.example-card {
  position: absolute;
  right: 22px;
  bottom: 28px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--plum);
  color: white;
  font-size: 11px;
  transform: rotate(-2deg);
}

.remember-art {
  border: 1px solid rgba(60, 52, 137, 0.08);
  background: linear-gradient(145deg, #f7f4ff, #e9e4fa);
}

.review-card-back,
.review-card-front {
  position: absolute;
  width: min(330px, 76%);
  height: 220px;
  border: 1px solid rgba(64, 52, 93, 0.12);
  border-radius: 24px;
}

.review-card-back {
  background: var(--app-accent-mid);
  transform: translate(22px, 8px) rotate(5deg);
}

.review-card-front {
  display: grid;
  padding: 26px;
  place-content: center;
  justify-items: center;
  gap: 14px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 38px rgba(60, 52, 137, 0.12);
  transform: translate(-12px, -5px) rotate(-2deg);
}

.review-card-front > span {
  color: var(--app-accent-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card-front strong {
  font-family: var(--serif);
  font-size: 36px;
}

.memory-scale {
  display: flex;
  gap: 8px;
}

.memory-scale i {
  width: 36px;
  height: 8px;
  border-radius: 99px;
  background: #e5e0e5;
}

.memory-scale i:nth-child(-n + 3) {
  background: var(--lavender);
}

.use-art {
  display: block;
  padding: 56px 42px;
  border: 1px solid rgba(60, 52, 137, 0.08);
  background: linear-gradient(145deg, #f7f4ff, #e5def9);
}

.dialogue {
  width: fit-content;
  max-width: 75%;
  padding: 15px 18px;
  border-radius: 18px 18px 18px 4px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 24px rgba(82, 68, 40, 0.09);
  font-size: 12px;
}

.dialogue-right {
  margin: 25px 0 0 auto;
  border-radius: 18px 18px 4px 18px;
  background: var(--plum);
  color: white;
}

.voice-bar {
  position: absolute;
  right: 42px;
  bottom: 58px;
  left: 42px;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 99px;
  background: rgba(255, 253, 248, 0.87);
}

.voice-bar i {
  width: 3px;
  height: 13px;
  border-radius: 99px;
  background: var(--lavender);
}

.voice-bar i:nth-child(2n) {
  height: 24px;
}
.voice-bar i:nth-child(3n) {
  height: 32px;
}

.ecosystem-section {
  position: relative;
  padding: 150px 0 160px;
  overflow: hidden;
  background: var(--plum-deep);
  color: white;
}

.ecosystem-shell {
  position: relative;
  z-index: 2;
}

.ecosystem-copy {
  display: grid;
  margin-bottom: 64px;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.eyebrow.light {
  grid-column: 1 / -1;
  color: #bdb1f3;
}

.ecosystem-copy h2 {
  color: white;
}

.ecosystem-copy h2 em {
  color: #bdb1f3;
}

.ecosystem-copy > p:last-child {
  margin: 0 0 5px;
  color: #c6becd;
  font-size: 16px;
  line-height: 1.75;
}

.ecosystem-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.ecosystem-orb-one {
  top: -220px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(189, 177, 243, 0.15);
  box-shadow: inset 0 0 100px rgba(136, 121, 223, 0.08);
}

.ecosystem-orb-two {
  bottom: -320px;
  left: -280px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(244, 216, 207, 0.1);
}

.feature-showcase {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 80px rgba(10, 5, 18, 0.27);
}

.feature-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-tabs button {
  position: relative;
  min-height: 76px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #9f96a7;
  font: 750 14px var(--sans);
  cursor: pointer;
}

.feature-tabs button:last-child {
  border-right: 0;
}

.feature-tabs button::after {
  position: absolute;
  right: 18%;
  bottom: -1px;
  left: 18%;
  height: 2px;
  transform: scaleX(0);
  background: #bdb1f3;
  content: "";
  transition: transform 180ms ease;
}

.feature-tabs button[aria-selected="true"] {
  color: white;
}

.feature-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.feature-tabs button:focus-visible {
  outline: 2px solid #bdb1f3;
  outline-offset: -4px;
}

.showcase-window {
  display: grid;
  min-height: 520px;
  padding: 60px;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 70px;
}

.showcase-copy {
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.showcase-copy.swapping,
.showcase-visual.swapping {
  opacity: 0;
  transform: translateY(8px);
}

.showcase-kicker {
  color: #bdb1f3;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.showcase-copy h3 {
  margin: 16px 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.showcase-copy > p {
  margin: 0;
  color: #c8c0cf;
  font-size: 15px;
  line-height: 1.7;
}

.showcase-copy ul {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  gap: 12px;
  color: #ded9e3;
  font-size: 13px;
  list-style: none;
}

.showcase-copy li {
  display: flex;
  gap: 10px;
}

.showcase-copy li::before {
  color: #bdb1f3;
  content: "✦";
}

.showcase-visual {
  position: relative;
  min-height: 390px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 27px;
  background: #f7f1e8;
  box-shadow: 0 32px 60px rgba(8, 4, 16, 0.3);
  color: var(--ink);
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.visual-header {
  display: grid;
  margin-bottom: 26px;
  gap: 6px;
}

.visual-header span {
  color: var(--lavender);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visual-header strong {
  font-family: var(--serif);
  font-size: 32px;
}

.word-row {
  display: flex;
  min-height: 58px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(64, 52, 93, 0.1);
  font-family: var(--serif);
  font-size: 20px;
}

.word-row small {
  color: #93889a;
  font: 700 9px var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.word-row.featured {
  margin-bottom: 5px;
  border: 0;
  border-radius: 14px;
  background: #e9e3ff;
}

.tutor-visual,
.speaking-visual,
.roleplay-visual {
  display: grid;
  place-items: center;
}

.feature-mascot {
  width: 150px;
  margin-bottom: 18px;
}

.visual-message {
  width: min(370px, 90%);
  padding: 19px 21px;
  border: 1px solid var(--line);
  border-radius: 20px 20px 20px 6px;
  background: white;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  box-shadow: 0 12px 25px rgba(64, 52, 93, 0.09);
}

.speaking-meter {
  display: flex;
  height: 80px;
  align-items: center;
  gap: 8px;
}

.speaking-meter i {
  width: 5px;
  height: 22px;
  border-radius: 99px;
  background: var(--lavender);
}

.speaking-meter i:nth-child(2n) {
  height: 48px;
}
.speaking-meter i:nth-child(3n) {
  height: 64px;
}

.scenario-card {
  width: min(390px, 90%);
  padding: 28px;
  border-radius: 24px;
  background: #e9e3ff;
}

.scenario-card span {
  color: #796eb9;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.scenario-card h4 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: 30px;
}

.scenario-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.principles-section {
  padding: 150px 0;
  background: var(--surface);
}

.principles-heading {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.principles-heading .eyebrow {
  justify-content: center;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.principles-grid article {
  padding: 36px 30px 38px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fbf7ef;
}

.principle-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  background: var(--lavender-pale);
}

.principle-icon svg {
  width: 26px;
  fill: none;
  stroke: var(--plum);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.principles-grid h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -0.03em;
}

.principles-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.launch-section {
  padding: 0 24px 100px;
  background: var(--surface);
}

.launch-card {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  min-height: 490px;
  margin: 0 auto;
  padding: 64px 74px;
  overflow: hidden;
  grid-template-columns: 0.65fr 1fr;
  align-items: center;
  gap: 70px;
  border-radius: 40px;
  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(255, 255, 255, 0.42),
      transparent 25%
    ),
    linear-gradient(135deg, #ddd4ff, #c8bdef 50%, #d9c8e4);
}

.launch-card::before,
.launch-card::after {
  position: absolute;
  border: 1px solid rgba(64, 52, 93, 0.11);
  border-radius: 50%;
  content: "";
}

.launch-card::before {
  top: -220px;
  left: -150px;
  width: 560px;
  height: 560px;
}

.launch-card::after {
  right: -230px;
  bottom: -320px;
  width: 620px;
  height: 620px;
}

.launch-art,
.launch-copy {
  position: relative;
  z-index: 2;
}

.launch-art {
  display: grid;
  place-items: center;
}

.launch-art img {
  width: min(300px, 100%);
  filter: drop-shadow(0 20px 22px rgba(64, 52, 93, 0.18));
}

.spark {
  position: absolute;
  color: #fffdf8;
  font-size: 26px;
}

.spark-one {
  top: 4%;
  left: 8%;
}
.spark-two {
  top: 32%;
  right: 0;
  font-size: 17px;
}
.spark-three {
  bottom: 8%;
  left: 2%;
  font-size: 14px;
}

.launch-copy .eyebrow {
  color: var(--plum);
}

.launch-copy h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.launch-copy > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: #5b5067;
  font-size: 16px;
  line-height: 1.7;
}

.launch-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 18px;
}

.launch-actions > span {
  color: #6f6477;
  font-size: 11px;
  font-weight: 650;
}

.site-footer {
  padding: 80px max(24px, calc((100vw - 1180px) / 2)) 28px;
  background: var(--paper);
}

.footer-main {
  display: flex;
  padding-bottom: 70px;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand {
  margin-bottom: 17px;
}

.footer-main > div:first-child > p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
}

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

.footer-links > div {
  display: grid;
  min-width: 120px;
  align-content: start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #8a808e;
  font-size: 11px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.js [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 130px;
    grid-template-columns: 0.9fr 1.1fr;
    column-gap: 15px;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 76px);
  }

  .floating-card-word {
    left: -18px;
    width: 185px;
  }

  .floating-card-coach {
    right: -42px;
    bottom: 42px;
    width: 220px;
  }

  .belief-grid,
  .ecosystem-copy {
    gap: 50px;
  }

  .showcase-window {
    padding: 44px;
    gap: 45px;
  }

  .launch-card {
    padding: 54px;
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-shell {
    width: min(100% - 32px, 720px);
    height: 76px;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--plum);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 110px 28px 40px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-110%);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: rgba(246, 240, 230, 0.98);
    transition:
      opacity 180ms ease,
      transform 260ms ease,
      visibility 0s linear 260ms;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 27px;
  }

  .site-nav .nav-cta {
    margin-top: 22px;
    border: 0;
    background: var(--plum);
    color: white;
    font-family: var(--sans);
    font-size: 15px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 130px 24px 48px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(56px, 12vw, 82px);
  }

  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-stage {
    min-height: 730px;
    margin-top: 30px;
  }

  .floating-card-word {
    left: 4%;
  }

  .floating-card-coach {
    right: 0;
    bottom: 38px;
  }

  .hero-proof {
    gap: 20px;
    flex-direction: column;
  }

  .belief-grid,
  .ecosystem-copy {
    grid-template-columns: 1fr;
  }

  .belief-copy {
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journey-card {
    min-height: 590px;
  }

  .showcase-window {
    grid-template-columns: 1fr;
  }

  .showcase-visual {
    width: 100%;
  }

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

  .principles-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 22px;
  }

  .principle-icon {
    margin-bottom: 0;
    grid-row: 1 / span 2;
  }

  .launch-card {
    grid-template-columns: 0.5fr 1fr;
  }

  .launch-art img {
    width: 240px;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

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

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    line-height: 1.45;
  }

  .pulse-dot {
    margin-top: 4px;
    flex: 0 0 auto;
  }

  .hero-stage {
    min-height: 650px;
    transform: scale(0.9);
    margin: -5px -25px -30px;
  }

  .phone-shell {
    width: 316px;
    height: 644px;
  }

  .floating-card-word {
    top: 90px;
    left: 0;
    width: 165px;
    padding: 15px;
  }

  .floating-card-word strong {
    font-size: 22px;
  }

  .floating-card-coach {
    right: -2px;
    bottom: 24px;
    width: 190px;
    padding: 11px;
  }

  .orbit-one {
    width: 470px;
    height: 470px;
  }
  .orbit-two {
    width: 570px;
    height: 570px;
  }

  .proof-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .proof-list i {
    display: none;
  }

  .section-shell {
    width: min(100% - 36px, 1180px);
  }

  .belief-section,
  .journey-section,
  .ecosystem-section,
  .principles-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-intro h2,
  .journey-heading h2,
  .ecosystem-copy h2,
  .principles-heading h2,
  .launch-copy h2 {
    font-size: clamp(39px, 11.8vw, 55px);
  }

  .journey-heading {
    margin-bottom: 46px;
  }

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

  .journey-card {
    min-height: auto;
    padding: 20px 20px 28px;
    border-radius: 26px;
  }

  .journey-art {
    height: 300px;
  }

  .journey-card h3 {
    font-size: 27px;
  }

  .ecosystem-copy {
    margin-bottom: 42px;
    gap: 22px;
  }

  .feature-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .feature-tabs button {
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .showcase-window {
    min-height: 0;
    padding: 28px 20px 20px;
    gap: 32px;
  }

  .showcase-copy h3 {
    font-size: 34px;
  }

  .showcase-visual {
    min-height: 340px;
    padding: 24px;
  }

  .principles-heading {
    margin-bottom: 48px;
  }

  .principles-grid article {
    display: block;
    padding: 28px;
  }

  .principle-icon {
    margin-bottom: 24px;
  }

  .launch-section {
    padding: 0 18px 70px;
  }

  .launch-card {
    min-height: 0;
    padding: 28px 24px 44px;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 30px;
  }

  .launch-art img {
    width: 190px;
  }

  .launch-copy {
    text-align: center;
  }

  .launch-copy .eyebrow {
    justify-content: center;
  }

  .launch-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-main {
    padding-bottom: 44px;
  }

  .footer-links {
    gap: 45px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
