#snowfall-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

#snowfall-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

:root {
  --bg: #f7f3ee;
  --bg-2: #fff7ed;
  --ink: #1f1f1f;
  --muted: #6e5c4c;
  --brand: #f28a3c;
  --brand-2: #ffb46a;
  --card: rgba(255, 255, 255, 0.9);
  --stroke: rgba(255, 255, 255, 0.65);
  --shadow: 0 22px 60px rgba(29, 18, 6, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #fff0dc 0%, #f7f3ee 45%, #f1efe9 100%);
  min-height: 100vh;
}

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

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 14px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(242, 138, 60, 0.35);
}

.nav-links {
  display: inline-flex;
  gap: 18px;
  font-weight: 600;
  color: var(--muted);
  flex-wrap: wrap;
}

.nav-cta {
  margin-left: auto;
  padding: 10px 18px;
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 36px;
  padding: 18px 0 36px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 12px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  box-shadow: 0 14px 25px rgba(242, 138, 60, 0.35);
}

.btn-secondary {
  background: white;
  color: var(--muted);
  border: 1px solid #eadfd3;
}

.store-btn {
  gap: 10px;
}

.store-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  object-fit: contain;
}

.store-icon.apple {
  font-size: 18px;
  line-height: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 22px 0 40px;
}

.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid #f1e6da;
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.06);
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.kicker {
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--brand);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.device-mockup {
  display: flex;
  justify-content: center;
}

.device-preview {
  width: min(360px, 86vw);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(23, 16, 6, 0.35);
  background: #fff6ea;
}

.how-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.step {
  background: #fff5e6;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  color: #8b5526;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.step span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffd7ac;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.feature-card .icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.press-kit-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid #f1e1cd;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 16px 28px rgba(31, 31, 31, 0.08);
}

.accordion details {
  background: white;
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid #f0e1d2;
  margin-bottom: 12px;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
}

.timeline-track {
  display: grid;
  gap: 14px;
}

.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: white;
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid #f0e1d2;
}

.timeline-step span {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #ffe2c1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #a25a1f;
}

.cta {
  background: linear-gradient(135deg, #fff4e6 0%, #fff1da 100%);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid #f2dfc7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer {
  padding: 36px 0 50px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-shell {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #f2e6d6;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(242, 138, 60, 0.3);
}

.footer-brand span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 2px;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-note {
  margin-top: 14px;
  text-align: center;
}

.footer-bottom {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
}

.page {
  padding: 36px 0 60px;
}

.page h1 {
  font-family: "Fraunces", serif;
  margin-bottom: 12px;
}

.page p {
  color: var(--muted);
  line-height: 1.7;
}

.notice {
  background: #fff8ed;
  border: 1px solid #f5e0c2;
  border-radius: var(--radius-md);
  padding: 16px;
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 70vh;
}

.error-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid #f0e1d2;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 520px;
}

.error-card img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(242, 138, 60, 0.25);
  margin: 0 auto 12px;
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .nav {
    padding: 20px 0;
  }
  .hero {
    gap: 24px;
    padding-bottom: 24px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .device-preview {
    width: min(320px, 92vw);
    border-radius: 22px;
  }
  .grid {
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
  .nav-cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  .cta {
    padding: 20px;
  }
  .footer-shell {
    padding: 18px;
  }
  .footer-links {
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 1.95rem;
  }
  .how-steps {
    gap: 8px;
  }
  .step {
    width: 100%;
    justify-content: center;
  }
  .timeline-step {
    flex-direction: column;
  }
  .timeline-step span {
    width: 100%;
  }
}
