/* =====================================================
   Today Schedule — Landing
   Mobile-native first / scaled up for tablet & desktop
   ===================================================== */

:root {
  --color-bg: #fafaf7;
  --color-bg-alt: #f3f1ea;
  --color-surface: #ffffff;
  --color-ink: #1a1a1a;
  --color-ink-soft: #4a4a4a;
  --color-ink-muted: #8a8a85;
  --color-line: #e8e6df;
  --color-accent: #ff5252;
  --color-yellow: #ffd76e;

  --color-attraction: #4a90e2;
  --color-show: #e85d75;
  --color-parade: #b265d4;
  --color-restaurant: #f59e3a;

  --font-jp: 'Zen Kaku Gothic New', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;

  /* safe area for iOS notch */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);

  --tap: 44px;          /* min tap target */
  --sticky-h: 76px;     /* sticky CTA height */
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-ink);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { touch-action: manipulation; }

/* =====================================================
   TOPBAR — minimal, mobile-native
   ===================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-line);
  height: 56px;
  padding: 0 18px;
  padding-top: var(--safe-top);
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-jp);
  font-weight: 900;
}
.brand-logo {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}
.brand-name {
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* =====================================================
   HERO — mobile-portrait first
   ===================================================== */
.hero {
  position: relative;
  padding: 56px 24px 48px;
  text-align: center;
  overflow: hidden;
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-stars .star {
  position: absolute;
  color: var(--color-yellow);
  opacity: 0.7;
  filter: drop-shadow(0 0 6px rgba(255, 215, 110, 0.5));
  animation: twinkle 3.5s ease-in-out infinite;
}
.hero-stars .s1 { top: 8%;  left: 10%; font-size: 18px; }
.hero-stars .s2 { top: 14%; right: 12%; font-size: 22px; animation-delay: 1.2s; }
.hero-stars .s3 { top: 56%; left: 6%;  font-size: 14px; animation-delay: 2.2s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1.2) rotate(20deg); }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--color-ink-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-jp);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
}
.hero-highlight {
  position: relative;
  display: inline-block;
  padding: 0 4px;
  background: linear-gradient(transparent 62%, var(--color-yellow) 62%);
}

.hero-sub {
  font-size: 15px;
  color: var(--color-ink-soft);
  line-height: 2;
  margin-bottom: 36px;
}

.hero-note {
  font-size: 12px;
  color: var(--color-ink-muted);
  letter-spacing: 0.05em;
  margin-top: 14px;
  margin-bottom: 48px;
}

/* CTA — big touch target */
.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-ink);
  color: white;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 18px 36px;
  border-radius: 999px;
  min-height: var(--tap);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  font-family: inherit;
  cursor: pointer;
  border: none;
}
.cta-main:active {
  transform: scale(0.97);
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.22);
}
.cta-main .arr {
  transition: transform 0.18s ease;
}
.cta-main:active .arr {
  transform: translateX(4px);
}

/* Hero phone mock */
.hero-phone {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.phone-frame {
  width: 260px;
  background: #1a1a1a;
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 30px 60px rgba(26, 26, 26, 0.18),
    0 10px 24px rgba(26, 26, 26, 0.08);
  position: relative;
}
.phone-notch {
  width: 90px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  margin: -10px auto 0;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  background: var(--color-surface);
  border-radius: 28px;
  padding: 38px 14px 18px;
  overflow: hidden;
}

.mock-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 0 4px 10px;
  color: var(--color-ink);
}
.mock-status-icons { letter-spacing: -0.5px; opacity: 0.7; }

.mock-appheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 6px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
}
.mock-park { color: var(--color-ink); }
.mock-weather { color: var(--color-ink-muted); font-weight: 500; }

.mock-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.mock-row::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-line);
}
.mock-row:first-child::before { top: 50%; }
.mock-row:last-child::before  { bottom: 50%; }

.mock-time {
  font-size: 10px;
  width: 28px;
  color: var(--color-ink-muted);
  font-weight: 700;
}
.mock-card {
  flex: 1;
  padding: 8px 11px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  position: relative;
  z-index: 1;
}
.mock-c-attr   { background: var(--color-attraction); }
.mock-c-show   { background: var(--color-show); }
.mock-c-parade { background: var(--color-parade); }
.mock-c-rest   { background: var(--color-restaurant); }

/* =====================================================
   Section common (mobile defaults)
   ===================================================== */
.section {
  padding: 72px 24px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--color-ink-muted);
  margin-bottom: 18px;
  text-align: center;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-jp);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 22px;
  letter-spacing: 0.005em;
}
.section-lead {
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 40px;
}

/* =====================================================
   Empathy
   ===================================================== */
.section-empathy {
  background: var(--color-bg-alt);
}

.check-list {
  list-style: none;
  background: white;
  border-radius: 18px;
  padding: 8px 20px;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.04);
  margin-bottom: 36px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px dashed var(--color-line);
  line-height: 1.7;
}
.check-item:last-child { border-bottom: none; }

.check-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  margin-top: 3px;
}

.empathy-conclusion {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-jp);
  line-height: 1.8;
}
.hl {
  background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
  padding: 0 4px;
}

/* =====================================================
   Features — mobile: horizontal swipeable carousel
   ===================================================== */
.section-features {
  background: var(--color-bg);
  padding-left: 0;
  padding-right: 0;
}
.section-features .section-eyebrow,
.section-features .section-title {
  padding: 0 24px;
}

.features-scroll {
  display: flex;
  gap: 16px;
  padding: 16px 24px 8px;
  margin-top: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.features-scroll::-webkit-scrollbar { display: none; }

.feature-card {
  flex: 0 0 86%;
  scroll-snap-align: center;
  background: white;
  border-radius: 20px;
  padding: 28px 24px 30px;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.06);
  border: 1px solid var(--color-line);
}

.feature-num {
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 900;
  color: var(--color-line);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.feature-shot {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--color-bg-alt);
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.08);
}
.feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.feature-title {
  font-family: var(--font-jp);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 13.5px;
  color: var(--color-ink-soft);
  line-height: 1.9;
  margin-bottom: 16px;
}
.feature-points {
  list-style: none;
}
.feature-points li {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.6;
}
.feature-points li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 6px;
  color: var(--color-accent);
  font-weight: 900;
}

/* =====================================================
   How — vertical step cards (mobile-native)
   ===================================================== */
.section-how {
  background: var(--color-bg-alt);
}

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  counter-reset: step;
}

.step-card {
  background: white;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
  position: relative;
}

.step-badge {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: white;
  background: var(--color-accent);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.step-title {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.5;
}
.step-desc {
  font-size: 13.5px;
  color: var(--color-ink-soft);
  line-height: 1.9;
}

/* =====================================================
   Why
   ===================================================== */
.section-why { background: var(--color-bg); }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.why-card {
  background: white;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--color-line);
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.03);
}
.why-emoji {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
}
.why-card-title {
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 10px;
}
.why-card-desc {
  font-size: 13.5px;
  color: var(--color-ink-soft);
  line-height: 1.9;
}

/* =====================================================
   FAQ
   ===================================================== */
.section-faq { background: var(--color-bg-alt); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.faq-item {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--color-line);
  overflow: hidden;
}
.faq-item[open] {
  border-color: var(--color-ink);
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.06);
}
.faq-item summary {
  padding: 18px 50px 18px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  min-height: var(--tap);
  display: flex;
  align-items: center;
  line-height: 1.6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--color-ink-muted);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
  color: var(--color-ink);
}
.faq-item p {
  padding: 0 20px 20px;
  color: var(--color-ink-soft);
  font-size: 13px;
  line-height: 1.95;
}

/* =====================================================
   Final CTA
   ===================================================== */
.section-final {
  background: var(--color-bg);
  padding-top: 72px;
  padding-bottom: 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-stars { position: absolute; inset: 0; pointer-events: none; }
.final-stars .star {
  position: absolute;
  color: var(--color-yellow);
  opacity: 0.7;
  filter: drop-shadow(0 0 8px rgba(255, 215, 110, 0.5));
  animation: twinkle 3.5s ease-in-out infinite;
}
.final-stars .s1 { top: 16%; left: 14%; font-size: 18px; }
.final-stars .s2 { top: 22%; right: 14%; font-size: 22px; animation-delay: 1.6s; }

.final-title {
  font-family: var(--font-jp);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 22px;
  letter-spacing: 0.005em;
}
.final-accent {
  background: linear-gradient(transparent 58%, var(--color-yellow) 58%);
  padding: 0 6px;
}
.final-sub {
  font-size: 14px;
  color: var(--color-ink-soft);
  line-height: 2;
  margin-bottom: 36px;
}

/* spacer so sticky CTA doesn't cover content */
.bottom-spacer { height: var(--sticky-h); }

/* =====================================================
   Sticky bottom CTA (mobile-native pattern)
   ===================================================== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 12px 18px calc(12px + var(--safe-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-top: 1px solid var(--color-line);
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--color-ink);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border-radius: 999px;
  min-height: var(--tap);
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.2);
  transition: transform 0.15s ease;
}
.sticky-cta-btn:active {
  transform: scale(0.98);
}
.sticky-cta-btn .arr {
  transition: transform 0.18s ease;
}
.sticky-cta-btn:active .arr {
  transform: translateX(4px);
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 24px 32px;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.footer-logo {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}
.footer-name {
  color: white;
  font-weight: 900;
  font-size: 14px;
  font-family: var(--font-jp);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom {
  font-size: 11px;
  line-height: 1.8;
  opacity: 0.5;
}

/* =====================================================
   Tablet (>= 600px) — slightly enlarged
   ===================================================== */
@media (min-width: 600px) {
  .section { padding: 88px 32px; }
  .section-title { font-size: 32px; }
  .hero-title { font-size: 46px; }
  .feature-card { flex-basis: 60%; }
}

/* =====================================================
   Desktop (>= 920px) — multi-column, hide sticky CTA
   ===================================================== */
@media (min-width: 920px) {
  body { font-size: 16px; }

  .topbar { height: 64px; padding: 0 32px; }

  .hero { padding: 96px 32px 80px; }
  .hero-title { font-size: 60px; line-height: 1.32; }
  .hero-sub { font-size: 17px; }
  .hero-phone { margin-top: 40px; }
  .phone-frame { width: 320px; }

  .section { padding: 120px 32px; max-width: 1100px; margin: 0 auto; }
  .section-features { max-width: none; }
  .section-features .section-eyebrow,
  .section-features .section-title { padding: 0; }
  .section-features .features-scroll {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 8px 32px;
  }
  .section-title { font-size: 40px; }

  .check-list { max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 36px; }

  /* Features → grid on desktop */
  .features-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: visible;
    padding: 32px 0 0 !important;
  }
  .feature-card { flex: unset; }

  /* Why → grid */
  .why-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Steps → grid */
  .step-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .final-title { font-size: 44px; }

  /* hide sticky CTA on desktop */
  .sticky-cta { display: none; }
  .bottom-spacer { display: none; }

  /* footer side-by-side */
  .site-footer {
    text-align: left;
    padding: 56px 32px 32px;
  }
  .footer-brand { display: flex; }
  .footer-nav {
    flex-direction: row;
    gap: 28px;
    justify-content: center;
  }
}
