:root {
  --brand: #7c3aed;
  --brand-2: #00a6d6;
  --brand-3: #2563eb;
  --honey: #ffd23f;
  --ink: #14213d;
  --text: #31415f;
  --muted: #657089;
  --line: rgba(37, 99, 235, 0.14);
  --glass: rgba(255, 255, 255, 0.72);
  --card: rgba(255, 255, 255, 0.84);
  --canvas: #f6fbff;
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.12);
  --deep-shadow: 0 34px 90px rgba(19, 31, 66, 0.24);
  --radius: 24px;
  --section-radius: 30px;
  --section-shell: min(1180px, calc(100% - 48px));
  --content-shell: var(--section-shell);
  --font-cjk: "PingFang SC", "PingFang TC", "HarmonyOS Sans SC", "MiSans", "Microsoft YaHei UI", "Hiragino Sans GB", "Noto Sans CJK SC", "Noto Sans SC", "Noto Sans TC", "Apple SD Gothic Neo", "Noto Sans JP", "Noto Sans KR";
  --font-cjk-rounded: "PingFang SC", "PingFang TC", "HarmonyOS Sans SC", "MiSans", "Microsoft YaHei UI", "Hiragino Sans GB", "Hiragino Maru Gothic ProN", "Yu Gothic", "Apple SD Gothic Neo", "Noto Sans JP", "Noto Sans KR";
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", var(--font-cjk), "Helvetica Neue", Arial, sans-serif;
  --font-rounded: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "SF Pro Display", var(--font-cjk-rounded), "Helvetica Neue", Arial, sans-serif;
  --font-zh: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "PingFang TC", "Hiragino Sans GB", "HarmonyOS Sans SC", "MiSans", "Noto Sans CJK SC", "Noto Sans SC", "Noto Sans TC", "Microsoft YaHei UI", "Helvetica Neue", Arial, sans-serif;
  --font-zh-rounded: ui-rounded, "SF Pro Rounded", "SF Compact Rounded", "TsangerYuYangT W03", "TsangerYuYangT W04", "Yuanti SC", "Yuanti TC", "HYZhengYuan", "YouYuan", "PingFang SC", "PingFang TC", "Hiragino Sans GB", "HarmonyOS Sans SC", "MiSans", "Noto Sans CJK SC", "Noto Sans SC", "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  position: relative;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -4%, rgba(0, 166, 214, 0.12), transparent 28%),
    radial-gradient(circle at 94% 18%, rgba(124, 58, 237, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 42%, #f4f8ff 100%);
  -webkit-font-smoothing: antialiased;
  transition: background-color .45s ease, color .45s ease;
}
body > :not(.world-map-backdrop):not(.site-map-background) {
  position: relative;
  z-index: 2;
}
.site-map-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #f7f9fc;
  isolation: isolate;
}
.site-map-background::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  z-index: 5;
  height: min(30vh, 260px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.56), rgba(255,255,255,.24) 58%, rgba(255,255,255,0));
}
.site-map-background::after {
  content: "";
  position: absolute;
  inset: -24px 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.62) 0%, rgba(255,255,255,.42) 42%, rgba(255,255,255,.20) 100%),
    linear-gradient(180deg, rgba(255,255,255,.44) 0%, rgba(255,255,255,.10) 100%),
    radial-gradient(circle at 72% 38%, rgba(124,58,237,.16), transparent 38%);
}
.site-map-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: calc(100% + 42vh);
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: translate3d(0, calc(var(--map-parallax-y, 0px) * -1), 0);
  transition: opacity .55s ease;
  will-change: transform;
}
.site-map-image-night { opacity: 0; }
.world-map-backdrop {
  display: none;
}
.world-map-backdrop::before,
.world-map-backdrop::after {
  content: none;
}
@media (prefers-reduced-motion: reduce) {
  .site-map-image,
  .map-place-layer {
    transform: none;
  }
  .place-route-line,
  .place-pin {
    animation: none;
  }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: var(--content-shell); margin: 0 auto; }
.wide-container { width: var(--section-shell); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 100; padding: 9px 12px; border-radius: 12px; color: #fff; background: var(--brand); }

.site-nav,
.nav {
  position: sticky;
  top: 16px;
  z-index: 40;
  padding: 0 18px;
}
.nav-inner,
.nav-row {
  width: var(--section-shell);
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(58, 39, 134, 0.12);
  backdrop-filter: blur(26px) saturate(160%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 850;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 12px 26px rgba(111, 63, 245, 0.24);
}
.brand-logo-wrap {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.brand img.brand-logo {
  width: 45px;
  height: 45px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 10px 18px rgba(95, 46, 234, .22));
  transform: translateY(-2px);
}
.brand span { display: grid; gap: 1px; }
.brand strong,
.brand-name { font-size: 22px; letter-spacing: -0.03em; color: var(--ink); }
.brand small { color: var(--muted); font-size: 12px; font-weight: 760; }
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 38px);
  color: var(--text);
  font-size: 14px;
  font-weight: 780;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-secondary,
.btn,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 15px;
  font-weight: 820;
  white-space: nowrap;
}
.nav-secondary,
.btn-ghost,
.button.secondary {
  color: var(--brand-3);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}
.nav-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-3), var(--brand));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24), inset 0 1px rgba(255, 255, 255, 0.22);
}
.button.glass {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
}
.app-store-badge {
  min-height: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.app-store-badge img {
  display: block;
  width: auto;
  height: 40px;
}
.hero-actions .app-store-badge {
  height: 48px;
  min-height: 48px;
}
.hero-actions .app-store-badge img { height: 48px; }
.premium-banner .app-store-badge {
  justify-self: end;
  height: 44px;
  min-height: 44px;
}
.premium-banner .app-store-badge img { height: 44px; }

.section-pad { padding: 76px 0; }
.section-pad.compact { padding: 44px 0; }
.hero {
  padding-top: 46px;
}
.hero-world {
  position: relative;
  min-height: min(840px, calc(100vh - 20px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.92) 38%, rgba(248, 252, 255, 0.58) 70%, rgba(248, 252, 255, 0.38) 100%),
    linear-gradient(180deg, rgba(248, 252, 255, 0) 72%, #fff 100%);
}
.hero-world::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  opacity: 0;
  pointer-events: none;
}
.hero-world::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 110px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  position: relative;
  z-index: 1;
}
.pill,
.eyebrow {
  width: fit-content;
  color: var(--brand);
  font-weight: 850;
  letter-spacing: 0;
}
.pill {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(241, 236, 255, 0.82);
}
.hero h1 {
  max-width: min(700px, 100%);
  margin: 26px 0 20px;
  font-size: clamp(52px, 5vw, 82px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}
.hero h1 span {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 42px);
}
.hero h1 .hero-title-main {
  color: var(--brand-3);
  font-size: clamp(52px, 5vw, 82px);
}
.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.ph-launch-badge {
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px 9px 9px;
  border: 1px solid rgba(218, 85, 47, .22);
  border-radius: 999px;
  color: #71301f;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 36px rgba(124, 58, 237, .12);
  backdrop-filter: blur(18px) saturate(150%);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ph-launch-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(218, 85, 47, .34);
  box-shadow: 0 18px 42px rgba(124, 58, 237, .16);
}
.ph-launch-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  background: #da552f;
  box-shadow: inset 0 1px rgba(255, 255, 255, .28);
}
.ph-launch-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  text-align: left;
}
.ph-launch-copy strong {
  font-size: 14px;
  font-weight: 860;
  line-height: 1.05;
  letter-spacing: 0;
}
.ph-launch-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 740;
  line-height: 1.15;
}
.ph-launch-arrow {
  color: #da552f;
  font-size: 18px;
  font-weight: 860;
  line-height: 1;
}
body[data-theme="dark"] .ph-launch-badge {
  color: #ffe4db;
  border-color: rgba(255, 132, 96, .34);
  background: rgba(15, 18, 38, .72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
}
body[data-theme="dark"] .ph-launch-copy small {
  color: rgba(234, 240, 255, .70);
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  color: var(--muted);
}
.face-row {
  display: flex;
  align-items: center;
}
.face-row span,
.testimonial span {
  width: 42px;
  height: 42px;
  margin-left: -9px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.9), transparent 32%),
    linear-gradient(145deg, rgba(0,166,214,.92), rgba(124,58,237,.92));
  background-size: cover;
  box-shadow: 0 10px 22px rgba(46, 29, 126, 0.14);
}
.face-row span::after,
.testimonial span::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url("/assets/wimemo-w-mark.png") center / contain no-repeat;
  opacity: .76;
}
.face-row span:first-child { margin-left: 0; }
.face-row span:nth-child(2),
.testimonial:nth-child(2) span {
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.9), transparent 32%),
    linear-gradient(145deg, rgba(255,210,63,.92), rgba(37,99,235,.88));
}
.face-row span:nth-child(3),
.testimonial:nth-child(3) span {
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.9), transparent 32%),
    linear-gradient(145deg, rgba(37,99,235,.88), rgba(0,166,214,.9));
}
.face-row span:nth-child(4),
.testimonial:nth-child(4) span {
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.9), transparent 32%),
    linear-gradient(145deg, rgba(124,58,237,.9), rgba(255,210,63,.78));
}
.social-proof b,
.social-proof small { display: block; }
.social-proof small { margin-top: 5px; color: var(--brand); letter-spacing: 0.15em; font-weight: 900; }

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.hero-w-mark {
  position: absolute;
  width: min(560px, 78%);
  aspect-ratio: 1;
  opacity: 0.18;
  filter: saturate(1.1);
}
.device {
  position: absolute;
  width: 252px;
  aspect-ratio: 430 / 880;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.device-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
}
.device-atlas { left: 4%; top: 124px; transform: rotate(-7deg); }
.device-plan { width: 304px; z-index: 5; top: 10px; transform: translateY(8px); }
.device-memory { right: 3%; top: 112px; transform: rotate(6deg); }
.phone-screen {
  position: absolute;
  left: 12.4%;
  top: 4.55%;
  width: 75.35%;
  height: 90.9%;
  min-height: 0;
  padding: 21px 13px 58px;
  overflow: hidden;
  border-radius: 15% / 6.5%;
  background:
    radial-gradient(circle at 18% 0%, rgba(111, 63, 245, 0.14), transparent 30%),
    linear-gradient(180deg, #fff, #fbf9ff);
  z-index: 1;
}
.status {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: 10px;
  font-weight: 850;
}
.screen-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0 12px;
  font-size: 18px;
}
.screen-title span {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(111, 63, 245, 0.1);
  font-size: 12px;
  font-weight: 900;
}
.atlas-map {
  position: relative;
  height: 150px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 45%, rgba(111,63,245,.20), transparent 16%),
    radial-gradient(circle at 72% 33%, rgba(111,63,245,.16), transparent 14%),
    linear-gradient(150deg, transparent 47%, rgba(111,63,245,.13) 48% 52%, transparent 53%) 0 0 / 82px 52px,
    #f6f1ff;
  border: 1px solid rgba(111, 63, 245, 0.08);
}
.cluster {
  position: absolute;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  box-shadow: 0 10px 22px rgba(111, 63, 245, 0.28);
}
.c1 { left: 34px; top: 54px; }
.c2 { right: 46px; top: 38px; }
.c3 { left: 112px; bottom: 30px; }
.recent-places { margin-top: 14px; }
.recent-places b { font-size: 13px; }
.recent-places > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.photo {
  display: block;
  min-height: 92px;
  border-radius: 14px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(20,33,61,0) 46%, rgba(20,33,61,.48) 100%),
    url("/assets/travel-memory-strip.webp");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -44px 34px rgba(20, 12, 56, 0.32);
}
.photo small {
  display: block;
  margin: 60px 8px 0;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}
.lake { background-position: 15% center; }
.kyoto { background-position: 34% center; }
.torii { background-position: 50% center; }
.sakura { background-position: 66% center; }
.city { background-position: 78% center; }
.food { background-position: 88% center; }
.coast { background-position: 100% center; }
.mobile-tabbar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 44px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  place-items: center;
  color: #8e89a8;
  font-size: 9px;
  font-weight: 800;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
}
.mobile-tabbar b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  font-size: 18px;
}
.plan-hero-card,
.itinerary-list p,
.memory-filter,
.privacy-points article,
.testimonial,
.product-card,
.privacy-panel,
.legal-card,
.support-card {
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: var(--glass);
  box-shadow: 0 18px 48px rgba(57, 37, 142, 0.10);
  backdrop-filter: blur(22px) saturate(150%);
}
.plan-hero-card {
  padding: 15px;
  border-radius: 17px;
}
.plan-hero-card small,
.plan-hero-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.plan-hero-card b {
  display: block;
  margin: 6px 0;
  font-size: 20px;
}
.itinerary-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.itinerary-list p {
  margin: 0;
  padding: 11px 12px;
  border-radius: 14px;
}
.itinerary-list b {
  display: block;
  color: var(--brand);
  font-size: 11px;
}
.itinerary-list span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 750;
}
.memory-filter {
  display: flex;
  gap: 8px;
  width: fit-content;
  padding: 5px;
  border-radius: 999px;
  font-size: 10px;
  color: var(--muted);
}
.memory-filter b {
  color: var(--brand);
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(111, 63, 245, 0.10);
}
.memory-filter span { padding: 5px 6px; }
.memory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.memory-grid .photo { min-height: 88px; box-shadow: none; }

.visual-story {
  padding-top: 62px;
  padding-bottom: 70px;
}
.story-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--section-radius);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 36%, rgba(255,255,255,.34) 70%),
    url("/assets/travel-memory-strip.webp") right center / cover no-repeat;
  box-shadow: 0 32px 90px rgba(20, 33, 61, 0.12);
}
.story-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.68)),
    radial-gradient(circle at 82% 20%, rgba(124, 58, 237, 0.18), transparent 28%);
  pointer-events: none;
}
.story-copy,
.story-assets {
  position: relative;
  z-index: 1;
}
.story-copy h2 {
  max-width: 560px;
  margin: 8px 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}
.story-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.58;
}
.story-assets {
  min-height: 360px;
}
.story-shot {
  position: absolute;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(20, 33, 61, 0.18);
}
.atlas-shot {
  width: min(560px, 48vw);
  right: 0;
  top: 12px;
  transform: rotate(2deg);
}
.scan-shot {
  width: min(360px, 34vw);
  right: clamp(160px, 18vw, 280px);
  bottom: -18px;
  transform: rotate(-4deg);
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: clamp(30px, 4vw, 48px);
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--section-radius);
  background:
    radial-gradient(circle at 85% 18%, rgba(111, 63, 245, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.64);
}
.privacy-copy h2,
.section-head h2,
.product-card h2,
.premium-banner h2,
.legal-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}
.privacy-copy > p:not(.eyebrow),
.product-card > p:not(.eyebrow),
.premium-copy p,
.section-head p,
.legal-hero p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.62;
}
.privacy-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.privacy-points article {
  padding: 18px;
  border-radius: 22px;
  text-align: center;
}
.privacy-points span,
.feature-icon,
.premium-perks span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: var(--brand);
  font-size: 24px;
  font-weight: 900;
  background: rgba(111, 63, 245, 0.10);
  border: 1px solid rgba(111, 63, 245, 0.12);
}
.privacy-points b,
.privacy-points small { display: block; }
.privacy-points small { margin-top: 8px; color: var(--muted); line-height: 1.45; }
.privacy-phone {
  position: relative;
  width: 255px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 36px;
  background: #11101d;
  box-shadow: var(--deep-shadow);
}
.privacy-phone .phone-screen {
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
}
.privacy-phone h3 {
  position: absolute;
  top: 22px;
  left: 18px;
  margin: 0;
}
.lock-shield {
  width: 110px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  color: #fff;
  font-size: 46px;
  background: linear-gradient(160deg, var(--brand-2), var(--brand));
  box-shadow: 0 22px 46px rgba(111, 63, 245, 0.30);
}
.privacy-phone b { font-size: 24px; line-height: 1.12; white-space: pre-line; }
.privacy-phone p { margin: 0; color: var(--muted); font-size: 13px; }
.floating-lock {
  position: absolute;
  width: 88px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--brand);
  font-size: 34px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(111, 63, 245, 0.16);
  box-shadow: 0 20px 50px rgba(111, 63, 245, 0.16);
  transform: rotate(14deg);
}
.floating-lock.one { right: -84px; top: 76px; }
.floating-lock.two { right: -58px; bottom: 64px; transform: rotate(-12deg); opacity: .72; }

.feature-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--section-radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(246,251,255,.76)),
    rgba(255, 255, 255, 0.72);
}
.product-card h2 {
  max-width: 360px;
  font-size: clamp(28px, 3vw, 40px);
}
.product-card p:not(.eyebrow) {
  max-width: 320px;
  margin: 0;
  color: var(--text);
}
.feature-icon { margin-left: 0; }
.card-phone {
  position: absolute;
  right: 28px;
  bottom: -64px;
  width: 190px;
  height: 315px;
  border: 8px solid #11101d;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 20px 54px rgba(57, 37, 142, 0.18);
  background-color: #fff;
  background-size: cover;
  background-position: center;
}
.product-card::after {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  right: -110px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,166,214,.18), transparent 68%);
  pointer-events: none;
}
.atlas-mini {
  background:
    radial-gradient(circle at 36% 38%, rgba(111,63,245,.32) 0 8%, transparent 9%),
    radial-gradient(circle at 66% 48%, rgba(111,63,245,.28) 0 7%, transparent 8%),
    linear-gradient(150deg, transparent 47%, rgba(111,63,245,.13) 48% 52%, transparent 53%) 0 0 / 80px 50px,
    #f6f1ff;
}
.together-mini {
  background:
    linear-gradient(#fff,#fff) 16px 22px / calc(100% - 32px) 42px no-repeat,
    linear-gradient(#eee8ff,#eee8ff) 16px 86px / calc(100% - 32px) 28px no-repeat,
    linear-gradient(#eee8ff,#eee8ff) 16px 128px / calc(100% - 32px) 28px no-repeat,
    linear-gradient(#eee8ff,#eee8ff) 16px 170px / calc(100% - 32px) 28px no-repeat,
    #fbf9ff;
}
.memories-mini {
  background:
    linear-gradient(180deg, transparent 52%, rgba(20,33,61,.42)) 14px 20px / 74px 94px no-repeat,
    linear-gradient(180deg, transparent 52%, rgba(20,33,61,.42)) 100px 20px / 74px 94px no-repeat,
    linear-gradient(180deg, transparent 52%, rgba(20,33,61,.42)) 14px 126px / 74px 94px no-repeat,
    linear-gradient(180deg, transparent 52%, rgba(20,33,61,.42)) 100px 126px / 74px 94px no-repeat,
    url("/assets/travel-memory-strip.webp") 14px 20px / 190px 126px no-repeat,
    url("/assets/travel-memory-strip.webp") -34px 20px / 190px 126px no-repeat,
    url("/assets/travel-memory-strip.webp") 14px 126px / 190px 126px no-repeat,
    url("/assets/travel-memory-strip.webp") -62px 126px / 190px 126px no-repeat,
    #fbf9ff;
}
.plans-mini {
  background:
    url("/assets/plan-empty-illustration.png") center 18px / 130px 130px no-repeat,
    linear-gradient(#eee8ff,#eee8ff) 16px 126px / calc(100% - 32px) 26px no-repeat,
    linear-gradient(#eee8ff,#eee8ff) 16px 166px / calc(100% - 32px) 26px no-repeat,
    linear-gradient(#eee8ff,#eee8ff) 16px 206px / calc(100% - 32px) 26px no-repeat,
    #fbf9ff;
}
.section-head {
  max-width: 740px;
  margin: 0 auto 24px;
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.testimonial {
  padding: 20px;
  border-radius: 20px;
}
.testimonial span {
  display: grid;
  margin: 0 0 12px;
  border-width: 0;
}
.testimonial p { margin: 0 0 12px; color: var(--text); line-height: 1.48; }
.testimonial b,
.testimonial small { display: block; }
.testimonial small { margin-top: 4px; color: var(--brand); font-size: 12px; }

.premium-banner {
  display: grid;
  grid-template-columns: 150px minmax(260px, 1fr) minmax(320px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 38px);
  border-radius: var(--section-radius);
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.28), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.16), transparent 26%),
    linear-gradient(135deg, #071a35, #2563eb 44%, #7c3aed);
  box-shadow: 0 26px 76px rgba(65, 42, 160, 0.30);
}
.premium-w {
  width: 150px;
  justify-self: center;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.22));
}
.premium-copy .eyebrow { color: #fff; opacity: .78; text-transform: uppercase; font-size: 13px; }
.premium-copy h2 { margin: 6px 0 8px; font-size: clamp(32px, 4vw, 48px); }
.premium-copy p { margin: 0; color: rgba(255,255,255,.86); }
.premium-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.premium-perks article { text-align: center; }
.premium-perks span {
  color: #fff;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}
.premium-perks b,
.premium-perks small { display: block; }
.premium-perks small { margin-top: 6px; color: rgba(255,255,255,.78); line-height: 1.35; }

.footer { padding: 28px 0 44px; color: var(--muted); }
.footer-inner,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer nav,
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-language,
.footer-theme {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(95, 46, 234, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 24px rgba(95, 46, 234, .08);
}
.footer-language button,
.footer-theme button {
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: #30365f;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  cursor: pointer;
}
.footer-language button[aria-pressed="true"],
.footer-theme button[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(180deg, #7a45ff, #5f2eea);
  box-shadow: 0 8px 18px rgba(95, 46, 234, .22);
}
.footer-language button:focus-visible,
.footer-theme button:focus-visible {
  outline: 3px solid rgba(95, 46, 234, .22);
  outline-offset: 2px;
}
.footer-icp,
.footer-icp a,
.footer-police,
.footer-police a,
.muted { color: var(--muted); font-size: 13px; }
.footer-police a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.footer-police img {
  width: 16px;
  height: 17px;
  flex: 0 0 auto;
  object-fit: contain;
  vertical-align: -3px;
}
.footer-icp a:hover,
.footer-police a:hover { color: var(--ink); }

.legal-main { padding-top: 52px; }
.legal-hero { padding: 56px 0 28px; }
.kicker,
.legal-section-label {
  color: var(--brand);
  font-weight: 860;
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
  padding-bottom: 72px;
}
.legal-card,
.support-card {
  padding: 26px;
  border-radius: 24px;
}
.legal-card h2,
.legal-card h3 { color: var(--ink); }
.legal-card p,
.legal-card li,
.support-item p,
.support-card p {
  color: var(--text);
  line-height: 1.7;
}
.legal-meta { margin: 8px 0 18px; color: var(--muted); }
.legal-aside {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 112px;
}
.support-card strong { display: block; margin-bottom: 8px; }
.support-card a,
.support-item a { color: var(--brand); font-weight: 820; }
.support-list { display: grid; gap: 14px; }
.support-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(111, 63, 245, 0.055);
}
.support-faq {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(37, 99, 235, 0.14);
}
.support-faq h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.18;
}
.support-faq-intro {
  margin: 0 0 18px;
  max-width: 66ch;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.06);
  overflow: hidden;
}
.faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.38;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #7a45ff, #5f2eea);
  font-size: 16px;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "-";
}
.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--text);
  line-height: 1.72;
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

body:not([data-locale="zh"]):not([data-locale="zh-Hant"]) .footer-icp,
body:not([data-locale="zh"]):not([data-locale="zh-Hant"]) .footer-police { display: none; }
body[data-locale="zh"] section[lang="en"],
body[data-locale="zh-Hant"] section[lang="en"],
body:not([data-locale="zh"]) section[lang="zh-CN"],
body:not([data-locale="zh-Hant"]) section[lang="zh-Hant"] { display: none; }
.language-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.language-switch a,
.legal-url-list a {
  width: fit-content;
  color: var(--brand);
  font-weight: 820;
}
.language-switch a[aria-current="true"] {
  color: var(--ink);
}
.legal-url-list {
  display: grid;
  gap: 8px;
  overflow-wrap: anywhere;
}

/* Reference landing-page pass based on the Every Trip design comp. */
body {
  background: #fff;
  overflow-x: hidden;
}
main {
  --section-gap: 30px;
  display: grid;
  row-gap: var(--section-gap);
}
.section-pad,
.section-pad.compact { padding: 0; }
.site-nav,
.nav {
  position: relative;
  top: 0;
  z-index: 60;
  padding: 14px 26px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,0));
}
body > .site-nav,
body > .nav {
  z-index: 60;
}
.nav-inner,
.nav-row {
  width: min(1110px, 100%);
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.brand { gap: 9px; }
.brand-symbol { display: none; }
.brand-logo-wrap {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}
.brand img.brand-logo {
  width: 45px;
  height: 45px;
}
.brand strong,
.brand-name {
  font-size: 24px;
  letter-spacing: 0;
}
.brand small { display: none; }
.nav-links {
  gap: clamp(20px, 2.55vw, 34px);
  color: #0b103c;
  font-size: 13px;
  font-weight: 650;
}
.nav-secondary,
.nav-cta,
.button {
  min-height: 42px;
  border-radius: 10px;
  padding: 0 22px;
  font-size: 14px;
}
.nav-secondary {
  color: #0b103c;
  border: 1px solid rgba(75, 58, 180, 0.18);
  background: rgba(255,255,255,.78);
}
.nav-cta,
.button.primary {
  background: linear-gradient(180deg, #7a45ff, #5f2eea);
  box-shadow: 0 12px 28px rgba(95,46,234,.22);
}
.button.secondary {
  gap: 10px;
  color: #5f2eea;
  border: 2px solid rgba(95,46,234,.72);
  background: #fff;
}
.button.secondary::before {
  content: "▶";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  line-height: 1;
  padding-left: 1px;
}
.hero {
  margin-top: -58px;
  padding-top: 94px;
  padding-bottom: 0;
}
.hero-world {
  position: relative;
  min-height: auto;
  background: transparent;
  overflow: hidden;
  display: grid;
  align-items: start;
}
.hero-world::before,
.hero-world::after { display: none; }
.hero-grid {
  position: relative;
  z-index: 5;
  width: min(1110px, calc(100% - 52px));
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
  gap: 16px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy .pill { display: none; }
.hero h1 {
  max-width: 430px;
  margin: 0 0 22px;
  color: #070b3f;
  font-size: clamp(44px, 6vw, 68px);
  line-height: .98;
  font-weight: 860;
}
.hero h1 span {
  color: #070b3f;
  font-size: clamp(30px, 3.35vw, 42px);
}
.hero h1 .hero-title-main {
  color: #6334f5;
  font-size: clamp(52px, 6.8vw, 76px);
}
.hero-copy p {
  max-width: 396px;
  color: #161846;
  font-size: 16px;
  line-height: 1.58;
}
.hero-actions {
  gap: 14px;
  margin-top: 24px;
}
.hero-actions .button {
  min-width: 142px;
  min-height: 50px;
}
.social-proof {
  gap: 18px;
  margin-top: 24px;
  color: #17204c;
}
.face-row span,
.testimonial span {
  width: 36px;
  height: 36px;
  background-size: cover;
  background-position: center;
}
.face-row span::after,
.testimonial span::after { display: none; }
.face-row span:nth-child(1) { background-image: url("/assets/ref-avatar-emma.png"); }
.face-row span:nth-child(2) { background-image: url("/assets/ref-avatar-lucas.png"); }
.face-row span:nth-child(3) { background-image: url("/assets/ref-avatar-mei.png"); }
.face-row span:nth-child(4) { background-image: url("/assets/ref-avatar-noah.png"); }
.social-proof small {
  color: #5f2eea;
  letter-spacing: .22em;
}
.hero-visual {
  min-height: 540px;
  overflow: visible;
  position: relative;
  isolation: isolate;
}
.hero-globe-art {
  display: none;
}
.place-canvas {
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  transform-origin: center;
}
.place-canvas::after {
  content: none;
}
.hero-place-canvas {
  opacity: .66;
}
.place-canvas-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: opacity .55s ease;
}
.place-canvas-map-night { opacity: 0; }
.place-route {
  position: absolute;
  inset: 4% 0 0 38%;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
  opacity: .50;
}
.place-route-glow,
.place-route-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.place-route-glow {
  stroke: rgba(124,58,237,.08);
  stroke-width: 13;
  filter: blur(5px);
}
.place-route-line {
  stroke: rgba(95,46,234,.38);
  stroke-width: 3;
  stroke-dasharray: 3 13;
  animation: routeTravel 9s linear infinite;
}
.place-coordinate,
.place-chip,
.place-pin,
.place-memory-card,
.place-note-card {
  position: absolute;
  z-index: 4;
}
.place-coordinate,
.place-chip {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(95,46,234,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 12px 28px rgba(20, 33, 61, .055);
  backdrop-filter: blur(16px);
  color: rgba(57,51,101,.72);
  font-size: 12px;
  font-weight: 820;
}
.place-coordinate {
  left: max(24px, calc((100vw - 1110px) / 2 + 18px));
  bottom: 34px;
  padding: 0 12px;
}
.place-chip {
  right: max(24px, calc((100vw - 1110px) / 2 + 22px));
  top: 34px;
  padding: 0 13px;
  color: rgba(95,46,234,.66);
}
.place-pin {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
  gap: 7px;
  color: #241642;
  font-size: 12px;
  font-weight: 860;
  animation: pinFloat 4.8s ease-in-out infinite;
  opacity: .62;
}
.place-pin span {
  width: 24px;
  height: 24px;
  display: block;
  border: 5px solid rgba(255,255,255,.72);
  border-radius: 50% 50% 50% 6px;
  background: linear-gradient(180deg, rgba(139,92,246,.58), rgba(95,46,234,.54));
  box-shadow: 0 8px 18px rgba(95,46,234,.16);
  transform: rotate(-45deg);
}
.place-pin-label {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  box-shadow: 0 9px 24px rgba(30, 16, 51, .055);
  backdrop-filter: blur(14px);
  color: rgba(36,22,66,.72);
}
.place-pin-a { left: 73%; top: 38%; }
.place-pin-b { left: 58%; top: 24%; animation-delay: .8s; }
.place-pin-c { left: 49%; top: 68%; animation-delay: 1.5s; }
.place-memory-card,
.place-note-card {
  display: grid;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 16px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 14px 34px rgba(20, 33, 61, .07);
  backdrop-filter: blur(18px) saturate(145%);
  opacity: .74;
}
.place-memory-card {
  grid-template-columns: 54px minmax(0, 1fr);
  min-width: 214px;
  padding: 9px 11px 9px 9px;
}
.place-memory-card b,
.place-note-card b {
  display: block;
  color: rgba(21,21,65,.74);
  font-size: 13px;
  line-height: 1.15;
}
.place-memory-card small,
.place-note-card small {
  display: block;
  margin-top: 3px;
  color: rgba(107,100,117,.72);
  font-size: 10px;
  line-height: 1.25;
}
.place-memory-thumb,
.place-memory-avatar {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-image: url("/assets/travel-memory-strip.webp");
  background-size: 210px 120px;
  background-position: 50% center;
}
.place-memory-avatar {
  border-radius: 50%;
  background-image: url("/assets/ref-avatar-emma.png");
  background-size: cover;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.86);
}
.place-memory-card-a {
  left: 49%;
  bottom: 62px;
}
.place-memory-card-b {
  right: max(34px, calc((100vw - 1110px) / 2 + 26px));
  bottom: 118px;
  min-width: 232px;
}
.place-note-card {
  left: 60%;
  top: 96px;
  width: 154px;
  padding: 12px 14px;
  transform: rotate(-2deg);
}
.map-place-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -42vh;
  left: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .70;
  transform: translate3d(0, calc(var(--map-parallax-y, 0px) * -1), 0);
  will-change: transform;
}
.map-place-layer .place-route {
  opacity: .36;
}
.map-route-main {
  inset: 7% -5% 0 36%;
}
.map-route-lower {
  inset: 48% 12% 0 -12%;
  opacity: .30;
}
.map-place-layer .place-route-glow {
  stroke: rgba(124,58,237,.055);
}
.map-place-layer .place-route-line {
  stroke: rgba(95,46,234,.30);
}
.map-place-layer .place-coordinate,
.map-place-layer .place-chip,
.map-place-layer .place-pin,
.map-place-layer .place-memory-card,
.map-place-layer .place-note-card {
  z-index: 2;
}
.map-coordinate-primary {
  left: max(18px, calc((100vw - 1110px) / 2 - 18px));
  bottom: 28%;
}
.map-coordinate-secondary {
  left: auto;
  right: max(22px, calc((100vw - 1110px) / 2 + 72px));
  top: 62%;
  bottom: auto;
}
.map-chip-primary {
  top: 18%;
  right: max(22px, calc((100vw - 1110px) / 2 + 8px));
}
.map-chip-secondary {
  top: 56%;
  right: auto;
  left: max(26px, calc((100vw - 1110px) / 2 + 48px));
}
.map-place-layer .place-pin-a { left: 74%; top: 35%; }
.map-place-layer .place-pin-b { left: 59%; top: 22%; }
.map-place-layer .place-pin-c { left: 47%; top: 69%; }
.map-pin-d { left: 80%; top: 78%; animation-delay: 2s; }
.map-place-layer .place-memory-card-a {
  left: 49%;
  bottom: 30%;
}
.map-place-layer .place-memory-card-b {
  right: max(30px, calc((100vw - 1110px) / 2 + 18px));
  bottom: 36%;
}
.map-memory-card-c {
  left: max(18px, calc((100vw - 1110px) / 2 + 44px));
  top: 56%;
  bottom: auto;
  min-width: 208px;
}
.place-memory-thumb.coffee {
  background-position: 16% center;
}
.map-place-layer .place-note-card {
  left: 61%;
  top: 21%;
}
.map-note-card-lower {
  left: auto;
  right: max(18px, calc((100vw - 1110px) / 2 + 82px));
  top: 61%;
  bottom: auto;
  transform: rotate(2deg);
}
@keyframes routeTravel {
  from { stroke-dashoffset: 160; }
  to { stroke-dashoffset: 0; }
}
@keyframes pinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.hero-phone-art {
  position: absolute;
  z-index: 6;
  width: min(500px, 86%);
  right: -18px;
  top: 42px;
  filter: drop-shadow(0 24px 38px rgba(16, 16, 48, .20));
}
.visual-story { display: none; }
.privacy-panel,
.product-card,
.testimonial,
.premium-banner {
  border: 1px solid rgba(95, 46, 234, .08);
  background: linear-gradient(135deg, rgba(255,255,255,.82) 0%, rgba(247,243,255,.68) 100%);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(145%);
}
.privacy-panel {
  min-height: 348px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 12px;
  align-items: stretch;
  padding: 40px 22px 0 52px;
  border-radius: 22px;
  overflow: hidden;
}
.privacy-copy h2,
.section-head h2,
.product-card h2,
.premium-banner h2 {
  color: #080b3f;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.04;
  font-weight: 850;
}
.privacy-copy > p:not(.eyebrow) {
  max-width: 390px;
  color: #171a4c;
  font-size: 16px;
  line-height: 1.55;
}
.privacy-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.privacy-points article {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.privacy-points span,
.feature-icon,
.premium-perks span {
  width: 54px;
  height: 54px;
  color: #6334f5;
  border: 1px solid rgba(95,46,234,.18);
  background: rgba(255,255,255,.74);
  box-shadow: 0 14px 28px rgba(95,46,234,.08);
}
.privacy-points span {
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0;
}
.privacy-points span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.privacy-points b {
  color: #111344;
  font-size: 13px;
  line-height: 1.22;
}
.privacy-points small {
  font-size: 10px;
  line-height: 1.45;
}
.privacy-visual-stack {
  position: relative;
  width: min(370px, 100%);
  min-height: 345px;
  align-self: end;
  justify-self: end;
}
.privacy-phone-cut,
.privacy-lock-cards-cut {
  position: absolute;
  display: block;
  max-width: none;
}
.privacy-phone-cut {
  width: 214px;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.privacy-lock-cards-cut {
  width: 174px;
  right: 0;
  top: 8px;
  z-index: 1;
}
.feature-mosaic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--section-gap);
}
.product-card {
  min-height: 255px;
  padding: 30px 28px;
  border-radius: 16px;
}
.feature-icon {
  width: 24px;
  height: 24px;
  margin: 0 0 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 24px;
}
.product-card .eyebrow {
  font-size: 11px;
  text-transform: uppercase;
}
.product-card h2 {
  max-width: 210px;
  margin-top: 6px;
  font-size: 26px;
}
.product-card p:not(.eyebrow) {
  max-width: 190px;
  color: #31365e;
  font-size: 14px;
  line-height: 1.62;
}
.product-card::after { display: none; }
.feature-phone {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: min(170px, 40%);
  filter: drop-shadow(0 12px 24px rgba(11, 16, 60, .10));
}
.section-head {
  margin: 0 auto 12px;
}
.section-head h2 {
  font-size: 22px;
}
.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.testimonial {
  min-height: 112px;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(16px) saturate(145%);
}
.testimonial span {
  grid-row: 1 / span 3;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 50%;
}
.testimonial:nth-child(1) span { background-image: url("/assets/ref-avatar-emma.png"); }
.testimonial:nth-child(2) span { background-image: url("/assets/ref-avatar-lucas.png"); }
.testimonial:nth-child(3) span { background-image: url("/assets/ref-avatar-mei.png"); }
.testimonial:nth-child(4) span { background-image: url("/assets/ref-avatar-noah.png"); }
.testimonial p {
  margin: 0 0 8px;
  color: #1e2350;
  font-size: 11px;
  line-height: 1.45;
}
.testimonial b {
  font-size: 12px;
}
.testimonial small {
  color: #5f2eea;
  font-size: 10px;
}
.premium-banner {
  min-height: 226px;
  position: relative;
  grid-template-columns: minmax(0, 1fr) 208px;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: 32px 38px 32px 42px;
  border-radius: 22px;
  color: #080b3f;
  background:
    radial-gradient(ellipse at 86% 40%, rgba(124,58,237,.13), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.86) 0%, rgba(246,240,255,.76) 100%);
}
.premium-banner::before {
  content: "";
  position: absolute;
  right: 38px;
  top: 24px;
  width: 210px;
  height: 160px;
  border-radius: 50%;
  opacity: .42;
  background:
    radial-gradient(ellipse at center, transparent 48%, rgba(95,46,234,.16) 49%, transparent 54%),
    radial-gradient(ellipse at center, transparent 58%, rgba(95,46,234,.13) 59%, transparent 64%),
    radial-gradient(ellipse at center, transparent 68%, rgba(95,46,234,.10) 69%, transparent 74%);
  transform: rotate(-8deg);
  pointer-events: none;
}
.premium-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.premium-copy .premium-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6334f5;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}
.premium-copy .premium-label span {
  font-size: 13px;
  line-height: 1;
}
.premium-copy h2 {
  max-width: 460px;
  margin: 8px 0 14px;
  color: #080b3f;
  font-size: 32px;
  line-height: 1.04;
}
.premium-copy p {
  color: #6334f5;
  font-size: 14px;
}
.premium-perks {
  max-width: 660px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 14px;
}
.premium-perks article {
  min-width: 0;
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  justify-content: start;
  text-align: left;
}
.premium-perks span {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #8a5cff, #6334f5);
  box-shadow: 0 7px 16px rgba(95,46,234,.18);
}
.premium-perks span::before {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}
.premium-perks b {
  min-width: 0;
  color: #3a3568;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
  text-align: left;
}
.premium-perks small {
  font-size: 10px;
}
.premium-spatial-art {
  position: relative;
  z-index: 1;
  width: 190px;
  justify-self: end;
  filter: drop-shadow(0 24px 44px rgba(95,46,234,.26));
}
.premium-banner .button {
  justify-self: start;
  min-width: 210px;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(180deg, #7a45ff, #5f2eea);
  box-shadow: 0 14px 30px rgba(95,46,234,.20);
}

body[data-theme="dark"] {
  --ink: #f8f6ff;
  --text: #ddd8f2;
  --muted: #a9a1c9;
  --line: rgba(190, 174, 255, .20);
  --glass: rgba(15, 15, 36, .70);
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 4%, rgba(111,63,245,.22), transparent 30%),
    radial-gradient(circle at 14% 70%, rgba(0,166,214,.12), transparent 34%),
    linear-gradient(180deg, #050713 0%, #080816 46%, #0d0822 100%);
  color-scheme: dark;
}
body[data-theme="dark"] .site-nav,
body[data-theme="dark"] .nav {
  background: linear-gradient(180deg, rgba(5, 7, 19, .90), rgba(5, 7, 19, 0));
}
body[data-theme="dark"] .brand strong,
body[data-theme="dark"] .brand-name,
body[data-theme="dark"] .nav-links,
body[data-theme="dark"] .nav-secondary,
body[data-theme="dark"] .hero h1,
body[data-theme="dark"] .hero h1 span,
body[data-theme="dark"] .privacy-copy h2,
body[data-theme="dark"] .section-head h2,
body[data-theme="dark"] .product-card h2,
body[data-theme="dark"] .legal-hero h1,
body[data-theme="dark"] .legal-card h2,
body[data-theme="dark"] .legal-card h3 {
  color: #fbf9ff;
}
body[data-theme="dark"] .hero h1 .hero-title-main,
body[data-theme="dark"] .eyebrow,
body[data-theme="dark"] .kicker,
body[data-theme="dark"] .legal-section-label,
body[data-theme="dark"] .social-proof small,
body[data-theme="dark"] .testimonial small,
body[data-theme="dark"] .support-card a {
  color: #a98cff;
}
body[data-theme="dark"] .hero-copy p,
body[data-theme="dark"] .social-proof,
body[data-theme="dark"] .privacy-copy > p:not(.eyebrow),
body[data-theme="dark"] .product-card p:not(.eyebrow),
body[data-theme="dark"] .testimonial p,
body[data-theme="dark"] .section-head p,
body[data-theme="dark"] .legal-hero p,
body[data-theme="dark"] .legal-card p,
body[data-theme="dark"] .legal-card li,
body[data-theme="dark"] .support-item p,
body[data-theme="dark"] .support-card p {
  color: var(--text);
}
body[data-theme="dark"] .nav-secondary,
body[data-theme="dark"] .button.secondary,
body[data-theme="dark"] .footer-language,
body[data-theme="dark"] .footer-theme {
  border-color: rgba(190, 174, 255, .22);
  background: rgba(12, 13, 34, .70);
}
body[data-theme="dark"] .button.secondary {
  color: #d8ceff;
}
body[data-theme="dark"] .site-map-background {
  background: #0c1022;
}
body[data-theme="dark"] .site-map-background::before {
  background: linear-gradient(180deg, rgba(5,7,19,.60), rgba(5,7,19,.28) 58%, rgba(5,7,19,0));
}
body[data-theme="dark"] .site-map-background::after {
  background:
    linear-gradient(90deg, rgba(5,7,19,.46), rgba(5,7,19,.26) 42%, rgba(5,7,19,.16) 100%),
    radial-gradient(circle at 72% 38%, rgba(141,104,255,.22), transparent 40%);
}
body[data-theme="dark"] .site-map-image-light { opacity: 0; }
body[data-theme="dark"] .site-map-image-night { opacity: 1; }
body[data-theme="dark"] .place-route-glow {
  stroke: rgba(169,140,255,.12);
}
body[data-theme="dark"] .place-route-line {
  stroke: rgba(169,140,255,.42);
}
body[data-theme="dark"] .place-coordinate,
body[data-theme="dark"] .place-chip,
body[data-theme="dark"] .place-pin-label,
body[data-theme="dark"] .place-memory-card,
body[data-theme="dark"] .place-note-card {
  border-color: rgba(190, 174, 255, .16);
  background: rgba(13, 14, 35, .54);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
body[data-theme="dark"] .place-coordinate,
body[data-theme="dark"] .place-pin-label,
body[data-theme="dark"] .place-memory-card b,
body[data-theme="dark"] .place-note-card b {
  color: rgba(255,255,255,.78);
}
body[data-theme="dark"] .place-chip {
  color: rgba(216,206,255,.72);
}
body[data-theme="dark"] .place-memory-card small,
body[data-theme="dark"] .place-note-card small {
  color: rgba(183,173,214,.72);
}
body[data-theme="dark"] .privacy-panel,
body[data-theme="dark"] .product-card,
body[data-theme="dark"] .testimonial,
body[data-theme="dark"] .legal-card,
body[data-theme="dark"] .support-card {
  border-color: rgba(190, 174, 255, .14);
  background:
    linear-gradient(135deg, rgba(24, 22, 50, .88) 0%, rgba(39, 28, 82, .68) 100%);
}
body[data-theme="dark"] .testimonial {
  background: rgba(16, 16, 38, .76);
}
body[data-theme="dark"] .premium-banner {
  border-color: rgba(190, 174, 255, .14);
  background:
    radial-gradient(ellipse at 86% 40%, rgba(141,104,255,.24), transparent 44%),
    linear-gradient(135deg, rgba(24, 22, 50, .88) 0%, rgba(39, 28, 82, .74) 100%);
}
body[data-theme="dark"] .premium-copy h2 {
  color: #fbf9ff;
}
body[data-theme="dark"] .premium-copy .premium-label {
  color: #b9a4ff;
}
body[data-theme="dark"] .premium-perks b {
  color: #ddd8f2;
}
body[data-theme="dark"] .premium-spatial-art {
  filter: drop-shadow(0 24px 44px rgba(0,0,0,.32));
}
body[data-theme="dark"] .privacy-points b,
body[data-theme="dark"] .testimonial b,
body[data-theme="dark"] .support-card strong {
  color: #fff;
}
body[data-theme="dark"] .privacy-points small,
body[data-theme="dark"] .legal-meta,
body[data-theme="dark"] .muted,
body[data-theme="dark"] .footer,
body[data-theme="dark"] .footer-icp,
body[data-theme="dark"] .footer-icp a,
body[data-theme="dark"] .footer-police,
body[data-theme="dark"] .footer-police a {
  color: var(--muted);
}
body[data-theme="dark"] .privacy-points span,
body[data-theme="dark"] .feature-icon {
  color: #b9a4ff;
}
body[data-theme="dark"] .support-item {
  background: rgba(124, 58, 237, .14);
}
body[data-theme="dark"] .footer-language button,
body[data-theme="dark"] .footer-theme button {
  color: #dfd8ff;
}
body[data-theme="dark"] .footer-language button[aria-pressed="true"],
body[data-theme="dark"] .footer-theme button[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(180deg, #8d68ff, #5f2eea);
}
body[data-theme="dark"] .footer-icp a:hover,
body[data-theme="dark"] .footer-police a:hover {
  color: #fff;
}
body[data-theme="dark"] .hero-phone-art,
body[data-theme="dark"] .feature-phone,
body[data-theme="dark"] .privacy-phone-cut,
body[data-theme="dark"] .privacy-lock-cards-cut {
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.34));
}

@media (min-width: 1280px) {
  main {
    --section-gap: 30px;
  }
  .hero-visual {
    min-height: 540px;
  }
  .hero-grid {
    align-items: start;
  }
  .hero-phone-art {
    top: 34px;
    width: min(560px, 92%);
  }
  .privacy-panel,
  .feature-mosaic,
  .testimonial-grid,
  .premium-banner {
    width: min(1110px, calc(100% - 72px));
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 860px) {
  main {
    --section-gap: 24px;
  }
  .nav-links { display: none; }
  .hero-grid,
  .privacy-panel,
  .legal-layout,
  .story-panel { grid-template-columns: 1fr; }
  .hero-copy {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .hero-copy .pill,
  .hero-actions,
  .social-proof {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .hero-copy p { margin: 0 auto; }
  .hero h1 { margin-left: auto; margin-right: auto; }
  .hero-world {
    min-height: auto;
    background: transparent;
    align-items: start;
  }
  .hero-visual {
    width: min(760px, 100%);
    min-height: 460px;
    margin: 0 auto;
  }
  .place-canvas {
    left: 50%;
    top: 0;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
  }
  .place-route { inset: 42% -10% 0 0; }
  .hero-phone-art {
    position: absolute;
    left: 50%;
    right: auto;
    top: 78px;
    width: min(560px, 100%);
    transform: translateX(-50%);
  }
  .device-atlas { left: 2%; }
  .device-memory { right: 2%; }
  .story-panel { min-height: 660px; }
  .story-copy {
    max-width: 640px;
    text-align: center;
    margin: 0 auto;
  }
  .story-copy h2,
  .story-copy p:not(.eyebrow),
  .story-copy .eyebrow { margin-left: auto; margin-right: auto; }
  .story-assets { min-height: 380px; }
  .atlas-shot { width: min(620px, 82vw); }
  .scan-shot { width: min(380px, 52vw); right: auto; left: 0; }
  .privacy-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .privacy-panel {
    min-height: auto;
    padding: 34px 28px 0;
  }
  .privacy-visual-stack {
    justify-self: center;
    width: min(370px, 100%);
    min-height: 345px;
  }
  .feature-phone { width: min(170px, 38%); }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .premium-banner {
    grid-template-columns: minmax(0, 1fr) 148px;
    gap: 18px;
    min-height: 210px;
    padding: 28px 28px 28px 30px;
    text-align: left;
  }
  .premium-spatial-art {
    width: 150px;
  }
  .premium-perks { grid-template-columns: 1fr; }
  .premium-banner .button { justify-self: start; }
  .premium-banner .app-store-badge { justify-self: start; }
  .legal-aside { position: static; }
}

@media (max-width: 760px) {
  :root {
    --section-radius: 26px;
    --section-shell: min(100% - 28px, 1280px);
    --content-shell: var(--section-shell);
  }
  .site-nav,
  .nav { top: 8px; padding: 0 8px; }
  .nav-inner,
  .nav-row { min-height: 64px; padding: 9px 10px; border-radius: 20px; }
  .brand img { width: 40px; height: 40px; border-radius: 12px; }
  .brand-logo-wrap {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }
  .brand img.brand-logo {
    width: 39px;
    height: 39px;
    border-radius: 0;
    transform: translateY(-2px);
  }
  .brand-symbol { display: none; }
  .brand strong,
  .brand-name { font-size: 18px; }
  .brand small,
  .nav-secondary { display: none; }
  .nav-cta,
  .button { min-height: 42px; padding: 0 14px; font-size: 14px; }
  .nav-cta:not(.app-store-badge) {
    min-width: 72px;
    max-width: 96px;
    overflow: hidden;
    font-size: 0;
  }
  body[data-locale="en"] .nav-cta:not(.app-store-badge)::after {
    content: "Get";
    font-size: 14px;
  }
  body[data-locale="zh"] .nav-cta:not(.app-store-badge)::after {
    content: "获取";
    font-size: 14px;
  }
  body[data-locale="zh-Hant"] .nav-cta:not(.app-store-badge)::after {
    content: "獲取";
    font-size: 14px;
  }
  .app-store-badge,
  .nav-cta.app-store-badge,
  .button.app-store-badge {
    min-height: 40px;
    height: 40px;
    padding: 0;
    font-size: 0;
  }
  .app-store-badge img,
  .hero-actions .app-store-badge img,
  .premium-banner .app-store-badge img { height: 40px; }
  main {
    --section-gap: 22px;
  }
  .section-pad,
  .section-pad.compact { padding: 0; }
  .hero {
    margin-top: -78px;
    padding-top: 84px;
    padding-bottom: 0;
  }
  .hero-world {
    min-height: auto;
    background: transparent;
  }
  .hero-place-canvas::after {
    content: none;
  }
  body[data-theme="dark"] .hero-place-canvas::after {
    content: none;
  }
  .hero h1 { max-width: 440px; }
  .hero h1 span { font-size: clamp(26px, 6.7vw, 34px); }
  .hero h1 .hero-title-main { font-size: clamp(42px, 11vw, 56px); }
  .hero-copy p { font-size: 17px; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-actions .app-store-badge { flex: 0 0 auto; }
  .social-proof { align-items: flex-start; }
  .hero-visual { min-height: 420px; transform: none; margin-bottom: 0; }
  .place-canvas {
    width: 100vw;
    height: 100%;
    border-radius: 0;
  }
  .place-route { inset: 52% -30% 0 3%; }
  .place-pin-a { left: 78%; top: 68%; }
  .place-pin-b { left: 63%; top: 58%; }
  .place-pin-c { left: 16%; top: 76%; }
  .place-coordinate {
    left: 18px;
    top: auto;
    bottom: 82px;
  }
  .place-chip {
    left: 18px;
    right: auto;
    top: auto;
    bottom: 44px;
  }
  .place-pin {
    grid-template-columns: 22px;
  }
  .place-pin span {
    width: 22px;
    height: 22px;
  }
  .place-pin-label { display: none; }
  .place-memory-card {
    min-width: 196px;
    transform: scale(.88);
    transform-origin: left bottom;
  }
  .place-memory-card-a {
    left: auto;
    right: 18px;
    top: auto;
    bottom: 34px;
    z-index: 7;
  }
  .place-memory-card-b,
  .place-note-card { display: none; }
  .hero-phone-art {
    top: 76px;
    width: min(486px, 112%);
  }
  .map-place-layer {
    opacity: .68;
  }
  .map-place-layer .place-route {
    opacity: .30;
  }
  .map-route-main {
    inset: 16% -40% 0 8%;
  }
  .map-route-lower {
    inset: 58% -32% 0 -22%;
  }
  .map-place-layer .place-coordinate,
  .map-place-layer .place-chip {
    min-height: 28px;
    font-size: 11px;
  }
  .map-coordinate-primary {
    left: 14px;
    right: auto;
    top: auto;
    bottom: 34%;
  }
  .map-coordinate-secondary {
    left: auto;
    right: 14px;
    top: 65%;
    bottom: auto;
  }
  .map-chip-primary {
    left: auto;
    right: 14px;
    top: 18%;
    bottom: auto;
  }
  .map-chip-secondary {
    left: 14px;
    right: auto;
    top: 56%;
    bottom: auto;
  }
  .map-place-layer .place-pin {
    display: grid;
    grid-template-columns: 18px;
  }
  .map-place-layer .place-pin span {
    width: 18px;
    height: 18px;
    border-width: 4px;
  }
  .map-place-layer .place-pin-a { left: 76%; top: 37%; }
  .map-place-layer .place-pin-b { left: 57%; top: 27%; }
  .map-place-layer .place-pin-c { left: 20%; top: 70%; }
  .map-pin-d { left: 78%; top: 82%; }
  .map-place-layer .place-pin-label { display: none; }
  .map-place-layer .place-memory-card {
    display: grid;
    min-width: 182px;
    transform: scale(.76);
  }
  .map-place-layer .place-memory-card-a {
    left: auto;
    right: 10px;
    bottom: 30%;
    transform-origin: right bottom;
  }
  .map-place-layer .place-memory-card-b {
    display: none;
  }
  .map-memory-card-c {
    left: -8px;
    right: auto;
    top: 55%;
    bottom: auto;
    transform-origin: left bottom;
  }
  .map-place-layer .place-note-card {
    display: grid;
    left: auto;
    right: 12px;
    top: 51%;
    width: 126px;
    transform: scale(.82) rotate(-2deg);
    transform-origin: right top;
  }
  .map-note-card-lower {
    right: -10px;
    top: 60%;
    bottom: auto;
    transform: scale(.82) rotate(2deg);
  }
  .device { width: 224px; }
  .device-plan { width: 250px; top: 0; }
  .device-atlas { top: 246px; left: 4%; transform: rotate(-4deg); }
  .device-memory { top: 260px; right: 1%; transform: rotate(4deg); }
  .story-panel { min-height: 640px; padding: 26px; border-radius: var(--section-radius); }
  .story-copy h2 { font-size: clamp(34px, 10vw, 52px); }
  .story-copy p:not(.eyebrow) { font-size: 17px; }
  .story-assets { min-height: 300px; }
  .atlas-shot { width: 92vw; right: -70px; top: 30px; }
  .scan-shot { width: 62vw; left: -28px; bottom: -8px; }
  .privacy-panel { padding: 28px 20px 0; border-radius: var(--section-radius); }
  .privacy-visual-stack {
    width: min(330px, 100%);
    min-height: 310px;
  }
  .privacy-phone-cut { width: 194px; }
  .privacy-lock-cards-cut { width: 156px; }
  .privacy-points,
  .feature-mosaic,
  .testimonial-grid { grid-template-columns: 1fr; }
  .premium-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 26px 22px;
  }
  .premium-banner::before {
    right: -24px;
    top: -18px;
  }
  .premium-spatial-art {
    position: absolute;
    right: -28px;
    top: -26px;
    width: 142px;
    opacity: .72;
  }
  .premium-copy {
    max-width: none;
    padding-right: 76px;
  }
  .premium-copy h2 {
    font-size: 29px;
  }
  .premium-perks { grid-template-columns: 1fr; }
  .floating-lock { display: none; }
  .product-card { min-height: 330px; padding: 24px; border-radius: var(--section-radius); }
  .feature-phone { right: 10px; width: min(170px, 42%); }
  .card-phone { right: 24px; width: 170px; }
  .premium-banner { border-radius: var(--section-radius); }
  .footer-inner,
  .footer-row,
  .footer nav { flex-direction: column; align-items: flex-start; }
  .footer-controls { justify-content: flex-start; }
}

/* Spond-inspired full-bleed section rhythm. */
main {
  --section-gap: 0;
  --hero-section-height: clamp(820px, 88vh, 980px);
  --landing-section-height: auto;
  --landing-section-y: clamp(78px, 7vw, 116px);
  row-gap: 0;
}
.hero-grid,
.landing-band > .container,
.privacy-panel,
.feature-mosaic,
.testimonial-band > .container,
.premium-banner {
  width: min(1480px, calc(100vw - clamp(32px, 5vw, 96px)));
}
.hero-grid {
  grid-template-columns: minmax(430px, .92fr) minmax(560px, 1.08fr);
}
.hero-world {
  min-height: var(--hero-section-height);
  align-items: center;
}
.hero h1 {
  max-width: 620px;
}
.hero h1 span {
  font-size: clamp(40px, 4.2vw, 58px);
}
.hero h1 .hero-title-main {
  font-size: clamp(66px, 7.4vw, 104px);
}
.hero-copy p {
  max-width: 560px;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.5;
}
.hero-phone-art {
  width: min(700px, 104%);
  right: -54px;
}
.section-pad.landing-band {
  position: relative;
  width: 100vw;
  min-height: var(--landing-section-height);
  margin-left: calc(50% - 50vw);
  padding: var(--landing-section-y) 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.landing-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.privacy-band::before {
  background:
    linear-gradient(90deg, rgba(245,241,255,.96), rgba(255,255,255,.88) 52%, rgba(238,249,255,.72)),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.58));
}
.feature-band::before {
  background:
    linear-gradient(90deg, rgba(246,251,255,.86), rgba(245,241,255,.84) 48%, rgba(255,255,255,.88)),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(245,248,255,.86));
}
.testimonial-band::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(247,242,255,.82) 50%, rgba(240,250,255,.74)),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.94));
}
.premium-band::before {
  background:
    linear-gradient(90deg, rgba(246,241,255,.98), rgba(255,255,255,.86) 52%, rgba(238,249,255,.78)),
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(248,245,255,.96));
}
.landing-band::after {
  content: none;
}
.product-card {
  min-width: 0;
  border-color: rgba(95,46,234,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 26px 70px rgba(37, 32, 86, .075);
}
.product-card[id] {
  scroll-margin-top: clamp(120px, 12vh, 180px);
}
.privacy-copy,
.premium-copy,
.product-card,
.testimonial {
  min-width: 0;
}
.privacy-panel {
  min-height: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  padding: clamp(34px, 3.8vw, 58px) 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.privacy-copy h2,
.section-head h2,
.premium-copy h2 {
  max-width: 100%;
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: .96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
.privacy-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.55;
}
.privacy-points {
  gap: clamp(20px, 2.6vw, 42px);
  margin-top: clamp(34px, 4vw, 58px);
}
.privacy-points span {
  width: 66px;
  height: 66px;
}
.privacy-points b {
  font-size: 15px;
}
.privacy-points small {
  font-size: 12px;
}
.privacy-visual-stack {
  width: min(420px, 100%);
  min-height: clamp(360px, 28vw, 460px);
}
.privacy-phone-cut {
  width: clamp(220px, 15vw, 285px);
}
.privacy-lock-cards-cut {
  width: clamp(180px, 12vw, 230px);
}
.privacy-lock-hero {
  display: block;
  width: clamp(280px, 24vw, 430px);
  margin: clamp(8px, 1.2vw, 18px) auto 0;
}
.privacy-lock-hero img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 42px rgba(38, 32, 82, .18));
}
.feature-mosaic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.4vw, 24px);
}
.product-card {
  min-height: clamp(320px, 20vw, 380px);
  padding: clamp(30px, 2.4vw, 44px);
  border-radius: 30px;
}
.product-card h2 {
  max-width: 460px;
  font-size: clamp(32px, 2.4vw, 44px);
  line-height: 1;
}
.product-card p:not(.eyebrow) {
  max-width: 390px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.58;
}
.feature-phone {
  right: clamp(10px, 1.6vw, 28px);
  width: min(270px, 42%);
}
.testimonial-band .section-head {
  width: min(1480px, calc(100vw - clamp(32px, 5vw, 96px)));
  margin: 0 auto clamp(34px, 4vw, 62px);
}
.testimonial-grid {
  gap: clamp(18px, 2vw, 34px);
}
.testimonial {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.testimonial p {
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.52;
}
.testimonial b {
  font-size: 15px;
}
.testimonial small {
  font-size: 12px;
}
.premium-banner {
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 420px);
  padding: clamp(38px, 4.2vw, 68px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.premium-banner::before {
  content: none;
}
.premium-copy h2 {
  max-width: 760px;
}
.premium-copy .premium-label {
  font-size: 17px;
}
.premium-perks {
  max-width: 820px;
  gap: 12px;
}
.premium-perks b {
  font-size: clamp(15px, 1vw, 18px);
}
.premium-spatial-art {
  width: min(300px, 82%);
}

body[data-theme="dark"] .privacy-band::before,
body[data-theme="dark"] .feature-band::before,
body[data-theme="dark"] .testimonial-band::before,
body[data-theme="dark"] .premium-band::before {
  background:
    linear-gradient(90deg, rgba(11,13,34,.92), rgba(16,15,42,.78) 50%, rgba(8,18,38,.72)),
    linear-gradient(180deg, rgba(5,7,19,.42), rgba(5,7,19,.86));
}
body[data-theme="dark"] .privacy-panel,
body[data-theme="dark"] .testimonial,
body[data-theme="dark"] .premium-banner {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

@media (max-width: 1180px) {
  main {
    --landing-section-height: auto;
    --landing-section-y: clamp(58px, 8vw, 88px);
  }
  .hero-grid,
  .landing-band > .container,
  .privacy-panel,
  .feature-mosaic,
  .testimonial-band > .container,
  .premium-banner,
  .testimonial-band .section-head {
    width: min(980px, calc(100vw - 32px));
  }
  .hero-grid,
  .privacy-panel,
  .premium-banner {
    grid-template-columns: 1fr;
  }
  .hero-world,
  .section-pad.landing-band {
    min-height: auto;
  }
  .feature-mosaic,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero h1 .hero-title-main {
    font-size: clamp(56px, 8.6vw, 86px);
  }
  .privacy-visual-stack {
    justify-self: center;
  }
  .premium-spatial-art {
    width: 240px;
  }
}

@media (min-width: 1181px) {
  .product-card {
    padding-right: clamp(280px, 20vw, 360px);
  }
  .product-card h2 {
    max-width: 380px;
  }
  .product-card p:not(.eyebrow) {
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  main {
    --landing-section-y: 52px;
  }
  .hero-grid,
  .landing-band > .container,
  .privacy-panel,
  .feature-mosaic,
  .testimonial-band > .container,
  .premium-banner,
  .testimonial-band .section-head {
    width: min(620px, calc(100vw - 28px));
  }
  .nav-actions {
    display: none;
  }
  .section-pad.landing-band {
    padding: var(--landing-section-y) 0;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }
  .hero-copy {
    max-width: 100%;
    overflow: hidden;
  }
  .hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero h1 span {
    font-size: clamp(24px, 6.5vw, 28px);
    white-space: normal;
  }
  .hero h1 .hero-title-main {
    font-size: clamp(40px, 11vw, 48px);
  }
  .privacy-copy h2,
  .section-head h2,
  .premium-copy h2 {
    font-size: clamp(32px, 9.4vw, 40px);
    line-height: 1;
  }
  .hero-copy p,
  .privacy-copy > p:not(.eyebrow),
  .product-card p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
  }
  .hero-copy p { font-size: 16px; }
  .social-proof {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .product-card { border-radius: 26px; }
  .privacy-panel,
  .premium-banner { border-radius: 0; }
  .privacy-panel {
    padding: 24px 0 0;
  }
  .privacy-points,
  .feature-mosaic,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 360px;
  }
  .product-card h2,
  .product-card p:not(.eyebrow) {
    max-width: 54%;
  }
  .premium-spatial-art {
    width: 148px;
  }
}

/* Hero asset composition: transparent cutout from the May 9 visual pass. */
.place-hero {
  min-height: clamp(560px, 54vw, 740px);
}
.hero-collage {
  position: absolute;
  display: block;
  top: 50%;
  right: clamp(-430px, -24vw, -260px);
  z-index: 1;
  width: min(976px, 133%);
  pointer-events: none;
  isolation: isolate;
  transform: translateY(-48%);
}
.hero-collage::before {
  content: "";
  position: absolute;
  inset: 12% 5% 8% 18%;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 58, 237, .16), rgba(124, 58, 237, 0) 68%);
  filter: blur(18px);
}
.hero-product-collage {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 34px 54px rgba(16, 16, 48, .2));
  user-select: none;
}

@media (max-width: 1180px) {
  .place-hero {
    min-height: clamp(500px, 64vw, 650px);
  }
  .hero-collage {
    right: 50%;
    width: min(892px, 306%);
    transform: translate(50%, -48%);
  }
}

.feature-icon.feature-icon-art {
  position: absolute;
  right: clamp(8px, 2vw, 36px);
  bottom: clamp(24px, 2.4vw, 48px);
  z-index: 0;
  width: clamp(210px, 18vw, 330px);
  height: clamp(210px, 18vw, 330px);
  display: block;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.feature-mosaic .product-card {
  min-height: clamp(360px, 25vw, 470px);
  padding-right: clamp(210px, 22vw, 370px);
}

.feature-mosaic .product-card .eyebrow,
.feature-mosaic .product-card h2,
.feature-mosaic .product-card p:not(.eyebrow) {
  position: relative;
  z-index: 1;
}

.feature-mosaic .product-card h2 {
  max-width: 390px;
}

.feature-mosaic .product-card p:not(.eyebrow) {
  max-width: 360px;
}

.feature-icon-art picture,
.feature-icon-art img {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-icon-art img {
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(38, 32, 82, .16));
}

body[data-theme="dark"] .feature-icon-art img {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .28));
}

.privacy-points span {
  width: clamp(86px, 6.4vw, 112px);
  height: clamp(86px, 6.4vw, 112px);
  margin-bottom: clamp(12px, 1vw, 18px);
}

.privacy-points picture {
  display: block;
  width: 100%;
  height: 100%;
}

.privacy-points span img {
  filter: drop-shadow(0 16px 22px rgba(38, 32, 82, .12));
}

@media (max-width: 760px) {
  .feature-mosaic .product-card {
    min-height: 0;
    padding-right: 24px;
    padding-bottom: 32px;
  }

  .feature-icon.feature-icon-art {
    position: relative;
    right: auto;
    bottom: auto;
    width: clamp(132px, 42vw, 190px);
    height: clamp(132px, 42vw, 190px);
    margin: 0 0 18px -8px;
  }

  .feature-mosaic .product-card h2,
  .feature-mosaic .product-card p:not(.eyebrow) {
    max-width: 100%;
  }

  .privacy-points span {
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 760px) {
  .place-hero {
    min-height: clamp(360px, 84vw, 430px);
  }
  .hero-collage {
    right: 50%;
    width: min(658px, 141%);
    transform: translate(50%, -45%);
  }
  .hero-collage::before {
    inset: 14% 8% 8% 16%;
    opacity: .85;
  }
}

/* Type pass: titles stay fixed; supporting text gets easier to scan. */
body {
  font-size: 17px;
}

.nav-links {
  font-size: 15.5px;
}

.nav-secondary,
.nav-cta,
.button {
  font-size: 16px;
}

.pill,
.eyebrow,
.product-card .eyebrow {
  font-size: 13px;
  letter-spacing: .1em;
}

.hero-copy p {
  max-width: 520px;
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.45;
}

.story-copy p:not(.eyebrow),
.privacy-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: clamp(19px, 1.35vw, 23px);
  line-height: 1.5;
}

.product-card p:not(.eyebrow) {
  font-size: clamp(17px, 1.05vw, 19px);
  line-height: 1.45;
}

.privacy-points b {
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.2;
}

.privacy-points small {
  font-size: clamp(13px, .85vw, 15px);
  line-height: 1.38;
}

.social-proof b {
  font-size: 16px;
}

.social-proof small,
.testimonial small,
.footer,
.footer-icp,
.footer-icp a,
.muted {
  font-size: 14px;
}

.testimonial p {
  font-size: clamp(16px, .95vw, 18px);
  line-height: 1.45;
}

.testimonial b {
  font-size: 15px;
}

.premium-perks small {
  font-size: 13px;
}

@media (max-width: 760px) {
  body {
    font-size: 16.5px;
  }

  .nav-secondary,
  .nav-cta,
  .button {
    font-size: 15.5px;
  }

  .hero-copy p,
  .story-copy p:not(.eyebrow),
  .privacy-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .product-card p:not(.eyebrow) {
    font-size: 16px;
  }

  .privacy-points small {
    font-size: 13px;
  }
}

/* Brand typography parity with the iOS app:
   use the rounded system face for logo text and short emotional display copy,
   while keeping body/list/legal content on the default readable system face. */
.brand strong,
.brand-name,
.hero h1,
.hero h1 span,
.story-copy h2,
.privacy-copy h2,
.section-head h2,
.product-card h2,
.premium-banner h2,
.legal-hero h1 {
  font-family: var(--font-rounded);
}

.brand strong,
.brand-name {
  font-weight: 760;
  letter-spacing: 0;
}

.hero h1,
.hero h1 span {
  font-weight: 800;
}

/* Section/copy pass: let the map breathe through the page. */
.hero-copy p {
  max-width: 560px;
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.32;
}

.title-highlight {
  color: var(--brand);
}

.feature-mosaic .product-card .eyebrow {
  display: none;
}

.privacy-points article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
}

.privacy-points b {
  max-width: 190px;
  font-size: clamp(17px, 1.05vw, 20px);
}

.privacy-points small {
  display: none;
}

.story-panel,
.privacy-panel,
.product-card,
.testimonial,
.premium-banner {
  background: rgba(255, 255, 255, .58);
  border-color: rgba(95, 46, 234, .10);
  backdrop-filter: blur(18px) saturate(145%);
}

.privacy-band::before {
  background:
    linear-gradient(90deg, rgba(245,241,255,.44), rgba(255,255,255,.34) 52%, rgba(238,249,255,.30)),
    linear-gradient(180deg, rgba(255,255,255,.32), rgba(255,255,255,.18));
}

.feature-band::before {
  background:
    linear-gradient(90deg, rgba(246,251,255,.36), rgba(245,241,255,.42) 48%, rgba(255,255,255,.34)),
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(245,248,255,.36));
}

.testimonial-band::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.44), rgba(247,242,255,.36) 50%, rgba(240,250,255,.30)),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.38));
}

.premium-band::before {
  background:
    linear-gradient(90deg, rgba(246,241,255,.46), rgba(255,255,255,.36) 52%, rgba(238,249,255,.32)),
    linear-gradient(180deg, rgba(255,255,255,.24), rgba(248,245,255,.42));
}

body[data-theme="dark"] .story-panel,
body[data-theme="dark"] .privacy-panel,
body[data-theme="dark"] .product-card,
body[data-theme="dark"] .testimonial,
body[data-theme="dark"] .premium-banner {
  background: rgba(13, 14, 35, .56);
  border-color: rgba(141, 104, 255, .16);
}

body[data-theme="dark"] .privacy-band::before,
body[data-theme="dark"] .feature-band::before,
body[data-theme="dark"] .testimonial-band::before,
body[data-theme="dark"] .premium-band::before {
  background:
    linear-gradient(90deg, rgba(11,13,34,.48), rgba(16,15,42,.38) 50%, rgba(8,18,38,.34)),
    linear-gradient(180deg, rgba(5,7,19,.18), rgba(5,7,19,.40));
}

@media (max-width: 760px) {
  .hero-copy p {
    font-size: clamp(19px, 6vw, 24px);
  }
}

/* Final polish pass: rounded CJK type, hero layering, transparent bands, DOM testimonials. */
body[data-locale="zh"],
body[data-locale="zh-Hant"] {
  font-family: var(--font);
}

.hero-grid {
  isolation: isolate;
}

.hero-copy {
  z-index: 4;
}

.hero-visual {
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 1181px) {
  .hero-collage {
    right: 0;
    z-index: 0;
    width: min(976px, 128%);
  }
}

.privacy-band::before,
.premium-band::before {
  background: transparent;
}

.privacy-panel,
.premium-banner {
  background: rgba(255, 255, 255, .26);
  border-color: rgba(95, 46, 234, .06);
  box-shadow: none;
  backdrop-filter: blur(8px) saturate(120%);
}

.premium-banner::before {
  content: none;
}

body[data-theme="dark"] .privacy-band::before,
body[data-theme="dark"] .premium-band::before {
  background: transparent;
}

body[data-theme="dark"] .privacy-panel,
body[data-theme="dark"] .premium-banner {
  background: rgba(8, 9, 24, .32);
  border-color: rgba(141, 104, 255, .10);
}

.testimonial-shell {
  position: relative;
  isolation: isolate;
}

.testimonial-clay {
  position: absolute;
  top: clamp(-44px, -3.2vw, -20px);
  right: clamp(-16px, 2vw, 44px);
  z-index: 0;
  width: clamp(118px, 10vw, 188px);
  opacity: .9;
  pointer-events: none;
  transform: rotate(5deg);
}

.testimonial-clay img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(38, 32, 82, .14));
}

.testimonial-band .section-head,
.testimonial-grid {
  position: relative;
  z-index: 1;
}

.testimonial {
  min-height: clamp(210px, 15vw, 250px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 2vw, 30px);
  border: 1px solid rgba(95, 46, 234, .10);
  border-radius: 28px;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 22px 62px rgba(38, 32, 82, .08);
  backdrop-filter: blur(14px) saturate(138%);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.testimonial .testimonial-avatar,
.testimonial .testimonial-rating {
  grid-row: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 0;
  background-image: none;
  box-shadow: none;
}

.testimonial .testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: var(--brand);
  font-family: var(--font-rounded);
  font-size: 16px;
  font-weight: 850;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.96), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(241,236,255,.76));
  background-image:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.96), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(241,236,255,.76)) !important;
  box-shadow: inset 0 0 0 1px rgba(95, 46, 234, .10), 0 14px 28px rgba(38, 32, 82, .10);
}

.testimonial .testimonial-avatar::before {
  content: attr(data-initials);
}

.testimonial .testimonial-avatar::after,
.testimonial .testimonial-rating::after {
  content: none;
}

.testimonial .testimonial-rating {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(241, 236, 255, .82);
  background-image: none !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.testimonial p {
  margin: 0;
  color: #17193f;
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.42;
}

.testimonial-meta {
  display: block;
}

.testimonial-meta b,
.testimonial-meta small {
  display: block;
}

.testimonial-meta b {
  color: #080b3f;
  font-size: 16px;
}

.testimonial-meta small {
  margin-top: 4px;
  color: rgba(49, 65, 95, .72);
  font-size: 14px;
}

body[data-theme="dark"] .testimonial {
  background: rgba(8, 9, 24, .42);
  border-color: rgba(141, 104, 255, .14);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .20);
}

body[data-theme="dark"] .testimonial .testimonial-avatar {
  color: #d8ceff;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(145deg, rgba(33,31,68,.78), rgba(19,18,43,.70));
  background-image:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(145deg, rgba(33,31,68,.78), rgba(19,18,43,.70)) !important;
  box-shadow: inset 0 0 0 1px rgba(141, 104, 255, .18), 0 14px 28px rgba(0, 0, 0, .22);
}

body[data-theme="dark"] .testimonial .testimonial-rating {
  color: #d8ceff;
  background: rgba(124, 58, 237, .22);
}

body[data-theme="dark"] .testimonial p,
body[data-theme="dark"] .testimonial-meta b {
  color: #f5f1ff;
}

body[data-theme="dark"] .testimonial-meta small {
  color: rgba(228, 223, 255, .72);
}

@media (max-width: 1180px) {
  .hero-collage {
    z-index: 0;
  }

  .testimonial {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .hero-copy {
    z-index: 4;
  }

  .testimonial-clay {
    top: -20px;
    right: 4px;
    width: 104px;
    opacity: .72;
  }

  .testimonial {
    min-height: 0;
    border-radius: 24px;
  }
}

/* Performance and scale pass: keep desktop content inside a calmer product-site width. */
@media (min-width: 761px) {
  .wide-container,
  .container,
  .hero-grid,
  .landing-band > .container,
  .privacy-panel,
  .feature-mosaic,
  .testimonial-band > .container,
  .testimonial-band .section-head,
  .premium-banner {
    width: min(1160px, calc(100vw - clamp(40px, 6vw, 112px)));
  }

  .hero-grid {
    grid-template-columns: minmax(380px, .9fr) minmax(500px, 1.1fr);
  }

  .hero h1 span {
    font-size: clamp(34px, 3.2vw, 46px);
  }

  .hero h1 .hero-title-main {
    font-size: clamp(58px, 6.4vw, 88px);
  }

  .hero-copy p {
    max-width: 480px;
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.42;
  }

  .privacy-copy h2,
  .section-head h2,
  .premium-copy h2 {
    font-size: clamp(40px, 4.4vw, 64px);
  }

  .product-card h2 {
    font-size: clamp(30px, 2vw, 38px);
  }

  .product-card p:not(.eyebrow),
  .privacy-copy > p:not(.eyebrow),
  .story-copy p:not(.eyebrow) {
    font-size: clamp(16px, 1vw, 19px);
  }

  .hero-collage {
    width: min(830px, 118%);
  }

  .atlas-shot {
    width: min(470px, 40vw);
  }

  .scan-shot {
    width: min(300px, 28vw);
    right: clamp(136px, 16vw, 230px);
  }

  .feature-icon.feature-icon-art {
    width: clamp(170px, 14vw, 260px);
    height: clamp(170px, 14vw, 260px);
  }

  .feature-mosaic .product-card {
    min-height: clamp(310px, 22vw, 390px);
    padding-right: clamp(170px, 18vw, 300px);
  }

  .privacy-lock-hero {
    width: clamp(240px, 20vw, 360px);
  }

  .premium-spatial-art {
    width: min(230px, 72%);
  }

  .testimonial-clay {
    width: clamp(96px, 8vw, 150px);
  }
}

.story-shot img,
.premium-spatial-art img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .hero-copy p {
    font-size: 18px;
    line-height: 1.45;
  }

  .privacy-copy h2,
  .section-head h2,
  .premium-copy h2 {
    font-size: clamp(31px, 8.8vw, 38px);
  }
}

/* Hero placement pass: lift the product collage without breaking right alignment. */
.hero-collage {
  transform: translateY(-68%);
}

@media (max-width: 1180px) {
  .hero-collage {
    transform: translate(50%, -62%);
  }
}

@media (max-width: 760px) {
  .hero-collage {
    transform: translate(50%, -52%);
  }
}

/* Compact hero + desktop Features dropdown pass. */
.nav-feature-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 4;
}

.nav-feature-menu::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
}

.nav-feature-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 0;
  padding: 0;
  font: inherit;
  letter-spacing: 0;
}

.nav-feature-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: .62;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease, opacity .18s ease;
}

.nav-feature-list {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 80;
  display: grid;
  gap: 3px;
  min-width: 196px;
  padding: 10px;
  border: 1px solid rgba(89, 65, 183, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 54px rgba(25, 18, 80, .13);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -7px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-feature-menu:hover .nav-feature-list,
.nav-feature-menu:focus-within .nav-feature-list,
.nav-feature-menu.is-open .nav-feature-list {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-feature-menu:hover .nav-feature-trigger::after,
.nav-feature-menu:focus-within .nav-feature-trigger::after,
.nav-feature-menu.is-open .nav-feature-trigger::after {
  opacity: .9;
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-feature-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #0b103c;
  font-size: 15px;
  font-weight: 720;
  text-align: left;
  white-space: nowrap;
}

.nav-feature-list a:hover,
.nav-feature-list a:focus-visible {
  background: rgba(111, 63, 245, .09);
  color: var(--brand);
  outline: 0;
}

body[data-theme="dark"] .nav-feature-list {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(22, 16, 48, .88);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .28);
}

body[data-theme="dark"] .nav-feature-list a {
  color: rgba(245, 242, 255, .9);
}

body[data-theme="dark"] .nav-feature-list a:hover,
body[data-theme="dark"] .nav-feature-list a:focus-visible {
  background: rgba(255, 255, 255, .09);
  color: #fff;
}

body > .site-nav.site-nav,
body > .nav.nav {
  z-index: 1000;
  isolation: isolate;
  pointer-events: auto;
}

.nav-inner,
.nav-row {
  position: relative;
  z-index: 2;
}

body > main#main {
  position: relative;
  z-index: 1;
}

main {
  --hero-section-height: clamp(650px, 72vh, 760px);
}

@media (min-width: 1181px) {
  .place-hero {
    min-height: clamp(500px, 42vw, 610px);
  }

  .hero-collage {
    transform: translateY(-70%);
  }
}

@media (max-width: 1180px) {
  main {
    --hero-section-height: clamp(700px, 82vh, 850px);
  }

  .hero-collage {
    transform: translate(50%, -72%);
  }
}

@media (max-width: 760px) {
  main {
    --hero-section-height: auto;
  }

  .place-hero {
    min-height: 310px;
  }

  .hero-collage {
    transform: translate(50%, -60%);
  }
}

/* Section centering pass: keep each content group centered in its band. */
.hero-world,
.section-pad.landing-band {
  align-items: center;
  justify-items: center;
}

.hero-grid,
.landing-band > .container,
.privacy-panel,
.feature-mosaic,
.testimonial-shell,
.premium-banner {
  align-self: center;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

.privacy-panel,
.premium-banner {
  align-items: center;
  justify-items: center;
}

.privacy-copy,
.premium-copy {
  align-self: center;
}

.privacy-visual-stack,
.privacy-lock-hero,
.premium-spatial-art {
  align-self: center;
  justify-self: center;
}

.feature-mosaic {
  align-items: stretch;
  justify-content: center;
}

.feature-mosaic .product-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-shell {
  display: grid;
  align-content: center;
  justify-items: center;
}

.testimonial-band .section-head,
.testimonial-grid {
  justify-self: center;
}

@media (min-width: 1181px) {
  .hero-collage {
    transform: translateY(-60%);
  }
}

@media (max-width: 1180px) {
  .hero-collage {
    transform: translate(50%, -62%);
  }
}

@media (max-width: 760px) {
  .hero-copy,
  .privacy-copy,
  .premium-copy,
  .testimonial-shell,
  .feature-mosaic .product-card {
    text-align: center;
  }

  .hero-actions,
  .social-proof {
    justify-content: center;
  }
  .hero-actions {
    gap: 8px;
  }
  .ph-launch-badge {
    margin-right: 0;
    margin-left: 0;
    gap: 6px;
    padding: 6px 8px 6px 6px;
  }
  .ph-launch-mark {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 15px;
  }
  .ph-launch-copy strong {
    font-size: 12px;
  }
  .ph-launch-copy small {
    display: none;
  }
  .ph-launch-arrow {
    display: none;
  }

  .hero-copy p,
  .privacy-copy > p:not(.eyebrow),
  .premium-copy h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-mosaic .product-card {
    align-items: center;
  }

  .hero-collage {
    transform: translate(50%, -50%);
  }
}

/* Pre-launch cleanup + centered section shells. */
.social-proof,
.testimonial-band {
  display: none !important;
}

main {
  --hero-section-height: clamp(620px, 70vh, 720px);
  --landing-section-y: clamp(72px, 6vw, 104px);
}

.section-pad.landing-band {
  background: transparent;
}

.privacy-band::before,
.premium-band::before {
  content: none !important;
  background: none !important;
}

.privacy-panel,
.premium-banner {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.privacy-panel .eyebrow {
  color: var(--brand);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 900;
  letter-spacing: .03em;
}

.privacy-copy h2 .title-highlight,
.premium-copy h2 .title-highlight {
  color: var(--brand);
}

.premium-copy .premium-label span {
  font-size: 1.15em;
}

@media (min-width: 761px) {
  .wide-container,
  .container,
  .hero-grid,
  .landing-band > .container,
  .privacy-panel,
  .feature-mosaic,
  .premium-banner {
    width: min(1120px, calc(100vw - clamp(56px, 8vw, 140px)));
  }

  .hero {
    margin-top: -18px;
    padding-top: clamp(50px, 4.8vw, 74px);
    padding-bottom: clamp(54px, 5vw, 78px);
  }

  .hero-world {
    min-height: var(--hero-section-height);
  }

  .hero-grid {
    min-height: clamp(520px, 58vh, 620px);
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
    align-items: center;
    justify-items: center;
    gap: clamp(32px, 4.8vw, 70px);
  }

  .hero-copy,
  .hero-visual {
    align-self: center;
  }

  .hero-copy {
    width: min(520px, 100%);
    justify-self: center;
  }

  .hero-visual {
    width: 100%;
    justify-self: stretch;
  }

  .hero h1,
  .hero-copy p {
    max-width: 100%;
  }

  .hero-collage {
    right: auto;
    left: 50%;
    width: min(800px, 132%);
    transform: translate(-50%, -52%);
  }

  .feature-mosaic .product-card {
    min-height: clamp(300px, 21vw, 370px);
  }
}

@media (max-width: 760px) {
  .hero {
    margin-top: -52px;
    padding-top: 88px;
  }

  .hero-grid {
    align-items: center;
    justify-items: center;
  }

  .privacy-panel .eyebrow {
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
  }
}

/* Mirrored privacy/premium sections with matched hero icon sizing. */
.privacy-panel,
.premium-banner {
  --section-hero-icon-size: clamp(300px, 24vw, 410px);
}

.privacy-visual-stack,
.premium-spatial-art {
  width: var(--section-hero-icon-size);
  height: var(--section-hero-icon-size);
  max-width: 100%;
  min-height: var(--section-hero-icon-size);
  display: grid;
  place-items: center;
}

.privacy-lock-hero,
.premium-spatial-art {
  width: var(--section-hero-icon-size) !important;
  height: var(--section-hero-icon-size) !important;
  max-width: 100%;
  aspect-ratio: 1 / 1;
}

.premium-spatial-art {
  position: relative !important;
  inset: auto !important;
  opacity: 1 !important;
  transform: none !important;
}

.privacy-lock-hero img,
.premium-spatial-art img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
  aspect-ratio: 1 / 1;
  align-self: stretch;
  justify-self: stretch;
  object-fit: contain;
}

@media (min-width: 761px) {
  .privacy-panel,
  .premium-banner {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    column-gap: clamp(56px, 7vw, 116px);
  }

  .privacy-copy {
    order: 1;
    justify-self: start;
  }

  .privacy-visual-stack {
    order: 2;
    justify-self: center;
  }

  .premium-banner {
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  }

  .premium-spatial-art {
    order: 1;
    justify-self: center;
  }

  .premium-copy {
    order: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .privacy-panel,
  .premium-banner {
    --section-hero-icon-size: clamp(220px, 64vw, 300px);
  }
}

.privacy-lock-hero {
  width: calc(var(--section-hero-icon-size) * .9) !important;
  height: calc(var(--section-hero-icon-size) * .9) !important;
}

/* Premium comparison page. */
.premium-plan-main {
  overflow-x: hidden;
  padding-top: 0;
  background:
    radial-gradient(circle at 78% 7%, rgba(124, 58, 237, .22), transparent 30%),
    radial-gradient(circle at 24% 32%, rgba(196, 181, 253, .24), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,243,255,.82) 44%, rgba(255,255,255,.78));
}

.premium-plan-main > *,
.premium-plan-hero-grid,
.premium-plan-hero-grid > *,
.premium-plan-layout,
.premium-plan-card,
.premium-plan-card > section,
.plan-table-wrap {
  min-width: 0;
}

.premium-plan-hero {
  padding: clamp(22px, 2.8vw, 34px) 0 clamp(18px, 2.6vw, 34px);
}

.premium-plan-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.premium-plan-hero h1 {
  max-width: 760px;
  margin: 10px 0 16px;
  color: #130a35;
  background: linear-gradient(92deg, #130a35 0%, #41208f 58%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(50px, 7vw, 96px);
  line-height: .94;
  letter-spacing: 0;
}

.premium-plan-hero p {
  max-width: 680px;
  color: var(--text);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.5;
}

.premium-plan-art {
  width: min(100%, 300px);
  justify-self: center;
  filter: drop-shadow(0 30px 44px rgba(74, 51, 120, .18));
}

.premium-plan-art img {
  display: block;
  width: 100%;
  height: auto;
}

.premium-plan-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.premium-plan-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58)),
    radial-gradient(circle at 84% 0%, rgba(124,58,237,.12), transparent 34%);
  border: 1px solid rgba(122, 96, 170, .12);
  box-shadow: 0 30px 90px rgba(35, 24, 68, .1);
  backdrop-filter: blur(20px);
}

.premium-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 34px;
}

.plan-tier {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(32, 20, 64, .11);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.68));
}

.plan-tier-premium {
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,.32), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(196,181,253,.4), transparent 34%),
    linear-gradient(145deg, #8b5cf6 0%, #6d28d9 48%, #3b0764 100%);
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 30px 76px rgba(91, 33, 182, .28);
}

.plan-tier-premium::after {
  content: "";
  position: absolute;
  inset: auto -18% -36% 12%;
  height: 62%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 62%);
}

.plan-tier-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(124, 58, 237, .1);
  font-size: 13px;
  font-weight: 860;
}

.plan-tier-premium .plan-tier-label {
  color: #fff;
  background: rgba(255,255,255,.18);
}

.plan-tier h2 {
  margin: 18px 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.plan-tier-premium h2 {
  color: #fff;
}

.plan-tier p {
  max-width: 420px;
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.55;
}

.plan-tier-premium p {
  color: rgba(255,255,255,.88);
}

.plan-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.plan-stat-row span {
  min-height: 92px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(124, 58, 237, .075);
}

.plan-tier-premium .plan-stat-row span {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
}

.plan-stat-row b,
.plan-stat-row small {
  display: block;
}

.plan-stat-row b {
  color: #241251;
  font-size: clamp(32px, 4vw, 50px);
  line-height: .9;
  letter-spacing: 0;
}

.plan-tier-premium .plan-stat-row b {
  color: #fff;
}

.plan-stat-row small {
  margin-top: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.25;
}

.plan-tier-premium .plan-stat-row small {
  color: rgba(255,255,255,.82);
}

.plan-table-wrap {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  margin: 16px 0 34px;
  border: 1px solid rgba(32, 20, 64, .1);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
}

.plan-compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.plan-compare-table th,
.plan-compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(32, 20, 64, .08);
}

.plan-compare-table th {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.plan-compare-table td:first-child {
  color: var(--ink);
  font-weight: 820;
}

.plan-compare-table tr:last-child td {
  border-bottom: 0;
}

.purchase-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 24px;
}

.purchase-options article {
  min-height: 116px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(124, 58, 237, .075);
}

.purchase-options b,
.purchase-options span {
  display: block;
}

.purchase-options b {
  color: var(--ink);
  font-size: 20px;
}

.purchase-options span {
  margin-top: 8px;
  color: var(--text);
  line-height: 1.45;
}

.plan-note {
  margin: 0;
  padding: 20px;
  border-radius: 22px;
  color: var(--text);
  background: rgba(32, 20, 64, .055);
}

body[data-theme="dark"] .premium-plan-main {
  background:
    radial-gradient(circle at 78% 7%, rgba(167, 139, 250, .22), transparent 34%),
    radial-gradient(circle at 24% 32%, rgba(91, 33, 182, .28), transparent 28%),
    linear-gradient(180deg, rgba(17, 12, 31, .94), rgba(17, 12, 31, .78));
}

body[data-theme="dark"] .premium-plan-card,
body[data-theme="dark"] .plan-tier,
body[data-theme="dark"] .plan-table-wrap {
  background: rgba(24, 18, 42, .74);
  border-color: rgba(255,255,255,.12);
}

body[data-theme="dark"] .purchase-options article,
body[data-theme="dark"] .plan-note {
  background: rgba(167, 139, 250, .1);
}

@media (max-width: 900px) {
  .premium-plan-hero-grid,
  .premium-plan-layout,
  .premium-plan-grid,
  .purchase-options {
    grid-template-columns: 1fr;
  }

  .premium-plan-art {
    width: min(270px, 72vw);
  }
}

@media (max-width: 760px) {
  .premium-plan-hero {
    padding-top: 30px;
  }

  .premium-plan-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .premium-plan-card {
    padding: 22px;
    border-radius: 24px;
  }

  .plan-tier {
    border-radius: 24px;
  }
}

.eyebrow-with-icon,
.privacy-panel .eyebrow.eyebrow-with-icon,
.premium-copy .premium-label.eyebrow-with-icon,
.premium-plan-hero .kicker.eyebrow-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 5px 12px 5px 8px;
  border: 1px solid rgba(124, 58, 237, .16);
  border-radius: 999px;
  color: var(--brand);
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(244, 240, 255, .76));
  box-shadow: 0 12px 30px rgba(72, 42, 140, .08);
  font-size: clamp(14px, .95vw, 16px);
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
}

.premium-copy .premium-label.eyebrow-with-icon,
.premium-plan-hero .kicker.eyebrow-with-icon {
  color: var(--brand);
}

.eyebrow-emoji,
.premium-copy .premium-label .eyebrow-emoji {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(124, 58, 237, .1);
  font-size: 13px;
  line-height: 1;
}

body[data-theme="dark"] .eyebrow-with-icon,
body[data-theme="dark"] .privacy-panel .eyebrow.eyebrow-with-icon,
body[data-theme="dark"] .premium-copy .premium-label.eyebrow-with-icon,
body[data-theme="dark"] .premium-plan-hero .kicker.eyebrow-with-icon {
  border-color: rgba(196, 181, 253, .2);
  color: #c4b5fd;
  background: linear-gradient(180deg, rgba(36, 28, 58, .82), rgba(55, 40, 91, .68));
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

body[data-theme="dark"] .eyebrow-emoji {
  background: rgba(196, 181, 253, .14);
}

[data-blog-locale][hidden] {
  display: none !important;
}

.home-blog-band {
  color: var(--ink);
}

.home-blog-panel {
  display: grid;
  gap: 26px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(124, 58, 237, .12);
  border-radius: var(--section-radius);
  background: rgba(255, 255, 255, .60);
  box-shadow: 0 22px 70px rgba(45, 35, 86, .10);
  backdrop-filter: blur(18px);
}

.home-blog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.home-blog-head h2 {
  max-width: 720px;
  margin: 8px 0 0;
  font-family: var(--font-rounded);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-blog-head a {
  flex: 0 0 auto;
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

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

.home-blog-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(124, 58, 237, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .62);
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, .28);
  box-shadow: 0 18px 46px rgba(68, 44, 120, .12);
}

.home-blog-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(124, 58, 237, .10);
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
}

.home-blog-card h3 {
  margin: auto 0 0;
  font-family: var(--font-rounded);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: 0;
}

.home-blog-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.blog-page {
  background:
    radial-gradient(circle at 84% 8%, rgba(124, 58, 237, .12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(247, 244, 255, .62));
}

.blog-main {
  padding-top: 36px;
}

.blog-hero {
  padding: clamp(44px, 6vw, 84px) 0 clamp(34px, 5vw, 70px);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, .74fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.blog-hero h1,
.blog-article-head h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 920;
  line-height: .94;
  letter-spacing: 0;
}

.blog-hero p,
.blog-article-head p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}

.blog-hero-art,
.blog-article-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(245, 241, 255, .52)),
    url("/assets/place-canvas-tokyo-light.svg") center / cover no-repeat;
  box-shadow: 0 28px 90px rgba(58, 37, 115, .12);
}

.blog-hero-art::after,
.blog-article-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.66));
}

.blog-hero-art img,
.blog-article-art img {
  position: relative;
  z-index: 1;
  width: min(72%, 340px);
  height: auto;
  filter: drop-shadow(0 26px 38px rgba(55, 38, 112, .16));
}

.blog-article-art.blog-scene-art {
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .58);
}

.blog-article-art.blog-scene-art::after {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.18));
}

.blog-article-art.blog-scene-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: clamp(56px, 7vw, 92px);
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(46, 30, 93, .1);
  border-radius: 28px;
  color: inherit;
  text-decoration: none;
  background: rgba(255,255,255,.68);
  box-shadow: 0 18px 60px rgba(56, 38, 111, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, .22);
  box-shadow: 0 26px 80px rgba(56, 38, 111, .14);
}

.blog-card-media {
  display: grid;
  place-items: center;
  min-height: 228px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.34), rgba(245, 240, 255, .72)),
    url("/assets/place-canvas-tokyo-light.svg") center / cover no-repeat;
}

.blog-card-media img {
  width: min(64%, 230px);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(55, 38, 112, .14));
}

.blog-card-media.blog-scene-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .58);
}

.blog-card-media.blog-scene-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  background: rgba(255, 255, 255, .58);
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.blog-card time,
.blog-article-meta {
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
}

.blog-card h2 {
  margin: 12px 0 12px;
  color: var(--ink);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.04;
}

.blog-card p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.blog-read-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--brand);
  font-weight: 850;
}

.blog-article-head {
  padding: clamp(42px, 5vw, 72px) 0 24px;
}

.blog-article-head .language-switch,
.blog-hero .language-switch {
  margin-top: 24px;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
  padding-bottom: clamp(58px, 8vw, 110px);
}

.blog-article {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(46, 30, 93, .1);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 20px 70px rgba(56, 38, 111, .08);
}

.blog-article h2 {
  margin: 44px 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

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

.blog-article p,
.blog-article li {
  color: var(--text);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.72;
}

.blog-article ul,
.blog-article ol {
  margin: 16px 0 0;
  padding-left: 1.25em;
}

.blog-article li + li {
  margin-top: 10px;
}

.blog-article a {
  color: var(--brand);
  font-weight: 780;
}

.blog-hero-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 34px;
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(56, 38, 111, .12);
}

.blog-back-link {
  display: inline-flex;
  margin-bottom: 10px;
}

.blog-article h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.18;
}

.blog-article blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--brand);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(124, 58, 237, .08);
}

.blog-article blockquote p {
  margin: 0;
  color: inherit;
  font-weight: 760;
}

.blog-pullout {
  margin: 32px 0;
  padding: 24px;
  border-left: 5px solid var(--brand);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(124, 58, 237, .08);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.28;
}

.blog-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.blog-side-card {
  padding: 22px;
  border: 1px solid rgba(46, 30, 93, .1);
  border-radius: 24px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 18px 56px rgba(56, 38, 111, .07);
}

.blog-side-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.blog-side-card a,
.blog-side-card span {
  display: block;
  margin-top: 10px;
  color: var(--text);
  text-decoration: none;
  line-height: 1.45;
}

.blog-side-card a:hover {
  color: var(--brand);
}

.blog-cta {
  margin-top: 42px;
  padding: 28px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
}

.blog-cta h2,
.blog-cta p {
  color: inherit;
}

.blog-cta h2 {
  margin-top: 0;
}

.blog-cta .button {
  margin-top: 10px;
}

body[data-theme="dark"].blog-page {
  background:
    radial-gradient(circle at 78% 8%, rgba(167, 139, 250, .18), transparent 30%),
    linear-gradient(180deg, rgba(17, 12, 31, .94), rgba(17, 12, 31, .82));
}

body[data-theme="dark"] .home-blog-panel,
body[data-theme="dark"] .home-blog-card {
  border-color: rgba(255,255,255,.11);
  background: rgba(24, 18, 42, .64);
}

body[data-theme="dark"] .home-blog-card p {
  color: rgba(240, 237, 255, .74);
}

body[data-theme="dark"] .blog-card,
body[data-theme="dark"] .blog-article,
body[data-theme="dark"] .blog-side-card {
  border-color: rgba(255,255,255,.11);
  background: rgba(24, 18, 42, .7);
}

body[data-theme="dark"] .blog-hero-art,
body[data-theme="dark"] .blog-article-art,
body[data-theme="dark"] .blog-card-media {
  background:
    linear-gradient(135deg, rgba(14, 10, 28, .42), rgba(36, 26, 62, .7)),
    url("/assets/place-canvas-tokyo-night.svg") center / cover no-repeat;
}

@media (max-width: 980px) {
  .blog-hero-grid,
  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .home-blog-head {
    align-items: start;
    flex-direction: column;
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-index-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-main {
    padding-top: 16px;
  }

  .blog-hero h1,
  .blog-article-head h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .blog-hero-art,
  .blog-article-art {
    min-height: 250px;
    border-radius: 26px;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-article {
    padding: 24px;
    border-radius: 24px;
  }
}

/* Final section rhythm: shared pale-purple bands with alternating direction. */
.section-pad.landing-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(244, 239, 255, .54) 0%, rgba(255, 255, 255, .22) 48%, rgba(239, 234, 255, .46) 100%),
    radial-gradient(circle at 18% 12%, rgba(124, 58, 237, .07), transparent 34%) !important;
}

.section-pad.landing-band::before {
  content: "" !important;
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(244, 239, 255, .46) 0%, rgba(255, 255, 255, .18) 48%, rgba(239, 234, 255, .38) 100%),
    radial-gradient(circle at 18% 12%, rgba(124, 58, 237, .07), transparent 32%) !important;
}

.section-pad.privacy-band,
.section-pad.home-blog-band {
  background:
    linear-gradient(255deg, rgba(244, 239, 255, .54) 0%, rgba(255, 255, 255, .22) 48%, rgba(239, 234, 255, .46) 100%),
    radial-gradient(circle at 82% 14%, rgba(124, 58, 237, .07), transparent 34%) !important;
}

.section-pad.feature-band,
.section-pad.premium-band {
  background:
    linear-gradient(105deg, rgba(244, 239, 255, .54) 0%, rgba(255, 255, 255, .22) 48%, rgba(239, 234, 255, .46) 100%),
    radial-gradient(circle at 18% 12%, rgba(124, 58, 237, .07), transparent 34%) !important;
}

.section-pad.privacy-band::before,
.section-pad.home-blog-band::before {
  background:
    linear-gradient(255deg, rgba(244, 239, 255, .46) 0%, rgba(255, 255, 255, .18) 48%, rgba(239, 234, 255, .38) 100%),
    radial-gradient(circle at 82% 14%, rgba(124, 58, 237, .07), transparent 32%) !important;
}

.section-pad.feature-band::before,
.section-pad.premium-band::before {
  background:
    linear-gradient(105deg, rgba(244, 239, 255, .46) 0%, rgba(255, 255, 255, .18) 48%, rgba(239, 234, 255, .38) 100%),
    radial-gradient(circle at 18% 12%, rgba(124, 58, 237, .07), transparent 32%) !important;
}

.home-blog-panel {
  width: min(1120px, calc(100vw - clamp(56px, 8vw, 140px)));
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.home-blog-head {
  align-items: center;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.home-blog-head h2 {
  max-width: 620px;
  font-size: clamp(42px, 4.8vw, 74px);
  line-height: .96;
}

.home-blog-kicker.eyebrow-with-icon {
  margin: 0 0 10px;
}

.home-blog-card {
  min-height: 190px;
  padding: clamp(18px, 2.4vw, 28px) 0;
  border: 0;
  border-top: 1px solid rgba(124, 58, 237, .16);
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.home-blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, .34);
  box-shadow: none;
}

.home-blog-card span {
  background: rgba(124, 58, 237, .08);
}

body[data-theme="dark"] .section-pad.landing-band::before,
body[data-theme="dark"] .privacy-band::before,
body[data-theme="dark"] .home-blog-band::before,
body[data-theme="dark"] .feature-band::before,
body[data-theme="dark"] .premium-band::before {
  background:
    linear-gradient(105deg, rgba(26, 20, 48, .92) 0%, rgba(10, 12, 28, .74) 48%, rgba(35, 25, 62, .84) 100%),
    radial-gradient(circle at 18% 12%, rgba(167, 139, 250, .16), transparent 32%) !important;
}

body[data-theme="dark"] .section-pad.privacy-band::before,
body[data-theme="dark"] .section-pad.home-blog-band::before {
  background:
    linear-gradient(255deg, rgba(26, 20, 48, .92) 0%, rgba(10, 12, 28, .74) 48%, rgba(35, 25, 62, .84) 100%),
    radial-gradient(circle at 82% 14%, rgba(167, 139, 250, .16), transparent 32%) !important;
}

body[data-theme="dark"] .section-pad.landing-band,
body[data-theme="dark"] .section-pad.feature-band,
body[data-theme="dark"] .section-pad.premium-band {
  background:
    linear-gradient(105deg, rgba(26, 20, 48, .9) 0%, rgba(10, 12, 28, .66) 48%, rgba(35, 25, 62, .8) 100%),
    radial-gradient(circle at 18% 12%, rgba(167, 139, 250, .15), transparent 34%) !important;
}

body[data-theme="dark"] .section-pad.privacy-band,
body[data-theme="dark"] .section-pad.home-blog-band {
  background:
    linear-gradient(255deg, rgba(26, 20, 48, .9) 0%, rgba(10, 12, 28, .66) 48%, rgba(35, 25, 62, .8) 100%),
    radial-gradient(circle at 82% 14%, rgba(167, 139, 250, .15), transparent 34%) !important;
}

@media (max-width: 760px) {
  .home-blog-panel {
    width: min(620px, calc(100vw - 28px));
  }

  .home-blog-head {
    align-items: center;
    text-align: center;
  }

  .home-blog-head h2 {
    font-size: clamp(32px, 9.4vw, 42px);
  }
}

/* Final translucent bands: keep the map visible behind every section. */
.section-pad.landing-band::before {
  background: none !important;
}

.section-pad.landing-band,
.section-pad.feature-band,
.section-pad.premium-band {
  background:
    linear-gradient(105deg, rgba(245, 241, 255, .48) 0%, rgba(255, 255, 255, .20) 48%, rgba(239, 234, 255, .38) 100%),
    radial-gradient(circle at 18% 10%, rgba(124, 58, 237, .06), transparent 34%) !important;
}

.section-pad.privacy-band,
.section-pad.home-blog-band {
  background:
    linear-gradient(255deg, rgba(245, 241, 255, .48) 0%, rgba(255, 255, 255, .20) 48%, rgba(239, 234, 255, .38) 100%),
    radial-gradient(circle at 82% 12%, rgba(124, 58, 237, .06), transparent 34%) !important;
}

.feature-mosaic .product-card {
  background: rgba(255, 255, 255, .48) !important;
  border-color: rgba(95, 46, 234, .08);
  backdrop-filter: blur(10px) saturate(120%);
}

body[data-theme="dark"] .section-pad.landing-band,
body[data-theme="dark"] .section-pad.feature-band,
body[data-theme="dark"] .section-pad.premium-band {
  background:
    linear-gradient(105deg, rgba(26, 20, 48, .58) 0%, rgba(10, 12, 28, .28) 48%, rgba(35, 25, 62, .46) 100%),
    radial-gradient(circle at 18% 10%, rgba(167, 139, 250, .10), transparent 34%) !important;
}

body[data-theme="dark"] .section-pad.privacy-band,
body[data-theme="dark"] .section-pad.home-blog-band {
  background:
    linear-gradient(255deg, rgba(26, 20, 48, .58) 0%, rgba(10, 12, 28, .28) 48%, rgba(35, 25, 62, .46) 100%),
    radial-gradient(circle at 82% 12%, rgba(167, 139, 250, .10), transparent 34%) !important;
}

body[data-theme="dark"] .feature-mosaic .product-card {
  background: rgba(13, 14, 35, .42) !important;
  border-color: rgba(141, 104, 255, .12);
}

/* Guides section icon composition. */
.section-pad.home-blog-band {
  min-height: clamp(780px, 82vh, 980px);
  padding-top: clamp(126px, 10vw, 184px) !important;
  padding-bottom: clamp(126px, 10vw, 184px) !important;
}

.home-blog-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(220px, .52fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.home-blog-copy.home-blog-head {
  display: block;
  margin: 0;
}

.home-blog-copy h2 {
  max-width: 720px;
}

.home-blog-copy a {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
}

.home-blog-icon {
  justify-self: center;
  width: clamp(230px, 24vw, 370px);
  aspect-ratio: 1;
  filter: drop-shadow(0 32px 42px rgba(52, 37, 103, .14));
  pointer-events: none;
}

.home-blog-icon picture,
.home-blog-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-blog-icon img {
  object-fit: contain;
}

body[data-theme="dark"] .home-blog-icon {
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .28));
}

@media (max-width: 860px) {
  .section-pad.home-blog-band {
    min-height: auto;
    padding-top: clamp(92px, 18vw, 132px) !important;
    padding-bottom: clamp(92px, 18vw, 132px) !important;
  }

  .home-blog-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .home-blog-icon {
    grid-row: 1;
    width: clamp(190px, 52vw, 270px);
  }

  .home-blog-copy h2,
  .home-blog-copy a {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Hero clay collage: larger, tighter cutout from the May 18 image pass. */
.hero-collage {
  z-index: 2;
}

.hero-visual.place-hero.reveal {
  opacity: 1;
  transform: none;
}

@media (min-width: 1181px) {
  .hero-collage {
    right: auto;
    left: 58%;
    width: min(891px, 154%);
    transform: translate(-50%, -38%);
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .hero-collage {
    right: auto;
    left: 50%;
    width: min(826px, 140%);
    transform: translate(-50%, -42%);
  }
}

@media (max-width: 760px) {
  .hero-collage {
    right: auto;
    left: 50%;
    width: min(616px, 122%);
    transform: translate(-50%, -36%);
  }
}

/* Typography consolidation: keep landing sections and Guides pages on one scale. */
.story-copy h2,
.privacy-copy h2,
.premium-copy h2,
.home-blog-head h2 {
  font-family: var(--font-rounded);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.product-card h2 {
  font-family: var(--font-rounded);
  font-size: clamp(28px, 2.1vw, 38px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

.story-copy p:not(.eyebrow),
.privacy-copy > p:not(.eyebrow),
.premium-copy p,
.product-card p:not(.eyebrow),
.home-blog-card p {
  font-family: var(--font);
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.55;
}

.home-blog-card h3,
.blog-card h2 {
  font-family: var(--font-rounded);
  font-size: clamp(22px, 1.85vw, 30px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.blog-hero h1,
.blog-article-head h1 {
  font-family: var(--font-rounded);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.blog-hero p,
.blog-article-head p {
  font-family: var(--font);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
}

body[data-locale="zh"],
body[data-locale="zh-Hant"] {
  font-family: var(--font-zh-rounded);
  font-size: 16.5px;
  line-height: 1.7;
  letter-spacing: 0;
  line-break: loose;
  word-break: normal;
  overflow-wrap: break-word;
  hanging-punctuation: first last allow-end;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

body[data-locale="zh"] :where(a, button, p, li, span, small, strong, b, em, label, input, textarea, select, h1, h2, h3, h4, h5, h6),
body[data-locale="zh-Hant"] :where(a, button, p, li, span, small, strong, b, em, label, input, textarea, select, h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-zh-rounded) !important;
}

body[data-locale="zh"] .brand strong,
body[data-locale="zh"] .brand-name,
body[data-locale="zh"] .nav-links,
body[data-locale="zh"] .nav-feature-trigger,
body[data-locale="zh"] .button,
body[data-locale="zh"] .hero h1,
body[data-locale="zh"] .hero h1 span,
body[data-locale="zh"] .story-copy h2,
body[data-locale="zh"] .privacy-copy h2,
body[data-locale="zh"] .premium-copy h2,
body[data-locale="zh"] .section-head h2,
body[data-locale="zh"] .product-card h2,
body[data-locale="zh"] .premium-banner h2,
body[data-locale="zh"] .home-blog-head h2,
body[data-locale="zh"] .home-blog-card h3,
body[data-locale="zh"] .blog-card h2,
body[data-locale="zh"] .blog-hero h1,
body[data-locale="zh"] .blog-article-head h1,
body[data-locale="zh"] .blog-article h2,
body[data-locale="zh"] .legal-hero h1,
body[data-locale="zh"] .legal-card h2,
body[data-locale="zh-Hant"] .brand strong,
body[data-locale="zh-Hant"] .brand-name,
body[data-locale="zh-Hant"] .nav-links,
body[data-locale="zh-Hant"] .nav-feature-trigger,
body[data-locale="zh-Hant"] .button,
body[data-locale="zh-Hant"] .hero h1,
body[data-locale="zh-Hant"] .hero h1 span,
body[data-locale="zh-Hant"] .story-copy h2,
body[data-locale="zh-Hant"] .privacy-copy h2,
body[data-locale="zh-Hant"] .premium-copy h2,
body[data-locale="zh-Hant"] .section-head h2,
body[data-locale="zh-Hant"] .product-card h2,
body[data-locale="zh-Hant"] .premium-banner h2,
body[data-locale="zh-Hant"] .home-blog-head h2,
body[data-locale="zh-Hant"] .home-blog-card h3,
body[data-locale="zh-Hant"] .blog-card h2,
body[data-locale="zh-Hant"] .blog-hero h1,
body[data-locale="zh-Hant"] .blog-article-head h1,
body[data-locale="zh-Hant"] .blog-article h2,
body[data-locale="zh-Hant"] .legal-hero h1,
body[data-locale="zh-Hant"] .legal-card h2 {
  font-family: var(--font-zh-rounded);
  letter-spacing: 0;
  text-wrap: balance;
}

body[data-locale="zh"] .brand strong,
body[data-locale="zh"] .brand-name,
body[data-locale="zh-Hant"] .brand strong,
body[data-locale="zh-Hant"] .brand-name {
  font-weight: 700;
}

body[data-locale="zh"] .hero h1,
body[data-locale="zh"] .hero h1 span,
body[data-locale="zh"] .blog-hero h1,
body[data-locale="zh"] .blog-article-head h1,
body[data-locale="zh"] .legal-hero h1,
body[data-locale="zh-Hant"] .hero h1,
body[data-locale="zh-Hant"] .hero h1 span,
body[data-locale="zh-Hant"] .blog-hero h1,
body[data-locale="zh-Hant"] .blog-article-head h1,
body[data-locale="zh-Hant"] .legal-hero h1 {
  font-weight: 720;
  line-height: 1.16;
}

body[data-locale="zh"] .story-copy h2,
body[data-locale="zh"] .privacy-copy h2,
body[data-locale="zh"] .premium-copy h2,
body[data-locale="zh"] .section-head h2,
body[data-locale="zh"] .home-blog-head h2,
body[data-locale="zh-Hant"] .story-copy h2,
body[data-locale="zh-Hant"] .privacy-copy h2,
body[data-locale="zh-Hant"] .premium-copy h2,
body[data-locale="zh-Hant"] .section-head h2,
body[data-locale="zh-Hant"] .home-blog-head h2 {
  font-weight: 700;
  line-height: 1.18;
}

body[data-locale="zh"] .product-card h2,
body[data-locale="zh"] .home-blog-card h3,
body[data-locale="zh"] .blog-card h2,
body[data-locale="zh"] .blog-article h2,
body[data-locale="zh-Hant"] .product-card h2,
body[data-locale="zh-Hant"] .home-blog-card h3,
body[data-locale="zh-Hant"] .blog-card h2,
body[data-locale="zh-Hant"] .blog-article h2 {
  font-weight: 700;
  line-height: 1.22;
}

body[data-locale="zh"] .hero-copy p,
body[data-locale="zh"] .story-copy p:not(.eyebrow),
body[data-locale="zh"] .privacy-copy > p:not(.eyebrow),
body[data-locale="zh"] .premium-copy p,
body[data-locale="zh"] .product-card p:not(.eyebrow),
body[data-locale="zh"] .home-blog-card p,
body[data-locale="zh"] .blog-card p,
body[data-locale="zh"] .blog-hero p,
body[data-locale="zh"] .blog-article-head p,
body[data-locale="zh"] .blog-article p,
body[data-locale="zh"] .blog-article li,
body[data-locale="zh"] .legal-card p,
body[data-locale="zh"] .legal-card li,
body[data-locale="zh-Hant"] .hero-copy p,
body[data-locale="zh-Hant"] .story-copy p:not(.eyebrow),
body[data-locale="zh-Hant"] .privacy-copy > p:not(.eyebrow),
body[data-locale="zh-Hant"] .premium-copy p,
body[data-locale="zh-Hant"] .product-card p:not(.eyebrow),
body[data-locale="zh-Hant"] .home-blog-card p,
body[data-locale="zh-Hant"] .blog-card p,
body[data-locale="zh-Hant"] .blog-hero p,
body[data-locale="zh-Hant"] .blog-article-head p,
body[data-locale="zh-Hant"] .blog-article p,
body[data-locale="zh-Hant"] .blog-article li,
body[data-locale="zh-Hant"] .legal-card p,
body[data-locale="zh-Hant"] .legal-card li {
  font-family: var(--font-zh-rounded);
  line-height: 1.82;
}

body[data-locale="zh"] .blog-article p,
body[data-locale="zh"] .blog-article li,
body[data-locale="zh"] .legal-card p,
body[data-locale="zh"] .legal-card li,
body[data-locale="zh-Hant"] .blog-article p,
body[data-locale="zh-Hant"] .blog-article li,
body[data-locale="zh-Hant"] .legal-card p,
body[data-locale="zh-Hant"] .legal-card li {
  text-align: justify;
  text-justify: inter-ideograph;
}

body[data-locale="zh"] .hero-copy p,
body[data-locale="zh"] .blog-hero p,
body[data-locale="zh"] .blog-article-head p,
body[data-locale="zh-Hant"] .hero-copy p,
body[data-locale="zh-Hant"] .blog-hero p,
body[data-locale="zh-Hant"] .blog-article-head p {
  line-height: 1.72;
}

body[data-locale="zh"] .blog-article,
body[data-locale="zh-Hant"] .blog-article {
  max-width: 760px;
}

body[data-locale="zh"] .blog-article-head h1,
body[data-locale="zh-Hant"] .blog-article-head h1 {
  max-width: 780px;
}

body[data-locale="zh"] .title-highlight,
body[data-locale="zh-Hant"] .title-highlight {
  font-family: var(--font-zh-rounded);
  font-weight: 760;
  text-decoration-line: underline;
  text-decoration-thickness: .16em;
  text-decoration-color: rgba(124, 58, 237, .18);
  text-underline-offset: -.08em;
  text-decoration-skip-ink: none;
}

body[data-locale="zh"] .blog-card time,
body[data-locale="zh"] .blog-article-meta,
body[data-locale="zh"] .home-blog-card span,
body[data-locale="zh"] .eyebrow,
body[data-locale="zh"] .kicker,
body[data-locale="zh-Hant"] .blog-card time,
body[data-locale="zh-Hant"] .blog-article-meta,
body[data-locale="zh-Hant"] .home-blog-card span,
body[data-locale="zh-Hant"] .eyebrow,
body[data-locale="zh-Hant"] .kicker {
  font-family: var(--font-zh-rounded);
  font-weight: 680;
  letter-spacing: 0;
}

body[data-locale="zh"] .blog-pullout,
body[data-locale="zh"] .blog-article blockquote p,
body[data-locale="zh-Hant"] .blog-pullout,
body[data-locale="zh-Hant"] .blog-article blockquote p {
  font-family: var(--font-zh-rounded);
  font-weight: 720;
  line-height: 1.48;
}

@media (max-width: 760px) {
  .story-copy h2,
  .privacy-copy h2,
  .premium-copy h2,
  .home-blog-head h2,
  .blog-hero h1,
  .blog-article-head h1 {
    font-size: clamp(32px, 9.4vw, 42px);
    line-height: 1.12;
  }

  body[data-locale="zh"] .hero h1,
  body[data-locale="zh"] .hero h1 span,
  body[data-locale="zh"] .blog-hero h1,
  body[data-locale="zh"] .blog-article-head h1,
  body[data-locale="zh-Hant"] .hero h1,
  body[data-locale="zh-Hant"] .hero h1 span,
  body[data-locale="zh-Hant"] .blog-hero h1,
  body[data-locale="zh-Hant"] .blog-article-head h1 {
    font-size: clamp(31px, 8.6vw, 39px);
    line-height: 1.18;
  }

  body[data-locale="zh"] .blog-card h2,
  body[data-locale="zh"] .home-blog-card h3,
  body[data-locale="zh-Hant"] .blog-card h2,
  body[data-locale="zh-Hant"] .home-blog-card h3 {
    line-height: 1.24;
  }
}

/* Keep locale alternates in the document head/sitemap, but remove prominent embedded switches from content headers. */
.blog-hero .language-switch,
.blog-article-head .language-switch,
.premium-plan-hero .language-switch,
.legal-hero .language-switch {
  display: none;
}

/* App Store badges should render as the official asset only, with no button shell behind it. */
body .nav-cta.app-store-badge,
body .button.app-store-badge,
body .button.secondary.app-store-badge,
body[data-theme="dark"] .button.secondary.app-store-badge {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body .button.secondary.app-store-badge::before {
  content: none;
}

/* Homepage app introduction video. */
.video-band {
  padding-top: clamp(54px, 7vw, 96px) !important;
  padding-bottom: clamp(54px, 7vw, 96px) !important;
}

.video-panel {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: var(--section-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(242, 248, 255, .72)),
    radial-gradient(circle at 8% 12%, rgba(0, 166, 214, .14), transparent 34%);
  box-shadow: 0 28px 86px rgba(20, 33, 61, .13);
  backdrop-filter: blur(24px) saturate(145%);
}

.video-copy {
  max-width: 460px;
}

.video-copy h2 {
  margin: 0;
  font-family: var(--font-rounded);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.video-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 22px;
  background: #101827;
  box-shadow: 0 24px 60px rgba(20, 33, 61, .22);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

body[data-theme="dark"] .video-panel {
  border-color: rgba(148, 163, 184, .16);
  background:
    linear-gradient(135deg, rgba(17, 25, 40, .88), rgba(22, 32, 52, .78)),
    radial-gradient(circle at 12% 10%, rgba(0, 166, 214, .12), transparent 34%);
  box-shadow: 0 28px 86px rgba(0, 0, 0, .28);
}

body[data-theme="dark"] .video-copy p:not(.eyebrow) {
  color: rgba(226, 232, 240, .78);
}

body[data-theme="dark"] .video-frame {
  border-color: rgba(148, 163, 184, .22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

@media (max-width: 860px) {
  .video-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .video-copy {
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .video-band {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .video-panel {
    width: min(100%, calc(100vw - 28px));
    padding: 18px;
    border-radius: 22px;
  }

  .video-copy h2 {
    font-size: clamp(30px, 8.6vw, 39px);
    line-height: 1.12;
  }

  .video-frame {
    border-radius: 16px;
  }
}
