/* SeichiMaps Landing Page */

:root {
  --c-bg: #f7f3ec;
  --c-bg-2: #efe9df;
  --c-ink: #1a2435;
  --c-ink-2: #4a5468;
  --c-ink-3: #8a93a3;
  --c-line: rgba(26, 36, 53, 0.08);
  --c-line-2: rgba(26, 36, 53, 0.14);
  --c-primary: #1d6fc0;
  --c-primary-deep: #195a9e;
  --c-primary-soft: #d6e7f7;
  --c-accent: #d97757;
  --c-card: #ffffff;
  --c-overlay: rgba(26, 36, 53, 0.55);
  --shadow-sm: 0 1px 2px rgba(26, 36, 53, 0.06), 0 2px 8px rgba(26, 36, 53, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 36, 53, 0.08), 0 12px 32px rgba(26, 36, 53, 0.08);
  --shadow-lg: 0 12px 32px rgba(26, 36, 53, 0.12), 0 28px 60px rgba(26, 36, 53, 0.16);
  --shadow-pin: 0 4px 8px rgba(29, 111, 192, 0.3), 0 8px 24px rgba(29, 111, 192, 0.25);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;
  --maxw: 1240px;
  --maxw-narrow: 980px;
  --font-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", "Meiryo", system-ui, sans-serif;
  --font-en: "Manrope", "Inter", system-ui, sans-serif;
  --font-display: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", "Meiryo", system-ui, sans-serif;
}

[data-theme="dark"] {
  --c-bg: #0c1424;
  --c-bg-2: #131e34;
  --c-ink: #f1f5fb;
  --c-ink-2: #b6c0d3;
  --c-ink-3: #6e7a93;
  --c-line: rgba(255, 255, 255, 0.08);
  --c-line-2: rgba(255, 255, 255, 0.14);
  --c-primary: #4a9eea;
  --c-primary-deep: #6db4f0;
  --c-primary-soft: rgba(74, 158, 234, 0.18);
  --c-card: #18243d;
  --c-overlay: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
}

[data-theme="light"] {
  --c-bg: #ffffff;
  --c-bg-2: #f4f7fb;
  --c-ink: #0e1a2c;
  --c-ink-2: #455167;
  --c-ink-3: #8893a6;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-jp);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  font-size: 16px;
}

body { overflow-x: hidden; }

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

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

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: color-mix(in oklab, var(--c-bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--c-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.nav-brand img { width: 40px; height: 40px; }
.nav-brand span b { font-weight: 800; }
.nav-brand span i { font-style: normal; color: var(--c-ink-2); font-weight: 500; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  color: var(--c-ink-2);
}
.nav-links a:hover { color: var(--c-ink); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-toggle {
  display: inline-flex;
  background: var(--c-bg-2);
  border-radius: var(--r-pill);
  padding: 3px;
  border: 1px solid var(--c-line);
  font-size: 12px;
  font-family: var(--font-en);
  font-weight: 600;
}
.lang-toggle button {
  padding: 5px 12px;
  border-radius: var(--r-pill);
  color: var(--c-ink-3);
  transition: all .2s;
}
.lang-toggle button.active {
  background: var(--c-ink);
  color: var(--c-bg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-ink);
  color: var(--c-bg);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(26,36,53,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-line-2);
}
.btn-ghost:hover { background: var(--c-bg-2); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .container, .container-narrow { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 40px; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-primary);
  text-transform: uppercase;
  font-family: var(--font-en);
  background: var(--c-primary-soft);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.hero h1 {
  margin: 24px 0 24px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--c-primary);
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 14px;
  background: var(--c-primary-soft);
  z-index: -1;
  border-radius: 2px;
}
.hero-lede {
  font-size: 18px;
  color: var(--c-ink-2);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.8;
  white-space: pre-line;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-gplay {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-ink);
  color: var(--c-bg);
  padding: 12px 22px 12px 18px;
  border-radius: var(--r-md);
  transition: transform .2s, box-shadow .2s;
}
.btn-gplay:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gplay .gp-icon { width: 28px; height: 28px; }
.btn-gplay .gp-label { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.btn-gplay .gp-label small {
  font-size: 10px;
  font-family: var(--font-en);
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.btn-gplay .gp-label strong {
  font-size: 17px;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.btn-ios {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-bg-2);
  color: var(--c-ink-2);
  padding: 12px 22px 12px 18px;
  border-radius: var(--r-md);
  border: 1px dashed var(--c-line-2);
  position: relative;
}
.btn-ios .gp-icon { width: 24px; height: 28px; }
.btn-ios .gp-label small { font-size: 10px; font-family: var(--font-en); font-weight: 500; letter-spacing: 0.04em; }
.btn-ios .gp-label strong { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.coming-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--c-accent);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta .meta-item small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-ink-3);
  font-family: var(--font-en);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-meta .meta-item b {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Hero map collage */
.hero-collage {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
.hero-iso {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 30px 36px rgba(26,36,53,0.18));
}
.hero-iso img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: iso-float 6s ease-in-out infinite;
}
@keyframes iso-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 980px) {
  .hero-collage { max-width: 520px; }
}
@media (max-width: 720px) {
  .hero-collage { max-width: 100%; }
}

/* Map UI overlays */
.map-chip {
  position: absolute;
  top: 6%;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.98);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  box-shadow: 0 8px 22px rgba(26,36,53,0.18);
  border: 1px solid rgba(26,36,53,0.06);
  z-index: 5;
  animation: chip-float 5s ease-in-out infinite;
}
.map-chip svg { color: var(--c-ink-2); }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.map-callout {
  position: absolute;
  right: 0;
  bottom: 8%;
  background: rgba(255,255,255,0.98);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: 0 14px 30px rgba(26,36,53,0.22);
  border: 1px solid rgba(26,36,53,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 5;
  max-width: 240px;
  animation: callout-float 5s ease-in-out infinite 1.5s;
}
@keyframes callout-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.map-callout__head {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-primary);
}
.map-callout__head .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-primary);
  animation: pulse 2s ease-in-out infinite;
}
.map-callout__body b {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.map-callout__body small {
  font-size: 11px;
  color: var(--c-ink-3);
  display: block;
}

/* Pin card popovers */
.hero-pin {
  z-index: 6;
}
.hero-pin .pin-card {
  position: absolute;
  bottom: 100%;
  margin-bottom: 8px;
  background: white;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  border: 1px solid rgba(26,36,53,0.08);
  display: flex;
  flex-direction: column;
  gap: 1px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.hero-pin .pin-card b {
  color: var(--c-ink);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
}
.hero-pin .pin-card span {
  color: var(--c-primary);
  font-size: 10px;
  font-weight: 600;
}
.hero-pin .pin-card::after {
  content: '';
  position: absolute;
  top: 100%;
  width: 8px; height: 8px;
  background: white;
  border-right: 1px solid rgba(26,36,53,0.08);
  border-bottom: 1px solid rgba(26,36,53,0.08);
  transform: translate(-50%, -50%) rotate(45deg);
}
.hero-pin .pin-card--right { left: 50%; }
.hero-pin .pin-card--right::after { left: 25%; }
.hero-pin .pin-card--left { right: 50%; }
.hero-pin .pin-card--left::after { left: 75%; }
.hero-pin:hover .pin-card,
.hero-pin.is-active .pin-card {
  opacity: 1;
  transform: translateY(0);
}
.hero-pin.is-active svg,
.hero-pin:hover svg {
  filter: drop-shadow(0 8px 14px rgba(29,111,192,0.45));
}
.hero-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 6px 10px rgba(29, 111, 192, 0.35));
  animation: pin-drop .8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  transition: transform .25s ease;
  cursor: pointer;
}
.hero-pin:hover { transform: translate(-50%, -110%) scale(1.1); }
.hero-pin svg { display: block; }
.hero-pin .pin-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-ink);
  color: var(--c-bg);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  margin-bottom: 4px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.hero-pin:hover .pin-label { opacity: 1; }
@keyframes pin-drop {
  0% { transform: translate(-50%, -200%); opacity: 0; }
  60% { transform: translate(-50%, -90%); opacity: 1; }
  100% { transform: translate(-50%, -100%); opacity: 1; }
}

.hero-phone {
  position: absolute;
  right: -6%;
  bottom: -4%;
  width: 38%;
  aspect-ratio: 9/19.5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--c-ink);
  padding: 8px;
  box-shadow: 0 30px 60px -16px rgba(26, 36, 53, 0.45), 0 12px 24px -8px rgba(26, 36, 53, 0.25);
  border: 1px solid rgba(255,255,255,0.08);
  transform: rotate(-4deg);
}
.hero-phone img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
}

@media (max-width: 720px) {
  .hero-phone { right: -2%; width: 56%; }
}

/* Floating particles in hero */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg .grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--c-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--c-line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.55;
}
.floating-pin {
  position: absolute;
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
}
.floating-pin svg { width: 32px; height: 40px; }

/* On narrow viewports the hero text spans full width — keep decorative pins
   from overlapping headline copy by hiding them. */
@media (max-width: 820px) {
  .floating-pin { display: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ============ Sections shared ============ */
section.section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.15;
  text-wrap: balance;
}
.section-head p {
  font-size: 17px;
  color: var(--c-ink-2);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 720px) {
  section.section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
}

/* ============ Marquee strip ============ */
.marquee-strip {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 28px 0;
  overflow: hidden;
  background: var(--c-bg);
}
.marquee {
  display: flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-ink-2);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee span::after {
  content: '●';
  color: var(--c-primary);
  font-size: 8px;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ Features ============ */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media (max-width: 720px) {
  .features-list { gap: 80px; }
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
@media (max-width: 820px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
}
.feature-num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-primary);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.feature-num::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--c-primary);
}
.feature-row h3 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 20px;
  text-wrap: balance;
}
.feature-row p {
  font-size: 16px;
  color: var(--c-ink-2);
  line-height: 1.85;
  margin: 0 0 24px;
  max-width: 480px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-tag {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--c-primary-soft);
  color: var(--c-primary-deep);
  font-weight: 600;
}

/* Phone mock */
.phone-mock {
  position: relative;
  margin: 0 auto;
  max-width: 320px;
  aspect-ratio: 9/19.5;
  border-radius: 44px;
  background: #0a1322;
  padding: 12px;
  box-shadow: 0 30px 60px -10px rgba(26, 36, 53, 0.3), 0 12px 24px -6px rgba(26, 36, 53, 0.18);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.phone-mock::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #0a1322;
  border-radius: 14px;
  z-index: 3;
}
.phone-mock img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 34px;
}
.phone-mock.tilt-left { transform: rotate(-3deg); }
.phone-mock.tilt-right { transform: rotate(3deg); }
.phone-mock:hover.tilt-left, .phone-mock:hover.tilt-right { transform: rotate(0); }

.phone-stage {
  position: relative;
  padding: 40px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--c-bg-2) 0%, color-mix(in oklab, var(--c-primary) 10%, var(--c-bg-2)) 100%);
  overflow: hidden;
}
.phone-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--c-line-2) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, transparent 30%, black 100%);
}
.phone-stage .decor-pin {
  position: absolute;
  opacity: 0.35;
}

/* Compare preview (feature 05) */
.compare-stage {
  position: relative;
  padding: 40px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--c-bg-2) 0%, color-mix(in oklab, var(--c-primary) 10%, var(--c-bg-2)) 100%);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.compare-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--c-line-2) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, transparent 30%, black 100%);
  pointer-events: none;
}
.compare-stage .decor-pin {
  position: absolute;
  z-index: 0;
}
.compare-card {
  position: relative;
  width: 78%;
  max-width: 360px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.compare-card__art {
  width: 100%;
  height: auto;
  display: block;
}
.compare-card__label {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--c-ink);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.compare-card__label .lbl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.compare-card--anime {
  transform: rotate(-4deg) translateY(8px);
}
.compare-card--real {
  margin-top: -36px;
  margin-left: 30%;
  transform: rotate(3deg);
}
.compare-meta {
  margin-top: 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  padding: 14px 24px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.compare-meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.compare-meta__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.compare-meta__num small {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink-3);
  margin-left: 2px;
}
.compare-meta__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  font-family: var(--font-en);
}

/* ============ For who ============ */
.for-who-section {
  background: var(--c-bg-2);
  padding: 100px 0;
}
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.for-who-card {
  background: var(--c-card);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.for-who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.for-who-card .num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.for-who-card .glyph {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-primary-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--c-primary-deep);
}
.for-who-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.for-who-card p {
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.7;
  margin: 0;
}

/* ============ Voices / Reviews ============ */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.voice-card {
  background: var(--c-card);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.voice-stars {
  display: flex;
  gap: 2px;
  color: #f5a623;
}
.voice-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-ink);
}
.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.voice-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-deep) 100%);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: var(--font-en);
}
.voice-author .meta { display: flex; flex-direction: column; line-height: 1.3; }
.voice-author .meta b { font-size: 14px; font-weight: 700; }
.voice-author .meta small { font-size: 12px; color: var(--c-ink-3); }

/* ============ News ============ */
.news-section {
  background: var(--c-bg-2);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 820px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  background: var(--c-card);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s, border-color .25s;
}
.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-primary);
}
.news-card .date {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink-3);
  letter-spacing: 0.05em;
}
.news-card .tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--c-primary-soft);
  color: var(--c-primary-deep);
  letter-spacing: 0.05em;
}
.news-card.tag-update .tag { background: #e7f5ee; color: #2a8d5c; }
.news-card.tag-press .tag { background: #fdf0e6; color: #d97757; }
.news-card.tag-release .tag { background: #e6efff; color: #2a6fdb; }
[data-theme="dark"] .news-card.tag-update .tag { background: rgba(42,141,92,0.2); color: #6dd9a0; }
[data-theme="dark"] .news-card.tag-press .tag { background: rgba(217,119,87,0.2); color: #ffb38a; }
[data-theme="dark"] .news-card.tag-release .tag { background: rgba(42,111,219,0.22); color: #8ab4ff; }
.news-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.news-card .arrow {
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  color: var(--c-primary);
  font-weight: 600;
}

/* ============ iOS coming ============ */
.ios-section {
  padding: 100px 0;
}
.ios-card {
  background: linear-gradient(135deg, var(--c-ink) 0%, #0e2547 100%);
  color: var(--c-bg);
  border-radius: var(--r-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
[data-theme="dark"] .ios-card {
  background: linear-gradient(135deg, #182441 0%, #0a142a 100%);
  border: 1px solid var(--c-line);
}
@media (max-width: 820px) {
  .ios-card { grid-template-columns: 1fr; padding: 40px 28px; }
}
.ios-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(29, 111, 192, 0.35) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(217, 119, 87, 0.18) 0%, transparent 40%);
}
.ios-card > * { position: relative; z-index: 1; }
.ios-card .ios-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-family: var(--font-en);
  margin-bottom: 16px;
}
.ios-card h3 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.ios-card p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
}
.ios-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 22px;
}
.ios-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: white;
  font-size: 14px;
  font-family: inherit;
}
.ios-form input::placeholder { color: rgba(255,255,255,0.4); }
.ios-form button {
  background: var(--c-bg);
  color: var(--c-ink);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 13px;
  transition: transform .15s;
}
.ios-form button:hover { transform: scale(1.02); }
.ios-success {
  margin-top: 12px;
  font-size: 13px;
  color: #6dd9a0;
  opacity: 0;
  transition: opacity .3s;
}
.ios-success.show { opacity: 1; }
.ios-illust {
  position: relative;
  aspect-ratio: 1/1;
}
.ios-illust .iphone-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iphone-frame svg { width: 70%; height: auto; opacity: 0.92; }
.ios-illust .ios-glow {
  position: absolute;
  width: 60%; height: 60%;
  left: 20%; top: 20%;
  background: radial-gradient(circle, rgba(29, 111, 192, 0.5) 0%, transparent 70%);
  filter: blur(40px);
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--c-primary); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq-q .q-mark {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.05em;
  margin-right: 14px;
  flex-shrink: 0;
}
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-bg-2);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { background: var(--c-primary); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 24px 24px 65px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-ink-2);
}

/* ============ Final CTA ============ */
.final-cta {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, var(--c-primary-soft) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, var(--c-primary-soft) 0%, transparent 50%);
  opacity: 0.6;
  z-index: 0;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 24px;
  text-wrap: balance;
}
.final-cta p {
  font-size: 18px;
  color: var(--c-ink-2);
  max-width: 560px;
  margin: 0 auto 36px;
}
.final-cta .hero-ctas { justify-content: center; }

/* ============ Footer ============ */
footer.footer {
  background: var(--c-ink);
  color: var(--c-bg);
  padding: 64px 0 32px;
}
[data-theme="dark"] footer.footer { background: #060c1a; border-top: 1px solid var(--c-line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img { width: 40px; height: 40px; }
.footer-brand b { font-size: 18px; font-weight: 700; }
.footer-brand b i { font-style: normal; opacity: 0.7; font-weight: 500; }
.footer-tag {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  white-space: pre-line;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
  font-family: var(--font-en);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}
.social-row { display: flex; gap: 16px; }
.social-row a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background .2s, color .2s;
}
.social-row a:hover { background: rgba(255,255,255,0.15); color: white; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }
.reveal[data-delay="6"] { transition-delay: .48s; }

/* Theme: hero font alt removed — font switcher no longer in UI */