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

:root {
  --orange: #FF9500;
  --orange-hover: #FFAD2F;
  --bg: #0A0A0B;
  --card: #1C1C1E;
  --text: #fff;
  --text-dim: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-faint: rgba(255, 255, 255, 0.4);
  --hairline: rgba(255, 255, 255, 0.06);
  --hairline-soft: rgba(255, 255, 255, 0.04);
  --font-display: -apple-system, "SF Pro Display", "Inter", system-ui, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text);
  overflow-x: hidden;
}

html { scroll-padding-top: 90px; }

* { box-sizing: border-box; }

a { transition: opacity 150ms ease, color 150ms ease, background 150ms ease; }

img { max-width: 100%; }

::selection {
  background: rgba(255, 149, 0, 0.3);
  color: #fff;
}

/* ──────────────────────────────────────
   Shared Nav / Footer Chrome
   ────────────────────────────────────── */

.chrome-nav-outer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: center;
  padding: 20px 24px 0;
}

.chrome-nav {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px 10px 20px;
  background: rgba(28, 28, 30, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  width: 100%; max-width: 860px;
}

.chrome-nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
  margin-right: auto;
}

.chrome-brand-mark {
  width: 34px; height: 34px; border-radius: 8px;
  display: block; object-fit: cover; flex-shrink: 0;
}

.chrome-nav-links {
  display: flex; gap: 4px; margin-right: 4px;
}

.chrome-nav-link {
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.75); text-decoration: none;
  letter-spacing: -0.2px; border-radius: 999px;
}
.chrome-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.chrome-nav-link.is-current {
  color: var(--orange);
  background: rgba(255, 149, 0, 0.1);
}

/* ── Footer ── */
.chrome-footer { padding: 40px 24px 40px; }

.chrome-footer-card {
  max-width: 1100px; margin: 0 auto;
  background: var(--card);
  border-radius: 24px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  border: 1px solid var(--hairline-soft);
}

.chrome-footer-brand-mark {
  width: 44px; height: 44px; border-radius: 10px;
  object-fit: cover; display: block;
}

.chrome-footer-sub {
  margin-top: 10px;
  font-size: 12px; line-height: 1.5;
  color: var(--text-muted);
  max-width: 180px;
}

.chrome-footer-h {
  font-size: 13px; font-weight: 600;
  margin-bottom: 12px; letter-spacing: -0.1px;
}
.chrome-footer-links {
  display: flex; flex-direction: column; gap: 8px;
}
.chrome-footer-links a {
  font-size: 13px; color: rgba(255, 255, 255, 0.55);
  text-decoration: none; letter-spacing: -0.1px;
}
.chrome-footer-links a:hover { color: #fff; }

.chrome-footer-meta {
  max-width: 1100px; margin: 24px auto 0;
  display: flex; justify-content: space-between;
  padding: 0 8px;
  font-size: 12px; color: var(--text-faint);
}

/* ──────────────────────────────────────
   Download button
   ────────────────────────────────────── */

.btn-download {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--orange); color: #000;
  font-size: 14px; font-weight: 600; letter-spacing: -0.2px;
  border-radius: 999px; text-decoration: none; border: none;
  cursor: pointer;
  box-shadow:
    0 6px 20px -4px rgba(255, 149, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-download:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}
.btn-download--lg {
  padding: 16px 28px;
  font-size: 17px;
}

/* ──────────────────────────────────────
   Views (single-page router)
   ────────────────────────────────────── */

.view { display: none; }
.view.is-active {
  display: block;
  animation: view-in 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes view-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .view.is-active { animation: none; }
}

/* ──────────────────────────────────────
   Page shell
   ────────────────────────────────────── */

.page {
  position: relative;
  background: var(--bg);
  min-height: 100vh;
  font-family: var(--font-text);
  padding: 20px 0 40px;
}
.page-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 149, 0, 0.15), transparent);
  z-index: 0;
}
.page-inner { position: relative; z-index: 1; }

/* ──────────────────────────────────────
   Hero
   ────────────────────────────────────── */

.hero {
  padding: 20px 24px 80px;
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 149, 0, 0.1);
  border: 1px solid rgba(255, 149, 0, 0.25);
  font-size: 12px; font-weight: 500;
  color: var(--orange);
  margin-bottom: 24px;
  letter-spacing: -0.1px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: var(--orange);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 76px; font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 0.98;
  margin: 0;
}
.hero-title-accent { color: var(--orange); }

.hero-sub {
  font-size: 18px; line-height: 1.45;
  color: var(--text-dim);
  margin: 24px 0 32px;
  max-width: 460px;
  letter-spacing: -0.2px;
}

.hero-cta-row {
  display: flex; gap: 12px; align-items: center;
}
.hero-price {
  font-size: 13px; color: var(--text-muted); line-height: 1.4;
}
.hero-price-sub {
  color: rgba(255, 255, 255, 0.35);
}

.hero-rating {
  display: flex; gap: 24px; margin-top: 48px; align-items: center;
}
.hero-rating-text {
  font-size: 13px; color: var(--text-dim);
}
.hero-rating-text b { color: #fff; }

.hero-phone {
  display: flex; justify-content: center;
}

/* ──────────────────────────────────────
   Stars
   ────────────────────────────────────── */

.stars { display: inline-flex; gap: 2px; }

/* ──────────────────────────────────────
   Section header
   ────────────────────────────────────── */

.section-header {
  text-align: center; max-width: 720px; margin: 0 auto;
}
.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.4px; color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  margin: 0; font-size: 52px; font-weight: 700;
  letter-spacing: -1.6px; line-height: 1.05;
  text-wrap: balance;
}

/* ──────────────────────────────────────
   Features / Bento
   ────────────────────────────────────── */

.features {
  padding: 40px 24px 80px;
  max-width: 1100px; margin: 0 auto;
}
.bento {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--hairline-soft);
  position: relative;
}
.bento-card--tall { min-height: 440px; }
.bento-card--wide { grid-column: 1 / 3; }

.feature-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--orange);
  margin-bottom: 10px;
}
.feature-title {
  margin: 0; font-size: 32px; line-height: 1.05;
  font-weight: 700; letter-spacing: -0.8px;
}
.feature-title--sm { font-size: 22px; }
.feature-body {
  margin: 10px 0 0; font-size: 16px;
  line-height: 1.45; color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.1px;
}
.feature-body--sm { font-size: 14px; }

/* Chat bento */
.bento-chat {
  padding: 32px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative; overflow: hidden;
}
.bento-chat-copy { max-width: 340px; }
.prompt-chips {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 360px;
}
.prompt-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 14px; color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.15px; line-height: 1.3;
  align-self: flex-start; max-width: 100%;
}
.prompt-chip svg { flex-shrink: 0; opacity: 0.85; }
.bento-chat-status {
  margin-top: 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.1px;
}
.bento-chat-status-dot {
  display: inline-flex;
  width: 6px; height: 6px; border-radius: 3px;
  background: #34C759;
  box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.12);
}
.bento-chat-phone {
  position: absolute; right: -40px; top: 40px;
  opacity: 0.95;
}

/* My Bar / Recipe / Learn bentos */
.bento-panel {
  padding: 24px;
  display: flex; flex-direction: column;
  height: 100%;
}
.bento-panel-phone {
  flex: 1;
  display: flex; align-items: flex-end; justify-content: center;
}
.bento-mybar .bento-panel-phone { margin-bottom: -80px; }
.bento-recipe .bento-panel-phone { margin-top: 16px; margin-bottom: -60px; }
.bento-learn .bento-panel-phone { margin-top: 12px; margin-bottom: -60px; }

/* Taste */
.bento-taste {
  padding: 24px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.taste-sliders {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 20px;
}
.taste-row {
  display: flex; align-items: center; gap: 10px;
}
.taste-label {
  width: 56px; font-size: 12px; color: rgba(255, 255, 255, 0.7);
}
.taste-track {
  flex: 1; height: 6px; border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.taste-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
}
.taste-knob {
  width: 8px; height: 8px; border-radius: 4px;
  background: var(--orange);
  margin-left: -14px;
  box-shadow: 0 0 0 4px var(--card);
}

/* ──────────────────────────────────────
   How it works
   ────────────────────────────────────── */

.how {
  padding: 80px 24px;
  max-width: 1100px; margin: 0 auto;
}
.how-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.how-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--hairline-soft);
}
.how-num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 700; color: var(--orange);
  letter-spacing: -1px; line-height: 1;
  margin-bottom: 20px;
}
.how-title {
  font-size: 20px; font-weight: 600; letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.how-body {
  font-size: 14px; line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

/* ──────────────────────────────────────
   Comparison
   ────────────────────────────────────── */

.compare {
  padding: 80px 24px;
  max-width: 900px; margin: 0 auto;
}
.compare-table {
  margin-top: 48px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--hairline-soft);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px; letter-spacing: -0.2px;
}
.compare-row:last-child { border-bottom: none; }
.compare-head {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.compare-head-sip { text-align: center; color: var(--orange); }
.compare-head-others { text-align: center; }
.compare-cell-center { text-align: center; }
.dash {
  color: rgba(255, 255, 255, 0.25);
  font-size: 18px; line-height: 20px;
}

/* ──────────────────────────────────────
   Reviews
   ────────────────────────────────────── */

.reviews {
  padding: 80px 24px;
  max-width: 1100px; margin: 0 auto;
}
.reviews-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--hairline-soft);
  display: flex; flex-direction: column;
}
.review-body {
  margin: 14px 0 24px;
  font-size: 14px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.1px;
  font-style: italic;
  flex: 1;
}
.review-meta {
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ──────────────────────────────────────
   Final CTA
   ────────────────────────────────────── */

.final-cta {
  padding: 100px 24px 80px;
  text-align: center;
  max-width: 720px; margin: 0 auto;
}
.final-cta-title {
  margin: 0 0 14px;
  font-size: 52px; font-weight: 700;
  letter-spacing: -1.6px; line-height: 1.05;
}
.final-cta-sub {
  margin: 0 0 32px;
  font-size: 18px; color: var(--text-dim);
  letter-spacing: -0.2px;
}

/* ──────────────────────────────────────
   Phone frame
   ────────────────────────────────────── */

.phone {
  --phone-w: 320px;
  --phone-bezel: max(6px, calc(var(--phone-w) * 0.018));
  --phone-radius: calc(var(--phone-w) * 0.13);
  --phone-inner: calc(var(--phone-radius) - var(--phone-bezel) * 0.7);
  width: var(--phone-w);
  height: calc(var(--phone-w) * 2622 / 1206);
  padding: var(--phone-bezel);
  border-radius: var(--phone-radius);
  background: linear-gradient(145deg, #2a2a2a 0%, #0b0b0b 100%);
  box-shadow:
    0 0 0 1.5px #1a1a1a,
    0 40px 80px -24px rgba(0, 0, 0, 0.75),
    0 12px 32px -12px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: var(--phone-inner);
  overflow: hidden;
  background: #000;
}
.phone-screen img {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
  user-select: none; -webkit-user-drag: none;
}

/* ──────────────────────────────────────
   Responsive
   ────────────────────────────────────── */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
  }
  .hero-title { font-size: 56px; letter-spacing: -1.8px; }
  .hero-sub { font-size: 17px; }
  .bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento-card--wide { grid-column: 1 / 3; }
  .how-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .section-title, .final-cta-title { font-size: 40px; letter-spacing: -1.2px; }
}

@media (max-width: 720px) {
  .chrome-nav-links { display: none; }
  .chrome-footer-card { grid-template-columns: 1fr 1fr; }
  .chrome-footer-meta { flex-direction: column; gap: 8px; }
  .bento {
    grid-template-columns: 1fr;
  }
  .bento-card--wide { grid-column: 1; }
  .bento-chat-phone { display: none; }
  .hero-title { font-size: 44px; letter-spacing: -1.2px; }
  .compare-row { grid-template-columns: 1fr 80px 80px; padding: 14px 16px; font-size: 13px; }
  .compare-cell-center { font-size: 11px; }
}

/* ──────────────────────────────────────
   Pill badge (used on Contact & Privacy heroes)
   ────────────────────────────────────── */

.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 149, 0, 0.1);
  border: 1px solid rgba(255, 149, 0, 0.25);
  font-size: 12px; font-weight: 500;
  color: var(--orange);
  margin-bottom: 24px;
  letter-spacing: -0.1px;
}
.pill-badge .dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: var(--orange);
}

/* ──────────────────────────────────────
   Contact page
   ────────────────────────────────────── */

.contact-hero {
  max-width: 780px; margin: 0 auto;
  padding: 80px 24px 20px;
  text-align: center;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 700; letter-spacing: -2.4px;
  line-height: 1.02; margin: 0 0 20px;
  text-wrap: balance;
}
.contact-hero h1 .accent { color: var(--orange); }
.contact-hero .lede {
  font-size: 19px; line-height: 1.5;
  color: var(--text-dim);
  margin: 0 auto 40px; max-width: 560px;
  letter-spacing: -0.2px;
  text-wrap: pretty;
}

.contact-container {
  max-width: 780px; margin: 0 auto;
  padding: 0 24px 40px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 28px;
  padding: 48px 40px;
  position: relative; overflow: hidden;
  text-align: center;
}
.contact-card::before {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(255, 149, 0, 0.1), transparent 65%);
  pointer-events: none;
}
.contact-card h2 {
  margin: 0 0 24px; font-size: 22px; font-weight: 600;
  letter-spacing: -0.4px; position: relative;
}
.contact-row {
  display: inline-flex; align-items: center;
  position: relative;
}
.email-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #fff; text-decoration: none;
  font-size: 18px; font-weight: 500; letter-spacing: -0.3px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}
.email-btn:hover {
  background: rgba(255, 149, 0, 0.08);
  border-color: rgba(255, 149, 0, 0.3);
  transform: translateY(-1px);
}
.email-btn .mail-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255, 149, 0, 0.15);
  display: flex; align-items: center; justify-content: center;
}
.copy-btn {
  margin-left: 8px;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: none; cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.copy-btn:hover { background: rgba(255, 149, 0, 0.15); color: var(--orange); }

.promise {
  max-width: 780px; margin: 24px auto 0;
  padding: 0 24px;
}
.promise-card {
  background: #141416;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.promise-card p {
  margin: 0 0 16px;
  font-size: 16px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.1px;
  text-wrap: pretty;
}
.promise-card p:last-child { margin-bottom: 0; }
.promise-card b { color: #fff; font-weight: 600; }
.signoff {
  font-size: 18px; font-weight: 600;
  color: #fff;
  margin-top: 8px;
  letter-spacing: -0.3px;
}

.quick-links {
  max-width: 780px; margin: 48px auto 0;
  padding: 0 24px 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.quick {
  background: #141416;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 20px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.quick:hover {
  border-color: rgba(255, 149, 0, 0.3);
  background: #18181B;
}
.quick .icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(255, 149, 0, 0.12); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; margin-bottom: 4px;
}
.quick .t { font-size: 14px; font-weight: 600; letter-spacing: -0.2px; }
.quick .d { font-size: 12px; color: rgba(255, 255, 255, 0.55); line-height: 1.4; }

.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--orange); color: #000;
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: -0.1px;
  opacity: 0; transition: opacity 0.25s, transform 0.25s;
  pointer-events: none; z-index: 1000;
  box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
}
.toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ──────────────────────────────────────
   Privacy page
   ────────────────────────────────────── */

.legal-hero {
  max-width: 820px; margin: 0 auto;
  padding: 80px 24px 24px;
  text-align: center;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 700; letter-spacing: -2.4px;
  line-height: 1.02; margin: 0 0 20px;
  text-wrap: balance;
}
.legal-hero h1 .accent { color: var(--orange); }
.legal-hero .lede {
  font-size: 19px; line-height: 1.5;
  color: var(--text-dim);
  margin: 0 auto 16px; max-width: 620px;
  letter-spacing: -0.2px;
  text-wrap: pretty;
}
.legal-hero .meta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-size: 12px; color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.1px;
}
.legal-hero .meta .sep {
  width: 3px; height: 3px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.legal-wrap {
  max-width: 820px; margin: 40px auto 0;
  padding: 0 24px 40px;
}

.legal-body {
  font-size: 15px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.1px;
  text-wrap: pretty;
}
.legal-body section { scroll-margin-top: 100px; margin-bottom: 40px; }
.legal-body h2 {
  font-size: 26px; font-weight: 600; letter-spacing: -0.6px;
  color: #fff; margin: 0 0 14px;
  display: flex; align-items: baseline; gap: 12px;
}
.legal-body h2 .num {
  font-size: 13px; font-weight: 500; color: var(--orange);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  padding: 2px 8px; border-radius: 6px;
  background: rgba(255, 149, 0, 0.08);
  border: 1px solid rgba(255, 149, 0, 0.2);
}
.legal-body p { margin: 0 0 14px; }
.legal-body p:last-child { margin-bottom: 0; }
.legal-body b, .legal-body strong { color: #fff; font-weight: 600; }
.legal-body a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 149, 0, 0.35);
}
.legal-body a:hover { border-bottom-color: var(--orange); }
.legal-body ul { margin: 0 0 14px; padding: 0; list-style: none; }
.legal-body li {
  position: relative; padding-left: 20px; margin-bottom: 8px;
}
.legal-body li::before {
  content: ''; position: absolute; left: 4px; top: 10px;
  width: 5px; height: 5px; border-radius: 3px;
  background: rgba(255, 149, 0, 0.7);
}

.data-table {
  margin: 4px 0 18px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  background: #141416;
}
.data-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 12px 16px;
  font-size: 14px;
  gap: 16px;
}
.data-row + .data-row { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.data-row .k { font-weight: 500; color: #fff; letter-spacing: -0.1px; }
.data-row .v { color: rgba(255, 255, 255, 0.6); line-height: 1.5; }

.tp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin: 4px 0 18px;
}
.tp {
  background: #141416;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px; font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.1px;
  line-height: 1.35;
  display: flex; flex-direction: column; gap: 4px;
}
.tp .tp-desc {
  font-size: 12px; font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.legal-contact {
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 149, 0, 0.08);
  border: 1px solid rgba(255, 149, 0, 0.22);
  border-radius: 12px;
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
}
.legal-body .legal-contact {
  border-bottom: 1px solid rgba(255, 149, 0, 0.22);
}
.legal-contact:hover { background: rgba(255, 149, 0, 0.14); }

.legal-footer-card {
  max-width: 820px; margin: 8px auto 64px;
  padding: 0 24px;
}
.legal-footer-inner {
  background: #141416;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.legal-footer-inner .lbl {
  font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}
.legal-footer-inner .date {
  font-size: 16px; font-weight: 500; color: #fff; letter-spacing: -0.2px;
}
.legal-footer-inner .stamp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.25);
  font-size: 12px; font-weight: 500; color: #34C759;
  letter-spacing: -0.1px;
}
.legal-footer-inner .stamp .dot {
  width: 6px; height: 6px; border-radius: 3px; background: #34C759;
}

@media (max-width: 860px) {
  .legal-hero h1 { font-size: 52px; letter-spacing: -1.6px; }
  .tp-grid { grid-template-columns: 1fr; }
  .data-row { grid-template-columns: 1fr; gap: 4px; }
  .legal-footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .contact-hero h1 { font-size: 52px; letter-spacing: -1.6px; }
  .quick-links { grid-template-columns: 1fr; }
  .contact-card { padding: 36px 24px; }
  .email-btn { font-size: 15px; padding: 14px 20px; }
}
