/* ─── design tokens ─────────────────────────────────────── */
:root {
  --c-ink: #0F172A;
  --c-ink-soft: #334155;
  --c-mute: #64748B;
  --c-line: #E2E8F0;
  --c-bg: #FAFAF7;
  --c-surface: #FFFFFF;
  --c-surface-2: #F1F5F9;
  --c-primary: #6366F1;
  --c-primary-deep: #4338CA;
  --c-accent: #F59E0B;
  --c-success: #10B981;
  --c-danger: #EF4444;
  --c-shadow: 0 1px 2px rgba(15, 23, 42, 0.06),
              0 8px 24px rgba(15, 23, 42, 0.08);
  --c-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --max-w: 1180px;
  --pad-x: clamp(20px, 4vw, 40px);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ─── reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
p { margin: 0; color: var(--c-ink-soft); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(99, 102, 241, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.lede {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--c-ink-soft);
  max-width: 60ch;
}

/* ─── buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--c-primary);
  color: white;
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}
.btn-primary:hover { background: var(--c-primary-deep); }
.btn-secondary {
  background: var(--c-surface);
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn-secondary:hover { background: var(--c-surface-2); }
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-small { padding: 10px 18px; font-size: 14px; }
.btn-large { padding: 18px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ─── nav ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.scrolled {
  border-bottom-color: var(--c-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.1);
}
.brand-logo.small { width: 28px; height: 28px; border-radius: 7px; }
.brand-name {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--c-ink-soft);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--c-ink); }
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ─── hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(60px, 10vw, 110px) clamp(60px, 8vw, 90px);
  background:
    radial-gradient(circle at 80% 0%, rgba(99, 102, 241, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 0% 60%, rgba(245, 158, 11, 0.18) 0%, transparent 45%),
    linear-gradient(180deg, var(--c-bg), #FFFFFF);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  margin-block: 18px 22px;
}
.hero-copy .lede {
  margin-bottom: 32px;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.trust-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 14px;
  color: var(--c-mute);
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ─── device mockup (shared phone-frame styles) ─────────── */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-mockup-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(closest-side, rgba(99, 102, 241, 0.35), transparent 70%);
  z-index: -1;
  filter: blur(50px);
}

/* Realistic iPhone 15 Pro-ish frame, also used by .phone in the tour. */
.device-frame,
.phone {
  position: relative;
  width: 320px;
  height: 660px;
  background:
    linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 50%, #2a2a2a 100%);
  border-radius: 48px;
  padding: 11px;
  box-shadow:
    var(--c-shadow-lg),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.12),
    inset 0 0 0 3px #000,
    inset 0 0 0 4.5px rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}
.device-iphone { transform: rotate(-2.5deg); }

/* Dynamic Island */
.device-island,
.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 30px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Right-side button (power) */
.device-side-btn,
.phone-side-btn {
  position: absolute;
  right: -2px;
  top: 160px;
  width: 4px;
  height: 75px;
  background: linear-gradient(90deg, #1a1a1a, #3a3a3a, #1a1a1a);
  border-radius: 0 2px 2px 0;
}

/* Left-side volume buttons */
.device-vol-up,
.device-vol-down {
  position: absolute;
  left: -2px;
  width: 4px;
  height: 50px;
  background: linear-gradient(-90deg, #1a1a1a, #3a3a3a, #1a1a1a);
  border-radius: 2px 0 0 2px;
}
.device-vol-up { top: 130px; }
.device-vol-down { top: 195px; }

.device-screen,
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FAFAF7 0%, #FFFFFF 30%, #F8FAFC 100%);
  border-radius: 37px;
  overflow: hidden;
  padding: 14px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
  position: relative;
}

/* iOS status bar */
.mock-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
  padding: 8px 16px 4px;
  margin: -14px -14px 0;
  height: 36px;
  flex-shrink: 0;
}
.mock-status-time { letter-spacing: -0.02em; }
.mock-status-right {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #0F172A;
}

/* Dashboard header */
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4px 4px 0;
}
.mock-greeting-hello {
  font-size: 11px;
  color: var(--c-mute);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mock-greeting-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.mock-header-actions { display: flex; gap: 6px; }
.mock-header-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--c-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--c-mute);
}

/* Clock + weather card */
.mock-clock-card {
  background: linear-gradient(135deg, #6366F1 0%, #4338CA 100%);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}
.mock-clock-left { flex: 1; }
.mock-clock-time {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.mock-clock-weather {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
}
.mock-clock-temp { font-weight: 800; font-size: 13px; }
.mock-clock-cond { color: rgba(255, 255, 255, 0.85); font-size: 10px; }
.mock-clock-forecast {
  display: flex;
  gap: 4px;
}
.mock-fc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  min-width: 28px;
}
.mock-fc span:nth-child(2) { font-size: 14px; line-height: 1; }
.mock-fc span:last-child { color: white; font-size: 9px; }

/* Section label */
.mock-section-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 10px;
  font-weight: 800;
  color: var(--c-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 4px;
  margin-top: 2px;
}
.mock-section-meta {
  font-size: 9px;
  color: var(--c-mute);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
}
.mock-section-label-flat {
  font-size: 9px;
  font-weight: 800;
  color: var(--c-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 4px 2px;
}

/* Member cards (dashboard) */
.mock-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.mock-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}
.mock-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 6px;
}
.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-card-headtext { flex: 1; min-width: 0; }
.mock-card-name {
  font-weight: 800;
  font-size: 13px;
  color: var(--c-ink);
}
.mock-card-sub {
  font-size: 9px;
  color: var(--c-mute);
  font-weight: 600;
  margin-top: 1px;
}
.mock-stars {
  font-size: 11px;
  font-weight: 800;
  color: #B45309;
  background: rgba(245, 158, 11, 0.15);
  padding: 3px 8px;
  border-radius: 999px;
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--c-ink);
  padding: 3px 2px;
}
.mock-row-meta {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  color: var(--c-accent);
}
.mock-check {
  width: 13px;
  height: 13px;
  border: 1.5px solid var(--c-line);
  border-radius: 50%;
  flex-shrink: 0;
  background: white;
}
.mock-check.done {
  background: var(--c-success);
  border-color: var(--c-success);
  position: relative;
}
.mock-check.done::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 5px;
  width: 5px;
  height: 2px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg);
}
.mock-event-row { color: var(--c-ink); }
.mock-event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-event-time {
  font-weight: 800;
  color: var(--c-primary);
  font-size: 9px;
  min-width: 38px;
}

/* Tab bar */
.mock-tabbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 6px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--c-line);
  margin: 0 -14px;
  margin-top: auto;
}
.mock-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8px;
  font-weight: 600;
  color: var(--c-mute);
}
.mock-tab span:first-child { font-size: 17px; line-height: 1; }
.mock-tab.active { color: var(--c-primary); font-weight: 800; }

.mock-home-indicator {
  width: 100px;
  height: 4px;
  background: #0F172A;
  border-radius: 999px;
  margin: 4px auto 6px;
}

/* Generic screen header (back / title / action) */
.mock-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px 6px;
  border-bottom: 1px solid var(--c-line);
}
.mock-screen-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.mock-back {
  font-size: 20px;
  color: var(--c-primary);
  font-weight: 600;
  line-height: 1;
  min-width: 16px;
}
.mock-back-spacer {
  min-width: 16px;
  display: inline-block;
}

/* ─── section header ────────────────────────────────────── */
section { padding-block: clamp(60px, 8vw, 110px); }
.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-header .lede {
  margin-inline: auto;
}

/* ─── features grid ─────────────────────────────────────── */
.features { background: var(--c-surface); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.feature-card {
  padding: 32px 28px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--c-shadow);
  border-color: rgba(99, 102, 241, 0.3);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-deep));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* ─── big feature ───────────────────────────────────────── */
.big-feature { background: var(--c-bg); }
.big-feature.alt { background: var(--c-surface); }
.big-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.big-feature-grid.reverse > .big-feature-copy { order: 2; }
.big-feature-copy h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  margin-block: 18px 16px;
}
.big-feature-copy p { margin-bottom: 22px; }
.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checks li {
  position: relative;
  padding-left: 32px;
  color: var(--c-ink-soft);
}
.checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  background: var(--c-success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

/* ─── reward card art ───────────────────────────────────── */
.reward-card {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--c-shadow-lg);
  max-width: 420px;
  margin-inline: auto;
}
.reward-card-header {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}
.reward-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
}
.reward-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--c-mute);
}
.reward-balance {
  font-weight: 800;
  font-size: 22px;
  color: var(--c-accent);
}
.reward-list { display: flex; flex-direction: column; gap: 10px; padding-top: 18px; }
.reward-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--c-surface-2);
  border-radius: var(--r-md);
}
.reward-item.locked { opacity: 0.65; }
.reward-item-name { font-weight: 600; font-size: 14px; }
.reward-item-cost { font-size: 12px; color: var(--c-mute); margin-top: 2px; }
.reward-btn {
  padding: 8px 16px;
  background: var(--c-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
}
.reward-btn:disabled { background: var(--c-mute); cursor: not-allowed; }

/* ─── calendar card art ─────────────────────────────────── */
.cal-card {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--c-shadow-lg);
  max-width: 420px;
  margin-inline: auto;
}
.cal-header {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
  text-align: center;
}
.cal-weekdays, .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-mute);
  padding-block: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  border-radius: 8px;
  position: relative;
}
.cal-day.muted { color: var(--c-line); }
.cal-day.today {
  background: var(--c-primary);
  color: white;
}
.cal-day.has-event::after {
  content: '';
  position: absolute;
}
.cal-dot {
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.cal-dot:nth-of-type(2) { transform: translateX(6px); }
.cal-events {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cal-event {
  display: flex;
  gap: 10px;
  align-items: stretch;
  padding: 10px;
  background: var(--c-bg);
  border-radius: var(--r-md);
}
.cal-event > div { flex: 1; font-size: 13px; }
.cal-event > div > div { font-size: 11px; color: var(--c-mute); margin-top: 2px; }
.cal-event-bar {
  width: 4px;
  border-radius: 2px;
}

/* ─── devices ───────────────────────────────────────────── */
.devices { background: var(--c-bg); }
.device-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.device-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--c-surface);
  border: 2px solid var(--c-line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
}
.device-pill.soon {
  opacity: 0.7;
  border-style: dashed;
}

/* ─── pricing ───────────────────────────────────────────── */
.pricing { background: var(--c-surface); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  max-width: 800px;
  margin-inline: auto;
}
.price-card {
  position: relative;
  padding: 36px 32px;
  background: var(--c-bg);
  border: 2px solid var(--c-line);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-card.featured {
  border-color: var(--c-primary);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.05), var(--c-bg));
  transform: scale(1.02);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-tier {
  font-weight: 800;
  font-size: 18px;
  color: var(--c-primary);
  letter-spacing: -0.01em;
}
.price-value {
  font-weight: 800;
  font-size: 44px;
  color: var(--c-ink);
  letter-spacing: -0.03em;
}
.price-value span {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-mute);
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  color: var(--c-ink-soft);
}

/* ─── faq ───────────────────────────────────────────────── */
.faq { background: var(--c-bg); }
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] {
  border-color: var(--c-primary);
  box-shadow: var(--c-shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--c-mute);
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--c-primary); }
.faq-item p {
  padding: 0 24px 24px;
  color: var(--c-ink-soft);
}

/* ─── final cta ─────────────────────────────────────────── */
.cta { background: var(--c-bg); padding-block: 60px; }
.cta-card {
  text-align: center;
  padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 60px);
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-deep));
  border-radius: var(--r-xl);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15), transparent 50%);
  pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card h2 {
  color: white;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-card p { color: rgba(255, 255, 255, 0.9); max-width: 540px; margin: 0 auto 30px; }
.cta-card .cta-row { justify-content: center; }
.cta-card .btn-primary {
  background: white;
  color: var(--c-primary-deep);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.cta-card .btn-primary:hover { background: rgba(255, 255, 255, 0.92); }
.cta-fine {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.cta-fine a { text-decoration: underline; }

/* ─── footer ────────────────────────────────────────────── */
.footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 60px;
  padding-bottom: 30px;
}
.footer h4 {
  color: white;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-block: 8px;
  transition: color 0.15s;
}
.footer a:hover { color: white; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand .brand-name {
  font-size: 16px;
  color: white;
  margin-bottom: 4px;
}
.footer-tag { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── reveal-on-scroll ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}

/* ─── responsive ────────────────────────────────────────── */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-copy .eyebrow { display: inline-block; }
  .hero-copy .lede { margin-inline: auto; }
  .cta-row { justify-content: center; }
  .trust-row { justify-content: center; }
  .big-feature-grid { grid-template-columns: 1fr; }
  .big-feature-grid.reverse > .big-feature-copy { order: 0; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-surface);
    flex-direction: column;
    padding: 20px var(--pad-x);
    border-bottom: 1px solid var(--c-line);
    gap: 20px;
    box-shadow: var(--c-shadow);
  }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .device-frame { width: 280px; height: 580px; }
}
@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; }
}

/* ─── Tour / screenshots gallery ────────────────────────── */
.tour {
  background: linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg) 100%);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.tour-scroller {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px clamp(20px, 4vw, 40px) 60px;
  margin: 0 calc(-1 * clamp(20px, 4vw, 40px));
  scrollbar-width: thin;
  scrollbar-color: var(--c-line) transparent;
  -webkit-overflow-scrolling: touch;
}
.tour-scroller::-webkit-scrollbar { height: 8px; }
.tour-scroller::-webkit-scrollbar-track { background: transparent; }
.tour-scroller::-webkit-scrollbar-thumb {
  background: var(--c-line);
  border-radius: 4px;
}
.tour-shot {
  flex-shrink: 0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 320px;
}
.tour-shot .phone {
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}
.tour-shot:nth-child(even) .phone { transform: rotate(1.5deg); }
.tour-shot:hover .phone { transform: rotate(0) translateY(-6px); }
.tour-caption {
  text-align: center;
  max-width: 280px;
}
.tour-caption h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--c-ink);
}
.tour-caption p {
  font-size: 14px;
  color: var(--c-ink-soft);
  line-height: 1.5;
}
.tour-hint {
  text-align: center;
  font-size: 12px;
  color: var(--c-mute);
  font-style: italic;
  margin-top: 12px;
}

/* ─── Tour: Calendar Week View ──────────────────────────── */
.mock-segment {
  display: flex;
  background: var(--c-surface-2);
  border-radius: 10px;
  padding: 3px;
  margin: 2px 0;
}
.mock-seg-btn {
  flex: 1;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--c-mute);
  padding: 6px 0;
  border-radius: 7px;
}
.mock-seg-btn.active {
  background: var(--c-surface);
  color: var(--c-ink);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}
.mock-week-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}
.mock-week-day {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 10px;
  position: relative;
}
.mock-week-day.today {
  border-color: var(--c-primary);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.08), var(--c-surface));
}
.mock-week-day.today::before {
  content: 'TODAY';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 8px;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: 0.1em;
  background: white;
  padding: 2px 6px;
  border-radius: 4px;
}
.mock-week-date {
  font-size: 11px;
  font-weight: 800;
  color: var(--c-ink);
}
.mock-week-weather {
  font-size: 10px;
  color: var(--c-mute);
  margin-bottom: 6px;
}
.mock-week-event {
  background: var(--c-bg);
  border-left: 3px solid;
  padding: 5px 8px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 4px;
  font-size: 10px;
  color: var(--c-ink);
}
.mock-week-event div:first-child strong {
  color: var(--c-primary);
  margin-right: 4px;
}
.mock-week-sub {
  font-size: 9px;
  color: var(--c-mute);
  margin-top: 1px;
}

/* ─── Tour: Tasks / Chores ──────────────────────────────── */
.mock-chip-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  padding: 4px 0;
}
.mock-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1.5px solid var(--c-line);
  color: var(--c-mute);
  background: var(--c-surface);
}
.mock-chip.active {
  color: white !important;
  border-color: transparent !important;
}
.mock-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.mock-task-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  overflow: hidden;
}
.mock-task {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 9px 10px;
  position: relative;
}
.mock-task.done { opacity: 0.55; }
.mock-task-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--c-line);
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
  position: relative;
}
.mock-task-check.done {
  background: var(--c-success);
  border-color: var(--c-success);
}
.mock-task-check.done::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}
.mock-task-counter {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.mock-task-counter-minus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-surface-2);
  color: var(--c-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.mock-task-counter-n {
  background: var(--c-primary);
  color: white;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  min-width: 22px;
  text-align: center;
}
.mock-task-body { flex: 1; min-width: 0; }
.mock-task-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.2;
}
.mock-task.done .mock-task-name {
  text-decoration: line-through;
  color: var(--c-mute);
}
.mock-task-meta {
  font-size: 9px;
  color: var(--c-mute);
  margin-top: 2px;
  font-weight: 600;
}
.mock-task-stack { display: flex; align-items: center; }
.mock-mini-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: white;
  font-weight: 800;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* ─── Tour: Rewards ─────────────────────────────────────── */
.mock-balance-card {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}
.mock-balance-info { flex: 1; }
.mock-balance-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}
.mock-balance-value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.mock-balance-meta {
  font-size: 10px;
  opacity: 0.85;
  font-weight: 600;
}
.mock-reward-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 9px 10px;
  margin-bottom: 6px;
}
.mock-reward-row.locked { opacity: 0.5; }
.mock-reward-emoji { font-size: 22px; flex-shrink: 0; }
.mock-reward-body { flex: 1; min-width: 0; }
.mock-reward-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-ink);
}
.mock-reward-cost {
  font-size: 9px;
  color: var(--c-mute);
  margin-top: 2px;
  font-weight: 600;
}
.mock-reward-btn {
  background: var(--c-primary);
  color: white;
  font-weight: 800;
  font-size: 10px;
  padding: 6px 11px;
  border-radius: 8px;
}
.mock-reward-btn.disabled {
  background: var(--c-surface-2);
  color: var(--c-mute);
}

/* ─── Tour: Lists ───────────────────────────────────────── */
.mock-list-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--c-surface);
  border: 2px solid var(--c-primary);
  border-radius: 12px;
  padding: 8px 12px;
  position: relative;
  margin-top: 2px;
}
.mock-list-pill::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--c-primary);
  border-radius: 0 2px 2px 0;
}
.mock-list-pill-emoji { font-size: 22px; }
.mock-list-pill-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-ink);
}
.mock-list-pill-meta {
  font-size: 9px;
  color: var(--c-primary);
  font-weight: 700;
  margin-top: 1px;
}
.mock-list-section {
  font-size: 9px;
  font-weight: 800;
  color: var(--c-mute);
  letter-spacing: 0.08em;
  padding: 8px 4px 4px;
}
.mock-list-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 4px;
  border-bottom: 1px solid var(--c-line);
}
.mock-list-item.done { opacity: 0.55; }
.mock-list-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink);
  flex: 1;
}
.mock-list-item.done .mock-list-text {
  text-decoration: line-through;
  color: var(--c-mute);
}
.mock-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
}
.mock-list-input {
  margin-top: 8px;
  padding: 10px 12px;
  background: var(--c-surface-2);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

/* ─── Tour: Meals ───────────────────────────────────────── */
.mock-meal-day {
  display: flex;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--c-line);
}
.mock-meal-day.today { background: rgba(99, 102, 241, 0.06); border-radius: 8px; padding: 7px 6px; margin: 0 -2px; }
.mock-meal-day-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--c-mute);
  letter-spacing: 0.05em;
  width: 28px;
  padding-top: 6px;
}
.mock-meal-day.today .mock-meal-day-label { color: var(--c-primary); }
.mock-meal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  flex: 1;
}
.mock-meal {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 6px 7px;
  font-size: 9px;
  font-weight: 700;
  color: var(--c-ink);
  display: flex;
  align-items: center;
}
.mock-meal-empty {
  background: transparent;
  border-style: dashed;
  color: var(--c-mute);
  font-style: italic;
  font-weight: 600;
  justify-content: center;
}
.mock-meal-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6366F1 0%, #4338CA 100%);
  color: white;
  border-radius: 14px;
  padding: 12px;
  margin-top: 10px;
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}
.mock-meal-cta > span:first-child { font-size: 26px; flex-shrink: 0; }
.mock-meal-cta-title { font-size: 12px; font-weight: 800; }
.mock-meal-cta-sub { font-size: 10px; opacity: 0.9; margin-top: 1px; }
.mock-meal-cta .mock-back { color: white; }

/* ─── Tour: Trash ───────────────────────────────────────── */
.mock-trash-banner {
  background: var(--c-surface-2);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--c-mute);
  font-style: italic;
  line-height: 1.4;
}
.mock-trash-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 5px;
}
.mock-trash-emoji { font-size: 22px; flex-shrink: 0; }
.mock-trash-body { flex: 1; min-width: 0; }
.mock-trash-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-ink);
}
.mock-trash-sub {
  font-size: 9px;
  color: var(--c-mute);
  margin-top: 1px;
}
.mock-trash-btn {
  font-size: 9px;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid;
}
.mock-trash-btn.restore {
  color: var(--c-primary);
  border-color: var(--c-primary);
  background: rgba(99, 102, 241, 0.08);
}
.mock-trash-btn.delete {
  color: var(--c-danger);
  border-color: var(--c-danger);
  background: rgba(239, 68, 68, 0.06);
}

/* responsive — narrow phones still scroll cleanly */
@media (max-width: 720px) {
  .tour-shot { width: 280px; }
  .tour-shot .phone,
  .device-frame { width: 280px; height: 580px; }
}

/* ─── iPad kiosk section ────────────────────────────────── */
.ipad {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-surface) 100%);
  position: relative;
  overflow: hidden;
}
.ipad-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0 40px;
}
.ipad-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(closest-side, rgba(99, 102, 241, 0.25), transparent 70%);
  z-index: -1;
  filter: blur(60px);
}
.ipad-frame {
  position: relative;
  width: min(100%, 900px);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 50%, #2a2a2a 100%);
  border-radius: 26px;
  padding: 14px;
  box-shadow:
    var(--c-shadow-lg),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.12),
    inset 0 0 0 3px #000;
}
.ipad-frame::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 6px;
  width: 4px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 2px;
  transform: translateY(-50%);
  box-shadow: 0 -10px 0 #1a1a1a, 0 10px 0 #1a1a1a;
}
.ipad-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FAFAF7, #FFFFFF);
  border-radius: 16px;
  overflow: hidden;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.ipad-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink);
  padding-bottom: 4px;
}
.ipad-status-left { display: flex; gap: 12px; align-items: center; }
.ipad-status-date {
  color: var(--c-mute);
  font-weight: 600;
  font-size: 12px;
}
.ipad-status-right { display: flex; gap: 6px; align-items: center; color: var(--c-ink); }

.ipad-topbar {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 4px 0;
}
.ipad-greeting { flex: 1; align-self: center; }
.ipad-greeting-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.ipad-greeting-sub {
  font-size: 12px;
  color: var(--c-mute);
  font-weight: 600;
  margin-top: 2px;
}
.ipad-clock-card {
  background: linear-gradient(135deg, #6366F1 0%, #4338CA 100%);
  color: white;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.35);
}
.ipad-clock-time {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ipad-clock-weather {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
}
.ipad-forecast { display: flex; gap: 4px; }
.ipad-fc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  min-width: 38px;
}
.ipad-fc div:nth-child(2) { font-size: 16px; line-height: 1; }
.ipad-fc div:last-child { color: white; font-size: 11px; }

.ipad-tabs {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 4px 0;
}
.ipad-tab {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--c-line);
  color: var(--c-mute);
  background: var(--c-surface);
}
.ipad-tab.active {
  border-color: var(--c-primary);
  background: var(--c-primary);
  color: white;
}
.ipad-tab-dots {
  margin-left: auto;
  display: flex;
  gap: 5px;
}
.ipad-tab-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-line);
}
.ipad-tab-dots span.active { background: var(--c-primary); }

.ipad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.ipad-mcard {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.ipad-mcard-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 4px;
}
.ipad-mavatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ipad-mcard-headtext { flex: 1; min-width: 0; }
.ipad-mname {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.ipad-msub {
  font-size: 9px;
  color: var(--c-mute);
  font-weight: 600;
  margin-top: 1px;
}
.ipad-mstars {
  font-size: 11px;
  font-weight: 800;
  color: #B45309;
  background: rgba(245, 158, 11, 0.15);
  padding: 2px 7px;
  border-radius: 999px;
  white-space: nowrap;
}
.ipad-mrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--c-ink);
  padding: 3px 2px;
}
.ipad-mrow-meta {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: var(--c-mute);
}
.ipad-mrow-event {
  background: var(--c-bg);
  border-left: 3px solid;
  padding: 6px 8px;
  border-radius: 0 6px 6px 0;
  font-size: 10px;
}
.ipad-mrow-event strong { color: var(--c-primary); font-weight: 800; font-size: 10px; }
.ipad-mrow-sub {
  font-size: 9px;
  color: var(--c-mute);
  font-weight: 600;
  margin-top: 1px;
}
.ipad-mrow-celebrate {
  font-size: 10px;
  font-weight: 700;
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
  padding: 6px 10px;
  border-radius: 8px;
  text-align: center;
  margin-top: 2px;
}

.ipad-page-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 4px;
}
.ipad-page-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-line);
}
.ipad-page-dots span.active { background: var(--c-primary); }

.ipad-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.ipad-check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ipad-check-icon {
  font-size: 30px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 8px 12px;
  flex-shrink: 0;
}
.ipad-check-item strong {
  display: block;
  font-weight: 800;
  font-size: 15px;
  color: var(--c-ink);
}
.ipad-check-item p {
  font-size: 13px;
  color: var(--c-ink-soft);
  margin-top: 4px;
}

@media (max-width: 880px) {
  .ipad-grid { grid-template-columns: repeat(2, 1fr); }
  .ipad-topbar { flex-direction: column; }
  .ipad-clock-card { width: 100%; }
  .ipad-checks { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
  .ipad-forecast .ipad-fc:nth-child(4) { display: none; }
}
@media (max-width: 560px) {
  .ipad-grid { grid-template-columns: 1fr; }
  .ipad-tab { font-size: 10px; padding: 5px 9px; }
  .ipad-tab:nth-child(3),
  .ipad-tab:nth-child(4) { display: none; }
}

/* ─── Themes / dark mode showcase ───────────────────────── */
.themes {
  background: var(--c-bg);
}
.theme-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.theme-phone {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.theme-screen {
  --tg-bg: #FAFAF7;
  --tg-surface: #FFFFFF;
  --tg-text: #0F172A;
  --tg-mute: #64748B;
  --tg-line: #E2E8F0;
  --tg-c1: #F59E0B;
  --tg-c2: #6366F1;
  --tg-c3: #10B981;
  --tg-clock-bg: #6366F1;
  --tg-clock-text: #FFFFFF;
  aspect-ratio: 9 / 16;
  background: var(--tg-bg);
  border-radius: 18px;
  padding: 26px 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  box-shadow:
    0 0 0 4px #0a0a0a,
    0 0 0 5px rgba(255, 255, 255, 0.08),
    var(--c-shadow);
}
.theme-screen::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 13px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.theme-clock {
  background: var(--tg-clock-bg);
  color: var(--tg-clock-text);
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  padding: 10px;
  border-radius: 10px;
  margin: 4px 0 4px;
  letter-spacing: -0.01em;
}
.theme-card {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--tg-surface);
  border: 1px solid var(--tg-line);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--tg-text);
  margin: 0 4px;
}
.theme-card .theme-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.theme-card.theme-c1 .theme-dot { background: var(--tg-c1); }
.theme-card.theme-c2 .theme-dot { background: var(--tg-c2); }
.theme-card.theme-c3 .theme-dot { background: var(--tg-c3); }
.theme-card.theme-c1 { border-left: 3px solid var(--tg-c1); }
.theme-card.theme-c2 { border-left: 3px solid var(--tg-c2); }
.theme-card.theme-c3 { border-left: 3px solid var(--tg-c3); }

.theme-label {
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--c-ink);
}
.theme-label span {
  display: block;
  font-weight: 600;
  font-size: 11px;
  color: var(--c-mute);
  margin-top: 2px;
}

/* Theme palettes — override the CSS vars per card */
.theme-indigo .theme-screen { --tg-clock-bg: #6366F1; --tg-c2: #6366F1; }
.theme-ocean .theme-screen {
  --tg-bg: #F0F9FF; --tg-clock-bg: #0EA5E9; --tg-c2: #0EA5E9; --tg-c1: #06B6D4; --tg-c3: #14B8A6;
}
.theme-sunset .theme-screen {
  --tg-bg: #FFF7ED; --tg-clock-bg: #EA580C; --tg-c1: #EA580C; --tg-c2: #DC2626; --tg-c3: #F59E0B;
}
.theme-forest .theme-screen {
  --tg-bg: #F0FDF4; --tg-clock-bg: #16A34A; --tg-c1: #16A34A; --tg-c2: #15803D; --tg-c3: #65A30D;
}
.theme-halloween .theme-screen {
  --tg-bg: #1F1B2E; --tg-surface: #2D2438; --tg-text: #FAFAF7; --tg-mute: #C4B5FD; --tg-line: #4C3E5C;
  --tg-clock-bg: #F97316; --tg-c1: #F97316; --tg-c2: #A855F7; --tg-c3: #16A34A; --tg-clock-text: #1F1B2E;
}
.theme-dark .theme-screen {
  --tg-bg: #0F172A; --tg-surface: #1E293B; --tg-text: #F8FAFC; --tg-mute: #94A3B8; --tg-line: #334155;
  --tg-clock-bg: #6366F1; --tg-clock-text: #FFFFFF;
}

/* Reward currency strip */
.reward-strip {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 30px;
  margin-top: 60px;
  text-align: center;
}
.reward-strip-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 18px;
}
.reward-strip-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.reward-pill {
  background: var(--c-surface-2);
  border: 1.5px solid var(--c-line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink);
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.2s;
}
.reward-pill:hover { transform: translateY(-2px); box-shadow: var(--c-shadow); }
.reward-pill.featured {
  background: linear-gradient(135deg, #6366F1, #4338CA);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}
.reward-strip-meta {
  font-size: 13px;
  color: var(--c-mute);
  font-style: italic;
}
