/* Sukima marketing site — Dusk direction */
:root {
  --bg: #1A0D06;
  --bg-alt: #3A1E0E;
  --bg-deep: #000000;
  --ink: #FFFFFF;
  --sub: rgba(255,255,255,0.58);
  --sub-2: rgba(255,255,255,0.38);
  --hair: rgba(255,255,255,0.08);
  --accent: #E9A46B;
  --accent-deep: #C9763A;
  --accent-soft: #F0B57A;
  --danger: #E85C4A;
  --success: #34C759;
  --cream: #F2EADA;

  --font-display: "Instrument Serif", "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "SF Pro Text", system-ui, sans-serif;
  --font-hand: "Caveat", "Kalam", cursive;
  --font-app: -apple-system, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;

  --radial: radial-gradient(ellipse at 50% 0%, #3A1E0E 0%, #1A0D06 45%, #000 85%);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #000;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; cursor: pointer; }

.shell { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 8px 8px 22px;
  background: rgba(28,28,30,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 99px;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: -0.5px;
  margin-right: 24px;
  color: var(--ink);
  min-height: 48px; display: inline-flex; align-items: center;
  padding: 0 4px;
}
.nav-links { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--sub);
  padding: 12px 16px; border-radius: 99px; min-height: 48px; display: inline-flex; align-items: center;
  transition: color 120ms;
  background: transparent;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--accent); background: rgba(233,164,107,0.10); }
.nav-cta {
  margin-left: 10px;
  background: var(--accent); color: #1A0D06;
  padding: 10px 18px; border-radius: 99px;
  font-weight: 700; font-size: 13px; letter-spacing: -0.1px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 48px;
  border: 1px solid var(--accent);
  transition: filter 120ms, background 120ms, color 120ms;
}
.nav-cta:hover { filter: brightness(1.08); }
/* Secondary nav CTA — outlined accent (used by "Open Web App") */
.nav-cta-ghost {
  background: transparent; color: var(--accent);
  border: 1px solid rgba(233,164,107,0.55);
  margin-left: 6px;
}
.nav-cta-ghost:hover { background: rgba(233,164,107,0.10); filter: none; color: var(--accent); }
@media (max-width: 720px) {
  .nav-cta-ghost { display: none; }
}

/* ── Page frame ──────────────────────────────────── */
.page { min-height: 100vh; position: relative; }
.page-dusk { background: var(--radial); }
.page-black { background: #000; }

/* ── Section basics ──────────────────────────────── */
.section { padding: 100px 0; position: relative; }
.eyebrow {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 3px; color: var(--sub);
}
.h-display {
  font-family: var(--font-display); font-weight: 400;
  letter-spacing: -2px; line-height: 0.92; margin: 0;
}
.h-section {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5.6vw, 92px);
  letter-spacing: -2px; line-height: 0.95; margin: 0;
}
.h-small {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 50px);
  letter-spacing: -1.5px; line-height: 1; margin: 0;
}
.italic { font-style: italic; }
.sub { color: var(--sub); }
.sub2 { color: var(--sub-2); }
.accent { color: var(--accent); }
.accent-deep { color: var(--accent-deep); }
.hand {
  font-family: var(--font-hand);
  color: var(--accent-soft);
  font-weight: 500;
}

.lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.45;
  color: var(--sub);
  letter-spacing: -0.2px;
  max-width: 540px;
}

/* ── CTA ─────────────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 99px;
  background: var(--accent); color: #1A0D06;
  font-weight: 700; font-size: 16px; letter-spacing: -0.2px;
  transition: filter 120ms;
}
.cta:hover { filter: brightness(1.1); }
.cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px; border-radius: 99px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid var(--hair);
  color: var(--ink);
  font-weight: 500; font-size: 14px;
}
.cta-ghost:hover { background: rgba(255,255,255,0.10); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding-top: 130px; padding-bottom: 84px;
  position: relative;
}
.hero-title {
  font-size: clamp(68px, 10vw, 154px);
  letter-spacing: -5px;
}
.hero-thoughts {
  position: relative;
  height: 160px;
  margin-top: 56px;
  opacity: 0.55;
}
.hero-thoughts span {
  position: absolute;
  font-family: var(--font-hand);
  color: var(--sub);
  font-size: clamp(20px, 1.7vw, 32px);
  font-weight: 500; white-space: nowrap;
}
.hand-mark {
  position: absolute; pointer-events: none;
}

/* ── Features grid ───────────────────────────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  padding: 84px 0;
}
.feature.reverse > :first-child { order: 2; }
.feature-text { max-width: 480px; }
.feature-text .eyebrow { margin-bottom: 20px; display: block; }
.feature-text .h-section { margin-bottom: 22px; }
.feature-phone-wrap {
  display: flex; justify-content: center; align-items: center;
  min-height: 360px;
  position: relative;
}

/* ── Phone mockups ───────────────────────────────── */
.site-phone {
  width: 260px;
  height: 370px;
  overflow: hidden;
  border-radius: 30px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.55));
}
.phone-bezel {
  width: 260px;
  height: 564px;
  border-radius: 30px;
  background: #111;
  padding: 6px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.06), inset 0 0 0 2px rgba(255,255,255,0.02);
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  position: relative;
  font-family: var(--font-app);
  color: #fff;
  font-size: 12px;
}
.phone-island {
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 29%; height: 18px;
  border-radius: 999px;
  background: #000; z-index: 50;
}
.phone-statusbar {
  height: 24px; padding: 7px 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 30;
  font-size: 9px; font-weight: 600;
}
.phone-title {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.6px;
  padding: 10px 16px 0;
}
.phone-card {
  background: #1C1C1E;
  border-radius: 10px;
  margin: 8px 16px;
  padding: 10px;
}
.phone-label {
  color: var(--accent);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.phone-pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 99px;
  font-size: 10px; font-weight: 500;
  background: rgba(255,255,255,0.08);
  color: rgba(235,235,245,0.60);
  margin: 0 3px 4px 0;
}
.phone-pill.active {
  background: rgba(201,118,58,0.25);
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.phone-tabbar {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  height: 38px; padding: 3px;
  border-radius: 20px;
  background: rgba(28,28,30,0.92);
  backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255,255,255,0.08);
  display: flex; z-index: 20;
}
.phone-tab {
  width: 48px; display: flex;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 1px;
  border-radius: 18px;
  font-size: 7px; font-weight: 500;
  color: rgba(235,235,245,0.6);
}
.phone-tab.active {
  background: rgba(233,164,107,0.12);
  color: var(--accent);
}
.phone-tab svg { width: 11px; height: 11px; }
.phone-gear {
  position: absolute; top: 40px; right: 14px;
  width: 24px; height: 24px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.phone-task {
  background: #1C1C1E;
  border-radius: 8px;
  padding: 9px;
  margin: 4px 16px;
  border-left: 3px solid var(--accent);
}
.phone-task.high { border-left-color: var(--accent-deep); }
.phone-task.low { border-left-color: rgba(255,255,255,0.2); }
.phone-task-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 3px;
}
.phone-task-meta {
  font-size: 9px;
  color: rgba(235,235,245,0.60);
}
.phone-task-tag {
  display: inline-block;
  padding: 2px 6px; border-radius: 99px;
  background: rgba(201,118,58,0.2);
  color: var(--accent);
  font-size: 8px; font-weight: 600;
  float: right;
}
.phone-cta-btn {
  margin: 8px 16px;
  padding: 10px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.phone-rec-btn {
  width: 56px; height: 56px;
  border-radius: 28px;
  background: rgba(232,92,74,0.18);
  border: 2px solid var(--danger);
  display: flex; align-items: center; justify-content: center;
  margin: 8px auto;
  box-shadow: 0 0 0 8px rgba(232,92,74,0.10), 0 0 0 16px rgba(232,92,74,0.04);
}
.phone-rec-inner {
  width: 20px; height: 20px;
  border-radius: 4px;
  background: var(--danger);
}
.phone-subtitle {
  font-size: 10px;
  color: rgba(235,235,245,0.60);
  padding: 4px 16px 0;
}
.phone-section-label {
  font-size: 11px; font-weight: 600;
  padding: 10px 16px 4px;
}
.phone-upgrade-pill {
  margin: 10px 16px 0;
  padding: 9px 10px;
  background: #1C1C1E;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}
.phone-text-area {
  min-height: 36px;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 8px 10px;
  color: rgba(235,235,245,0.60);
  font-size: 11px;
  line-height: 1.4;
}

@keyframes float {
  0%, 100% { transform: translateY(-4px); }
  50% { transform: translateY(4px); }
}
.phone-float { animation: float 7s ease-in-out infinite; }

.feature-screenshot {
  width: 300px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.55));
}

/* ── Stat strip ──────────────────────────────────── */
.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--hair);
  border-bottom: 0.5px solid var(--hair);
  margin: 28px 0 70px;
}
.stat {
  padding: 40px 28px;
  border-right: 0.5px solid var(--hair);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-display); font-size: 68px;
  line-height: 1; letter-spacing: -2px;
}
.stat-label {
  font-size: 13px; color: var(--sub);
  margin-top: 8px; max-width: 240px;
  line-height: 1.5;
}

/* ── Kanji monument ──────────────────────────────── */
.kanji-section {
  padding: 130px 0 100px;
  text-align: center;
  position: relative;
}
.kanji {
  font-family: var(--font-display);
  font-size: clamp(160px, 22vw, 310px);
  color: var(--accent);
  letter-spacing: 14px;
  line-height: 1;
  font-weight: 400;
  margin: 0 0 24px;
}
.kanji-roman {
  font-size: 16px; font-weight: 600;
  letter-spacing: 6px;
  color: var(--sub);
  text-transform: uppercase;
}
.kanji-body {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 56px);
  line-height: 1.1; letter-spacing: -1px;
  margin: 56px auto 0;
  max-width: 800px;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-list { border-top: 0.5px solid var(--hair); margin-top: 44px; }
.faq-item {
  border-bottom: 0.5px solid var(--hair);
  padding: 26px 0;
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 28px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 32px);
  letter-spacing: -0.7px; line-height: 1.15;
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 99px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: transform 200ms;
  font-size: 16px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.2,0.7,0.2,1);
  color: var(--sub);
  font-size: 15px; line-height: 1.6;
  padding-right: 60px;
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 14px; }

/* ── Closer ──────────────────────────────────────── */
.closer {
  padding: 130px 0 110px;
  text-align: center;
}
.closer-title {
  font-size: clamp(50px, 7vw, 126px);
  letter-spacing: -3px; line-height: 0.95;
  margin-bottom: 44px;
}

/* ── Review / quote ──────────────────────────────── */
.quote-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 56px;
}
.quote {
  padding: 28px 26px;
  border: 0.5px solid var(--hair);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}
.quote-text {
  font-family: var(--font-display);
  font-size: 20px; line-height: 1.3; letter-spacing: -0.3px;
  margin-bottom: 18px;
}
.quote-stars { color: var(--accent); font-size: 12px; margin-bottom: 8px; letter-spacing: 2px; }
.quote-who { font-size: 12px; color: var(--sub); }

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: #000;
  padding: 84px 0 36px;
  border-top: 0.5px solid var(--hair);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 0.5px solid var(--hair);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0 0 14px;
}
.footer-tag {
  color: var(--sub); font-size: 14px; line-height: 1.5;
  max-width: 280px;
}
.footer-col h3 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--sub-2); font-weight: 600;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--sub); font-size: 13px;
  transition: color 120ms;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  color: var(--sub-2); font-size: 12px;
}
.footer-kanji {
  font-family: var(--font-display); font-size: 18px;
  color: var(--sub); letter-spacing: 4px;
}
.footer-social {
  display: flex; gap: 4px; margin-top: 12px; margin-left: -12px;
}
.footer-social a {
  color: var(--sub-2);
  transition: color 120ms;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 99px;
}
.footer-social a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.footer-social svg {
  width: 18px; height: 18px; fill: currentColor;
}

/* ── Badge row (app store) ─────────────────────── */
.badges {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 12px;
  background: #000; color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  transition: background 120ms;
}
.badge:hover { background: #141416; }
.badge-small { font-size: 10px; color: var(--sub-2); letter-spacing: 0.5px; }
.badge-big { font-size: 16px; font-weight: 600; letter-spacing: -0.3px; line-height: 1.1; }

/* ── Pricing grid ────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.pricing-card {
  padding: 32px 26px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--hair);
  position: relative;
  min-height: 400px;
  display: flex; flex-direction: column;
}
.pricing-card.highlight {
  background: rgba(233,164,107,0.08);
  border-color: rgba(233,164,107,0.35);
}
.pricing-badge {
  position: absolute; top: -12px; right: 18px;
  padding: 5px 12px;
  background: var(--accent); color: #1A0D06;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; border-radius: 99px;
  text-transform: uppercase;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 32px; margin: 0;
  letter-spacing: -0.7px;
}
.pricing-amount {
  margin: 18px 0 6px;
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: -2px; line-height: 1;
}
.pricing-amount span {
  font-size: 14px; color: var(--sub);
  letter-spacing: 0; margin-left: 4px;
}
.pricing-sub {
  color: var(--sub); font-size: 13px;
  line-height: 1.5; margin-bottom: 24px;
}
.pricing-items {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px; flex: 1;
}
.pricing-items li {
  display: flex; align-items: center;
  gap: 10px; color: var(--ink); font-size: 13px;
}
.pricing-items li svg { flex-shrink: 0; }

/* ── Support grid ────────────────────────────────── */
.support-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 44px;
}
.support-card {
  padding: 28px 24px;
  border: 0.5px solid var(--hair);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}
.support-card h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400;
  letter-spacing: -0.7px;
  margin: 0 0 12px;
}
.support-card p {
  color: var(--sub); font-size: 13px; line-height: 1.55;
  margin: 0 0 20px;
}
.support-link {
  color: var(--accent); font-weight: 600; font-size: 12px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ── Legal / prose ───────────────────────────────── */
.prose {
  margin-top: 44px; font-size: 15px;
  line-height: 1.7; color: var(--sub);
}
.prose p { margin: 0 0 1.2em; }
.prose strong { color: var(--ink); }
.prose h3 {
  font-family: var(--font-display);
  font-size: 32px; color: var(--ink);
  letter-spacing: -0.7px;
  margin: 44px 0 12px;
  font-weight: 400;
}
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ── Section dividers ────────────────────────────── */
.divider {
  height: 1px; background: var(--hair);
  margin: 0 auto; max-width: 1000px;
}

/* ── Reveal animation ────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(12px);
  transition: opacity 700ms cubic-bezier(0.2,0.7,0.2,1),
              transform 700ms cubic-bezier(0.2,0.7,0.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* LCP exemption — paint hero eyebrow + H1 + H2 immediately so Chrome
   registers the LCP element without waiting for IntersectionObserver
   or the 700ms transition. The remaining .reveal children in .hero
   (floating thoughts, CTA) keep their animation. */
.hero > .reveal:nth-child(1),
.hero > .reveal:nth-child(2),
.hero > .reveal:nth-child(3) {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Respect users who prefer no motion — paint everything immediately. */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Related reading cards (used on niche pages) ──────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.related-card {
  display: block;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hair);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}
.related-card:hover {
  border-color: var(--accent);
  background: rgba(233, 164, 107, 0.06);
  transform: translateY(-2px);
}
.related-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
}
.related-card-cta {
  margin-top: 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .shell { padding: 0 20px; }
  .nav-inner { padding: 6px 6px 6px 16px; }
  .nav-wordmark { margin-right: 6px; font-size: 18px; }
  .nav-links { display: none; }
  .feature { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .feature.reverse > :first-child { order: 1; }
  .feature-phone-wrap { min-height: auto; order: -1; }
  .feature-screenshot { width: 240px; }
  .site-phone { width: 220px; height: 310px; border-radius: 24px; }
  .phone-bezel { width: 220px; height: 478px; border-radius: 24px; }
  .phone-screen { border-radius: 20px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 0.5px solid var(--hair); }
  .stat:last-child { border-bottom: 0; }
  .quote-row, .support-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { font-size: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .section { padding: 60px 0; }
  .hero { padding-top: 100px; }
  .hero-title { letter-spacing: -3px; }
  .hero-thoughts { height: 120px; }
  .kanji-section { padding: 70px 0 56px; }
  .closer { padding: 70px 0 56px; }
}

@media (max-width: 600px) {
  .feature-screenshot { width: 200px; }
  .site-phone { width: 190px; height: 270px; border-radius: 20px; }
  .phone-bezel { width: 190px; height: 412px; border-radius: 20px; }
  .phone-screen { border-radius: 17px; }
  .hero-title { letter-spacing: -2px; }
  .stat-num { font-size: 48px; }
  .cta { font-size: 14px; padding: 14px 22px; }
  .cta-ghost { font-size: 13px; padding: 12px 18px; }
  .footer-top { grid-template-columns: 1fr; }
}
