/* ═══════════════════════════════════════════════════════════════
   Meeting Alerter Promo Site
   Aesthetic: Clean Light Product  (inspired by Coffee / Shiori)
   Fonts: Geist 700/800/900 (headlines) · DM Sans (body) · JetBrains Mono (ui)
═══════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --bg:         #FFFFFF;
  --bg-alt:     #F6F5F2;
  --bg-card:    #FFFFFF;
  --text:       #0A0A0A;
  --text-2:     #666666;
  --text-3:     #AAAAAA;
  --orange:     #FF5E00;
  --orange-dim: rgba(255, 94, 0, 0.10);
  --green:      #16A34A;
  --border:     #E8E8E8;
  --border-2:   #D0D0D0;
  --radius:     14px;
  --radius-sm:  9px;
  --shadow:     0 8px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg:  0 24px 80px rgba(0,0,0,0.14), 0 4px 20px rgba(0,0,0,0.08);
  --font-head:  'Geist', 'Helvetica Neue', sans-serif;
  --font-body:  'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono:  'JetBrains Mono', 'SF Mono', monospace;
  --font-sys:   -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* ── Base ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 56px;
}

kbd {
  font-family: var(--font-mono);
  font-size: 0.8em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Reveal animation ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: 980px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.16s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-dark {
  background: var(--text);
  color: var(--bg);
}
.btn-dark:hover { background: #222; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover { background: var(--bg-alt); }

.btn-block { width: 100%; justify-content: center; }


/* ════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 56px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.23rem;
  font-weight: 700;
}
.nav-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
}
.nav-links a {
  color: var(--text-2);
  transition: color 0.15s;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 12px;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--text);
  color: var(--bg) !important;
  padding: 7px 18px;
  border-radius: 980px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: #222 !important; }

@media (max-width: 600px) {
  .nav-links a:not(.nav-cta) { display: none; }
}


/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 72px 28px 0;
  overflow: hidden;
}
.hero-text {
  max-width: 640px;
  margin: 0 auto 52px;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-req {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-3);
}

/* ── Hero MacOS window ─────────────────────────────────────── */
.hero-window-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  /* Clip overflow at the bottom; window "floats" in */
}
.hero-window {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.09);
  border-bottom: none;
}
.win-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: #2a2a2e;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.win-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-sys);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.tl {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tl-r { background: #ff5f57; }
.tl-y { background: #ffbd2e; }
.tl-g { background: #28c840; }

/* ── Desktop area ──────────────────────────────────────────── */
.win-desktop {
  position: relative;
  background: linear-gradient(145deg, #1B3A5C 0%, #1E2A45 35%, #2D1B45 70%, #1A2A3C 100%);
  min-height: 420px;
}

/* MacOS menu bar inside the window */
.mb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
  padding: 0 12px;
  background: rgba(24, 24, 28, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-sys);
  font-size: 13px;
  user-select: none;
}
.mb-left, .mb-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mb-apple { font-size: 15px; color: rgba(255,255,255,0.88); }
.mb-app   { font-size: 13px; color: rgba(255,255,255,0.80); }
.mb-extra { color: rgba(255,255,255,0.65); display: flex; align-items: center; }
.mb-clock {
  font-family: var(--font-sys);
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.01em;
}

/* Meeting Alerter menu bar label */
.mb-label {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--font-sys);
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  background: transparent;
  transition: background 0.12s;
}
.mb-label:hover { background: rgba(255,255,255,0.1); }
.mb-calicon {
  width: 13px; height: 13px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.70);
}

/* State: now — subtle pulse */
.mb-label--now { animation: mb-pulse 2s ease-in-out infinite; }
.mb-label--now .mb-calicon { color: #FF5E00; }
@keyframes mb-pulse {
  0%, 100% { background: transparent; }
  50%       { background: rgba(255,94,0,0.15); }
}

/* Dropdown anchored to top-right of desktop */
.dropdown {
  position: absolute;
  top: 24px; /* below menu bar */
  right: 16px;
  width: 240px;
  background: #2b2b2e;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 4px 12px rgba(0,0,0,0.4);
  padding: 5px 0;
  font-family: var(--font-sys);
}
.dd-sep {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 4px 0;
}
.dd-header {
  padding: 3px 12px 2px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.dd-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.86);
  transition: background 0.1s;
}
.dd-item:hover { background: rgba(255,255,255,0.07); }
.dd-item--join .dd-icon { color: #34d399; }
.dd-item--dismiss .dd-icon { color: #f87171; }
.dd-item--sm { font-size: 12px; color: rgba(255,255,255,0.55); padding: 2px 12px; }
.dd-icon { width: 13px; height: 13px; flex-shrink: 0; color: rgba(255,255,255,0.55); }
.dd-shortcut { margin-left: auto; font-size: 11px; color: rgba(255,255,255,0.28); }

.dd-event {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.dd-event:hover { background: rgba(255,255,255,0.06); }
.dd-event--active .dd-title { color: #fff; font-weight: 500; }
.dd-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c, #888);
  flex-shrink: 0;
}
.dd-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.36);
  width: 36px;
  flex-shrink: 0;
}
.dd-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}
.dd-section { padding: 2px 0; }


/* ════════════════════════════════════════════════════════════
   FEATURES STRIP
════════════════════════════════════════════════════════════ */
.features {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 28px;
}
.features-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: border-color 0.15s, background 0.15s;
}
.feature:hover {
  background: #fff;
  border-color: var(--border);
}
.feature-ico {
  width: 36px; height: 36px;
  color: var(--text);
  margin-bottom: 4px;
}
.feature-ico svg { width: 100%; height: 100%; }
.feature strong {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}
.feature span {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.5;
}


/* ════════════════════════════════════════════════════════════
   SHOWCASE SECTIONS
════════════════════════════════════════════════════════════ */
.showcase {
  padding: 96px 28px;
}
.showcase--alt { background: var(--bg-alt); }

.showcase-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase-inner--reverse { direction: rtl; }
.showcase-inner--reverse > * { direction: ltr; }

@media (max-width: 720px) {
  .showcase-inner { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .showcase-inner--reverse > * { direction: ltr; }
}

.showcase-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.showcase-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.showcase-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* State toggle buttons */
.state-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.state-btn {
  padding: 7px 16px;
  border-radius: 980px;
  border: 1.5px solid var(--border-2);
  background: transparent;
  color: var(--text-2);
  font-size: 0.8125rem;
  font-family: var(--font-mono);
  transition: all 0.15s;
}
.state-btn:hover { color: var(--text); border-color: var(--text-3); }
.state-btn--active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}


/* Demo screen (compact mac chrome for showcase) */
.demo-screen {
  border-radius: var(--radius-sm);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.08);
}
.mb--demo {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.dropdown--demo {
  position: static;
  width: 100%;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: none;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* Alert window */
.alert-window {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.08);
  background: #2b2b2e;
}
.alert-body {
  display: flex;
  gap: 16px;
  padding: 20px 20px 20px;
}
.alert-appicon {
  width: 56px; height: 56px;
  border-radius: 12px;
  flex-shrink: 0;
}
.alert-content { flex: 1; min-width: 0; }
.alert-title {
  font-family: var(--font-sys);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 4px;
}
.alert-room {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sys);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.alert-screenshot-wrap { margin-bottom: 14px; }
.alert-screenshot {
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.07);
  min-height: 100px;
  object-fit: cover;
  object-position: top;
}
.alert-btns { display: flex; gap: 8px; }
.osx-btn {
  padding: 4px 16px;
  border-radius: 5px;
  font-family: var(--font-sys);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.14s;
}
.osx-btn:active { transform: scale(0.97); }
.osx-btn--primary { background: #0A7AFF; color: #fff; }
.osx-btn--primary:hover { background: #0968d8; }
.osx-btn--default { background: rgba(255,255,255,0.13); color: rgba(255,255,255,0.82); }
.osx-btn--default:hover { background: rgba(255,255,255,0.2); }
.osx-btn:disabled { opacity: 0.45; cursor: default; }

/* Settings window */
.settings-window {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.08);
  background: #232328;
}
.settings-tabs {
  display: flex;
  padding: 8px 14px 0;
  background: #2a2a30;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
  scrollbar-width: none;
  gap: 2px;
}
.settings-tabs::-webkit-scrollbar { display: none; }
.stab {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px 8px;
  font-family: var(--font-sys);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  border-radius: 5px 5px 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  white-space: nowrap;
  transition: color 0.13s, background 0.13s;
  margin-bottom: -1px;
}
.stab svg { width: 14px; height: 14px; }
.stab:hover { color: rgba(255,255,255,0.8); }
.stab--active {
  color: rgba(255,255,255,0.92);
  background: #232328;
  border-color: rgba(255,255,255,0.08);
  border-bottom-color: #232328;
}
.settings-panels { min-height: 280px; background: #232328; }
.spanel { display: none; }
.spanel--active { display: block; }
.spanel-img {
  width: 100%;
  display: block;
  min-height: 280px;
  object-fit: cover;
  object-position: top;
}


/* ════════════════════════════════════════════════════════════
   COMPARE
════════════════════════════════════════════════════════════ */
.compare-section {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  margin-bottom: 48px;
  line-height: 1.65;
}

.compare-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}
@media (max-width: 640px) { .compare-cards { grid-template-columns: 1fr; } }

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.compare-card strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.compare-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

.table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.compare-table th,
.compare-table td {
  padding: 11px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  color: var(--text-2);
}
.compare-table thead th {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-3);
  background: var(--bg-alt);
}
.col-us { background: #FFF8F4; }
thead .col-us { color: var(--orange) !important; font-weight: 700 !important; background: #FFF0E8 !important; }
.yes     { color: var(--green); font-weight: 600; }
.no      { color: var(--text-3); }
.partial { color: #D97706; }
.table-legend {
  text-align: center;
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-3);
  font-family: var(--font-mono);
}


/* ════════════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════════ */
.pricing-section {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 740px;
  margin: 0 auto;
}
@media (max-width: 520px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-download {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.pricing-card--pro {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 8px 24px rgba(255,94,0,0.12);
}

.pricing-header {
  margin-bottom: 20px;
}
.pricing-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.pricing-price {
  font-size: 0.875rem;
  color: var(--text-2);
  font-family: var(--font-mono);
}
.pricing-list {
  margin-bottom: 20px;
}
.pricing-iap-note {
  font-size: 0.8rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 4px;
}
.pricing-list li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 28px;
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}
.footer-icon { width: 22px; height: 22px; border-radius: 5px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.875rem; color: var(--text-3); transition: color 0.15s; }
.footer-links a:hover { color: var(--text-2); }
.footer-copy { font-size: 0.8rem; color: var(--text-3); font-family: var(--font-mono); }

/* ── App Store badges ──────────────────────────────────────────── */
.nav-badge-link,
.hero-badge-link,
.pricing-badge-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.15s;
}
.nav-badge-link:hover,
.hero-badge-link:hover,
.pricing-badge-link:hover { opacity: 0.8; }

.nav-badge   { height: 32px; width: auto; display: block; }
.hero-badge  { height: 48px; width: auto; display: block; }
.pricing-badge-img { height: 48px; width: auto; display: block; margin: 0 auto; }

/* ════════════════════════════════════════════════════════════
   LEGAL PAGES
════════════════════════════════════════════════════════════ */
.legal {
  padding: 80px 0 120px;
}
.legal h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.legal-date {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 52px;
}
.legal h2 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 40px 0 10px;
}
.legal p,
.legal li {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 12px;
}
.legal a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.15s;
}
.legal a:hover {
  text-decoration-color: var(--orange);
}

/* ════════════════════════════════════════════════════════════
   DARK THEME
════════════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:         #0C0C0C;
    --bg-alt:     #141414;
    --bg-card:    #1A1A1A;
    --text:       #F2F2F2;
    --text-2:     #888888;
    --text-3:     #444444;
    --orange:     #FF6B1A;
    --orange-dim: rgba(255, 107, 26, 0.15);
    --green:      #22C55E;
    --border:     #242424;
    --border-2:   #333333;
    --shadow:     0 8px 40px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.4);
    --shadow-lg:  0 24px 80px rgba(0,0,0,0.7), 0 4px 20px rgba(0,0,0,0.5);
  }

  /* Nav glassmorphism */
  .nav {
    background: rgba(12, 12, 12, 0.88);
  }

  /* Hero window border */
  .hero-window {
    border-color: rgba(255,255,255,0.07);
  }

  /* Comparison table highlight column */
  .col-us                { background: rgba(255, 107, 26, 0.08); }
  thead .col-us          { background: rgba(255, 107, 26, 0.14) !important; }

  /* App Store badge: invert black → white */
  .nav-badge,
  .hero-badge,
  .pricing-badge-img {
    filter: invert(1);
  }

  /* State toggle active */
  .state-btn--active {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
  }

  /* kbd */
  kbd {
    background: #1E1E1E;
    border-color: var(--border-2);
  }

  /* Feature card hover */
  .feature:hover {
    background: #1A1A1A;
  }
}
