/* ---------------------------------------------------------------- tokens */
:root {
  --jade-900: #08301F;
  --jade-700: #0B6B49;
  --jade-600: #0E8A5F;
  --jade-500: #12A374;
  --jade-100: #DBF1E7;
  --jade-050: #EEF8F3;

  --gold-700: #9C6A18;
  --gold-600: #B9791B;
  --gold-500: #E0A82E;
  --gold-100: #FBEFD5;

  --ink-900: #0F1B2D;
  --ink-700: #243343;
  --ink-500: #566573;
  --ink-400: #7C8A98;
  --ink-300: #A9B4BF;

  --paper: #FFFFFF;
  --mist: #F4F6F5;
  --cloud: #EDF2F0;
  --line: #E2E8E5;
  --line-soft: #EDF1EF;

  --red-600: #C23B3B;
  --red-100: #F8E4E2;

  --noir-bg: #0B0A08;
  --noir-surface: #17150F;
  --noir-surface-alt: #1E1B12;
  --noir-border: #2C2718;
  --noir-gold-600: #D8B675;
  --noir-gold-700: #B9924A;
  --noir-gold-100: #241F14;
  --noir-text: #F2ECDF;
  --noir-text-muted: #A79E8C;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-card: 0 4px 16px rgba(11, 42, 30, 0.07);
  --shadow-raised: 0 16px 40px rgba(11, 42, 30, 0.14);

  --container: 1160px;
  --font: "Be Vietnam Pro", -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------------------------------------------------------------- reset */
* { box-sizing: border-box; }
/* The [hidden] attribute has the same specificity as a single class, so any
   element whose classes also set `display` (e.g. .btn-block) needs this to
   actually disappear when JS sets `.hidden = true`. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 13px 24px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }

.btn-primary { background: var(--jade-600); color: #fff; }
.btn-primary:hover { background: var(--jade-700); box-shadow: var(--shadow-raised); }

.btn-outline { background: transparent; color: var(--jade-700); border-color: var(--jade-500); }
.btn-outline:hover { background: var(--jade-050); }

.btn-ghost { background: transparent; color: var(--ink-700); }
.btn-ghost:hover { background: var(--cloud); }

.btn-gold { background: var(--noir-gold-600); color: var(--noir-bg); }
.btn-gold:hover { background: var(--noir-gold-700); box-shadow: var(--shadow-raised); }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 19px;
  color: var(--ink-900);
  margin-right: auto;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--jade-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark svg { width: 19px; height: 19px; }

.nav-and-cta { display: flex; align-items: center; gap: 28px; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-700);
}
.main-nav a:hover { color: var(--jade-700); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink-900); border-radius: 2px; }

/* ---------------------------------------------------------------- hero */
.hero { padding: 72px 0 96px; background: linear-gradient(180deg, var(--jade-050) 0%, #fff 65%); overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--jade-700);
  background: var(--jade-100);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  text-wrap: balance;
}
.hero-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-500);
  max-width: 46ch;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
}
.trust-item svg { width: 17px; height: 17px; color: var(--jade-600); flex-shrink: 0; }

/* hero phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-blob {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--jade-100) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.phone-frame {
  position: relative;
  z-index: 1;
  width: 280px;
  background: var(--ink-900);
  border-radius: 40px;
  padding: 14px 10px;
  box-shadow: var(--shadow-raised);
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: var(--ink-900);
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.phone-screen {
  background: var(--mist);
  border-radius: 28px;
  padding: 34px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11px;
}
.mock-topbar { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 700; color: var(--ink-900); padding: 0 2px; }
.mock-gear { width: 15px; height: 15px; color: var(--ink-400); flex-shrink: 0; }

.mock-hero-card {
  background: linear-gradient(135deg, var(--jade-600), var(--jade-700));
  border-radius: var(--radius-lg);
  padding: 16px;
  color: #fff;
}
.mock-label { font-size: 9px; letter-spacing: 0.06em; opacity: 0.75; font-weight: 600; }
.mock-amount { display: block; font-size: 20px; font-weight: 800; margin-top: 4px; }
.mock-hero-row { display: flex; gap: 14px; margin-top: 14px; }
.mock-hero-row div { display: flex; flex-direction: column; gap: 1px; }
.mock-hero-row small { opacity: 0.7; font-size: 9px; }
.mock-hero-row b { font-size: 12px; }

.mock-card { background: #fff; border-radius: var(--radius-md); padding: 14px; box-shadow: var(--shadow-card); }
.mock-card-title { font-size: 10px; font-weight: 700; color: var(--ink-400); letter-spacing: 0.04em; }
.mock-flow-row { display: flex; gap: 14px; margin-top: 10px; }
.mock-flow-row div { display: flex; flex-direction: column; gap: 1px; }
.mock-flow-row small { color: var(--ink-400); font-size: 9px; }
.mock-flow-row b { font-size: 12px; }
.mock-flow-row .pos { color: var(--jade-700); }
.mock-flow-row .neg { color: var(--red-600); }
.mock-bar { height: 6px; background: var(--cloud); border-radius: 4px; margin-top: 10px; overflow: hidden; }
.mock-bar span { display: block; height: 100%; background: var(--jade-600); border-radius: 4px; }

.mock-health-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.mock-ring {
  width: 44px; height: 44px; border-radius: 50%;
  border: 4px solid var(--jade-500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: var(--ink-900);
  flex-shrink: 0;
}
.mock-health-row p { font-size: 10.5px; color: var(--ink-500); margin: 0; }

.mock-tabbar {
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  color: var(--ink-300);
  font-size: 14px;
}
.mock-tabbar .on { color: var(--jade-600); }
.mock-tabbar svg { width: 17px; height: 17px; }

/* ---------------------------------------------------------------- sections */
section { padding: 88px 0; }
.section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.section-sub {
  text-align: center;
  color: var(--ink-500);
  font-size: 16px;
  max-width: 56ch;
  margin: 14px auto 0;
}

/* ---------------------------------------------------------------- features */
.features { background: var(--mist); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon.jade { background: var(--jade-100); color: var(--jade-700); }
.feature-icon.gold { background: var(--gold-100); color: var(--gold-600); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--ink-500); font-size: 14.5px; line-height: 1.6; }

/* ---------------------------------------------------------------- how it works */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.how-step { position: relative; padding-left: 4px; }
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--jade-600);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}
.how-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.how-step p { color: var(--ink-500); font-size: 14.5px; line-height: 1.6; }

/* ---------------------------------------------------------------- more features */
.more-features { background: var(--mist); }
.more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  margin-top: 52px;
}
.more-item { display: flex; gap: 16px; align-items: flex-start; }
.more-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--jade-600);
}
.more-icon svg { width: 20px; height: 20px; }
.more-item h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 5px; }
.more-item p { color: var(--ink-500); font-size: 14px; line-height: 1.6; }

/* ---------------------------------------------------------------- pricing */
.pricing { background: var(--paper); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  border-color: var(--jade-500);
  box-shadow: var(--shadow-raised);
  transform: translateY(-8px);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--jade-600);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.price-name { font-size: 18px; font-weight: 700; color: var(--ink-700); }
.price-amount { font-size: 38px; font-weight: 800; margin-top: 12px; color: var(--ink-900); }
.price-amount span { font-size: 20px; font-weight: 700; }
.price-period { color: var(--ink-400); font-size: 13.5px; margin-top: 2px; }
.price-save { color: var(--jade-700); font-size: 12.5px; font-weight: 600; margin-top: 6px; }
.price-card--noir .price-save { color: var(--noir-gold-600); }
.price-features { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.price-features li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.45;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--jade-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B6B49' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 13 10 18 19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.price-card--noir {
  background: var(--noir-bg);
  border-color: var(--noir-border);
  color: var(--noir-text);
}
.price-card--noir .price-name { color: var(--noir-text-muted); }
.price-card--noir .price-amount { color: var(--noir-text); }
.price-card--noir .price-period { color: var(--noir-text-muted); }
.price-card--noir .price-features li { color: var(--noir-text); }
.price-card--noir .price-features li::before {
  background-color: var(--noir-gold-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D8B675' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 13 10 18 19 7'/%3E%3C/svg%3E");
}

.pricing-note { text-align: center; color: var(--ink-400); font-size: 13.5px; margin-top: 24px; }

.duration-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  background: var(--cloud);
  padding: 5px;
  border-radius: var(--radius-pill);
  max-width: 460px;
  margin: 40px auto 0;
}
.duration-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
}
.duration-tab.is-active { background: #fff; color: var(--ink-900); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); }
.duration-badge {
  background: var(--jade-100);
  color: var(--jade-700);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}
.duration-tab.is-active .duration-badge { background: var(--jade-600); color: #fff; }

.trial-cta {
  display: flex;
  margin: 28px auto 0;
  max-width: 360px;
  color: var(--gold-700);
  border-color: var(--gold-500);
}
.trial-cta:hover { background: var(--gold-100); }
.trial-cta svg { width: 18px; height: 18px; }

/* ---------------------------------------------------------------- faq */
.faq { background: var(--mist); }
.faq-inner { max-width: 760px; }
.faq-list { margin-top: 44px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 6px 20px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 28px 16px 0;
  font-weight: 600;
  font-size: 15.5px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 22px;
  font-weight: 400;
  color: var(--jade-600);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--ink-500); font-size: 14.5px; line-height: 1.6; padding-bottom: 18px; }

/* ---------------------------------------------------------------- final CTA */
.final-cta { background: linear-gradient(135deg, var(--jade-700), var(--jade-900)); }
.final-cta-inner { text-align: center; }
.final-cta h2 { color: #fff; font-size: 32px; font-weight: 800; }
.final-cta p { color: rgba(255, 255, 255, 0.75); margin-top: 12px; font-size: 16px; }
.final-cta .btn { margin-top: 30px; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--ink-900); color: rgba(255, 255, 255, 0.7); padding: 64px 0 28px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 10px; font-size: 14px; max-width: 30ch; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-disclaimer { font-size: 12.5px; margin-top: 24px; max-width: 70ch; }
.footer-copy { font-size: 12.5px; margin-top: 10px; opacity: 0.6; }

/* ---------------------------------------------------------------- checkout modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 20, 15, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-raised);
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--cloud);
  color: var(--ink-700);
  font-size: 14px;
}
.modal-close:hover { background: var(--line); }

.modal-eyebrow { color: var(--ink-400); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.modal-head h3 { font-size: 22px; font-weight: 800; margin-top: 4px; }
.modal-price { color: var(--jade-700); font-weight: 700; margin-top: 4px; font-size: 15px; }

.pay-tabs {
  display: flex;
  gap: 6px;
  background: var(--cloud);
  padding: 4px;
  border-radius: var(--radius-pill);
  margin-top: 22px;
}
.pay-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-500);
}
.pay-tab.is-active { background: #fff; color: var(--ink-900); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); }

.pay-panel { margin-top: 22px; }
.pay-qr {
  width: 168px;
  height: 168px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 10px;
  background: #fff;
}
.pay-qr img { width: 100%; height: 100%; display: block; object-fit: contain; }

.pay-info { display: flex; flex-direction: column; gap: 10px; }
.pay-info div { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; }
.pay-info dt { color: var(--ink-400); }
.pay-info dd { margin: 0; font-weight: 600; text-align: right; }

.pay-momo-soon {
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
  padding: 36px 12px;
  line-height: 1.6;
}

.pay-status {
  text-align: center;
  color: var(--ink-400);
  font-size: 13px;
  margin-top: 18px;
  margin-bottom: 14px;
}

.pay-demo-note {
  margin-top: 20px;
  background: var(--red-100);
  color: var(--red-600);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: 12.5px;
  line-height: 1.55;
  text-align: center;
}

.pay-confirmed {
  margin-top: 16px;
  text-align: center;
  color: var(--jade-700);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}

/* auth step (sign in / create account before checkout) */
.auth-tabs {
  display: flex;
  gap: 6px;
  background: var(--cloud);
  padding: 4px;
  border-radius: var(--radius-pill);
  margin-top: 22px;
}
.auth-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-500);
}
.auth-tab.is-active { background: #fff; color: var(--ink-900); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); }

#authForm { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-700); }
.field input {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink-900);
  background: #fff;
}
.field input:focus { outline: 2px solid var(--jade-500); outline-offset: 1px; }
.auth-error { color: var(--red-600); font-size: 13px; margin: 0; }

/* account modal */
.acct-section-title {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink-400);
  margin: 22px 0 10px;
}
.muted-note { color: var(--ink-400); font-size: 13px; }
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.order-row:last-child { border-bottom: none; }
.order-status {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.order-status.PAID { background: var(--jade-100); color: var(--jade-700); }
.order-status.PENDING { background: var(--gold-100); color: var(--gold-700); }
.order-status.EXPIRED, .order-status.CANCELED { background: var(--cloud); color: var(--ink-400); }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .phone-frame { width: 240px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .more-grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .price-card--featured { transform: none; }
}

@media (max-width: 720px) {
  .nav-and-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-open .nav-and-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  .site-header.is-open .main-nav { flex-direction: column; gap: 4px; }
  .site-header.is-open .main-nav a { padding: 10px 0; }
  .site-header.is-open .header-cta { margin-top: 12px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15.5px; }
  section { padding: 64px 0; }
  .section-title { font-size: 26px; }
  .feature-grid { grid-template-columns: 1fr; }
}
