:root {
  color-scheme: light;
  --bg: #faf7f1;
  --surface: #ffffff;
  --text: #201f1c;
  --muted: #6f6a62;
  --line: #e8dfd4;
  --accent: #d77a3a;
  --accent-soft: #f4dfcf;
  --max: 960px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 241, 0.9);
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
}

.hero,
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 20px;
}

.hero h1,
.page h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.card,
.document {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.card h2,
.document h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.35;
}

.card p,
.document p {
  margin: 0;
  color: var(--muted);
}

.card p + p {
  margin-top: 12px;
}

.card-link {
  font-weight: 700;
}

.document {
  margin-top: 24px;
}

.document h2 {
  margin-top: 28px;
}

.document h2:first-child {
  margin-top: 0;
}

.document ul {
  padding-left: 1.2em;
}

.document li {
  margin: 6px 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  overflow-wrap: anywhere;
}

.info-table th,
.info-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 32%;
  color: var(--muted);
  font-weight: 600;
}

.notice {
  background: var(--accent-soft);
  border: 1px solid rgba(215, 122, 58, 0.28);
  border-radius: 8px;
  padding: 16px;
  color: #5d3b25;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

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

  .lead {
    font-size: 18px;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .info-table td {
    padding-top: 2px;
  }
}

.lp {
  overflow: hidden;
}

.lp-hero,
.story-section,
.method-section,
.connect-section,
.cycle-section,
.growth-section,
.voice-section,
.plans-section,
.final-cta,
.policy-links {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 24px;
}

.lp-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #43766c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.lp-hero h1,
.story-section h2,
.method-section h2,
.connect-section h2,
.cycle-section h2,
.growth-section h2,
.voice-section h2,
.plans-section h2,
.final-cta h2 {
  margin: 0;
  color: #171713;
  font-size: clamp(38px, 7vw, 84px);
  line-height: 1.04;
  letter-spacing: 0;
}

.story-section h2,
.method-section h2,
.connect-section h2,
.cycle-section h2,
.growth-section h2,
.voice-section h2,
.plans-section h2,
.final-cta h2 {
  font-size: clamp(32px, 5vw, 64px);
}

.lp-hero .lead {
  margin-top: 24px;
  max-width: 620px;
  color: #504f48;
  font-size: clamp(18px, 2.4vw, 24px);
}

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

.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  border: 1px solid #c9c2b8;
  color: #22201d;
}

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

.phone-frame {
  width: min(100%, 340px);
  border: 10px solid #171713;
  border-radius: 42px;
  background: #f8f6ef;
  box-shadow: 0 24px 60px rgba(23, 23, 19, 0.22);
  padding: 24px 18px;
}

.phone-status {
  color: #171713;
  font-size: 13px;
  font-weight: 800;
}

.app-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin: 20px auto 14px;
  border-radius: 18px;
}

.phone-label {
  margin: 0 0 18px;
  text-align: center;
  font-size: 28px;
  font-weight: 900;
}

.phone-panel {
  margin-top: 12px;
  border: 1px solid #e6ddd1;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.phone-panel span,
.method-flow span,
.phrase-stack span,
.growth-board span {
  display: block;
  color: #777169;
  font-size: 13px;
  font-weight: 800;
}

.phone-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 19px;
  line-height: 1.45;
}

.phone-panel p {
  margin: 8px 0 0;
  color: #272520;
  font-weight: 700;
}

.phone-panel.soft {
  background: #f1ece3;
}

.phone-button {
  margin-top: 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 14px 16px;
  text-align: center;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.story-copy p,
.growth-copy p,
.voice-section p,
.final-cta p,
.store-note,
.center-copy {
  margin: 0;
  color: #53514a;
  font-size: 19px;
}

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

.skill-gap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 22px;
  margin-top: 28px;
  border-top: 1px solid #ddd4c8;
  padding-top: 24px;
  font-weight: 800;
}

.skill-gap strong {
  color: #43766c;
}

.quote-band {
  background: #17211f;
  color: #fff;
  padding: 88px 24px;
}

.quote-band p {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(34px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.12;
}

.method-section,
.cycle-section,
.plans-section {
  background: #ffffff;
  max-width: none;
}

.method-section > .eyebrow,
.method-section > h2,
.connect-section > .eyebrow,
.connect-section > h2,
.cycle-section > .eyebrow,
.cycle-section > h2,
.plans-section > .eyebrow,
.plans-section > h2 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.method-flow {
  max-width: 1120px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.method-flow > div,
.phrase-stack,
.story-builder,
.growth-board,
.plan-card {
  border: 1px solid #e1d8ca;
  border-radius: 8px;
  background: #fbfaf6;
  padding: 24px;
}

.method-flow p {
  margin: 12px 0 0;
  color: #23211d;
  font-size: 18px;
  font-weight: 700;
}

.method-after strong {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  background: #dfeee8;
  color: #255b50;
  padding: 6px 12px;
}

.phrase-stack {
  margin-top: 28px;
}

.phrase-stack p {
  margin: 10px 0 0;
  color: #171713;
  font-size: 24px;
  font-weight: 900;
}

.connect-section {
  text-align: center;
}

.story-builder {
  max-width: 720px;
  margin: 42px auto 0;
  text-align: left;
}

.story-builder p {
  margin: 0;
  color: #55504a;
  font-size: 18px;
}

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

.story-result {
  margin-top: 20px;
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  color: #171713;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.6;
}

.story-builder strong {
  display: inline-flex;
  margin-top: 20px;
  color: #255b50;
  font-size: 28px;
}

.center-copy {
  margin-top: 28px;
  font-weight: 800;
}

.cycle-list {
  max-width: 780px;
  margin: 42px auto 0;
  padding: 0;
  list-style: none;
}

.cycle-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #e5ded4;
  padding: 18px 0;
  font-size: 21px;
  font-weight: 800;
}

.cycle-list span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #17211f;
  color: #fff;
  font-size: 14px;
}

.growth-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

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

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

.growth-board div {
  border-bottom: 1px solid #ded5c8;
  padding: 10px 0 18px;
}

.growth-board strong {
  display: block;
  margin-top: 6px;
  color: #171713;
  font-size: 34px;
  line-height: 1.1;
}

.voice-section {
  max-width: 860px;
  text-align: center;
}

.voice-section p {
  margin-top: 22px;
}

.plans {
  max-width: 900px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  background: #fff;
}

.plan-card.featured {
  border-color: #d77a3a;
  box-shadow: 0 18px 42px rgba(215, 122, 58, 0.16);
}

.plan-name {
  margin: 0;
  color: #43766c;
  font-weight: 900;
}

.price {
  margin: 8px 0 22px;
  color: #171713;
  font-size: 38px;
  font-weight: 900;
}

.price span {
  color: #777169;
  font-size: 16px;
}

.plan-card ul {
  margin: 0;
  padding-left: 1.2em;
  color: #3f3d38;
}

.plan-card li {
  margin: 8px 0;
}

.trial-note {
  display: inline-flex;
  margin: 20px 0 0;
  border-radius: 999px;
  background: #f4dfcf;
  color: #7b421f;
  padding: 6px 12px;
  font-weight: 900;
}

.store-note {
  max-width: 900px;
  margin: 22px auto 0;
  font-size: 14px;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  max-width: 620px;
  margin: 22px auto 32px;
}

.policy-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 24px;
  font-weight: 800;
}

@media (max-width: 860px) {
  .lp-hero,
  .split,
  .method-flow,
  .growth-section,
  .plans {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    min-height: auto;
    padding-top: 52px;
  }

  .phone-scene {
    order: -1;
  }
}

@media (max-width: 560px) {
  .lp-hero,
  .story-section,
  .method-section,
  .connect-section,
  .cycle-section,
  .growth-section,
  .voice-section,
  .plans-section,
  .final-cta,
  .policy-links {
    padding: 56px 18px;
  }

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

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .phone-frame {
    width: min(100%, 300px);
  }

  .growth-board {
    grid-template-columns: 1fr;
  }

  .cycle-list li {
    align-items: flex-start;
    font-size: 18px;
  }
}

/* Journey landing page */
.journey {
  --journey-bg: #fbf8f1;
  --journey-ink: #171713;
  --journey-muted: #6d675d;
  --journey-line: #ded5c7;
  --journey-orange: #d77a3a;
  --journey-green: #3f756a;
  --journey-blue: #526f86;
  --journey-charcoal: #17211f;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 23, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.035) 1px, transparent 1px),
    var(--journey-bg);
  background-size: 44px 44px;
}

.journey-line {
  position: absolute;
  top: 120px;
  bottom: 280px;
  left: calc(50% - 560px + 32px);
  width: 2px;
  background: linear-gradient(var(--journey-orange), rgba(215, 122, 58, 0.25));
  transform-origin: top;
  animation: route-grow 1200ms ease-out both;
}

.journey-line::before,
.journey-line::after {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid var(--journey-orange);
  border-radius: 50%;
  background: var(--journey-bg);
  content: "";
  transform: translateX(-50%);
}

.journey-line::before {
  top: 0;
}

.journey-line::after {
  bottom: 0;
}

.journey-hero,
.journey-section,
.destination,
.policy-links {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 104px 24px;
}

.journey-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: center;
  gap: 48px;
}

.journey-kicker,
.section-label span,
.boarding-pass span,
.ticket span,
.unknown-word span,
.destination-badge span,
.fare-table section > span {
  color: var(--journey-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-copy h1,
.section-copy h2,
.destination h2 {
  margin: 0;
  color: var(--journey-ink);
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy h2,
.destination h2 {
  font-size: clamp(31px, 4.8vw, 64px);
}

.journey-lead,
.section-copy p,
.destination p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--journey-muted);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.8;
}

.journey-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.journey-cta,
.journey-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
}

.journey-cta {
  background: var(--journey-orange);
  color: #fff;
  box-shadow: 0 14px 30px rgba(215, 122, 58, 0.22);
}

.journey-link {
  border: 1px solid #cfc6b8;
  color: var(--journey-ink);
  background: rgba(255, 255, 255, 0.56);
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: transform 160ms ease;
}

.app-store-badge:hover {
  transform: translateY(-1px);
}

.app-store-badge img {
  display: block;
  width: 150px;
  height: auto;
}

.journey-cta:focus-visible,
.journey-link:focus-visible,
.app-store-badge:focus-visible {
  outline: 3px solid rgba(215, 122, 58, 0.35);
  outline-offset: 3px;
}

.route-map {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 28%, rgba(215, 122, 58, 0.16), transparent 26%),
    radial-gradient(circle at 70% 76%, rgba(63, 117, 106, 0.16), transparent 30%),
    repeating-linear-gradient(30deg, transparent 0 28px, rgba(23, 23, 19, 0.035) 29px 30px);
}

.route-map::before {
  position: absolute;
  inset: 80px 64px 78px 70px;
  border-left: 3px solid var(--journey-orange);
  border-bottom: 3px solid var(--journey-orange);
  border-radius: 0 0 0 80px;
  content: "";
}

.route-station {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--journey-line);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.94);
  padding: 14px 16px;
  box-shadow: 0 18px 36px rgba(23, 23, 19, 0.08);
}

.route-station::before {
  position: absolute;
  top: 50%;
  left: -27px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--journey-orange);
  border-radius: 50%;
  background: var(--journey-bg);
  content: "";
  transform: translateY(-50%);
}

.route-station span {
  display: block;
  color: var(--journey-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.route-station strong {
  display: block;
  margin-top: 4px;
  color: var(--journey-ink);
  font-size: 19px;
}

.route-station.current {
  top: 58px;
  left: 90px;
}

.route-station.mid {
  top: 194px;
  left: 132px;
}

.route-station.end {
  right: 34px;
  bottom: 58px;
}

.boarding-pass {
  grid-column: 2;
  margin-top: -70px;
  border: 1px solid var(--journey-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(23, 23, 19, 0.12);
  padding: 22px;
}

.pass-top {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px dashed #cfc6b8;
  padding-bottom: 18px;
}

.pass-top img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.pass-top strong {
  display: block;
  color: var(--journey-ink);
  font-size: 20px;
}

.boarding-pass dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.boarding-pass div {
  min-width: 0;
}

.boarding-pass dt {
  color: var(--journey-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.boarding-pass dd {
  margin: 2px 0 0;
  color: var(--journey-ink);
  font-weight: 800;
}

.journey-section {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
}

.section-label {
  position: sticky;
  top: 92px;
  align-self: start;
}

.section-label strong {
  display: block;
  margin-top: 8px;
  color: var(--journey-ink);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.departure-board,
.itinerary,
.detour-map,
.route-timeline,
.passport-book,
.voice-card,
.screen-gallery,
.faq-list,
.plan-compare,
.fare-table {
  grid-column: 2;
}

.departure-board {
  display: grid;
  gap: 0;
  max-width: 720px;
  border: 1px solid #2a302d;
  background: var(--journey-charcoal);
  color: #f7f3e9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.departure-board div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 18px;
}

.departure-board div:last-child {
  border-bottom: 0;
}

.departure-board span {
  letter-spacing: 0.08em;
}

.departure-board strong {
  color: #f3a466;
}

.departure-board .missing strong {
  color: #fff;
}

.you-are-here {
  align-items: center;
  grid-template-columns: 220px minmax(0, 1fr) minmax(260px, 360px);
}

.you-route {
  grid-column: 3;
  align-self: stretch;
  border: 1px solid var(--journey-line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(23, 23, 19, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.74);
  background-size: 24px 24px;
  padding: 24px;
}

.location-dot {
  position: relative;
  color: var(--journey-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.location-dot::before {
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--journey-orange);
  content: "";
}

.you-route ol {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.you-route ol::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 8px;
  width: 2px;
  background: var(--journey-orange);
  content: "";
}

.you-route li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--journey-ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  position: relative;
}

.you-route li::before {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 3px solid var(--journey-orange);
  border-radius: 50%;
  background: #fff;
  content: "";
  z-index: 1;
}

.itinerary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  max-width: 820px;
}

.ticket,
.ticket-list {
  border: 1px solid var(--journey-line);
  border-left: 5px solid var(--journey-orange);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(23, 23, 19, 0.06);
}

.ticket p {
  margin: 10px 0 0;
  color: var(--journey-ink);
  font-size: 23px;
  font-weight: 900;
}

.ticket-list {
  display: grid;
  gap: 12px;
  margin: 0;
  list-style: none;
}

.ticket-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
  color: var(--journey-ink);
  font-size: 20px;
  font-weight: 800;
}

.ticket-list span {
  color: var(--journey-orange);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.ticket-list.english {
  border-left-color: var(--journey-green);
}

.app-screens .section-copy {
  grid-column: 2;
  max-width: 760px;
}

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

.screen-shot {
  margin: 0;
}

.screen-phone {
  min-height: 520px;
  border: 10px solid #171713;
  border-radius: 38px;
  background: #f8f4ec;
  box-shadow: 0 22px 48px rgba(23, 23, 19, 0.16);
  padding: 22px 16px;
  overflow: hidden;
}

.screen-status {
  display: flex;
  justify-content: space-between;
  color: var(--journey-ink);
  font-size: 12px;
  font-weight: 900;
}

.screen-phone h3 {
  margin: 28px 0 20px;
  color: var(--journey-ink);
  font-size: 34px;
  line-height: 1;
}

.screen-card {
  margin-top: 12px;
  border: 1px solid var(--journey-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
}

.screen-card span {
  display: block;
  color: var(--journey-muted);
  font-size: 12px;
  font-weight: 900;
}

.screen-card strong {
  display: block;
  margin-top: 9px;
  color: var(--journey-ink);
  font-size: 18px;
  line-height: 1.42;
}

.screen-card p {
  margin: 10px 0 0;
  color: var(--journey-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
}

.screen-card.prompt {
  border-color: rgba(215, 122, 58, 0.34);
  box-shadow: 0 10px 24px rgba(215, 122, 58, 0.1);
}

.screen-card.soft {
  background: #f1eadf;
}

.screen-action {
  margin-top: 18px;
  border-radius: 999px;
  background: var(--journey-orange);
  color: #fff;
  padding: 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
}

.screen-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: #e5dfd4;
  padding: 4px;
}

.screen-tabs span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--journey-ink);
  padding: 8px 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
}

.screen-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 86px;
}

.screen-wave i {
  width: 8px;
  height: 44px;
  border-radius: 999px;
  background: var(--journey-orange);
}

.screen-wave i:nth-child(2),
.screen-wave i:nth-child(4) {
  height: 64px;
}

.screen-wave i:nth-child(3) {
  height: 76px;
}

.screen-shot figcaption {
  margin-top: 14px;
  color: var(--journey-muted);
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.detour-map {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(240px, 1fr) minmax(140px, 0.6fr);
  align-items: center;
  gap: 24px;
  max-width: 940px;
}

.unknown-word,
.destination-badge,
.detour-routes p {
  border: 1px solid var(--journey-line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.unknown-word strong,
.destination-badge strong {
  display: block;
  margin-top: 8px;
  color: var(--journey-ink);
  font-size: 24px;
}

.detour-routes {
  position: relative;
  display: grid;
  gap: 12px;
}

.detour-routes::before,
.detour-routes::after {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--journey-orange);
  content: "";
}

.detour-routes::before {
  left: -24px;
}

.detour-routes::after {
  right: -24px;
}

.detour-routes p {
  margin: 0;
  color: var(--journey-ink);
  font-size: 20px;
  font-weight: 900;
}

.detour-routes span {
  display: block;
  color: var(--journey-blue);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-badge {
  background: #edf4ef;
  border-color: rgba(63, 117, 106, 0.35);
}

.route-timeline {
  max-width: 900px;
  border-top: 3px solid var(--journey-orange);
  padding-top: 26px;
}

.route-timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 18px;
}

.route-timeline span {
  width: 18px;
  height: 18px;
  border: 3px solid var(--journey-orange);
  border-radius: 50%;
  background: var(--journey-bg);
}

.route-timeline p {
  margin: 0;
  color: var(--journey-ink);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.25;
}

.route-timeline .talk-time {
  display: block;
  margin-top: 32px;
  border: 1px solid rgba(215, 122, 58, 0.4);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  color: var(--journey-orange);
  font-size: clamp(28px, 5vw, 54px);
}

.passport {
  align-items: center;
}

.passport-book {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  max-width: 900px;
  min-height: 360px;
  border: 1px solid #334440;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(23, 23, 19, 0.12);
}

.passport-cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--journey-charcoal);
  color: #fff;
  padding: 28px;
}

.passport-cover span {
  color: #f3a466;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.passport-cover strong {
  font-size: 42px;
  line-height: 1;
}

.passport-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--journey-line);
}

.passport-stats div {
  background: #fff;
  padding: 26px;
}

.passport-stats strong {
  display: block;
  color: var(--journey-ink);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.passport-stats span {
  display: block;
  margin-top: 10px;
  color: var(--journey-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.passport .section-copy {
  grid-column: 2;
  max-width: 760px;
}

.voice-flow {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.voice-flow span {
  border: 1px solid var(--journey-line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 14px;
  color: var(--journey-ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.voice-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  max-width: 820px;
  border: 1px solid var(--journey-line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.waveform {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.waveform i {
  display: block;
  width: 8px;
  border-radius: 999px;
  background: var(--journey-orange);
  animation: voice-wave 1600ms ease-in-out infinite;
}

.waveform i:nth-child(1) { height: 24px; }
.waveform i:nth-child(2) { height: 52px; animation-delay: 120ms; }
.waveform i:nth-child(3) { height: 34px; animation-delay: 240ms; }
.waveform i:nth-child(4) { height: 62px; animation-delay: 360ms; }
.waveform i:nth-child(5) { height: 28px; animation-delay: 480ms; }

.voice-card p {
  margin: 0;
  color: var(--journey-ink);
  font-size: 21px;
  font-weight: 800;
}

.fare-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 940px;
}

.fare-table section {
  position: relative;
  border: 1px solid var(--journey-line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}

.fare-table .recommended {
  border-color: rgba(215, 122, 58, 0.62);
  box-shadow: 0 18px 42px rgba(215, 122, 58, 0.14);
}

.fare-table .recommended::after {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(215, 122, 58, 0.45);
  border-radius: 999px;
  color: var(--journey-orange);
  content: "7 DAYS FREE";
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 5px 9px;
}

.fare-table h3 {
  margin: 10px 0 0;
  color: var(--journey-ink);
  font-size: 32px;
}

.fare {
  margin: 8px 0 20px;
  color: var(--journey-ink);
  font-size: 38px;
  font-weight: 900;
}

.fare small {
  color: var(--journey-muted);
  font-size: 16px;
}

.fare-table ul {
  margin: 0;
  padding-left: 1.2em;
  color: #3f3d38;
}

.fare-table li {
  margin: 8px 0;
}

.plan-compare {
  display: grid;
  max-width: 940px;
  margin-top: 18px;
  border: 1px solid var(--journey-line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(23, 23, 19, 0.08);
}

.plan-compare > div {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) minmax(90px, 0.55fr) minmax(90px, 0.55fr);
  min-height: 54px;
  border-top: 1px solid var(--journey-line);
}

.plan-compare > div:first-child {
  border-top: 0;
}

.plan-compare span,
.plan-compare strong {
  display: flex;
  align-items: center;
  padding: 14px 18px;
}

.plan-compare span {
  color: var(--journey-ink);
  font-weight: 800;
}

.plan-compare strong {
  justify-content: center;
  border-left: 1px solid var(--journey-line);
  color: var(--journey-orange);
  font-size: 18px;
}

.plan-compare-head {
  background: var(--journey-charcoal);
}

.plan-compare-head span,
.plan-compare-head strong {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.faq .section-copy {
  grid-column: 2;
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--journey-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(23, 23, 19, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--journey-ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.faq-list summary::marker {
  color: var(--journey-orange);
}

.faq-list p {
  margin: 0;
  border-top: 1px solid var(--journey-line);
  padding: 0 22px 22px;
  color: var(--journey-muted);
  font-size: 16px;
  line-height: 1.8;
}

.destination {
  text-align: center;
}

.destination-line {
  display: grid;
  grid-template-columns: auto minmax(80px, 320px) auto;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 42px;
  color: var(--journey-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.destination-line i {
  height: 3px;
  background: var(--journey-orange);
}

.destination-line strong {
  color: var(--journey-orange);
}

.destination p {
  margin-left: auto;
  margin-right: auto;
}

.destination .journey-cta {
  margin-top: 30px;
}

@keyframes route-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes voice-wave {
  0%, 100% { transform: scaleY(0.62); opacity: 0.72; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .journey-line,
  .waveform i {
    animation: none;
  }
}

@media (max-width: 980px) {
  .journey-line {
    left: 28px;
  }

  .journey-hero,
  .journey-section,
  .passport-book,
  .fare-table {
    grid-template-columns: 1fr;
  }

  .boarding-pass {
    grid-column: 1;
    margin-top: 0;
  }

  .section-label {
    position: static;
  }

  .departure-board,
  .itinerary,
  .detour-map,
  .route-timeline,
  .passport-book,
  .passport .section-copy,
  .faq .section-copy,
  .app-screens .section-copy,
  .screen-gallery,
  .faq-list,
  .voice-flow,
  .voice-card,
  .you-route,
  .plan-compare,
  .fare-table {
    grid-column: 1;
  }

  .screen-gallery {
    grid-template-columns: 1fr;
  }

  .screen-phone {
    max-width: 330px;
    min-height: auto;
    margin: 0 auto;
  }

  .detour-map,
  .voice-card {
    grid-template-columns: 1fr;
  }

  .detour-routes::before,
  .detour-routes::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .journey-hero,
  .journey-section,
  .destination,
  .policy-links {
    padding: 64px 18px;
  }

  .journey-line {
    left: 18px;
    opacity: 0.48;
  }

  .journey-actions,
  .policy-links {
    align-items: stretch;
    flex-direction: column;
  }

  .journey-cta,
  .journey-link,
  .app-store-badge {
    width: 100%;
  }

  .app-store-badge {
    justify-content: center;
  }

  .route-map {
    min-height: 380px;
  }

  .route-map::before {
    inset: 66px 40px 70px 52px;
  }

  .route-station.current {
    left: 72px;
  }

  .route-station.mid {
    top: 168px;
    left: 92px;
  }

  .route-station.end {
    right: 18px;
  }

  .you-route {
    grid-template-columns: 1fr;
  }

  .ticket-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    font-size: 18px;
  }

  .passport-stats {
    grid-template-columns: 1fr;
  }

  .plan-compare {
    overflow-x: auto;
  }

  .plan-compare > div {
    grid-template-columns: minmax(170px, 1.35fr) minmax(82px, 0.55fr) minmax(82px, 0.55fr);
    min-width: 360px;
  }

  .destination-line {
    grid-template-columns: 1fr;
  }

  .destination-line i {
    width: 3px;
    height: 48px;
    margin: 0 auto;
  }
}

/* 2026 product landing page */
.product-lp {
  --lp-bg: #fbf7ef;
  --lp-ink: #171713;
  --lp-muted: #686259;
  --lp-line: #e2d8c9;
  --lp-orange: #dc7f3f;
  --lp-orange-soft: #f5ddcb;
  --lp-green: #3f756a;
  --lp-charcoal: #151c1a;
  --lp-blue: #526f86;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 23, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.035) 1px, transparent 1px),
    var(--lp-bg);
  background-size: 44px 44px, 44px 44px, auto;
}

.product-hero,
.problem-band,
.sticky-story,
.rephrase-section,
.connect-demo,
.app-proof,
.growth-bento,
.pricing-section,
.faq-section,
.final-product-cta,
.product-policy {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px;
}

.product-hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: 56px;
}

.hero-eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--lp-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.problem-band h2,
.flow-copy h2,
.section-heading h2,
.growth-copy h2,
.final-product-cta h2 {
  margin: 0;
  color: var(--lp-ink);
  font-size: 76px;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
}

.hero-hook {
  color: var(--lp-orange);
}

.hero-lead,
.problem-band p,
.growth-copy p,
.final-product-cta p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--lp-muted);
  font-size: 21px;
  line-height: 1.85;
}

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

.product-cta,
.product-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
}

.product-cta {
  background: var(--lp-orange);
  color: #fff;
  box-shadow: 0 16px 34px rgba(220, 127, 63, 0.24);
}

.product-link {
  border: 1px solid #cfc4b6;
  background: rgba(255, 255, 255, 0.66);
  color: var(--lp-ink);
}

.hero-demo {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.demo-phone,
.flow-phone,
.mini-phone {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 48px;
  background:
    linear-gradient(#f7f4ed, #f7f4ed) padding-box,
    linear-gradient(135deg, #f8f4ec 0%, #8e877d 22%, #1c1b18 48%, #cbc1b4 76%, #ffffff 100%) border-box;
  box-shadow:
    inset 0 0 0 8px #151512,
    inset 0 0 0 10px rgba(255, 255, 255, 0.12),
    0 30px 74px rgba(23, 23, 19, 0.24),
    0 8px 16px rgba(23, 23, 19, 0.12);
  isolation: isolate;
  overflow: hidden;
}

.demo-phone::before,
.flow-phone::before,
.mini-phone::before {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 50%;
  width: 104px;
  height: 31px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, #2c2b31 0 7px, transparent 8px),
    linear-gradient(180deg, #050507, #17171c);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.12),
    0 2px 5px rgba(0, 0, 0, 0.22);
  content: "";
  transform: translateX(-50%);
}

.demo-phone::after,
.flow-phone::after,
.mini-phone::after {
  position: absolute;
  z-index: 0;
  right: -5px;
  top: 142px;
  width: 4px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(#8d867c, #ded4c6 38%, #7b746a);
  content: "";
}

.demo-phone > *,
.flow-phone > *,
.mini-phone > * {
  position: relative;
  z-index: 1;
}

.demo-screen {
  display: contents;
}

.demo-phone {
  width: min(100%, 342px);
  min-height: auto;
  aspect-ratio: 900 / 1840;
  border: 0;
  border-radius: 0;
  background: url("/assets/iphone-17.png") center / 100% 100% no-repeat;
  box-shadow: none;
  overflow: visible;
  padding: 0;
  transform: translateY(-6px);
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.demo-phone::before {
  position: absolute;
  z-index: 3;
  top: 4.7%;
  left: 50%;
  width: 28%;
  height: auto;
  aspect-ratio: 150 / 42;
  border-radius: 999px;
  background:
    radial-gradient(circle at 78% 50%, #141527 0 7px, transparent 8px),
    linear-gradient(180deg, #050507, #17171c);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.12),
    0 2px 5px rgba(0, 0, 0, 0.2);
  content: "";
  transform: translateX(-50%);
}

.demo-phone::after {
  content: none;
}

.demo-phone:hover {
  transform: translateY(-12px);
}

.demo-phone .demo-screen {
  display: block;
  position: absolute;
  z-index: 1;
  top: 3.6%;
  left: 6.4%;
  width: 87.2%;
  height: 92.3%;
  border-radius: 46px;
  background: #f7f4ed;
  overflow: hidden;
  padding: 78px 22px 22px;
  transform: translateZ(18px);
}

.demo-phone .demo-card,
.demo-phone .demo-app-title,
.demo-phone .demo-mic,
.demo-phone .demo-button,
.demo-phone .demo-status {
  transform: none;
}

.demo-status,
.demo-app-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.demo-status {
  color: var(--lp-ink);
  font-size: 13px;
  font-weight: 900;
  padding: 0 12px;
}

.demo-app-title {
  justify-content: flex-start;
  margin-top: 24px;
}

.demo-app-title img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.demo-app-title span,
.demo-card span,
.flow-stage span,
.mini-panel span {
  display: block;
  color: #8a8177;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.demo-app-title strong {
  display: block;
  color: var(--lp-ink);
  font-size: 15px;
}

.demo-card {
  margin-top: 12px;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.demo-card strong {
  display: block;
  margin-top: 8px;
  color: var(--lp-ink);
  font-size: 17px;
  line-height: 1.48;
}

.demo-card .typing-text {
  width: 0;
  max-width: max-content;
  overflow: hidden;
  border-right: 2px solid var(--lp-orange);
  white-space: nowrap;
  animation:
    typing-reveal 3600ms steps(19, end) 500ms forwards,
    typing-caret 780ms step-end infinite;
}

.demo-card p {
  margin: 8px 0 0;
  color: #2b2924;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.demo-card-unpack {
  background: #f4efe6;
}

.demo-card-en {
  border-color: rgba(220, 127, 63, 0.44);
  box-shadow: 0 14px 32px rgba(220, 127, 63, 0.12);
}

.demo-mic,
.mini-wave {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 18px 0 0;
}

.demo-mic span,
.mini-wave i {
  width: 6px;
  height: 30px;
  border-radius: 999px;
  background: var(--lp-orange);
  animation: product-wave 1200ms ease-in-out infinite;
}

.demo-mic span:nth-child(2),
.mini-wave i:nth-child(2) { animation-delay: 120ms; }
.demo-mic span:nth-child(3),
.mini-wave i:nth-child(3) { animation-delay: 240ms; }
.demo-mic span:nth-child(4),
.mini-wave i:nth-child(4) { animation-delay: 360ms; }
.demo-mic span:nth-child(5),
.mini-wave i:nth-child(5) { animation-delay: 480ms; }

.demo-button,
.mini-action {
  margin-top: 16px;
  border-radius: 999px;
  background: var(--lp-orange);
  color: #fff;
  padding: 14px 18px;
  text-align: center;
  font-weight: 900;
}

.problem-band {
  text-align: center;
}

.problem-band h2 {
  max-width: 940px;
  margin: 0 auto;
  font-size: 54px;
}

.problem-band p {
  margin-left: auto;
  margin-right: auto;
}

.sticky-story {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.sticky-ui {
  position: sticky;
  top: 96px;
}

.flow-phone {
  width: min(100%, 342px);
  min-height: auto;
  aspect-ratio: 900 / 1840;
  border: 0;
  border-radius: 0;
  background: url("/assets/iphone-17.png") center / 100% 100% no-repeat;
  box-shadow: none;
  overflow: visible;
  padding: 78px 40px 42px;
}

.flow-phone::before {
  position: absolute;
  z-index: 0;
  inset: 3.6% 6.4% 4.1%;
  width: auto;
  height: auto;
  border-radius: 46px;
  background: #f7f4ed;
  box-shadow: none;
  content: "";
  transform: none;
}

.flow-phone::after {
  position: absolute;
  z-index: 3;
  top: 4.7%;
  right: auto;
  left: 50%;
  width: 28%;
  height: auto;
  aspect-ratio: 150 / 42;
  border-radius: 999px;
  background:
    radial-gradient(circle at 78% 50%, #141527 0 7px, transparent 8px),
    linear-gradient(180deg, #050507, #17171c);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.12),
    0 2px 5px rgba(0, 0, 0, 0.2);
  content: "";
  transform: translateX(-50%);
}

.flow-stage {
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.flow-stage + .flow-stage {
  margin-top: 14px;
}

.flow-stage strong,
.flow-stage p {
  display: block;
  margin: 8px 0 0;
  color: var(--lp-ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.55;
}

.flow-stage-chunks {
  background: #f3eee6;
}

.flow-stage-english,
.flow-stage-connect {
  border-color: rgba(220, 127, 63, 0.38);
}

.flow-copy h2,
.section-heading h2,
.growth-copy h2,
.final-product-cta h2 {
  font-size: 52px;
}

.flow-copy article {
  border-top: 1px solid var(--lp-line);
  padding: 28px 0;
}

.flow-copy article:first-of-type {
  margin-top: 34px;
}

.flow-copy article span {
  color: var(--lp-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.flow-copy h3 {
  margin: 8px 0;
  color: var(--lp-ink);
  font-size: 28px;
  line-height: 1.3;
}

.flow-copy article p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 18px;
  line-height: 1.8;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 42px;
  text-align: center;
}

.rephrase-section,
.connect-demo,
.app-proof,
.pricing-section,
.faq-section {
  background: rgba(255, 255, 255, 0.48);
}

.branch-ui,
.sentence-morph {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(23, 23, 19, 0.08);
  padding: 34px;
}

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

.branch-center {
  grid-column: 1 / -1;
  justify-self: center;
  border-radius: 999px;
  background: var(--lp-charcoal);
  color: #fff;
  padding: 14px 24px;
  font-size: 24px;
  font-weight: 900;
}

.branch-line {
  grid-column: 1 / -1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lp-orange), transparent);
}

.branch-ui p {
  margin: 0;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fbf8f1;
  padding: 18px;
  color: var(--lp-ink);
  font-size: 21px;
  font-weight: 900;
}

.sentence-morph {
  display: grid;
  gap: 18px;
}

.sentence-chips,
.connector-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sentence-chips span,
.connector-row span {
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.sentence-chips span {
  background: #f4efe6;
  color: var(--lp-ink);
}

.connector-row span {
  background: var(--lp-orange-soft);
  color: #7d441f;
}

.connected-story {
  border-left: 5px solid var(--lp-orange);
  background: #fbf8f1;
  padding: 18px 20px;
  color: var(--lp-ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.62;
}

.talk-timer {
  justify-self: end;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--lp-green);
}

.talk-timer strong {
  font-size: 42px;
  line-height: 1;
}

.talk-timer span {
  font-weight: 900;
}

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

.mock-phone-card {
  margin: 0;
  text-align: center;
  perspective: 1000px;
}

.mini-phone {
  width: min(100%, 278px);
  min-height: auto;
  aspect-ratio: 900 / 1840;
  border: 0;
  border-radius: 0;
  background: url("/assets/iphone-17.png") center / 100% 100% no-repeat;
  box-shadow: none;
  overflow: visible;
  margin: 0 auto;
  padding: 64px 30px 34px;
  transform: translateY(0);
  transform-style: preserve-3d;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.mini-phone::before {
  position: absolute;
  z-index: 0;
  inset: 3.6% 6.4% 4.1%;
  width: auto;
  height: auto;
  border-radius: 36px;
  background: #f7f4ed;
  box-shadow: none;
  content: "";
  transform: none;
}

.mini-phone::after {
  position: absolute;
  z-index: 3;
  top: 4.7%;
  right: auto;
  left: 50%;
  width: 28%;
  height: auto;
  aspect-ratio: 150 / 42;
  border-radius: 999px;
  background:
    radial-gradient(circle at 78% 50%, #141527 0 5px, transparent 6px),
    linear-gradient(180deg, #050507, #17171c);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.12),
    0 2px 5px rgba(0, 0, 0, 0.2);
  content: "";
  transform: translateX(-50%);
}

.mock-phone-card:nth-child(1) .mini-phone {
  transform: translateY(0);
}

.mock-phone-card:nth-child(2) .mini-phone {
  transform: translateY(-10px);
}

.mock-phone-card:nth-child(3) .mini-phone {
  transform: translateY(0);
}

.mock-phone-card:hover .mini-phone {
  transform: translateY(-12px);
}

.mini-phone h3,
.mini-panel,
.mini-action,
.mini-tabs,
.mini-wave {
  transform: translateZ(14px);
}

.mini-phone h3 {
  margin: 0 0 16px;
  color: var(--lp-ink);
  font-size: 27px;
  text-align: left;
}

.mini-panel {
  margin-top: 12px;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 15px;
  color: var(--lp-ink);
  font-weight: 850;
  line-height: 1.55;
  text-align: left;
}

.mini-panel.strong {
  font-size: 18px;
}

.mini-panel.muted {
  background: #f4efe6;
  color: var(--lp-muted);
}

.mini-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: #e7ded1;
  padding: 4px;
  font-size: 12px;
  font-weight: 900;
}

.mini-tabs span {
  border-radius: 999px;
  background: #fff;
  padding: 8px 4px;
}

.mock-phone-card figcaption {
  margin-top: 14px;
  color: var(--lp-muted);
  font-weight: 900;
}

.growth-bento {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: center;
}

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

.bento-grid div {
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(23, 23, 19, 0.07);
}

.bento-grid .bento-large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--lp-charcoal);
  color: #fff;
}

.bento-grid strong {
  display: block;
  color: inherit;
  font-size: 42px;
  line-height: 1;
}

.bento-grid span {
  display: block;
  margin-top: 10px;
  color: inherit;
  opacity: 0.72;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.product-fares,
.product-compare,
.product-faq {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.final-product-cta {
  text-align: center;
}

.final-product-cta p {
  margin-left: auto;
  margin-right: auto;
}

.final-product-cta .hero-actions {
  justify-content: center;
}

.product-policy {
  padding-top: 20px;
}

@keyframes product-wave {
  0%, 100% { transform: scaleY(0.45); opacity: 0.62; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes typing-reveal {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes typing-caret {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--lp-orange); }
}

@media (prefers-reduced-motion: reduce) {
  .demo-mic span,
  .mini-wave i,
  .demo-card .typing-text {
    animation: none;
  }

  .demo-card .typing-text {
    width: auto;
    border-right: 0;
    white-space: normal;
  }

  .demo-phone,
  .demo-phone:hover,
  .mini-phone,
  .mock-phone-card:nth-child(1) .mini-phone,
  .mock-phone-card:nth-child(2) .mini-phone,
  .mock-phone-card:nth-child(3) .mini-phone,
  .mock-phone-card:hover .mini-phone {
    transform: none;
  }
}

@media (max-width: 980px) {
  .product-hero,
  .sticky-story,
  .growth-bento,
  .mockup-row {
    grid-template-columns: 1fr;
  }

  .product-hero {
    min-height: auto;
  }

  .sticky-ui {
    position: static;
  }

  .demo-phone,
  .flow-phone {
    max-width: 390px;
    margin: 0 auto;
  }

  .demo-phone {
    transform: translateY(0);
  }

  .mockup-row {
    max-width: 390px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .product-hero,
  .problem-band,
  .sticky-story,
  .rephrase-section,
  .connect-demo,
  .app-proof,
  .growth-bento,
  .pricing-section,
  .faq-section,
  .final-product-cta,
  .product-policy {
    padding: 68px 18px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .problem-band h2,
  .flow-copy h2,
  .section-heading h2,
  .growth-copy h2,
  .final-product-cta h2 {
    font-size: 36px;
  }

  .hero-lead,
  .problem-band p,
  .growth-copy p,
  .final-product-cta p {
    font-size: 18px;
  }

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

  .product-cta,
  .product-link,
  .app-store-badge {
    width: 100%;
  }

  .app-store-badge {
    justify-content: center;
  }

  .demo-phone,
  .flow-phone,
  .mini-phone {
    border-radius: 42px;
  }

  .demo-phone,
  .flow-phone {
    min-height: auto;
  }

  .demo-phone,
  .demo-phone:hover {
    transform: none;
  }

  .demo-card .typing-text {
    white-space: normal;
    animation: none;
    width: auto;
    border-right: 0;
  }

  .branch-ui,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .connected-story {
    font-size: 18px;
  }

  .talk-timer {
    justify-self: start;
  }
}
