/* ==========================================================================
   Theme Park Pal — product + legal pages for zuludev.com
   Self-contained: does not touch Zulu's styles.css.
   Identity: clean light neutral + single coral accent (matches the iOS app).
   Type: Bricolage Grotesque (display) over Inter (body).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #F3F3F5;
  --surface: #FFFFFF;
  --ink: #1C1C1E;
  --ink2: #5C5C63;
  --ink3: #97979E;
  --coral: #E8624A;
  --coral-dark: #C8492F;
  --coral-soft: #FCE9E4;
  --teal: #2FB39C;
  --marigold: #E0A23A;
  --indigo: #5B6CE0;
  --border: #E4E4E9;
  --border-strong: #D2D2D8;

  --display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1080px;
  --r: 16px;
  --r-sm: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--coral-dark); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
img, svg { display: block; max-width: 100%; }

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

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243,243,245,0.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-in {
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { width: 28px; height: 28px; border-radius: 8px; flex: none; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.brand-by { font-size: 12px; color: var(--ink3); margin-left: 2px; }
.nav-cta {
  background: var(--ink); color: #fff; font-weight: 600; font-size: 14px;
  padding: 9px 16px; border-radius: 999px;
}
.nav-cta:hover { background: #000; text-decoration: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 600; font-size: 16px;
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { background: #fff; border-color: var(--ink3); }

/* ---------- hero ---------- */
.hero { padding: 72px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-block; font-weight: 600; font-size: 13px; letter-spacing: 0.02em;
  color: var(--coral-dark); background: var(--coral-soft);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 6vw, 66px); line-height: 1.02; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 20px;
}
.hero h1 .accent { color: var(--coral); }
.hero-sub { font-size: 19px; color: var(--ink2); max-width: 30em; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 13px; color: var(--ink3); margin-top: 18px; }

/* ---------- phone signature ---------- */
.phone-stage { display: flex; justify-content: center; }
.phone {
  width: 290px; max-width: 80vw; background: var(--ink);
  border-radius: 44px; padding: 9px; flex: none;
  box-shadow: 0 30px 70px -24px rgba(28,28,30,0.45), 0 8px 24px -10px rgba(28,28,30,0.25);
}
.phone-screen { border-radius: 36px; overflow: hidden; display: block; background: #ECECEF; }

/* ---------- section scaffolding ---------- */
.section { padding: 64px 0; }
.section-label {
  font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral-dark); margin-bottom: 14px;
}
.section h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.06; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 14px; max-width: 18ch;
}
.section-lead { font-size: 18px; color: var(--ink2); max-width: 52ch; }

/* ---------- steps (a genuine 3-step sequence) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
}
.step-n {
  font-family: var(--display); font-weight: 700; font-size: 15px;
  color: var(--coral); letter-spacing: 0.04em; margin-bottom: 16px;
}
.step h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink2); }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; display: flex; gap: 18px; align-items: flex-start;
}
.feature-ico {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: var(--coral-soft); color: var(--coral-dark);
  display: flex; align-items: center; justify-content: center;
}
.feature-ico svg { width: 22px; height: 22px; }
.feature h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.feature p { font-size: 15px; color: var(--ink2); }

/* ---------- trust strip ---------- */
.trust {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.trust h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.trust p { font-size: 14px; color: var(--ink2); }

/* ---------- cta ---------- */
.cta {
  text-align: center; background: var(--ink); color: #fff;
  border-radius: 24px; padding: 60px 32px;
}
.cta h2 { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.025em; margin-bottom: 12px; }
.cta p { color: #c9c9cf; font-size: 17px; max-width: 44ch; margin: 0 auto 26px; }
.cta .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.cta .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); margin-top: 72px; padding: 48px 0 56px; }
.footer-in { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { max-width: 30ch; }
.footer-brand p { font-size: 14px; color: var(--ink2); margin-top: 10px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink3); margin-bottom: 12px; }
.footer-col a { display: block; color: var(--ink2); font-size: 14px; margin-bottom: 9px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--ink3); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- legal / content pages ---------- */
.legal { padding: 56px 0 24px; max-width: 760px; }
.legal .kicker { font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral-dark); margin-bottom: 12px; }
.legal h1 { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 5vw, 52px); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 10px; }
.legal .updated { font-size: 14px; color: var(--ink3); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.legal .intro { font-size: 18px; color: var(--ink2); margin-bottom: 36px; }
.legal h2 { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -0.01em; margin: 40px 0 12px; }
.legal h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; }
.legal p, .legal ul, .legal ol { font-size: 16px; color: var(--ink); line-height: 1.7; margin-bottom: 14px; }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { font-weight: 600; }
.legal a { text-decoration: underline; text-underline-offset: 2px; }
.legal hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.legal .callout {
  background: var(--coral-soft); border: 1px solid #F3CFC6; border-radius: var(--r-sm);
  padding: 18px 20px; margin: 20px 0; color: #7A2E1E;
}
.legal .callout p { color: #7A2E1E; margin-bottom: 0; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .eyebrow { margin-left: auto; margin-right: auto; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .section h2 { max-width: none; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 20px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .brand-by { display: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .live-ping { animation: ping 2.4s ease-out infinite; transform-origin: center; }
}
@keyframes ping {
  0% { transform: scale(0.6); opacity: 0.6; }
  70%, 100% { transform: scale(1.8); opacity: 0; }
}