@font-face {
  font-family: 'Pako Poppins';
  src: url('/fonts/poppins-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Pako Poppins';
  src: url('/fonts/poppins-500.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Pako Poppins';
  src: url('/fonts/poppins-600.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Pako Poppins';
  src: url('/fonts/poppins-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  font-family: 'Pako Poppins', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #10244d;
  background: #f7f3ea;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #10244d;
  --ink-soft: #183563;
  --blue: #1e79c8;
  --blue-deep: #155fa6;
  --coral: #f2384e;
  --coral-deep: #d9263e;
  --yellow: #f7d364;
  --aqua: #3eaaa9;
  --sky: #e5f3f3;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --white: #ffffff;
  --muted: #5d6b80;
  --line: rgba(16, 36, 77, 0.14);
  --shadow-sm: 0 12px 30px rgba(16, 36, 77, 0.08);
  --shadow-md: 0 28px 70px rgba(16, 36, 77, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--cream);
}

body,
button,
a {
  font: inherit;
}

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

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

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

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

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

.jp {
  font-family: 'Hiragino Sans', 'Yu Gothic', 'Noto Sans JP', sans-serif;
  letter-spacing: -0.03em;
}

.site-shell {
  overflow: clip;
}

.page-width {
  margin-inline: auto;
  width: min(1240px, calc(100% - 56px));
}

.section-pad {
  padding-block: 108px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid rgba(16, 36, 77, 0.08);
  display: flex;
  gap: 34px;
  height: 82px;
  justify-content: space-between;
  margin: 0 auto;
  padding: 14px max(28px, calc((100vw - 1240px) / 2));
  position: sticky;
  top: 0;
  z-index: 40;
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 56px;
  justify-content: center;
  overflow: visible;
  width: 114px;
}

.brand-mark img {
  flex: 0 0 auto;
  height: 190px;
  max-width: none;
  object-fit: contain;
  width: 190px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a,
.footer-links a {
  color: #29486f;
  font-size: 12px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a::after {
  background: var(--coral);
  bottom: -8px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: -0.015em;
  min-height: 52px;
  padding: 0 23px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--coral);
  box-shadow: 0 13px 28px rgba(242, 56, 78, 0.22);
  color: #fff;
}

.button-primary:hover {
  background: var(--coral-deep);
  box-shadow: 0 16px 34px rgba(242, 56, 78, 0.3);
}

.button-light {
  background: #fff;
  color: var(--ink);
}

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

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.faq-item button:focus-visible,
.faq-heading a:focus-visible {
  outline: 3px solid rgba(30, 121, 200, 0.34);
  outline-offset: 4px;
}

.header-cta {
  min-height: 44px;
  padding-inline: 18px;
}

.header-cta-short {
  display: none;
}

.eyebrow {
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  grid-column: 1;
  margin-bottom: -50px;
}

.section-heading h2 {
  font-size: clamp(43px, 4.4vw, 63px);
  line-height: 1;
  margin: 0;
  max-width: 820px;
}

.section-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  max-width: 430px;
}

.section-heading-light .eyebrow {
  color: var(--yellow);
}

.section-heading-light h2,
.section-heading-light .section-copy {
  color: #fff;
}

.section-heading-center {
  display: block;
  margin-inline: auto;
  max-width: 810px;
  text-align: center;
}

.section-heading-center .eyebrow {
  margin-bottom: 16px;
}

.section-heading-center .section-copy {
  margin: 23px auto 0;
  max-width: 640px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(64px, 7vw, 104px);
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  min-height: 718px;
  padding-block: 60px 108px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-kicker {
  background: var(--yellow);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  letter-spacing: 0.13em;
  padding: 8px 13px 7px;
}

.hero h1 {
  font-size: clamp(54px, 4.85vw, 70px);
  line-height: 0.99;
  margin: 0 0 28px;
  max-width: 720px;
}

.hero h1 > span {
  display: block;
}

.hero-destination {
  margin-top: 0.08em;
}

.hero-destination mark {
  background: linear-gradient(transparent 62%, rgba(247, 211, 100, 0.9) 62%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: inherit;
  padding-inline: 0.045em;
}

.hero-lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  margin-bottom: 30px;
  max-width: 570px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
}

.hero-actions .button {
  min-height: 56px;
  padding-inline: 26px;
}

.text-link {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero-offer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin-top: 28px;
  max-width: 560px;
  padding-top: 19px;
}

.hero-offer p {
  margin: 0;
}

.hero-price-line {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.hero-price-line strong {
  color: var(--ink);
  font-size: 12px;
}

.hero-reassurance {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 7px;
}

.hero-reassurance svg {
  color: var(--aqua);
  flex: 0 0 auto;
}

.hero-visual {
  min-height: 568px;
  position: relative;
}

.hero-photo {
  border: 10px solid var(--paper);
  border-radius: 40px 40px 14px 40px;
  box-shadow: var(--shadow-md);
  height: 552px;
  overflow: hidden;
  position: relative;
}

.hero-photo::after {
  background: linear-gradient(180deg, transparent 62%, rgba(16, 36, 77, 0.28));
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  width: 100%;
}

.hero-caption {
  background: var(--paper);
  border: 1px solid rgba(16, 36, 77, 0.1);
  border-radius: 18px;
  bottom: -26px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 4px;
  left: -30px;
  max-width: 390px;
  padding: 20px 24px;
  position: absolute;
}

.hero-caption span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-caption strong {
  font-size: 14px;
  line-height: 1.45;
}

.hero-sticker {
  align-items: center;
  aspect-ratio: 1;
  background: var(--yellow);
  border: 6px solid var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  right: -28px;
  text-align: center;
  top: 42px;
  transform: rotate(7deg);
  width: 126px;
}

.hero-sticker .jp {
  font-size: 20px;
  font-weight: 700;
}

.hero-sticker small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem {
  background: var(--sky);
  padding-block: 96px;
}

.problem-panel {
  align-items: center;
  display: grid;
  gap: clamp(44px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  position: relative;
}

.problem-copy {
  align-self: center;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.problem-copy h2 {
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.02;
  margin: 0 0 24px;
}

.problem-lede {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 10px;
}

.problem-copy-body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 22px;
}

.problem-closing {
  border-top: 1px solid rgba(16, 36, 77, 0.15);
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  padding-top: 16px;
}

.problem-art {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 400px;
  position: relative;
}

.problem-scene {
  position: relative;
}

.problem-scene img {
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  width: 100%;
}

.problem-scene-scattered {
  transform: rotate(-3deg);
}

.problem-scene-route {
  transform: rotate(3deg);
}

.problem-scene-label {
  background: var(--paper);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  left: 50%;
  padding: 9px 13px;
  position: absolute;
  bottom: -8px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.problem-scene-scattered .problem-scene-label {
  color: var(--coral);
}

.problem-scene-route .problem-scene-label {
  color: var(--aqua);
}

.problem-transition {
  color: var(--coral);
  display: flex;
  transform: rotate(-8deg);
}

.method {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-block: 104px 92px;
  position: relative;
}

.method::before {
  color: rgba(255, 255, 255, 0.025);
  content: '道';
  font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-size: min(32vw, 440px);
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: -40px;
  top: -100px;
}

.method .page-width {
  position: relative;
}

.method-heading {
  align-items: end;
  display: grid;
  gap: clamp(52px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  margin-bottom: 62px;
}

.method-heading .eyebrow {
  color: var(--yellow);
}

.method-heading h2 {
  font-size: clamp(44px, 4.55vw, 65px);
  line-height: 0.99;
  margin: 0;
  max-width: 720px;
}

.method-heading-side {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 30px;
}

.method-sequence {
  align-items: center;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}

.method-sequence i {
  color: var(--yellow);
  font-size: 17px;
  font-style: normal;
  line-height: 1;
}

.method-heading-side > p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  max-width: 430px;
}

.route-steps {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.route-steps::before {
  background: rgba(247, 211, 100, 0.5);
  content: '';
  height: 1px;
  left: 9%;
  position: absolute;
  right: 9%;
  top: 170px;
}

.route-step {
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  position: relative;
}

.step-visual {
  margin-inline: auto;
  margin-bottom: 22px;
  max-width: 190px;
  position: relative;
}

.step-visual img {
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  width: 100%;
}

.step-marker {
  align-items: center;
  background: var(--coral);
  border: 4px solid var(--ink);
  border-radius: 50%;
  bottom: -13px;
  color: #fff;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  left: 12px;
  position: absolute;
  width: 44px;
  z-index: 2;
}

.route-step-2 .step-marker {
  background: var(--aqua);
  color: var(--ink);
}

.route-step-3 .step-marker {
  background: var(--yellow);
  color: var(--ink);
}

.route-step-4 .step-marker {
  background: var(--blue);
}

.step-copy {
  padding-inline: 3px;
}

.step-verb {
  color: var(--aqua) !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 7px !important;
  text-transform: uppercase;
}

.route-step-1 .step-verb { color: var(--yellow) !important; }
.route-step-3 .step-verb { color: var(--yellow) !important; }
.route-step-4 .step-verb { color: var(--coral) !important; }

.route-step h3 {
  font-size: 21px;
  line-height: 1.12;
  margin: 0 0 9px;
}

.step-copy > p:last-child {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  max-width: 230px;
}

.step-arrow {
  color: var(--yellow);
  position: absolute;
  right: -27px;
  top: 168px;
  z-index: 3;
}

.method-footer-note {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  margin-top: 48px;
}

.method-footer-note svg {
  color: var(--yellow);
}

.method-cta {
  margin-top: 18px;
}

.outcomes {
  background: var(--paper);
}

.outcomes-heading {
  align-items: end;
  display: grid;
  gap: clamp(42px, 7vw, 104px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  margin-bottom: 46px;
}

.outcomes-heading h2 {
  font-size: clamp(43px, 4.35vw, 61px);
  line-height: 1;
  margin: 0;
  max-width: 780px;
}

.outcomes-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
  margin: 0;
  max-width: 400px;
}

.outcome-grid {
  display: grid;
  align-items: stretch;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-card {
  background: linear-gradient(145deg, #fffdf8 0%, var(--cream) 100%);
  border: 1px solid var(--line);
  border-radius: 27px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.outcome-scene {
  border-radius: 16px;
  height: 140px;
  margin: -26px -26px 20px;
  overflow: hidden;
  position: relative;
}

.outcome-scene img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  width: 300%;
}

.outcome-scene-2 img {
  transform: translateX(-33.333%);
}

.outcome-scene-3 img {
  transform: translateX(-66.666%);
}

.outcome-card::before {
  background: var(--card-accent);
  content: '';
  height: 8px;
  inset: 0 0 auto;
  position: absolute;
}

.outcome-yellow { --card-accent: var(--yellow); }
.outcome-coral { --card-accent: var(--coral); }
.outcome-aqua { --card-accent: var(--aqua); }

.outcome-number {
  color: var(--card-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.outcome-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.outcome-japanese {
  color: var(--ink);
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  min-height: 1.8em;
}

.outcome-card h3 {
  font-size: 21px;
  line-height: 1.15;
  margin: auto 0 0;
  max-width: 310px;
}

.ecosystem {
  background: var(--sky);
}

.ecosystem-shell {
  display: block;
}

.ecosystem-intro {
  align-items: end;
  display: grid;
  gap: clamp(46px, 8vw, 126px);
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  margin-bottom: 46px;
}

.ecosystem-intro h2 {
  font-size: clamp(43px, 4.4vw, 62px);
  line-height: 1;
  margin: 0 0 24px;
}

.ecosystem-intro > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}

.ecosystem-note {
  align-items: center;
  border-top: 1px solid rgba(16, 36, 77, 0.15);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 9px;
  line-height: 1.5;
  padding-top: 20px;
}

.ecosystem-note svg {
  color: var(--aqua);
  flex: 0 0 auto;
}

.ecosystem-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ecosystem-item {
  background: var(--paper);
  border: 1px solid rgba(16, 36, 77, 0.1);
  border-radius: 24px;
  display: block;
  overflow: hidden;
  position: relative;
}

.ecosystem-item-art {
  aspect-ratio: 1.38;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.ecosystem-item-body {
  align-items: flex-start;
  display: grid;
  gap: 14px;
  grid-template-columns: 42px 1fr;
  min-height: 126px;
  padding: 19px 20px 21px;
}

.ecosystem-item-1 {
  background: var(--paper);
}

.ecosystem-icon {
  align-items: center;
  background: var(--paper);
  border-radius: 12px;
  color: var(--blue);
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.ecosystem-item-1 .ecosystem-icon {
  background: var(--yellow);
}

.ecosystem-item-2 {
  background: var(--ink-soft);
  color: #fff;
}

.ecosystem-item-2 .ecosystem-icon {
  background: var(--yellow);
  color: var(--ink);
}

.ecosystem-item-3 {
  background: #cce9e8;
}

.ecosystem-item-4 {
  background: var(--blue);
  color: #fff;
}

.ecosystem-item-4 .ecosystem-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.ecosystem-item p {
  color: var(--coral);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.ecosystem-item-2 p {
  color: var(--yellow);
}

.ecosystem-item-4 p {
  color: var(--yellow);
}

.ecosystem-item h3 {
  font-size: 18px;
  line-height: 1.15;
  margin: 0 0 5px;
}

.ecosystem-item-2 h3,
.ecosystem-item-4 h3 {
  color: #fff;
}

.ecosystem-item span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.ecosystem-item-2 span,
.ecosystem-item-4 span {
  color: rgba(255, 255, 255, 0.72);
}


.proof {
  background: var(--cream);
  padding-block: 84px 92px;
}

.proof .section-heading-center {
  max-width: 860px;
  margin-bottom: 0;
}

.proof .section-heading-center h2 {
  font-size: clamp(43px, 4.05vw, 58px);
  line-height: 1.02;
}

.proof .section-heading-center .section-copy {
  font-size: 13px;
  line-height: 1.68;
  max-width: 650px;
}

.proof-rating {
  align-items: center;
  display: flex;
  font-size: 11px;
  gap: 8px;
  justify-content: center;
  margin: 28px 0 32px;
}

.proof-stars {
  color: #f2ad20;
  display: inline-flex;
  gap: 2px;
}

.proof-rating strong {
  font-size: 14px;
}

.proof-rating > span:last-child {
  color: var(--muted);
}

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

.proof-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 262px;
  padding: 25px 25px 22px;
  position: relative;
}

.proof-item::before {
  background: var(--proof-accent);
  border-radius: 999px;
  content: '';
  height: 5px;
  inset: 0 28px auto;
  position: absolute;
}

.proof-item-1 { --proof-accent: var(--yellow); }
.proof-item-2 { --proof-accent: var(--coral); }
.proof-item-3 { --proof-accent: var(--aqua); }

.quote-mark {
  color: var(--proof-accent);
  font-family: Georgia, serif;
  font-size: 48px;
  height: 40px;
  line-height: 1;
  margin-bottom: 6px;
}

.proof-quote {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.62;
  margin: 0 0 24px;
}

.proof-person {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
}

.proof-avatar {
  align-items: center;
  background: var(--proof-accent);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.proof-item-2 .proof-avatar {
  color: #fff;
}

.proof-person h3 {
  font-size: 13px;
  letter-spacing: -0.025em;
  margin: 0 0 3px;
}

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

.proof-source {
  color: var(--muted);
  font-size: 9px;
  margin: 18px 0 0;
  text-align: center;
}

.offer {
  background: var(--cream);
  padding-block: 100px 112px;
}

.offer-card {
  align-items: start;
  background: transparent;
  color: var(--ink);
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  max-width: 930px;
  padding: 0;
  position: relative;
}

.offer-card::before {
  display: none;
}

.offer-copy {
  position: relative;
  z-index: 1;
}

.offer-copy .eyebrow {
  color: var(--coral);
}

.offer-copy h2 {
  font-size: clamp(43px, 4.2vw, 58px);
  line-height: 1;
  margin: 0 0 18px;
  max-width: 600px;
}

.offer-lede {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 27px;
  max-width: 480px;
}

.offer-copy ul {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  max-width: 670px;
  padding: 0;
}

.offer-copy li {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 12px;
  gap: 8px;
}

.offer-copy li svg {
  color: var(--aqua);
  flex: 0 0 auto;
}

.offer-price {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 40px 32px 29px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.free-badge {
  background: var(--yellow);
  border-radius: 999px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.11em;
  padding: 10px 16px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.offer-price > p {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  margin: 8px 0 4px;
  text-transform: uppercase;
}

.offer-price > strong {
  font-size: 104px;
  letter-spacing: -0.09em;
  line-height: 0.93;
}

.offer-price > strong span {
  color: var(--coral);
  font-size: 35px;
  margin-right: 4px;
  vertical-align: top;
}

.offer-price > small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  margin: 4px 0 25px;
}

.offer-price .button {
  min-height: 54px;
  width: 100%;
}

.cancel-note {
  color: var(--muted);
  font-size: 9px;
  margin-top: 15px;
}

.faq {
  background: var(--cream);
}

.faq-layout {
  align-items: start;
  display: grid;
  gap: clamp(70px, 10vw, 150px);
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
}

.faq-heading {
  position: sticky;
  top: 122px;
}

.faq-heading h2 {
  font-size: clamp(43px, 4.2vw, 60px);
  line-height: 1;
  margin: 0 0 27px;
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  max-width: 400px;
}

.faq-heading a {
  align-items: center;
  color: var(--blue-deep);
  display: inline-flex;
  font-weight: 700;
  gap: 3px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  gap: 25px;
  justify-content: space-between;
  min-height: 86px;
  padding: 22px 0;
  text-align: left;
  width: 100%;
}

.faq-item button svg {
  color: var(--coral);
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-answer p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: -4px 0 28px;
  max-width: 650px;
  padding-right: 54px;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 72px 0 25px;
}

.site-footer .brand-mark img {
  filter: brightness(0) invert(1);
}

.footer-inner {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr auto 1fr;
}

.footer-inner > div:first-child > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  margin: 15px 0 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
}

.footer-links a:hover {
  color: #fff;
}

.footer-cta {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  margin: 0;
}

.footer-cta .button {
  min-height: 46px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  margin-top: 48px;
  padding-top: 22px;
}

@media (max-width: 1060px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero {
    gap: 55px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  }

  .hero h1 { font-size: 55px; }

  .problem-panel {
    gap: 55px;
    padding: 0;
  }

  .route-step {
    min-height: 0;
  }

  .offer-card {
    padding: 0;
  }
}

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

  .site-header {
    padding-inline: 28px;
  }

  .hero {
    gap: 58px;
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(55px, 8vw, 72px);
  }

  .hero-visual {
    margin-inline: auto;
    width: min(100%, 670px);
  }

  .problem-panel {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .problem-answer {
    border-left: 0;
    border-top: 1px solid rgba(16, 36, 77, 0.15);
    grid-template-columns: 1fr;
    padding: 34px 0 0;
  }

  .problem-shift {
    grid-column: auto;
    grid-row: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 16px;
  }

  .section-copy {
    margin-top: 23px;
  }

  .method-heading,
  .outcomes-heading,
  .ecosystem-intro {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .method-heading-side {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 26px 0 0;
  }

  .outcomes-heading > p {
    max-width: 570px;
  }

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

  .outcome-card {
    min-height: 270px;
  }

  .outcome-number {
    margin-bottom: 32px;
  }

  .ecosystem-intro {
    max-width: 680px;
  }

  .proof-item {
    padding-inline: 24px;
  }

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

  .offer-price {
    min-height: 375px;
    width: min(100%, 470px);
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    max-width: 680px;
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta {
    align-items: flex-start;
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 72px;
  }

  .page-width {
    width: calc(100% - 36px);
  }

  .section-pad {
    padding-block: 76px;
  }

  .site-header {
    height: 70px;
    padding-inline: 18px;
  }

  .brand-mark img {
    height: 164px;
    width: 164px;
  }

  .brand-mark {
    height: 48px;
    width: 94px;
  }

  .header-cta {
    font-size: 10px;
    min-height: 42px;
    padding-inline: 14px;
  }

  .header-cta > span {
    display: flex;
  }

  .header-cta-long {
    display: none;
  }

  .header-cta-short {
    display: inline;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-height: auto;
    padding-block: 40px 86px;
  }

  .hero-kicker {
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(40px, 10.8vw, 45px);
    line-height: 1.01;
    margin-bottom: 21px;
  }

  .hero-destination {
    margin-top: 0.1em;
  }

  .hero-destination mark {
    background: linear-gradient(transparent 65%, rgba(247, 211, 100, 0.92) 65%);
  }

  .hero-lede {
    font-size: 15px;
    line-height: 1.67;
    margin-bottom: 24px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    min-height: 55px;
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-offer {
    gap: 7px;
    margin-top: 22px;
    padding-top: 16px;
  }

  .hero-price-line,
  .hero-reassurance {
    font-size: 10px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-photo {
    border-width: 7px;
    border-radius: 28px 28px 10px 28px;
    height: 425px;
  }

  .hero-photo img {
    object-position: 54% center;
  }

  .hero-caption {
    bottom: -29px;
    left: 11px;
    max-width: calc(100% - 22px);
    padding: 16px 18px;
    right: 11px;
  }

  .hero-caption strong {
    font-size: 12px;
  }

  .hero-sticker {
    border-width: 4px;
    right: -10px;
    top: 24px;
    width: 88px;
  }

  .hero-sticker .jp {
    font-size: 15px;
  }

  .hero-sticker small {
    font-size: 7px;
  }

  .problem {
    padding-block: 68px;
  }

  .problem-panel {
    gap: 31px;
    padding: 0;
  }

  .problem-art {
    aspect-ratio: auto;
    min-height: 0;
  }

  .problem-art img {
    object-fit: cover;
  }

  .problem-copy h2,
  .section-heading h2,
  .method-heading h2,
  .outcomes-heading h2,
  .ecosystem-intro h2,
  .offer-copy h2,
  .faq-heading h2 {
    font-size: clamp(36px, 10.6vw, 43px);
    line-height: 1.03;
  }

  .method {
    padding-block: 76px;
  }

  .method-heading {
    display: block;
    margin-bottom: 34px;
  }

  .method-heading-side {
    margin-top: 24px;
    padding-top: 21px;
  }

  .method-sequence {
    font-size: 11px;
    gap: 6px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .method-sequence i {
    font-size: 14px;
  }

  .method-heading-side > p:last-child {
    font-size: 13px;
    line-height: 1.72;
  }

  .route-steps {
    gap: 0;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .route-steps::before {
    bottom: 58px;
    height: auto;
    left: 23px;
    right: auto;
    top: 45px;
    width: 1px;
  }

  .route-step {
    display: grid;
    gap: 0 15px;
    grid-template-columns: 62px 1fr;
    min-height: auto;
    padding: 18px 0;
  }

  .step-visual {
    grid-column: 1;
    grid-row: 1 / span 3;
    margin: 0;
    max-width: none;
  }

  .step-visual img {
    width: 62px;
  }

  .step-marker {
    border-width: 3px;
    bottom: -3px;
    font-size: 8px;
    height: 27px;
    left: -4px;
    width: 27px;
  }

  .step-copy {
    grid-column: 2;
    padding: 5px 0 0;
  }

  .step-verb {
    margin-bottom: 4px !important;
  }

  .route-step h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .step-copy > p:last-child {
    font-size: 11px;
    max-width: none;
  }

  .step-arrow {
    display: none;
  }

  .method-footer-note {
    margin-top: 20px;
  }

  .method-cta {
    margin-top: 18px;
    width: 100%;
  }

  .outcomes-heading {
    display: block;
    margin-bottom: 32px;
  }

  .outcomes-heading > p {
    font-size: 13px;
    line-height: 1.72;
    margin-top: 20px;
  }

  .outcome-grid {
    gap: 12px;
  }

  .outcome-card {
    min-height: 0;
    padding: 27px 24px;
  }

  .outcome-scene {
    border-radius: 16px;
    height: 130px;
    margin: -27px -24px 20px;
  }

  .outcome-number {
    margin-bottom: 18px;
  }

  .outcome-japanese {
    font-size: 26px;
    margin-bottom: 16px;
    min-height: auto;
  }

  .outcome-card h3 {
    font-size: 21px;
  }

  .ecosystem-intro {
    display: block;
    margin-bottom: 30px;
  }

  .ecosystem-intro > div > p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.72;
    margin-top: 20px;
  }

  .ecosystem-list {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .ecosystem-artboard {
    border-radius: 22px;
    margin-bottom: 12px;
  }

  .ecosystem-artboard img {
    aspect-ratio: 1.22;
    object-position: center;
  }

  .ecosystem-art-caption {
    bottom: 18px;
    left: 20px;
  }

  .ecosystem-art-caption strong {
    font-size: 17px;
  }

  .ecosystem-item {
    display: grid;
    grid-template-columns: 40% 1fr;
    min-height: 0;
  }

  .ecosystem-item-art {
    aspect-ratio: auto;
    height: 100%;
    min-height: 156px;
    object-position: center;
  }

  .ecosystem-item-body {
    align-self: stretch;
    min-height: 156px;
    padding: 18px 17px 18px;
  }

  .ecosystem-note {
    font-size: 10px;
    margin-top: 20px;
    padding-top: 16px;
  }

  .proof {
    padding-block: 68px 76px;
  }

  .section-heading-center {
    text-align: left;
  }

  .section-heading-center .section-copy {
    margin-left: 0;
    margin-right: 0;
  }

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

  .proof-rating {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 24px 0 26px;
  }

  .proof-item {
    display: flex;
    min-height: 0;
    padding: 25px 22px 22px;
    text-align: left;
  }

  .proof-item + .proof-item {
    border-left: 0;
  }

  .quote-mark {
    font-size: 46px;
    height: 36px;
  }

  .proof-quote {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .proof-person h3 {
    font-size: 13px;
  }

  .offer {
    padding-block: 72px;
  }

  .offer-card {
    gap: 42px;
    padding: 0;
  }

  .offer-copy ul {
    gap: 11px;
    grid-template-columns: 1fr;
  }

  .offer-price {
    border-radius: 22px;
    min-height: 0;
    padding: 40px 24px 27px;
    width: 100%;
  }

  .offer-price > strong {
    font-size: 92px;
  }

  .faq-layout {
    gap: 48px;
  }

  .faq-item button {
    font-size: 13px;
    min-height: 74px;
  }

  .faq-answer p {
    font-size: 12px;
    padding-right: 25px;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-inner {
    gap: 34px;
    grid-template-columns: 1fr;
  }

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

  .footer-cta {
    grid-column: auto;
  }

  .footer-cta .button {
    width: 100%;
  }
}

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

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