@font-face {
  font-family: Satoshi;
  src: url('/assets/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url('/assets/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
:root {
  --ink: #173448;
  --muted: #587083;
  --blue: #257cae;
  --line: #dce6ed;
  --paper: #f8fbfd;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 1rem/1.65 Satoshi, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
a, button, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid #e6a541;
  outline-offset: 5px;
  border-radius: 8px;
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { font-weight: 700; line-height: 1.08; letter-spacing: -.047em; }
h2 { font-size: clamp(2.5rem, 4.7vw, 4rem); }
h2 span { color: #6a889c; }
h3 { font-size: 1.75rem; letter-spacing: -.035em; }
p { color: var(--muted); }
.container { width: min(1180px, calc(100% - 80px)); margin-inline: auto; }
.icon {
  width: 24px; height: 24px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 1.65;
  stroke-linecap: round; stroke-linejoin: round;
}
.icon-definitions { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 12px 20px; background: white; transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
.eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .13em; line-height: 1.7; color: #527187; }
.section-pad { padding-block: 115px; }
.section-heading { max-width: 560px; margin-bottom: 58px; }
.section-heading .eyebrow { margin-bottom: 22px; }
.section-heading > p:last-child { font-size: 1.125rem; margin-top: 25px; line-height: 1.75; }
.centered { margin-inline: auto; text-align: center; }

/* A floating glass capsule, with a solid fallback on older browsers. */
.site-header {
  position: fixed; z-index: 40; top: 24px; left: 50%; translate: -50% 0;
  width: min(760px, calc(100% - 48px)); min-height: 66px;
  display: flex; align-items: center; gap: 22px;
  padding: 9px 10px 9px 25px;
  background: rgba(247, 252, 255, .94);
  border: 1px solid rgba(255, 255, 255, .88); border-radius: 999px;
  box-shadow: 0 8px 32px #254d6a12, inset 0 1px 0 #ffffff;
  transition: background .45s ease, box-shadow .45s ease, border-color .45s ease;
  animation: nav-arrive .8s var(--ease) both;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .site-header {
    background: rgba(244, 250, 255, .68);
    -webkit-backdrop-filter: blur(24px) saturate(155%);
    backdrop-filter: blur(24px) saturate(155%);
  }
}
.site-header.is-scrolled {
  background: rgba(248, 252, 255, .88);
  border-color: rgba(219, 234, 244, .8);
  box-shadow: 0 12px 40px #254d6a18, inset 0 1px 0 white;
}
.brand { font-size: 1.8rem; line-height: 1; font-weight: 700; letter-spacing: -.07em; display: inline-flex; gap: 5px; align-items: center; }
.brand span { font-size: 1.12rem; line-height: 1; color: #377fae; align-self: flex-start; margin-top: 2px; letter-spacing: 0; }
.header-nav { display: flex; align-items: center; justify-content: center; gap: 6px; margin-inline: auto; }
.header-nav a { padding: 10px 15px; border-radius: 999px; font-size: .875rem; transition: background .25s, color .25s; }
.header-nav a:hover { background: #ffffff85; color: #14739f; }
.header-cta {
  display: inline-flex; justify-content: center; align-items: center; gap: 15px;
  min-height: 46px; padding: 10px 21px; border-radius: 999px;
  background: var(--ink); color: white; font-size: .875rem; font-weight: 700;
  box-shadow: 0 4px 10px #153a4920, inset 0 1px 0 #ffffff20;
  transition: background .25s, box-shadow .3s, transform .4s var(--ease);
}
.header-cta:hover { background: #265672; box-shadow: 0 6px 15px #153a4930; transform: translateY(-1px); }
.header-cta .icon { width: 17px; height: 17px; }
.menu-toggle { display: none; }

/* A complete landscape first, the app story follows below it. */
.sky-shell { position: relative; isolation: isolate; overflow: hidden; background: #97c8eb; }
.hero-sky { position: absolute; z-index: -2; inset: 0; overflow: hidden; }
.hero-sky img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 59%; animation: landscape-arrive 4.5s var(--ease) both; }
.sky-shell::before {
  content: ''; position: absolute; z-index: -1; inset: 0;
  background: linear-gradient(180deg, #f1f8ff12, #e8f5ff0a 53%, transparent 72%, #0c2b377a);
}
.hero { min-height: max(810px, 100svh); padding-top: clamp(170px, 20vh, 220px); display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-copy { width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px; border: 1px solid #ffffff7d; border-radius: 999px;
  color: #254b63; background: #ffffff47; font-size: .75rem; letter-spacing: .08em;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  animation: rise-in 1s var(--ease) .08s both;
}
.hero-eyebrow .icon { width: 16px; height: 16px; }
.hero h1 {
  font-size: clamp(3.4rem, 5.95vw, 5.5rem); line-height: 1.035; letter-spacing: -.06em;
  margin: 24px -10px 23px;
  animation: rise-in 1.15s var(--ease) .16s both;
}
.hero h1 span { color: #356583; }
.hero-description { color: #284e66; font-size: 1.0625rem; line-height: 1.7; max-width: 550px; margin: auto; animation: rise-in 1.15s var(--ease) .24s both; }
.store-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.store-button {
  min-width: 175px; min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 11px;
  padding: 10px 19px; border-radius: 15px; text-align: left; border: 1px solid #ffffff40;
  box-shadow: 0 6px 16px #17344812;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .3s;
}
.store-button:hover { transform: translateY(-3px); box-shadow: 0 12px 25px #17344825; }
.store-button:active { transform: translateY(0) scale(.98); }
.store-button svg { width: 25px; height: 30px; flex-shrink: 0; }
.store-button span { display: flex; flex-direction: column; line-height: 1.12; }
.store-button small { font-size: .75rem; margin-bottom: 4px; }
.store-button strong { font-size: 1.25rem; font-weight: 700; letter-spacing: -.015em; }
.store-apple { background: #173448; color: white; border-color: #ffffff12; }
.store-google { background: #ffffffe0; color: var(--ink); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.hero .store-buttons { animation: rise-in 1.15s var(--ease) .32s both; }
.launch-note { color: #34556b; font-size: .8125rem; margin-top: 16px; line-height: 1.6; }
.hero .launch-note {
  display: table; margin: 15px auto 0; padding: 4px 12px;
  border-radius: 999px; border: 1px solid #ffffff65; background: #ffffffb8;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  animation: rise-in 1.15s var(--ease) .38s both;
}
.hero-bottom { display: flex; justify-content: space-between; align-items: end; width: 100%; gap: 20px; margin-top: auto; padding: 95px 0 30px; color: white; }
.hero-coordinate { font-size: .75rem; letter-spacing: .15em; }
.hero-signature { text-align: right; font-size: .8125rem; line-height: 1.5; }
.scroll-link {
  display: inline-flex; align-items: center; gap: 18px; padding: 11px 19px;
  background: #ffffff1a; border: 1px solid #ffffff60; border-radius: 999px;
  font-size: .8125rem; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  transition: background .3s;
}
.scroll-link span { transition: translate .45s var(--ease); }
.scroll-link:hover { background: #ffffff30; }
.scroll-link:hover span { translate: 0 3px; }

.app-showcase { overflow: hidden; background: #f7fafc; }
.showcase-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 45px; align-items: center; }
.showcase-copy { padding-block: 35px; position: relative; z-index: 4; }
.showcase-copy .eyebrow { max-width: 330px; margin-bottom: 23px; }
.showcase-copy h2 { font-size: clamp(2.5rem, 3.8vw, 3.4rem); margin-bottom: 26px; }
.showcase-copy > p:not(.eyebrow) { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 18px; max-width: 405px; }
.showcase-copy .text-link { margin-top: 8px; }
.showcase-note { display: flex; align-items: center; gap: 13px; margin-top: 38px; font-size: .8125rem; line-height: 1.5; color: #668296; }
.showcase-note .icon { width: 34px; height: 34px; padding: 8px; border: 1px solid #d9e5ef; border-radius: 50%; box-sizing: content-box; stroke-width: 1.4; }
.travel-stage { height: 650px; position: relative; min-width: 0; }
.travel-stage::before { content: ''; position: absolute; inset: 6% -7%; background: radial-gradient(ellipse, #d8eaf8b5, transparent 69%); }
.phone { background: #d2dde3; border: 5px solid #e9eef2; outline: 1px solid #adc0cc; border-radius: 42px; overflow: hidden; box-shadow: 0 30px 70px #153d7028, 0 5px 13px #194e7520; }
.hero-phone { width: 270px; position: absolute; top: 12px; left: 50%; transform: translateX(-50%) rotate(-6deg); z-index: 3; transition: transform .8s var(--ease); }
.hero-phone img { border-radius: 36px; width: 100%; }
.postcard { position: absolute; width: 195px; background: white; border-radius: 4px; padding: 9px 9px 0; box-shadow: 0 20px 35px #31547120; z-index: 1; transition: transform .8s var(--ease); }
.postcard img { width: 100%; aspect-ratio: 1/1.05; object-fit: cover; }
.postcard figcaption { display: flex; align-items: center; justify-content: space-between; gap: 4px; padding: 12px 2px 16px; font-size: .75rem; font-weight: 700; }
.postcard figcaption span:last-child { display: none; }
.postcard-paris { top: 125px; left: -7px; transform: rotate(-14deg); }
.postcard-kyoto { top: 212px; right: -2px; transform: rotate(12deg); z-index: 2; }
.memory-label {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; border-radius: 12px; border: 1px solid #ffffffcc;
  background: #ffffffe3; color: #365970; box-shadow: 0 8px 25px #24496812;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  font-size: .75rem; font-weight: 700;
}
.memory-label .icon { width: 17px; height: 17px; }
.label-left { top: 466px; left: 3px; transform: rotate(-5deg); }
.label-right { top: 62px; right: -5px; transform: rotate(4deg); }
.stage-caption { position: absolute; bottom: 5px; right: 8px; color: #67869b; font-size: .75rem; letter-spacing: .13em; }

.intro-section { padding-top: 100px; background: #f7fafc; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-card {
  position: relative; overflow: hidden; min-height: 650px;
  border: 1px solid #e2ebf3; border-radius: 32px;
  background: #eaf2f7; display: flex; flex-direction: column;
  box-shadow: inset 0 1px 0 white;
}
.feature-copy { padding: 39px 40px 0; position: relative; z-index: 1; }
.feature-kicker { font-size: .75rem; font-weight: 700; letter-spacing: .13em; color: #527289; }
.feature-copy h3 { font-size: 2rem; margin: 21px 0 18px; }
.feature-copy p { font-size: 1rem; line-height: 1.7; max-width: 400px; }
.feature-visual { height: 390px; position: relative; overflow: hidden; margin-top: auto; }
.feature-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, #eaf2f7, transparent 20%); pointer-events: none; }
.feature-visual img { position: absolute; width: 280px; max-width: none; left: 50%; top: 30px; border: 5px solid #ffffff; border-radius: 37px; box-shadow: 0 20px 50px #29527824; transition: translate .9s var(--ease); }
.feature-passport { grid-column: 1/-1; min-height: 450px; display: grid; grid-template-columns: 1fr 1fr; background: #eaf2f7; }
.feature-passport .feature-copy { align-self: center; padding: 60px; }
.feature-passport .feature-copy h3 { font-size: clamp(2rem, 3.4vw, 3rem); }
.passport-visual { height: 450px; width: 100%; }
.passport-visual img { width: 320px; top: 50px; transform: translateX(-48%) rotate(10deg); }
.feature-albums { background: #f0f1fa; }
.albums-visual::after { background: linear-gradient(0deg, #f0f1fa, transparent 20%); }
.albums-visual img { transform: translateX(-50%) rotate(-7deg); top: 36px; }
.feature-map { background: #e9f3fc; }
.map-visual::after { background: linear-gradient(0deg, #e9f3fc, transparent 20%); }
.map-visual img { transform: translateX(-50%) rotate(7deg); top: 36px; }

.how-section { background: white; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 65px; padding: 0; margin: 65px 0 0; }
.steps li { position: relative; text-align: center; }
.step-number { position: absolute; top: 15px; left: calc(50% + 43px); font-size: .75rem; letter-spacing: .1em; color: #7692a5; }
.step-icon { width: 44px; height: 44px; padding: 21px; background: #edf5fb; color: #347899; border: 1px solid #e0edf5; border-radius: 26px; box-sizing: content-box; margin: 0 auto 29px; stroke-width: 1.3; }
.steps h3 { font-size: 1.4rem; margin-bottom: 16px; }
.steps p { font-size: 1rem; max-width: 280px; margin: auto; line-height: 1.7; }
.memory-section { background: #f0f6fa; }
.memory-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.memory-photo { position: relative; min-height: 685px; height: 100%; border-radius: 28px; overflow: hidden; }
.memory-photo > img { position: absolute; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.photo-location { position: absolute; bottom: 26px; left: 26px; right: 26px; display: flex; align-items: center; gap: 9px; padding: 12px 17px; max-width: max-content; color: white; background: #17394d91; border: 1px solid #ffffff4a; border-radius: 14px; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); font-size: .875rem; }
.photo-location .icon { width: 17px; height: 17px; }
.memory-copy > .eyebrow { margin-bottom: 21px; }
.memory-copy h2 { font-size: clamp(2.5rem, 3.5vw, 3.15rem); margin-bottom: 28px; }
.memory-copy > p:not(.eyebrow) { font-size: 1.0625rem; margin-bottom: 17px; line-height: 1.8; }
.benefits { list-style: none; padding: 0; display: grid; gap: 26px; margin: 33px 0; }
.benefits li { display: flex; gap: 18px; }
.benefits .icon { margin-top: 3px; color: #377f9e; width: 23px; height: 23px; }
.benefits h3 { font-size: 1.0625rem; line-height: 1.35; letter-spacing: -.015em; margin-bottom: 6px; }
.benefits p { font-size: 1rem; line-height: 1.65; }
.text-link { display: inline-flex; align-items: center; gap: 20px; padding: 10px 0; border-bottom: 1px solid #acc2d3; font-size: .9375rem; font-weight: 700; }
.text-link .icon { width: 20px; height: 20px; transition: transform .5s var(--ease); }
.text-link:hover .icon { transform: translate(3px, -3px); }

.faq-section { background: white; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-layout .section-heading { margin-bottom: 0; }
.faq-layout h2 { font-size: clamp(2.5rem, 3.7vw, 3.2rem); }
.faq-layout .section-heading > p:last-child { font-size: 1rem; max-width: 345px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 1.0625rem; font-weight: 700; line-height: 1.45; padding: 24px 0; transition: color .25s; }
summary::-webkit-details-marker { display: none; }
summary:hover { color: #267f9f; }
summary > span { font-size: 1.55rem; font-weight: 400; color: #5d7d94; line-height: 1; transition: transform .4s var(--ease); }
details[open] summary > span { transform: rotate(45deg); }
.faq-answer { padding: 0 28px 26px 0; }
.faq-answer p { font-size: 1rem; line-height: 1.75; }
.faq-answer p + p { margin-top: 12px; }
details[open] .faq-answer { animation: answer-in .35s ease both; }
.download-section { position: relative; isolation: isolate; overflow: hidden; background: #388ed6; color: white; padding: 105px 0 85px; text-align: center; }
.download-sky { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; z-index: -2; }
.download-section::before { content: ''; position: absolute; inset: 0; background: #144b998c; z-index: -1; }
.download-content > .eyebrow { color: #fff; margin-bottom: 25px; }
.download-content h2 { font-size: clamp(3.3rem, 6.7vw, 5.7rem); letter-spacing: -.055em; }
.download-content > p:not(.eyebrow):not(.launch-note) { color: #fff; font-size: 1.125rem; margin-top: 25px; }
.download-section .launch-note { color: white; }
.availability-note { max-width: 650px; margin: 25px auto 0 !important; padding: 15px 22px; font-size: .875rem !important; line-height: 1.7; color: white !important; border: 1px solid #ffffff40; border-radius: 16px; background: #164b7c40; scroll-margin-top: 120px; }
.availability-note:target { background: #164b7cbb; outline: 2px solid white; outline-offset: 6px; }
.site-footer { padding-top: 65px; background: #f9fbfd; }
.footer-top { display: flex; justify-content: space-between; gap: 35px; padding-bottom: 56px; }
.footer-top .brand { font-size: 2.3rem; }
.footer-top p { margin-top: 21px; font-size: 1rem; line-height: 1.7; }
.footer-top nav { display: grid; grid-template-columns: repeat(2, auto); gap: 18px 60px; align-content: start; font-size: .875rem; }
.footer-top nav a:hover { text-decoration: underline; text-underline-offset: 5px; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 23px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: .75rem; color: #607d91; }
.footer-bottom p { color: inherit; }
.footer-bottom a { color: var(--ink); }
.not-found { min-height: 100svh; display: grid; place-items: center; background: #e9f4ff; padding: 28px; text-align: center; }
.not-found .brand { margin-bottom: 65px; }
.not-found h1 { font-size: clamp(3rem, 8vw, 6rem); margin: 20px 0 25px; }
.not-found p { max-width: 470px; margin: 0 auto; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 48px; padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: .9375rem; }
.button-dark { background: var(--ink); color: white; margin-top: 30px; }

/* Content stays visible when scripting or motion is unavailable. */
.js .reveal-pending { opacity: 0; }
@keyframes rise-in { from { opacity: 0; translate: 0 18px; } to { opacity: 1; translate: 0 0; } }
@keyframes nav-arrive { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes landscape-arrive { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes answer-in { from { opacity: 0; translate: 0 -4px; } to { opacity: 1; translate: 0 0; } }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .travel-stage:hover .hero-phone { transform: translateX(-50%) rotate(-3deg) translateY(-5px); }
  .travel-stage:hover .postcard-paris { transform: rotate(-17deg) translate(-4px, -4px); }
  .travel-stage:hover .postcard-kyoto { transform: rotate(15deg) translate(4px, -4px); }
  .feature-card:hover .feature-visual img { translate: 0 -8px; }
  .memory-photo:hover > img { transform: scale(1.025); }
}
@media (max-width: 1050px) {
  .container { width: calc(100% - 48px); }
  .hero h1 { font-size: clamp(3.3rem, 6.4vw, 4.8rem); }
  .showcase-layout { gap: 30px; grid-template-columns: .9fr 1.1fr; }
  .hero-phone { width: 245px; }
  .travel-stage { height: 610px; }
  .postcard { width: 160px; }
  .postcard-paris { left: -17px; }
  .postcard-kyoto { right: -12px; }
  .label-left { top: 455px; left: -25px; }
  .label-right { top: 42px; right: -9px; }
  .memory-label { font-size: .75rem; padding: 9px 11px; }
  .feature-passport .feature-copy { padding: 40px; }
  .feature-copy { padding: 32px 30px 0; }
  .memory-layout, .faq-layout { gap: 50px; }
  .steps { gap: 35px; }
  .stage-caption { bottom: 15px; font-size: .75rem; letter-spacing: .07em; }
}
@media (max-width: 760px) {
  .container { width: calc(100% - 40px); }
  html { scroll-padding-top: 105px; }
  .site-header { top: 16px; width: calc(100% - 32px); min-height: 62px; padding: 8px 10px 8px 19px; gap: 12px; flex-wrap: wrap; }
  .site-header .brand { font-size: 1.6rem; }
  .header-cta { margin-left: auto; min-height: 42px; padding: 9px 17px; gap: 10px; font-size: .875rem; }
  .header-nav { order: 3; width: 100%; gap: 8px; }
  .header-nav a { font-size: .875rem; padding: 11px 16px; }
  .js .site-header { flex-wrap: nowrap; }
  .js .header-nav {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0; width: 100%;
    padding: 10px; border: 1px solid #ffffffc9; border-radius: 22px; background: #f7fcfffa;
    box-shadow: 0 15px 35px #17344818; opacity: 0; visibility: hidden; translate: 0 -6px; pointer-events: none;
    transition: opacity .3s ease, translate .4s var(--ease), visibility .3s;
  }
  .js .menu-open .header-nav { opacity: 1; visibility: visible; translate: 0 0; pointer-events: auto; }
  .js .header-nav a { flex: 1; text-align: center; }
  .js .menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; align-items: center; width: 42px; height: 42px; border: 1px solid #d0e1ed88; border-radius: 50%; background: #ffffff75; flex-shrink: 0; }
  .menu-toggle span { width: 16px; height: 1.5px; border-radius: 2px; background: currentColor; transition: transform .35s var(--ease); }
  .menu-open .menu-toggle span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
  .hero { min-height: max(780px, 100svh); padding-top: 175px; }
  .hero-sky img { object-position: center; }
  .hero h1 { font-size: clamp(2.9rem, 7.7vw, 3.75rem); margin: 23px -3px; line-height: 1.075; }
  .hero-eyebrow { font-size: .75rem; letter-spacing: .045em; padding: 5px 9px; gap: 6px; }
  .hero-eyebrow .icon { width: 15px; height: 15px; }
  .hero-description { font-size: 1rem; max-width: 450px; }
  .hero .desktop-break { display: none; }
  .hero-bottom { padding: 100px 0 25px; align-items: center; }
  .hero-coordinate { font-size: .75rem; letter-spacing: .09em; }
  .hero-signature { display: none; }
  .scroll-link { font-size: .75rem; gap: 14px; padding: 10px 14px; }
  .section-pad { padding-block: 78px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading > p:last-child { font-size: 1rem; margin-top: 22px; }
  .showcase-layout { grid-template-columns: 1fr; gap: 35px; max-width: 560px; }
  .showcase-copy { padding: 0; }
  .showcase-copy h2 { font-size: 2.75rem; }
  .showcase-copy > p:not(.eyebrow) { font-size: 1rem; max-width: none; }
  .showcase-copy .eyebrow { max-width: none; }
  .showcase-note { margin-top: 25px; }
  .showcase-note .icon { width: 23px; height: 23px; }
  .travel-stage { height: 590px; width: 100%; margin-top: 20px; }
  .hero-phone { width: 250px; }
  .postcard { width: 190px; }
  .postcard-paris { top: 100px; left: -5px; }
  .postcard-kyoto { right: -5px; top: 200px; }
  .label-left { left: 0; top: 455px; }
  .label-right { right: 0; top: 42px; }
  .stage-caption { bottom: 0; font-size: .75rem; }
  .intro-section { padding-top: 12px; }
  .feature-grid { grid-template-columns: 1fr; max-width: 560px; margin: auto; gap: 22px; }
  .feature-card, .feature-passport { min-height: 585px; grid-column: auto; display: flex; flex-direction: column; border-radius: 27px; }
  .feature-copy, .feature-passport .feature-copy { padding: 30px 28px 0; align-self: stretch; }
  .feature-copy h3, .feature-passport .feature-copy h3 { font-size: 1.9rem; }
  .feature-visual, .passport-visual { width: 100%; height: 340px; }
  .feature-visual img { width: 260px; border-radius: 33px; }
  .passport-visual img { top: 35px; left: 56%; }
  .steps { grid-template-columns: 1fr; gap: 38px; margin: 44px auto 0; max-width: 410px; }
  .steps li { text-align: left; display: grid; grid-template-columns: 65px 1fr; gap: 0 24px; }
  .step-number { display: none; }
  .step-icon { grid-row: 1/3; padding: 16px; width: 31px; height: 31px; border-radius: 19px; margin: 0; align-self: start; }
  .steps h3 { font-size: 1.3rem; margin: 2px 0 10px; line-height: 1.3; }
  .steps p { max-width: none; }
  .memory-layout { grid-template-columns: 1fr; gap: 42px; max-width: 580px; }
  .memory-photo { height: 465px; min-height: 0; }
  .memory-copy h2 { font-size: 2.7rem; }
  .memory-copy > p:not(.eyebrow) { font-size: 1rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; max-width: 580px; }
  .faq-layout h2 { font-size: 2.7rem; }
  .faq-layout .section-heading > p:last-child { max-width: 440px; }
  summary { font-size: 1rem; padding: 22px 0; }
  .download-section { padding: 78px 0; }
  .download-content > .eyebrow { letter-spacing: .075em; }
  .download-content > p:not(.eyebrow):not(.launch-note) { font-size: 1rem; }
  .footer-top { flex-direction: column; gap: 38px; padding-bottom: 36px; }
  .footer-top nav { gap: 17px 20px; max-width: 400px; }
  .footer-bottom { flex-wrap: wrap; gap: 12px; }
  .footer-bottom > p:nth-child(2) { display: none; }
  .footer-bottom a { margin-left: auto; }
  .site-footer { padding-top: 44px; }
}
@media (max-width: 420px) {
  .container { width: calc(100% - 32px); }
  .site-header { gap: 8px; padding-left: 17px; }
  .site-header .brand { font-size: 1.45rem; }
  .header-cta { gap: 8px; padding-inline: 13px; }
  .header-cta .icon { display: none; }
  .js .menu-toggle { width: 40px; height: 40px; }
  .hero { padding-top: 165px; min-height: max(790px, 100svh); }
  .hero h1 { font-size: 2.85rem; }
  .hero-eyebrow { font-size: .75rem; letter-spacing: 0; max-width: 100%; }
  .hero-eyebrow .icon { display: none; }
  .hero-description br { display: none; }
  .store-buttons { gap: 9px; }
  .store-button { min-width: 0; padding: 10px 14px; gap: 9px; }
  .store-button strong { font-size: 1.125rem; }
  .store-button svg { width: 22px; height: 27px; }
  .launch-note { font-size: .75rem; }
  .hero-coordinate { display: none; }
  .hero-bottom { justify-content: center; padding-top: 90px; }
  .travel-stage { height: 560px; }
  .hero-phone { width: 230px; }
  .postcard { width: 147px; }
  .postcard-paris { left: -35px; }
  .postcard-kyoto { right: -35px; }
  .label-left { left: -5px; top: 480px; }
  .label-right { right: -3px; top: 35px; }
  .memory-label { font-size: .75rem; padding: 9px 10px; }
  .memory-label .icon { width: 14px; height: 14px; }
  .showcase-copy h2 { font-size: 2.5rem; }
  .feature-copy, .feature-passport .feature-copy { padding: 28px 24px 0; }
  .feature-copy h3, .feature-passport .feature-copy h3 { font-size: 1.7rem; }
  .memory-photo { height: 390px; }
  .memory-copy h2 { font-size: 2.4rem; }
  .photo-location { left: 18px; bottom: 18px; padding: 10px 13px; font-size: .8125rem; }
  .download-content h2 { font-size: 3.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal-pending { opacity: 1; }
}
@media (prefers-reduced-transparency: reduce) {
  .site-header, .site-header.is-scrolled, .js .header-nav { background: #f6fbff; -webkit-backdrop-filter: none; backdrop-filter: none; }
}
@media print {
  .site-header, .hero-bottom, .store-buttons, .skip-link { display: none; }
  .js .reveal-pending { opacity: 1; }
  * { animation: none !important; }
}

/* The immersive memory is the primary product story. */
.relive-section { background: #f7fafc; }
.relive-heading { display: grid; grid-template-columns: 1.2fr 1fr; align-items: end; gap: 85px; margin-bottom: 44px; }
.relive-heading .eyebrow { margin-bottom: 22px; }
.relive-heading > p { font-size: 1.125rem; line-height: 1.8; max-width: 450px; padding-bottom: 5px; }
.panorama-image { position: relative; isolation: isolate; overflow: hidden; border-radius: 30px; background: #153b55; }
.panorama-image > img { width: 100%; aspect-ratio: 2.1; object-fit: cover; }
.panorama-image::after { content: ''; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, #102d3b99); pointer-events: none; }
.panorama-badge { position: absolute; z-index: 1; top: 25px; left: 26px; display: flex; align-items: center; gap: 9px; padding: 10px 15px; border: 1px solid #ffffff70; border-radius: 999px; background: #17394d80; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); color: white; font-size: .75rem; letter-spacing: .09em; }
.panorama-badge .icon { width: 18px; height: 18px; }
.panorama-caption { position: absolute; z-index: 1; bottom: 28px; left: 32px; right: 32px; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.panorama-degree { color: white; font-size: clamp(4.5rem, 9vw, 8rem); font-weight: 700; letter-spacing: -.07em; line-height: 1; }
.panorama-degree > span { font-size: .62em; vertical-align: top; line-height: 1.2; }
.panorama-caption p { color: white; font-size: 1.125rem; line-height: 1.5; text-align: right; padding-bottom: 5px; }
.panorama-feature > figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 14px 5px 0; color: #5a788d; font-size: .8125rem; }
.relive-bottom { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 35px; }
.relive-bottom p { font-size: 1.125rem; line-height: 1.6; }
.relive-bottom strong { color: var(--ink); font-weight: 700; }
.intro-section .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.intro-section .feature-card { grid-column: auto; display: flex; flex-direction: column; min-height: 610px; }
.intro-section .feature-copy { padding: 30px 27px 0; align-self: stretch; }
.intro-section .feature-copy h3 { font-size: 1.65rem; }
.intro-section .feature-visual { width: 100%; height: 335px; }
.intro-section .feature-visual img { width: 242px; }
@media (max-width: 1050px) {
  .relive-heading { gap: 40px; }
  .relive-heading h2 { font-size: 2.9rem; }
  .relive-heading > p { font-size: 1rem; }
  .intro-section .feature-copy { padding-inline: 22px; }
  .intro-section .feature-copy h3 { font-size: 1.45rem; }
  .intro-section .feature-card { min-height: 640px; }
}
@media (max-width: 760px) {
  .relive-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 30px; }
  .relive-heading h2 { font-size: 2.65rem; }
  .relive-heading > p { max-width: none; }
  .panorama-image { border-radius: 24px; }
  .panorama-image > img { aspect-ratio: 1; object-position: 57% center; }
  .panorama-badge { top: 17px; left: 17px; padding: 8px 12px; font-size: .75rem; }
  .panorama-caption { left: 20px; right: 20px; bottom: 20px; }
  .panorama-degree { font-size: 4.8rem; }
  .panorama-caption p { font-size: 1rem; max-width: 190px; }
  .panorama-feature > figcaption { flex-direction: column; gap: 3px; font-size: .75rem; }
  .relive-bottom { flex-direction: column; align-items: start; gap: 16px; margin-top: 24px; }
  .relive-bottom p { font-size: 1rem; }
  .intro-section { padding-top: 78px; }
  .intro-section .feature-grid { grid-template-columns: 1fr; }
  .intro-section .feature-card { min-height: 560px; }
  .intro-section .feature-copy { padding: 30px 28px 0; }
  .intro-section .feature-copy h3 { font-size: 1.8rem; }
  .intro-section .feature-visual img { width: 255px; }
}
@media (max-width: 420px) {
  .relive-heading h2 { font-size: 2.4rem; }
  .panorama-caption p { font-size: .875rem; max-width: 155px; }
  .panorama-degree { font-size: 4rem; }
}
