@import url('https://fonts.googleapis.com/css2?family=National+Park:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
  --brand-yellow: #FFCF55;
  --brand-yellow-soft: #FFE0A0;
  --brand-black: #0C0C0C;
  --brand-white: #FFFFFF;
  --brand-gray: #F4F7F9;
  --brand-gray-2: #E8ECEF;
  --text-muted: #5C5C5C;
  --text-body: #2A2A2A;
  --radius-pill: 9999px;
  --radius-card: 22px;
  --radius-soft: 14px;
  --container: 1200px;
  --shadow-soft: 0 1px 2px rgba(12,12,12,0.04), 0 8px 24px rgba(12,12,12,0.06);
  --shadow-card: 0 2px 4px rgba(12,12,12,0.05), 0 12px 32px rgba(12,12,12,0.08);
  --section-gap: 100px;
  --section-gap-tight: 40px;
}

body {
  font-family: 'National Park', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--brand-white);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-white);
  color: var(--brand-black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(12,12,12,0.06);
}
.eyebrow.on-light {
  background: var(--brand-gray);
  border-color: transparent;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand-yellow);
}

.h-display {
  font-family: 'National Park', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--brand-black);
  margin: 0;
  text-wrap: balance;
}
.h-section {
  font-family: 'National Park', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--brand-black);
  margin: 0;
  text-wrap: balance;
}
.h-feature {
  font-family: 'National Park', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--brand-black);
  margin: 0;
}
.body-lg { font-size: 17px; color: var(--text-muted); line-height: 1.6; max-width: 56ch; }
.body { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 52ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px;
  padding: 12px 22px; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}
.btn-primary { background: var(--brand-yellow); color: var(--brand-black); border-color: rgba(12,12,12,0.08); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-dark { background: var(--brand-black); color: var(--brand-white); }
.btn-dark:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--brand-black); }
.btn-ghost:hover { background: rgba(12,12,12,0.05); }

/* Store pill button (192x64) */
.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 192px;
  height: 64px;
  padding: 0 18px;
  border-radius: 9999px;
  background: #F4F7F9;
  border: 1px solid #DDE5ED;
  color: var(--brand-black);
  text-decoration: none;
  transition: background 160ms ease;
}
.store-pill:hover { background: #E4EBF0; }
.store-pill__icon { width: 32px; height: 32px; flex-shrink: 0; display: block; }
.store-pill__label {
  display: flex; flex-direction: column; line-height: 1.1; gap: 2px;
  text-align: left;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.store-pill__label small {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.store-pill__label strong {
  font-size: 18px;
  font-weight: 500;
  color: var(--brand-black);
}

/* Phone mockup placeholder */
.phone {
  position: relative;
  background: var(--brand-black);
  border-radius: 24px;
  padding: 12px;
}
.phone-screen {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #FFE0A0 0%, #FFCF55 50%, #E8A93C 100%);
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: var(--brand-black); border-radius: 12px; z-index: 2;
}

/* Light variant — white bezel, no notch */
.phone--light {
  background: #ffffff;
  border: 1px solid #DDE5ED;
}
.phone--light .phone-notch { display: none; }

/* Tight bezel variant — opt-in via className */
.phone--tight { padding: 10px; }
.phone--tight .phone-screen { border: none !important; }

/* Placeholder art */
.placeholder-art {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg,
      rgba(12,12,12,0.05) 0 8px,
      transparent 8px 16px),
    var(--bg, var(--brand-yellow-soft));
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: rgba(12,12,12,0.55);
  text-align: center;
  padding: 12px;
}
.placeholder-art .ph-label { font-weight: 600; letter-spacing: 0.04em; }
.placeholder-art .ph-sub { opacity: 0.7; font-size: 10px; }

/* Sections */
section { padding-top: var(--section-gap); padding-bottom: 0; }
section.hero { padding-top: 0; }
section.feature + section.feature { padding-top: var(--section-gap-tight); }
footer { padding-top: var(--section-gap); }
.divider { height: 1px; background: var(--brand-gray-2); }

/* Utility */
.center { text-align: center; }
.muted { color: var(--text-muted); }

/* Responsive */
@media (max-width: 1319px) {
  :root { --section-gap: 80px; --section-gap-tight: 32px; }
  .br-desktop { display: none; }
}
@media (max-width: 810px) {
  :root { --section-gap: 72px; --section-gap-tight: 32px; }
  body { font-size: 15px; }
  .footer-row { flex-direction: column !important; justify-content: center !important; text-align: center; }
  .store-buttons { justify-content: center; }
  section.hero + section.feature { padding-top: 48px; }
}
