/* Easy Light Menu — Apple-like black & white, high-end, mobile-first */
:root {
  --bg: #ffffff;
  --bg-elev: #fafafa;
  --bg-card: #ffffff;
  --bg-soft: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.12);
  --accent: #000000;
  --accent-inv: #ffffff;
  --focus: #0071e3;
  --danger: #b3261e;
  --ok: #248a3d;
  --radius: 18px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 12px 40px rgba(0, 0, 0, 0.06);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; }
a:hover { opacity: 0.7; }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.tiny { font-size: 0.8rem; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Header */
#site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.9rem 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--ink); font-weight: 600; letter-spacing: -0.02em;
  font-size: 1.05rem; border: 0;
}
.logo:hover { opacity: 1; }
.logo-mark {
  width: 0.55rem; height: 0.55rem; border-radius: 50%;
  background: var(--ink); display: inline-block;
  font-size: 0; color: transparent;
}
.nav-toggle {
  display: inline-flex; background: transparent; border: 1px solid var(--line-strong);
  color: var(--ink); border-radius: 980px; padding: 0.35rem 0.7rem; font-size: 1rem;
  cursor: pointer;
}
.nav-links {
  display: none; flex-direction: column; gap: 0.75rem;
  position: absolute; left: 0; right: 0; top: 100%;
  background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--line);
  padding: 1rem 1.5rem 1.35rem;
}
.nav-links.open { display: flex; }
.nav-links a { color: var(--muted); font-size: 0.92rem; font-weight: 500; border: 0; }
.nav-links a.active { color: var(--ink); }
.nav-links a.btn { color: var(--accent-inv); text-align: center; }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex; flex-direction: row; align-items: center;
    position: static; background: transparent; border: 0; padding: 0; gap: 1.35rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.85rem 1.4rem; border-radius: 980px; border: 1px solid transparent;
  font-weight: 500; letter-spacing: -0.01em; cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease, transform 0.15s ease;
  font-size: 0.95rem; border-bottom: 0 !important;
}
.btn:hover { opacity: 0.88; transform: none; }
.btn-gold {
  background: var(--accent);
  color: var(--accent-inv) !important;
  box-shadow: none;
}
.btn-gold:hover { background: #1d1d1f; color: #fff !important; opacity: 1; }
.btn-ghost {
  border-color: var(--line-strong); color: var(--ink) !important; background: transparent;
}
.btn-ghost:hover { background: var(--bg-soft); opacity: 1; }
.btn-sm { padding: 0.45rem 0.95rem; font-size: 0.85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Hero / sections */
.hero { padding: 4.5rem 0 3rem; }
.eyebrow {
  display: inline-block; color: var(--muted);
  text-transform: none; letter-spacing: -0.01em; font-size: 0.85rem;
  font-weight: 500; margin-bottom: 1rem;
}
h1, h2, h3 {
  font-family: var(--display); font-weight: 600; line-height: 1.08;
  margin: 0 0 0.85rem; letter-spacing: -0.035em; color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.025em; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 38rem; font-weight: 400; line-height: 1.45; }
.section { padding: 4rem 0; }
.section-tight { padding: 2.5rem 0; }
.glow-rule {
  height: 1px; border: 0;
  background: var(--line);
  margin: 0.5rem 0 2rem;
}

.grid-2 { display: grid; gap: 2rem; }
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 3rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.grid-3, .grid-4 { display: grid; gap: 1.25rem; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: none;
}
.card-glow {
  background: var(--bg-soft);
  border-color: transparent;
}
.icon-pill {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff;
  margin-bottom: 1rem; font-size: 0.85rem; font-weight: 600;
}
.pain-list, .check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.pain-list li, .check-list li {
  padding: 0.75rem 0 0.75rem 1.6rem; position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--muted); font-size: 0.98rem;
}
.pain-list li:last-child, .check-list li:last-child { border-bottom: 0; }
.pain-list li::before { content: "—"; position: absolute; left: 0; color: var(--ink); font-weight: 600; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--ink); font-weight: 600; }

.feature-tile h3 { margin-top: 0.15rem; }
.price-big {
  font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--ink); margin: 0.2rem 0; letter-spacing: -0.04em; font-weight: 600;
}
.price-note { color: var(--muted); font-size: 0.95rem; }
.badge {
  display: inline-block; padding: 0.25rem 0.65rem; border-radius: 980px;
  border: 0; background: var(--bg-soft); color: var(--ink); font-size: 0.72rem;
  letter-spacing: 0.02em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.75rem;
}
.cta-band {
  margin: 2rem 0 4rem; padding: 3rem 2rem;
  border-radius: 28px;
  border: 0;
  background: var(--bg-soft);
  text-align: center;
}

/* Forms */
form.stack { display: grid; gap: 1.1rem; max-width: 640px; }
label { display: grid; gap: 0.4rem; font-size: 0.9rem; color: var(--muted); font-weight: 500; }
input, select, textarea {
  width: 100%; padding: 0.9rem 1rem; border-radius: 12px;
  border: 1px solid var(--line-strong); background: #fff; color: var(--ink);
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--focus); box-shadow: 0 0 0 3px rgba(0,113,227,0.18);
}
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Agreement */
.prose { max-width: 720px; }
.prose p { color: var(--muted); }
.prose strong { color: var(--ink); }
.prose ul { color: var(--muted); }
.term-card { margin-bottom: 1rem; background: var(--bg-soft); border: 0; }

/* Pricing tables */
.price-table {
  width: 100%; border-collapse: collapse; margin: 1rem 0;
  font-size: 0.95rem;
}
.price-table th, .price-table td {
  text-align: left; padding: 0.95rem 0.5rem;
  border-bottom: 1px solid var(--line);
}
.price-table th { color: var(--muted); font-weight: 500; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
.price-table td:last-child { color: var(--ink); font-weight: 600; white-space: nowrap; }
.lock-note {
  border-left: 2px solid var(--ink);
  padding: 1rem 1.15rem; background: var(--bg-soft);
  color: var(--muted); margin: 1.25rem 0; border-radius: 0 12px 12px 0;
}

/* How it works steps */
.steps { counter-reset: step; display: grid; gap: 1rem; }
.step {
  display: grid; gap: 1rem; grid-template-columns: auto 1fr; align-items: start;
  padding: 1.35rem 1.5rem; border: 0; border-radius: var(--radius);
  background: var(--bg-soft);
}
.step-num {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink);
  color: #fff; font-weight: 600; font-size: 0.9rem;
}

/* Demo tablet shell — guest menu stays dark (backlit product feel) */
.demo-page { background: #f5f5f7; color: var(--ink); }
.demo-banner {
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem; text-align: center; color: var(--muted);
  font-size: 0.85rem;
}
.demo-banner a { color: var(--ink); font-weight: 500; }
.demo-banner strong { color: var(--ink); }
.tablet-shell {
  width: min(100% - 1rem, 430px);
  margin: 1.25rem auto 2rem;
  background: #000;
  border: 10px solid #1d1d1f;
  border-radius: 32px;
  box-shadow: var(--shadow), 0 24px 60px rgba(0,0,0,0.18);
  overflow: hidden; min-height: 70vh;
}
.tablet-bezel-top {
  height: 18px; display: flex; align-items: center; justify-content: center;
  background: #111;
}
.tablet-cam {
  width: 8px; height: 8px; border-radius: 50%; background: #333;
}
.menu-app { background: #111; min-height: 65vh; color: #f5f5f7; }
.menu-header {
  padding: 1.25rem 1rem 0.75rem; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #111;
}
.menu-header h1 {
  font-size: 1.55rem; margin: 0; color: #fff; letter-spacing: -0.03em;
}
.menu-header .sub { color: #a1a1a6; font-size: 0.85rem; margin-top: 0.25rem; }
.menu-tabs {
  display: flex; gap: 0.35rem; overflow-x: auto; padding: 0.75rem 0.75rem 0.35rem;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: 0 0 auto; border: 1px solid rgba(255,255,255,0.12); background: #1c1c1e;
  color: #a1a1a6; border-radius: 980px; padding: 0.45rem 0.85rem;
  font-size: 0.82rem; cursor: pointer;
}
.menu-tab.active {
  color: #000; background: #fff;
  border-color: transparent; font-weight: 600;
}
.menu-body { padding: 0.5rem 0.85rem 1.5rem; }
.menu-section { display: none; }
.menu-section.active { display: block; }
.menu-section h2 {
  font-size: 1.05rem; color: #fff; margin: 1rem 0 0.35rem;
  padding-bottom: 0.35rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.menu-note { color: #a1a1a6; font-size: 0.8rem; margin: 0 0 0.75rem; }
.menu-item {
  padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu-item-top {
  display: flex; justify-content: space-between; gap: 0.75rem; align-items: baseline;
}
.menu-item-name { font-weight: 600; color: #f5f5f7; font-size: 0.95rem; }
.menu-item-price { color: #fff; font-weight: 600; white-space: nowrap; font-size: 0.9rem; }
.menu-item-desc { color: #a1a1a6; font-size: 0.8rem; margin-top: 0.25rem; }
.menu-tag {
  display: inline-block; margin-top: 0.35rem; font-size: 0.68rem;
  padding: 0.15rem 0.45rem; border-radius: 980px; border: 1px solid rgba(255,255,255,0.15);
  color: #d2d2d7; text-transform: uppercase; letter-spacing: 0.04em;
}
.nested {
  margin: 0.5rem 0 0.75rem; padding: 0.65rem;
  border: 1px dashed rgba(255,255,255,0.18); border-radius: 12px;
}
.nested summary {
  cursor: pointer; color: #fff; font-weight: 600; font-size: 0.9rem;
}
.back-link {
  display: inline-block; margin: 0.75rem 1rem; color: var(--muted); font-size: 0.85rem;
}

/* Footer */
#site-footer {
  border-top: 1px solid var(--line); margin-top: 2rem;
  background: var(--bg); padding: 3rem 0 3.5rem;
}
.footer-inner { display: grid; gap: 1.5rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.85rem 1.35rem; }
.footer-links a { color: var(--muted); font-size: 0.9rem; }
.footer-copy { margin: 0; }

@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
  .footer-copy { grid-column: 1 / -1; }
}

/* Device mock — clean light tablet */
.device-mock {
  aspect-ratio: 3/4; max-width: 280px; margin: 0 auto;
  border-radius: 28px; border: 8px solid #1d1d1f;
  background: #111;
  box-shadow: var(--shadow);
  padding: 1.25rem; display: flex; flex-direction: column; gap: 0.65rem;
}
.device-mock .bar { height: 10px; border-radius: 6px; background: rgba(255,255,255,0.2); }
.device-mock .bar.short { width: 55%; }
.device-mock .line { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.device-mock .line.w70 { width: 70%; }
.device-mock .line.w40 { width: 40%; }
.device-mock .glow-text {
  margin-top: auto; text-align: center; color: #fff;
  font-family: var(--display); font-size: 1rem; font-weight: 600;
  letter-spacing: -0.02em;
}

/* Motion / media teaser tiles */
.media-teaser {
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1d1d1f 0%, #000 100%);
  color: #fff;
  padding: 1.5rem;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.media-teaser::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.12), transparent 45%),
    radial-gradient(ellipse at 70% 80%, rgba(255,200,120,0.08), transparent 40%);
  pointer-events: none;
}
.media-teaser .label {
  position: relative; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.65); margin-bottom: 0.35rem;
}
.media-teaser h3 { position: relative; color: #fff; margin: 0 0 0.35rem; }
.media-teaser p { position: relative; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }
