:root {
  --bg: #f6f5f1;
  --surface: #ffffff;
  --ink: #111111;
  --muted: #5d5d58;
  --line: #dcdad2;
  --accent: #ff5a1f;
  --accent-2: #2a4bff;
  --pink: #e0569a;
  --radius: 20px;
  --wrap: 1240px;
  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --serif-cjk: "Songti SC", "STSong", "Songti TC", "Hiragino Mincho ProN", "Yu Mincho", "AppleMyungjo", "Noto Serif CJK SC", "Source Han Serif SC", serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:lang(zh-Hans) { font-family: ui-sans-serif, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif; }
:lang(zh-Hant) { font-family: ui-sans-serif, -apple-system, "PingFang TC", "PingFang HK", "Microsoft JhengHei", "Noto Sans TC", sans-serif; }
:lang(ja) { font-family: ui-sans-serif, -apple-system, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif; }
:lang(ko) { font-family: ui-sans-serif, -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; word-break: keep-all; }

a { color: inherit; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent); }
a:focus-visible, summary:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }
img { max-width: 100%; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
@media (min-width: 720px) { .wrap { padding: 0 40px; } }

/* Logo mark */
.mark { width: 30px; height: 30px; flex: none; color: currentColor; }
.mark-trail { fill: none; stroke: currentColor; stroke-width: 4; stroke-dasharray: 3 7; stroke-linecap: round; opacity: 0.55; }
.mark-origin { fill: currentColor; }
.mark-ring { fill: none; stroke: currentColor; stroke-width: 5; }
.mark-core { fill: var(--accent); transition: fill 0.3s; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.brand:hover { color: inherit; }
.brand:hover .mark-core { fill: var(--accent-2); }

/* Top bar */
.bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav { display: flex; align-items: center; gap: 22px; }
.nav > a { text-decoration: none; color: var(--muted); font-size: 15px; white-space: nowrap; }
.nav > a:hover { color: var(--ink); }
@media (max-width: 640px) {
  .nav { gap: 14px; }
  .nav .nav-opt { display: none; }
  .brand span { font-size: 15px; }
}

/* Language menu */
.lang { position: relative; }
.lang summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.lang[open] summary, .lang summary:hover { color: var(--ink); border-color: var(--muted); }
.lang ul {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  margin: 0;
  padding: 6px;
  list-style: none;
  min-width: 168px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.lang li a { display: block; padding: 7px 10px; border-radius: 8px; font-size: 15px; text-decoration: none; }
.lang li a:hover { background: var(--bg); color: var(--ink); }
.lang li a[aria-current] { color: var(--accent); }

/* Hero: oversized type over a drifting, grainy gradient (the v1 look) */
.hero {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  isolation: isolate;
}
.hero-sky {
  position: absolute;
  inset: -12%;
  z-index: -2;
  background:
    radial-gradient(50% 70% at 86% 16%, color-mix(in srgb, var(--accent) 36%, transparent), transparent 70%),
    radial-gradient(46% 66% at 10% 96%, color-mix(in srgb, var(--accent-2) 40%, transparent), transparent 70%),
    radial-gradient(34% 44% at 56% 92%, color-mix(in srgb, var(--pink) 20%, transparent), transparent 70%);
}
.hero-planet {
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: -66%;
  width: 64vw;
  min-width: 560px;
  max-width: 1040px;
  height: auto;
  overflow: visible;
}
.hero-sub .hero-planet { width: 52vw; bottom: -76%; }
@media (max-width: 720px) {
  .hero-planet, .hero-sub .hero-planet { right: -42%; bottom: -44%; width: 124vw; min-width: 0; }
}
.hp-halo { fill: url(#hp-halo); }
.hp-body { fill: url(#hp-body); }
.hp-tilt { transform: translate(500px, 500px) rotate(-22deg); }
.hp-orbit { fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-dasharray: 2 9; stroke-linecap: round; opacity: 0.55; }
.hp-orbit-back { opacity: 0.2; }
.hp-sat { fill: var(--ink); opacity: 0.8; }
@media (prefers-reduced-motion: reduce) { .hp-sat { display: none; } }

/* Hero meta line: studio label and the route Hong Kong – Singapore – Silicon Valley – (Mars) */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.studio { opacity: 0.72; }
.route { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px 0; }
.stop { display: inline-flex; align-items: center; white-space: nowrap; }
.stop::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; margin-right: 8px; }
.stop:not(:last-child)::after { content: ""; width: 28px; border-top: 1px dashed currentColor; opacity: 0.55; margin: 0 10px; }
.stop-next::before { width: 9px; height: 9px; margin: 0; background: transparent; border: 1.5px solid var(--accent); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: var(--grain);
  opacity: 0.35;
  mix-blend-mode: multiply;
}
.hero-grid { padding-top: 72px; padding-bottom: 64px; }
@media (min-width: 720px) { .hero-grid { padding-top: 120px; padding-bottom: 96px; } }
.hero-sub .hero-grid { padding-bottom: 64px; }
@media (min-width: 720px) { .hero-sub .hero-grid { padding-top: 104px; padding-bottom: 88px; } }

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(46px, 9.4vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 700;
  text-wrap: balance;
}
h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  padding-right: 0.08em;
  margin-right: -0.05em;
  background: linear-gradient(100deg, var(--accent) 10%, var(--pink) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub h1 { max-width: 16ch; font-size: clamp(40px, 7.2vw, 100px); }
:lang(de) h1, :lang(fr) h1, :lang(es) h1, :lang(pt) h1 { hyphens: auto; }
:lang(zh-Hans) h1, :lang(zh-Hant) h1, :lang(ja) h1, :lang(ko) h1 {
  max-width: 11em;
  font-size: clamp(34px, 7.2vw, 100px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
:lang(zh-Hans) .hero-sub h1, :lang(zh-Hant) .hero-sub h1, :lang(ja) .hero-sub h1, :lang(ko) .hero-sub h1 { max-width: 12em; font-size: clamp(30px, 5.6vw, 76px); }
:lang(zh-Hans) h1 em, :lang(zh-Hant) h1 em, :lang(ja) h1 em, :lang(ko) h1 em { font-family: var(--serif-cjk); font-style: normal; font-weight: 700; letter-spacing: 0; }
:lang(zh-Hans) h1, :lang(zh-Hant) h1, :lang(ja) h1, :lang(zh-Hans) .statement, :lang(zh-Hant) .statement, :lang(ja) .statement { line-break: strict; text-wrap: wrap; }
.ph { display: inline-block; }

.hero-foot { display: grid; gap: 20px; margin-top: 32px; }
@media (min-width: 860px) {
  .hero-foot { grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 40px; margin-top: 44px; }
}
.lede { margin: 0; max-width: 42ch; font-size: clamp(18px, 2.1vw, 22px); line-height: 1.5; }
:lang(zh-Hans) .lede, :lang(zh-Hant) .lede, :lang(ja) .lede, :lang(ko) .lede { max-width: 30em; }
.hero-link { margin: 0; }
.hero-link a { font-size: 15px; font-weight: 600; text-decoration: none; white-space: nowrap; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

@media (prefers-reduced-motion: no-preference) {
  .hero-sky { animation: drift 26s ease-in-out infinite alternate; }
  .hero-meta, .hero h1, .hero-foot { animation: rise 1s var(--ease) both; }
  .hero h1 { animation-delay: 0.08s; }
  .hero-foot { animation-delay: 0.22s; }
}
@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-4%, 3%, 0) scale(1.06); }
  100% { transform: translate3d(3%, -2%, 0) scale(1.02); }
}
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Sections */
.section { padding-top: 88px; }
@media (min-width: 960px) { .section { padding-top: 140px; } }
.sec-head {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}
@media (min-width: 960px) {
  .sec-head { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; align-items: end; margin-bottom: 56px; }
  .sec-head h2 { grid-column: 1 / span 8; }
  .sec-head p { grid-column: 9 / span 4; justify-self: end; text-align: right; }
}
.sec-head h2 { margin: 0; font-size: clamp(34px, 5.4vw, 72px); line-height: 1; letter-spacing: -0.04em; font-weight: 700; }
:lang(zh-Hans) .sec-head h2, :lang(zh-Hant) .sec-head h2, :lang(ja) .sec-head h2, :lang(ko) .sec-head h2 { font-size: clamp(30px, 4.4vw, 56px); letter-spacing: 0; line-height: 1.15; }
.sec-head p { margin: 0; color: var(--muted); max-width: 34ch; font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.45; }
:lang(zh-Hans) .sec-head p, :lang(zh-Hant) .sec-head p, :lang(ja) .sec-head p, :lang(ko) .sec-head p { font-family: var(--serif-cjk); font-style: normal; font-size: 17px; }
.sec-head p .text-link { font-family: var(--font); font-style: normal; font-size: 16px; }
.text-link { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.text-link:hover { color: var(--accent); }

/* Beliefs: a side heading, serif numerals and small grainy artworks */
.sec-side { display: grid; gap: 28px; padding-top: 18px; border-top: 1px solid var(--ink); }
.side h2 { margin: 0; font-size: clamp(34px, 5.4vw, 72px); line-height: 1; letter-spacing: -0.04em; font-weight: 700; }
:lang(zh-Hans) .side h2, :lang(zh-Hant) .side h2, :lang(ja) .side h2, :lang(ko) .side h2 { font-size: clamp(30px, 4.4vw, 56px); letter-spacing: 0; line-height: 1.15; }
.side p { margin: 14px 0 0; max-width: 28ch; color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.45; }
:lang(zh-Hans) .side p, :lang(zh-Hant) .side p, :lang(ja) .side p, :lang(ko) .side p { font-family: var(--serif-cjk); font-style: normal; font-size: 17px; }
@media (min-width: 960px) {
  .sec-side { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; }
  .side { grid-column: 1 / span 4; position: sticky; top: 32px; align-self: start; }
  .beliefs { grid-column: 5 / -1; }
}
.beliefs { margin: 0; padding: 0; list-style: none; }
.belief {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 72px;
  gap: 18px;
  align-items: start;
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--line);
}
.belief:first-child { padding-top: 4px; }
.belief-n { padding-top: 4px; font-family: var(--serif); font-style: italic; font-size: 40px; line-height: 0.8; color: var(--accent); }
.belief-t h3 { margin: 0; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.02; letter-spacing: -0.035em; transition: transform 0.5s var(--ease); }
.belief-t p { margin: 10px 0 0; color: var(--muted); max-width: 44ch; }
.glyph { width: 72px; height: 72px; overflow: visible; }
@media (min-width: 960px) {
  .belief { grid-template-columns: 72px minmax(0, 1fr) 120px; gap: 28px; padding: 40px 0 44px; }
  .belief:first-child { padding-top: 8px; }
  .belief-n { font-size: 64px; }
  .belief-t p { margin-top: 14px; font-size: 18px; }
  .glyph { width: 120px; height: 120px; }
}
:lang(zh-Hans) .belief-t h3, :lang(zh-Hant) .belief-t h3, :lang(ja) .belief-t h3, :lang(ko) .belief-t h3 { letter-spacing: 0; line-height: 1.2; font-size: clamp(26px, 3vw, 38px); }
.belief:hover .belief-t h3 { transform: translateX(10px); }
.g-dash { fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-dasharray: 2 6; stroke-linecap: round; opacity: 0.6; }
.g-ink, .g-sat { fill: var(--ink); }
.g-core { fill: var(--accent); }
.g-sat2 { fill: var(--accent-2); }
.mul { mix-blend-mode: multiply; }
.g-orbit { transform-origin: 60px 60px; transition: transform 1.4s var(--ease); }
.belief:hover .g-orbit { transform: rotate(75deg); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Products: grain covers with small product illustrations */
.products { display: grid; grid-template-columns: minmax(0, 1fr); gap: 56px 32px; padding-top: 28px; }
@media (min-width: 820px) {
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-jev { margin-top: 96px; }
  .product-more { grid-column: 1 / -1; }
}
.product { position: relative; min-width: 0; }
.p-index {
  position: absolute;
  left: -0.06em;
  top: -0.66em;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(60px, 6.4vw, 100px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  pointer-events: none;
}
.product-cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius);
  background: #efe9e2;
}
.product-cover img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.product:hover .product-cover img { transform: scale(1.05); }
.illo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72%;
  transform: translate(-50%, -50%);
  overflow: visible;
  filter: drop-shadow(0 18px 28px rgba(92, 42, 82, 0.16));
}
.sheet { fill: rgba(255, 255, 255, 0.94); }
.ink-h { fill: var(--ink); opacity: 0.8; }
.ink-accent { fill: var(--accent); opacity: 1; }
.ink-l { fill: var(--ink); opacity: 0.18; }
.fig { fill: #ffd8bf; }
.product-jev .fig { fill: #d9dcfb; }
.chip-bg { fill: var(--ink); }
.chip-t { fill: #fff; font: 700 14px var(--font); }
.chip-arrow { fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mark-hl { fill: #c9cffc; }
.wire { fill: none; stroke: #ffffff; stroke-width: 2; stroke-dasharray: 2 5; stroke-linecap: round; }
.dot-yes { fill: var(--accent-2); }
.dot-no { fill: var(--accent); }
.tick { fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.page-a, .page-b, .q, .card-t { transition: transform 0.7s var(--ease); }
.product:hover .page-a { transform: translate(-8px, 4px); }
.product:hover .page-b { transform: translate(10px, -8px); }
.product:hover .q1 { transform: translateX(8px); }
.product:hover .q2 { transform: translateX(14px); transition-delay: 0.05s; }
.product:hover .q3 { transform: translateX(20px); transition-delay: 0.1s; }
.product:hover .card-t { transform: translateX(-6px); }

.product-body { display: grid; gap: 10px; padding-top: 24px; }
.product-body p { margin: 0; }
.product-tag { font-size: 14px; font-weight: 600; color: var(--muted); }
.product h3 { margin: 0; font-size: clamp(32px, 3.6vw, 48px); line-height: 1; letter-spacing: -0.035em; }
.product h3 a { text-decoration: none; }
.product-body > p:not(.product-tag):not(.product-links) { max-width: 52ch; }
.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 8px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
}
.product-links span { overflow-wrap: anywhere; }

.product-more {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) { .product-more { grid-template-columns: 160px minmax(0, 1fr); gap: 48px; padding: 40px 0; } }
.product-more h3 { margin: 4px 0 8px; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.05; letter-spacing: -0.02em; }
:lang(zh-Hans) .product-more h3, :lang(zh-Hant) .product-more h3, :lang(ja) .product-more h3, :lang(ko) .product-more h3 { font-family: var(--serif-cjk); font-style: normal; font-weight: 700; }
.product-more p { margin: 0; max-width: 62ch; }
.product-more p:last-child { color: var(--muted); }
.more-orbit { width: 120px; height: 120px; overflow: visible; }
@media (min-width: 720px) { .more-orbit { width: 160px; height: 160px; } }
.more-orbit .spin { transform-origin: 60px 60px; }
@media (prefers-reduced-motion: no-preference) {
  .more-orbit .spin-a { animation: spin 16s linear infinite; }
  .more-orbit .spin-b { animation: spin 9s linear infinite reverse; }
}

/* Name origins: tall image panels, staggered */
.origins { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); gap: 48px 32px; }
@media (min-width: 820px) {
  .origins { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .origin:first-of-type { grid-column: 1 / span 5; }
  .origin:last-of-type { grid-column: 7 / span 6; margin-top: 140px; }
}
.origin { position: relative; z-index: 1; margin: 0; min-width: 0; }
.trail { display: none; position: absolute; left: -2%; top: -6%; width: 104%; height: 110%; z-index: 0; pointer-events: none; }
@media (min-width: 820px) { .trail { display: block; } }
.trail path { fill: none; stroke: var(--ink); stroke-width: 1.5; stroke-dasharray: 2 9; stroke-linecap: round; opacity: 0.4; }
.src { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.src::before { content: ""; flex: none; width: 18px; border-top: 1px solid currentColor; }
.origin-img { position: relative; aspect-ratio: 5 / 6; overflow: hidden; border-radius: var(--radius); background: #efe9ee; }
.origin-img img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.origin:hover .origin-img img { transform: scale(1.04); }
.origin-v {
  position: absolute;
  top: 26px;
  right: 24px;
  writing-mode: vertical-rl;
  font-family: var(--serif-cjk);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #4a2c5c;
  opacity: 0.85;
}
.origin figcaption { padding-top: 22px; }
.origin h3 { margin: 0 0 10px; font-size: clamp(24px, 2.4vw, 30px); line-height: 1.15; letter-spacing: -0.02em; }
.origin p { margin: 0 0 14px; max-width: 46ch; color: var(--muted); }
.origins-story .origin p { color: var(--ink); max-width: 52ch; }

blockquote { margin: 22px 0 24px; padding: 4px 0 4px 22px; border-left: 2px solid var(--accent); }
.quote-zh { margin: 0 0 12px; font-family: var(--serif-cjk); font-size: clamp(20px, 2.2vw, 26px); line-height: 1.75; letter-spacing: 0.04em; color: var(--ink) !important; }
.quote-tr { color: var(--muted) !important; font-family: var(--serif); font-style: italic; font-size: 18px; }
blockquote footer { margin-top: 8px; font-size: 14px; color: var(--muted); }

/* Team: statement and the route to Mars */
.statement { margin: 0; max-width: 22ch; font-size: clamp(30px, 4.8vw, 64px); line-height: 1.08; letter-spacing: -0.035em; font-weight: 700; }
.statement-next { display: block; margin-top: 0.08em; font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); letter-spacing: -0.02em; }
:lang(zh-Hans) .statement, :lang(zh-Hant) .statement, :lang(ja) .statement, :lang(ko) .statement { letter-spacing: 0; line-height: 1.3; max-width: 16em; font-size: clamp(26px, 3.8vw, 50px); }
:lang(zh-Hans) .statement-next, :lang(zh-Hant) .statement-next, :lang(ja) .statement-next, :lang(ko) .statement-next { font-family: var(--serif-cjk); font-style: normal; font-weight: 700; }
.statement-sm { max-width: 30ch; font-size: clamp(22px, 2.8vw, 34px); line-height: 1.35; font-weight: 600; letter-spacing: -0.015em; }
@media (min-width: 960px) { .statement-sm { margin-left: calc(100% / 3 + 11px); max-width: 34ch; } }
:lang(zh-Hans) .statement-sm, :lang(zh-Hant) .statement-sm, :lang(ja) .statement-sm, :lang(ko) .statement-sm { max-width: 24em; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.6; }

.orbit {
  position: relative;
  margin: 48px 0 0;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(60% 90% at 12% 0%, #e9e4fb, transparent 70%),
    radial-gradient(50% 80% at 95% 10%, #fde1d3, transparent 70%),
    #f2eff4;
}
.orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--grain);
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.orbit svg { display: block; width: 100%; height: auto; }
.star { fill: var(--ink); opacity: 0.25; }
.earth { fill: url(#earth); }
.earth-rim { fill: none; stroke: #ffffff; stroke-width: 3; opacity: 0.8; }
.route { fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-dasharray: 2 7; stroke-linecap: round; opacity: 0.5; }
.launch { fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-dasharray: 2 12; stroke-linecap: round; }
.mars { fill: url(#mars); }
.mars-ring { fill: none; stroke: var(--accent); stroke-width: 1.5; opacity: 0.4; transform-origin: 1090px 92px; }
.city { fill: var(--ink); stroke: #ffffff; stroke-width: 3; }
.lbl { font: 600 17px var(--font); fill: var(--ink); text-anchor: middle; }
.lbl-mars { fill: var(--accent); }
@media (max-width: 640px) {
  .orbit { margin-top: 32px; border-radius: 18px; }
  .lbl { font-size: 40px; }
  .lbl-sg { text-anchor: end; }
  .lbl-hk { text-anchor: start; }
  .city { stroke-width: 5; }
}
@media (prefers-reduced-motion: no-preference) {
  .launch { animation: launch 1.4s linear infinite; }
  .mars-ring { animation: pulse 3s ease-out infinite; }
  .star { animation: twinkle 4s ease-in-out infinite; }
  .star:nth-child(3n) { animation-delay: 1.3s; }
  .star:nth-child(3n + 1) { animation-delay: 2.6s; }
}
@keyframes launch { to { stroke-dashoffset: -28; } }
@keyframes pulse { from { transform: scale(0.8); opacity: 0.6; } to { transform: scale(1.9); opacity: 0; } }
@keyframes twinkle { 50% { opacity: 0.05; } }

/* Contact */
.big-mail { display: grid; gap: 6px; margin: 0; }
.big-mail-k { font-size: 14px; font-weight: 600; color: var(--muted); }
.big-mail a {
  justify-self: start;
  font-size: clamp(28px, 6.2vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-decoration: none;
  overflow-wrap: anywhere;
  background: linear-gradient(90deg, var(--accent), var(--pink)) left bottom / 0 3px no-repeat;
  transition: background-size 0.6s var(--ease), color 0.3s;
  padding-bottom: 4px;
}
.big-mail a:hover { background-size: 100% 3px; color: var(--ink); }
.contact { margin: 48px 0 0; display: grid; border-top: 1px solid var(--line); }
.contact div { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 18px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 640px) { .contact div { grid-template-columns: 220px 1fr; gap: 24px; } }
.contact dt { font-weight: 600; }
.contact dd { margin: 0; color: var(--muted); overflow-wrap: anywhere; }
.contact dd a { color: var(--ink); }

/* Scroll reveal (content stays visible without JavaScript) */
@media (prefers-reduced-motion: no-preference) {
  .js .rv { opacity: 0; transform: translateY(32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
  .js .rv.in { opacity: 1; transform: none; }
  .js .belief.rv:nth-child(2) { transition-delay: 0.08s; }
  .js .belief.rv:nth-child(3) { transition-delay: 0.16s; }
}

/* Privacy page */
.prose { max-width: 780px; padding-top: 56px; padding-bottom: 24px; }
.prose h1 { font-size: clamp(40px, 7vw, 72px); max-width: none; margin-bottom: 28px; }
.prose h2 { margin: 40px 0 8px; font-size: 22px; letter-spacing: -0.01em; }
.prose p { margin: 0 0 14px; }
.note { padding: 12px 16px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); font-size: 15px; }

/* Footer: link columns above pastel, grainy hills and an oversized wordmark */
.foot { position: relative; overflow: hidden; margin-top: 140px; color: var(--ink); }
.foot a { color: var(--ink); text-decoration: none; }
.foot a:hover { color: var(--accent); }
.foot-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  padding-top: 40px;
}
.foot-top::before { content: ""; position: absolute; left: 16px; right: 16px; top: 0; border-top: 1px solid var(--line); }
@media (min-width: 720px) { .foot-top::before { left: 40px; right: 40px; } }
@media (min-width: 960px) { .foot-top { grid-template-columns: 5fr 7fr; gap: 32px; padding-top: 56px; } }
.foot-brand p { margin: 14px 0 20px; max-width: 30ch; color: var(--muted); font-size: 15px; }
.social { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; }
.soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  opacity: 0.5;
  cursor: not-allowed;
}
.soc svg { width: 15px; height: 15px; fill: var(--ink); }
.foot-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
@media (min-width: 760px) { .foot-cols { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.foot-cols h2 { margin: 0 0 14px; font-size: 14px; font-weight: 600; letter-spacing: 0; }
.foot-cols ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.foot-cols a { font-size: 14px; color: var(--muted); }
.foot-cols a:hover { color: var(--ink); }
.foot-langs a { white-space: nowrap; }
.foot-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 48px;
  font-size: 13px;
  color: var(--muted);
}
.foot-bottom p { margin: 0; }
.foot-art { position: relative; margin-top: -24px; line-height: 0; }
.foot-art img { display: block; width: 100%; height: auto; min-height: 200px; object-fit: cover; object-position: center bottom; }
.giant {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
  margin: 0;
  text-align: center;
  font-family: var(--font);
  font-size: clamp(56px, 14.2vw, 240px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
  color: #ffffff;
  opacity: 0.94;
  user-select: none;
}
