/* tsurisa-lp-redesign v0.2.0 (2026-05-16)
   釣りさぁ〜 LP リニューアル試作 v2
   - スマホ390pxファースト、カンプ忠実再現
   - 7つの特徴をコンパクト横並びカードに集約、詳細は別ページへの遷移を想定
   - ダークネイビーベース + アンバーアクセント
*/

:root {
  --bg-deep: #0A1424;
  --bg: #0B1830;
  --bg-card: #122340;
  --bg-card-elev: #1A2D50;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --amber: #F5C95B;
  --amber-bright: #FFD56B;
  --amber-deep: #E5A93D;
  --orange: #FF7A00;
  --teal: #00B4DB;
  --navy-mid: #1C2541;
  --green: #34D399;
  --text: #FFFFFF;
  --text-sub: rgba(255, 255, 255, 0.78);
  --text-mute: rgba(255, 255, 255, 0.5);

  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-jp-display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-en: "Inter", "Montserrat", system-ui, sans-serif;
  --font-en-display: "Montserrat", "Inter", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.48);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.7;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ─── Container ─────────────────────────────────── */
.shell {
  width: 100%;
  max-width: 440px;        /* スマホ優先：基本はスマホ幅で組む */
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

/* ─── Pre-launch announce bar (LINE) ─────────────── */
/* 公開時はHTMLの該当ブロックを削除するだけで消える */
.announce-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #06C755 0%, #00A845 100%);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 110;
}
.announce-tag {
  font-family: var(--font-en-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
  white-space: nowrap;
}
.announce-text { letter-spacing: 0.02em; }
.announce-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FFFFFF;
  color: #06C755;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}
.announce-cta svg { flex-shrink: 0; }

/* ─── Header ────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 20, 36, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; padding: 0 16px;
  max-width: 440px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { width: 30px; height: 30px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.4); }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-family: var(--font-jp-display); font-size: 16px; color: var(--text); font-weight: 700; }
.logo-text span { font-family: var(--font-en-display); font-size: 10px; color: var(--text-mute); letter-spacing: 0.15em; }
.menu-toggle {
  display: flex; flex-direction: column; gap: 4px;
  width: 36px; height: 36px; justify-content: center; align-items: center;
  border-radius: 8px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ─── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  padding: 32px 0 28px;
  overflow: hidden;
  background-color: #0A1424;
}
.hero-bg {
  position: fixed;                         /* viewportに固定 */
  top: 0; left: 0; right: 0;
  height: 100vh;
  background-image: url("assets/hero-sunset.png");
  background-size: cover;
  background-position: 80% 55%;            /* スマホ: 釣り人を見せる */
  z-index: 0;
  pointer-events: none;
  /* hero範囲を抜けたら徐々に消す。JSでopacity制御 */
}
.hero-bg::after {
  /* テキストが読める分だけ上に暗グラデを乗せ、下と釣り人エリアは透ける */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 20, 36, 0.65) 0%, rgba(10, 20, 36, 0.3) 38%, rgba(10, 20, 36, 0.1) 60%, rgba(10, 20, 36, 0.85) 100%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255, 122, 0, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(245, 201, 91, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 0 16px;
}
.hero-title {
  font-family: var(--font-jp-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin-bottom: 20px;
  text-shadow:
    -1px -1px 0 rgba(11, 20, 36, 0.7),
    1px -1px 0 rgba(11, 20, 36, 0.7),
    -1px 1px 0 rgba(11, 20, 36, 0.7),
    1px 1px 0 rgba(11, 20, 36, 0.7),
    0 4px 16px rgba(0, 0, 0, 0.5);
}
.hero-title em {
  font-style: normal;
  color: var(--amber);
}
.hero-lead {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-sub);
  margin-bottom: 22px;
}
.hero-cta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 0;
}
.hero-cta .btn-store { flex: 0 1 160px; }

.btn-store {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 12px;
  border-radius: 9px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  min-height: 42px;
  justify-content: center;
}
.btn-store-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn-store-label { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.btn-store-label small { font-size: 8px; opacity: 0.7; font-weight: 400; letter-spacing: 0.02em; }
.btn-store-label strong { font-size: 12px; font-weight: 700; letter-spacing: -0.005em; }

/* Coming soon note */
.cta-note {
  margin-top: 14px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.cta-note strong {
  display: inline-block;
  font-family: var(--font-jp-display);
  background: rgba(245, 201, 91, 0.16);
  color: var(--amber);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-right: 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.cta-note a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

.hero-phones {
  position: relative;
  display: flex; justify-content: center; gap: 14px;
  padding: 8px 0 32px;
}
.hero-phone {
  width: 152px;
  aspect-ratio: 9 / 19.5;
  border-radius: 22px;
  background: #0B132B;
  border: 5px solid #0F172A;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-phone:first-child { transform: rotate(-2deg) translateY(-6px); }
.hero-phone:last-child { transform: rotate(2deg) translateY(6px); }
.hero-phone img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute; right: 16px; bottom: 16px;
  background: rgba(11, 24, 48, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  width: 72px; height: 72px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero-badge strong { font-size: 11px; }

/* ─── Pills row ─────────────────────────────────── */
.pills-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px;
  max-width: 440px;
  margin: 0 auto;
}
.pill {
  display: flex; align-items: center; gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.35;
}
.pill-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--amber);
}
.pill-icon svg { width: 100%; height: 100%; }
.pill strong { font-weight: 600; display: block; }
.pill span { color: var(--text-mute); display: block; font-size: 11px; margin-top: 2px; }

/* ─── Section heading ───────────────────────────── */
.section-heading {
  text-align: center;
  padding: 40px 16px 20px;
  max-width: 440px;
  margin: 0 auto;
}
.section-heading h2 {
  font-family: var(--font-jp-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}
.section-heading h2 em {
  font-style: normal;
  font-family: var(--font-en-display);
  color: var(--amber);
  font-size: 26px;
  font-weight: 700;
  margin: 0 4px;
}

/* ─── Feature cards ─────────────────────────────── */
.features {
  display: flex; flex-direction: column;
  gap: 10px;
  padding: 0 16px 24px;
  max-width: 440px;
  margin: 0 auto;
}
.feature-card {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 14px;
  align-items: stretch;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
  transition: transform .15s, border-color .15s;
  min-height: 180px;
  overflow: hidden;
}
.feature-card { cursor: default; }
.feature-card:hover { border-color: var(--border-strong); }
.feature-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--amber);
  color: var(--bg-deep);
  font-family: var(--font-en-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-body {
  display: flex; flex-direction: column;
  min-width: 0;
}
.feature-title {
  font-family: var(--font-jp-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.feature-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-sub);
  flex-grow: 1;
}
.feature-tags {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-top: 10px;
}
.feature-tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-sub);
  border: 1px solid var(--border);
}
.feature-tag.active { background: var(--teal); color: var(--bg-deep); font-weight: 700; border-color: var(--teal); }

.feature-visual {
  position: relative;
  width: 110px;
  border-radius: 14px;
  overflow: hidden;
  background: #0F172A;
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.feature-visual.tall img { object-position: top center; }

/* Rotating images inside a feature-visual (2-image smooth crossfade) */
.feature-visual.feature-rotate { position: relative; cursor: zoom-in; }
.feature-visual.feature-rotate img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  animation: fv-rotate 6s ease-in-out infinite;
  will-change: opacity;
}
.feature-visual.feature-rotate img:nth-child(1) { animation-delay: 0s; }
.feature-visual.feature-rotate img:nth-child(2) { animation-delay: 3s; }
@keyframes fv-rotate {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  45%  { opacity: 1; }
  55%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Zigzag: even-indexed cards put image on the LEFT */
@media (min-width: 1px) {
  .feature-card:nth-of-type(even) {
    grid-template-columns: 110px 1fr;
  }
  .feature-card:nth-of-type(even) .feature-body { order: 2; }
  .feature-card:nth-of-type(even) .feature-visual { order: 1; }
}
@media (min-width: 768px) {
  .feature-card:nth-of-type(even) {
    grid-template-columns: 140px 1fr;
  }
}

/* Lightbox modal */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 56px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 19.5;
  border-radius: 30px;
  background: #0B132B;
  border: 7px solid #0F172A;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.open .lightbox-frame { transform: scale(1); }
.lightbox-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0;
  animation: fv-rotate 6s ease-in-out infinite;
}
.lightbox-frame img:nth-child(2) { animation-delay: 3s; }
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.lightbox-caption {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 0 24px;
}

.feature-badge-now {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
}

/* ─── Privacy section ───────────────────────────── */
.privacy {
  padding: 40px 16px;
  max-width: 440px;
  margin: 0 auto;
}
.privacy h2 {
  font-family: var(--font-jp-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
.privacy h2 em {
  font-style: normal;
  font-family: var(--font-en-display);
  color: var(--amber);
  font-size: 22px;
  margin: 0 2px;
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.privacy-cell {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 14px 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 11px;
  line-height: 1.45;
}
.privacy-cell-icon {
  width: 28px; height: 28px;
  margin-bottom: 8px;
  color: var(--amber);
}
.privacy-cell-icon svg { width: 100%; height: 100%; }
.privacy-cell strong { font-size: 12px; font-weight: 700; display: block; margin-bottom: 4px; }
.privacy-cell span { color: var(--text-mute); font-size: 10px; line-height: 1.45; }

/* ─── Privacy share modal mock ──────────────────── */
.share-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  margin-top: 16px;
}
.share-mock-title {
  font-family: var(--font-jp-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.share-mock-desc { font-size: 11px; color: var(--text-mute); margin-bottom: 14px; line-height: 1.6; }
.share-mock-link {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--text-sub);
  margin-bottom: 12px;
  font-family: var(--font-en);
  word-break: break-all;
}
.share-mock-link-label { color: var(--text-mute); font-size: 10px; margin-bottom: 4px; }
.share-mock-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.share-mock-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}
.share-mock-btn.copy { background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border); color: var(--text); }
.share-mock-btn.line { background: var(--green); color: white; }
.share-mock-btn.stop { background: #DC2626; color: white; grid-column: 1 / -1; }

/* ─── Final CTA ─────────────────────────────────── */
.final {
  padding: 56px 16px 32px;
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
  background: linear-gradient(180deg, transparent 0%, rgba(245, 201, 91, 0.06) 50%, transparent 100%);
}
.final h2 {
  font-family: var(--font-jp-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.final-logo {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 20px 0 24px;
  font-family: var(--font-jp-display);
  font-size: 18px;
  font-weight: 700;
}
.final-logo-mark { width: 36px; height: 36px; border-radius: 9px; overflow: hidden; }
.final-logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.final-cta { display: flex; flex-direction: column; gap: 10px; }

/* ─── Footer ────────────────────────────────────── */
.site-footer {
  padding: 48px 16px 24px;
  background: rgba(10, 20, 36, 0.88);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-mute);
  position: relative;
  z-index: 5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-mark { width: 36px; height: 36px; border-radius: 9px; overflow: hidden; flex-shrink: 0; }
.footer-logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand > div { display: flex; flex-direction: column; line-height: 1.15; }
.footer-brand strong { font-family: var(--font-jp-display); font-size: 16px; color: var(--text); font-weight: 700; }
.footer-brand span { font-family: var(--font-en-display); font-size: 10px; color: var(--text-mute); letter-spacing: 0.15em; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-stores { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-store-mini {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-sub);
  font-size: 11px;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-store-mini:hover { border-color: var(--amber); color: var(--text); }
.footer-store-mini svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-heading {
  font-family: var(--font-en-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-sub); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--text); }

.footer-company strong {
  display: block;
  color: var(--text);
  margin-bottom: 10px;
  font-size: 14px;
  font-family: var(--font-jp-display);
  font-weight: 700;
}
.footer-company p {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-sub);
}
.footer-company a { color: var(--text-sub); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.2); text-underline-offset: 2px; }
.footer-company a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin: 32px auto 0;
  max-width: 1100px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-version {
  font-family: var(--font-en-display);
  letter-spacing: 0.05em;
}
.footer-copy { color: rgba(255, 255, 255, 0.35); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 48px; }
  .site-footer { padding: 64px 24px 32px; }
}

/* ─── Tablet / Desktop (≥768px) ─────────────────── */
@media (min-width: 768px) {
  .shell, .header-inner, .pills-row, .section-heading, .features, .privacy, .final, .site-footer { max-width: 1100px; }
  .header-inner { height: 64px; padding: 0 24px; }
  .menu-toggle { display: none; }

  .hero-bg { background-position: 60% 50%; }
  .hero {
    padding: 56px 24px 0;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
  .hero-title { font-size: 48px; line-height: 1.3; margin-bottom: 28px; }
  .hero-lead { font-size: 16px; margin-bottom: 32px; }
  .hero-cta { flex-direction: row; gap: 12px; flex-wrap: wrap; }
  .btn-store { padding: 12px 18px; }
  .hero-phones { padding: 0; align-self: stretch; align-items: center; }
  .hero-phone { width: 220px; border-radius: 30px; border-width: 7px; }

  .pills-row {
    grid-template-columns: repeat(4, 1fr);
    padding: 24px;
    margin-top: -16px;
  }

  .section-heading { padding: 80px 24px 32px; }
  .section-heading h2 { font-size: 30px; }
  .section-heading h2 em { font-size: 36px; }

  .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 24px 48px;
  }
  .feature-card { padding: 24px; min-height: 200px; }
  .feature-title { font-size: 18px; }
  .feature-desc { font-size: 13px; }
  .feature-visual { width: 140px; }

  .privacy { padding: 80px 24px; }
  .privacy h2 { font-size: 28px; text-align: center; }
  .privacy-grid { gap: 14px; max-width: 720px; margin: 0 auto 24px; }
  .privacy-cell { padding: 24px 14px; }
  .privacy-cell strong { font-size: 14px; }
  .share-mock { max-width: 540px; margin: 24px auto 0; }

  .final { padding: 80px 24px 40px; }
  .final h2 { font-size: 36px; }
  .final-cta { flex-direction: row; justify-content: center; }
}

/* ─── Wide desktop (≥1280px) ────────────────────── */
@media (min-width: 1280px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Animations ────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  /* Hero radial glow breathing */
  @keyframes hero-breath {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
  }
  .hero::before { animation: hero-breath 9s ease-in-out infinite; }

  /* Hero phones gentle float */
  @keyframes float-a {
    0%, 100% { transform: rotate(-2deg) translateY(-6px); }
    50% { transform: rotate(-2deg) translateY(-14px); }
  }
  @keyframes float-b {
    0%, 100% { transform: rotate(2deg) translateY(6px); }
    50% { transform: rotate(2deg) translateY(-2px); }
  }
  .hero-phone:first-child { animation: float-a 6s ease-in-out infinite; }
  .hero-phone:last-child  { animation: float-b 6s ease-in-out 0.8s infinite; }

  /* Hero iOS/Android badge ring pulse */
  @keyframes ring-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(245, 201, 91, 0.45); }
    80%  { box-shadow: 0 0 0 14px rgba(245, 201, 91, 0); }
    100% { box-shadow: 0 0 0 0   rgba(245, 201, 91, 0); }
  }
  .hero-badge { animation: ring-pulse 3s ease-out infinite; }

  /* Number badge pop on appear */
  @keyframes num-pop {
    0%   { transform: scale(0.6) rotate(-8deg); opacity: 0; }
    60%  { transform: scale(1.12) rotate(2deg); opacity: 1; }
    100% { transform: scale(1)   rotate(0);    opacity: 1; }
  }
  .feature-card.in .feature-number { animation: num-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both; }

  /* Now-fishing badge live pulse */
  @keyframes now-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(52, 211, 153, 0.6); }
    80%  { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0   rgba(52, 211, 153, 0); }
  }
  .feature-badge-now { animation: now-pulse 2s ease-out infinite; }

  /* Heading "7" gentle hop */
  @keyframes hop {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
  }
  .section-heading h2 em { display: inline-block; animation: hop 3s ease-in-out infinite; }

  /* Pill hover */
  .pill { transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease; }
  .pill:hover { transform: translateY(-3px); border-color: var(--amber); background: rgba(245, 201, 91, 0.05); }

  /* Privacy cell hover */
  .privacy-cell { transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease; }
  .privacy-cell:hover { transform: translateY(-3px); background: var(--bg-card-elev); border-color: var(--amber); }

  /* Feature card hover */
  .feature-card { transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
  .feature-card:hover { transform: translateY(-4px); border-color: rgba(245, 201, 91, 0.4); box-shadow: 0 18px 44px rgba(245, 201, 91, 0.08); }
  .feature-visual img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
  .feature-card:hover .feature-visual img { transform: scale(1.06); }

  /* Reveal-on-scroll */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-1 { transition-delay: 0.05s; }
  .reveal-2 { transition-delay: 0.10s; }
  .reveal-3 { transition-delay: 0.15s; }
  .reveal-4 { transition-delay: 0.20s; }
  .reveal-5 { transition-delay: 0.25s; }
  .reveal-6 { transition-delay: 0.30s; }

  /* Reveal variants */
  .reveal-left  { transform: translate(-28px, 0); }
  .reveal-left.in  { transform: translate(0, 0); }
  .reveal-right { transform: translate(28px, 0); }
  .reveal-right.in { transform: translate(0, 0); }
  .reveal-scale { transform: scale(0.92); }
  .reveal-scale.in { transform: scale(1); }

  /* Subtle background star drift on hero */
  @keyframes drift {
    from { background-position: 0 0; }
    to   { background-position: 80px 0; }
  }
  .hero-stars {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4), transparent),
      radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.3), transparent),
      radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.35), transparent),
      radial-gradient(1px 1px at 35% 85%, rgba(255,255,255,0.25), transparent),
      radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.3), transparent);
    background-size: 200px 200px;
    animation: drift 60s linear infinite;
    pointer-events: none;
    z-index: 0;
  }
}

/* Always-on subtle CTA shimmer (works even with reduced motion off) */
@keyframes cta-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ─── Drawer menu ───────────────────────────────── */
.menu-toggle span { transition: transform 0.3s ease, opacity 0.3s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 98;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 86%; max-width: 320px;
  background: linear-gradient(180deg, #0F1F3C 0%, #0A1424 100%);
  border-left: 1px solid var(--border-strong);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 84px 24px 32px;
  overflow-y: auto;
  box-shadow: -24px 0 56px rgba(0, 0, 0, 0.4);
}
.drawer.open { transform: translateX(0); }
.drawer-section { margin-bottom: 24px; }
.drawer-section-label {
  font-family: var(--font-en-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 8px;
}
.drawer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  transition: color 0.2s ease;
}
.drawer a:hover { color: var(--amber); }
.drawer a::after {
  content: "›";
  font-family: serif;
  color: var(--text-mute);
  font-size: 18px;
  line-height: 1;
}
.drawer-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(245, 201, 91, 0.15);
  color: var(--amber);
  font-family: var(--font-en-display);
  font-size: 11px;
  font-weight: 700;
  margin-right: 10px;
}

/* ─── Story sections (SECRET SPOT / FAMILY WATCH) ── */
.story {
  padding: 64px 16px;
  position: relative;
  overflow: hidden;
}
.story.light {
  background: linear-gradient(180deg, #F4F8FE 0%, #E8EFF8 100%);
  color: #0F172A;
}
.story.dark {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(10, 20, 36, 0.78) 0%, rgba(10, 20, 36, 0.92) 100%),
    url("assets/hero-sunset.png");
  background-size: cover;
  background-position: center 60%;
}
.story-inner {
  display: grid;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.story-tag {
  display: inline-block;
  font-family: var(--font-en-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 14px;
  font-weight: 700;
}
.story h3 {
  font-family: var(--font-jp-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.story-text p {
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.78;
}
.story-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}
.story-chip {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 600;
}
.story.light .story-chip { background: rgba(15, 23, 42, 0.06); color: #0F172A; }
.story.light .story-chip.full { background: var(--navy-mid, #1C2541); color: #FFFFFF; }
.story.light .story-chip.team { background: var(--orange); color: #FFFFFF; }
.story.light .story-chip.self { background: rgba(15, 23, 42, 0.85); color: #FFFFFF; }
.story.light .story-chip.family { background: #00B4DB; color: #FFFFFF; }

.story-visual {
  position: relative;
}
.story-phones {
  display: flex; gap: 12px; justify-content: center;
}
.story-phones .hero-phone { width: 140px; }
.story-phones .hero-phone:first-child { transform: rotate(-3deg); }
.story-phones .hero-phone:last-child  { transform: rotate(3deg); }

.story-floater {
  position: absolute;
  background: white;
  color: #0F172A;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  font-weight: 600;
}
.story-floater .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}
.story-floater span { display: block; font-size: 11px; color: var(--text-mute); font-weight: 400; margin-top: 2px; }
.story-floater.bottom-left { bottom: 24px; left: 8px; }
.story-floater.top-left { top: 40px; left: -8px; }
.story-floater.top-right { top: 40px; right: -8px; }

@media (min-width: 768px) {
  .story { padding: 100px 24px; }
  .story-inner { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .story.reverse .story-inner > div:first-child { order: 2; }
  .story h3 { font-size: 38px; }
  .story-text p { font-size: 15px; }
  .story-phones .hero-phone { width: 200px; }
}


