:root {
  --brand: #00B894;
  --brand-hover: #00997D;
  --brand-soft: #D8F1E8;
  --bg: #FFFCF7;
  --bg-elevated: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --success: #10B981;
  --shadow-sm: 0 1px 2px rgba(15, 46, 39, 0.05);
  --shadow-md: 0 6px 16px rgba(15, 46, 39, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 46, 39, 0.12);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--brand); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--brand-hover); }
a:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

button { font-family: inherit; cursor: pointer; }
button:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

h1, h2, h3, h4, h5, h6 { color: var(--text); line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.875rem, 4.5vw + 0.75rem, 3.75rem); }
h2 { font-size: clamp(1.5rem, 3vw + 0.75rem, 2.5rem); }
h3 { font-size: clamp(1.125rem, 1vw + 0.85rem, 1.5rem); }

p { margin: 0 0 1em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section { padding: 3rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #FFFFFF; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-hover); color: #FFFFFF; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-elevated); }

.badge {
  display: inline-block;
  background: var(--brand);
  color: #FFFFFF;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-row { display: flex; flex-wrap: wrap; gap: 0.625rem; align-items: center; }
.store-row a { display: inline-block; position: relative; transition: transform 0.15s ease; }
.store-row a:hover { transform: translateY(-2px); }
.store-row img { height: 46px; width: auto; }
@media (min-width: 600px) { .store-row img { height: 52px; } }
@media (min-width: 900px) { .store-row img { height: 56px; } }

.coming-soon-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 184, 148, 0.35);
  pointer-events: none;
  text-transform: uppercase;
  line-height: 1;
}
.apps-pending .store-row a { opacity: 0.96; }
.apps-pending .store-row a:hover { opacity: 1; }

/* Waitlist section */
.waitlist {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--brand-soft) 50%, var(--bg) 100%);
}
@media (min-width: 768px) { .waitlist { padding: 5rem 0; } }
.waitlist-card {
  max-width: 38rem;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
@media (min-width: 768px) { .waitlist-card { padding: 2.75rem 2.5rem; } }
.waitlist-card .pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.waitlist-card h2 { margin-bottom: 0.5rem; }
.waitlist-card p { color: var(--text-muted); max-width: 32rem; margin: 0 auto 1.5rem; }
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 24rem;
  margin: 0 auto;
}
@media (min-width: 540px) { .waitlist-form { flex-direction: row; } }
.waitlist-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.waitlist-form input[type="email"]:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.18);
}
.waitlist-form button {
  background: var(--brand);
  color: #FFFFFF;
  border: 0;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.waitlist-form button:hover { background: var(--brand-hover); transform: translateY(-1px); }
.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  outline: none;
  margin-top: 0.5rem;
}
.waitlist-success .icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}
.waitlist-fineprint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
@media (min-width: 768px) { .card { padding: 1.75rem; } }
.card:hover { box-shadow: var(--shadow-md); }
.card-feature { display: flex; flex-direction: column; gap: 0.5rem; }
.card-icon { font-size: 2rem; line-height: 1; margin-bottom: 0.5rem; }
.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.icon-tile [data-lucide], .icon-tile svg { width: 26px; height: 26px; stroke: currentColor; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--brand);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 auto 0.75rem;
}
.card .icon-tile { align-self: flex-start; }
.card.text-center .icon-tile { align-self: center; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-6 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(249, 240, 225, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.nav.scrolled { background: rgba(249, 240, 225, 0.95); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; padding: 0.75rem 0; gap: 0.75rem; }
.nav-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; color: var(--text); font-size: 1.125rem; letter-spacing: -0.02em; margin-right: auto; }
.nav-brand img { width: 36px; height: 36px; }
.nav-links { display: none; align-items: center; gap: 1.75rem; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--brand); }
.lang-switch { display: inline-flex; align-items: center; gap: 0.125rem; color: var(--text-muted); font-size: 0.875rem; font-weight: 700; }
.lang-switch a { color: var(--text-muted); padding: 0.3rem 0.55rem; border-radius: 8px; line-height: 1; transition: background 0.15s ease, color 0.15s ease; }
.lang-switch a:hover { color: var(--brand); }
.lang-switch a.active { color: var(--brand); background: var(--brand-soft); }
.lang-switch span { color: var(--border); padding: 0 0.05rem; }
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
}
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--text); }
@media (min-width: 900px) {
  .nav-inner { padding: 0.875rem 0; gap: 1rem; }
  .nav-brand { margin-right: 0; }
  .nav-links { display: flex; margin: 0 auto; }
  .nav-toggle { display: none; }
  .lang-switch { margin-left: 0.5rem; }
}
.mobile-menu {
  display: none;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.625rem 0; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: 0; }

/* Hero */
.hero { position: relative; padding: 2.5rem 0 3.5rem; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--brand-soft) 55%, var(--bg) 100%);
  z-index: -1;
}
.section-tinted {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    var(--brand-soft) 18%,
    var(--brand-soft) 82%,
    var(--bg) 100%
  );
}
@media (min-width: 900px) { .hero { padding: 5rem 0 6rem; } }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.hero h1 { margin-bottom: 1rem; }
.hero p.lead { font-size: clamp(1.05rem, 1vw + 0.75rem, 1.25rem); color: var(--text-muted); margin-bottom: 1.75rem; max-width: 36rem; }
.hero-qr { display: none; align-items: center; gap: 0.875rem; margin-top: 1.5rem; padding: 0.875rem; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg); width: fit-content; box-shadow: var(--shadow-sm); }
.hero-qr canvas, .hero-qr img { width: 96px; height: 96px; }
.hero-qr p { margin: 0; font-size: 0.85rem; color: var(--text-muted); max-width: 12rem; }
@media (min-width: 900px) { .hero-qr { display: flex; } }
.hero-phone { display: flex; justify-content: center; max-width: 360px; margin: 0 auto; }

/* Sections */
.section-head { text-align: center; max-width: 56rem; margin: 0 auto 3rem; }
.section-head p { color: var(--text-muted); font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem); }

/* Pricing */
.pricing-grid { display: grid; gap: 1.25rem; }
@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    max-width: 780px;
    margin: 0 auto;
  }
}

/* Pricing card normalization: uniform flex gap, no rogue margins */
.pricing-card {
  gap: 0.625rem;
}
.pricing-card > * { margin: 0; }
.pricing-card .badge { position: absolute; top: -12px; left: 1.5rem; margin: 0; }
.pricing-card .pricing-price {
  line-height: 1.05;
  margin: 0.25rem 0;
}
.pricing-card .pricing-tagline,
.pricing-card .pricing-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.pricing-card .pricing-features {
  margin: 1rem 0 0;
  flex: 1 0 auto;
}
.pricing-card .store-row {
  margin: 1rem 0 0;
  padding: 0;
}

.price-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 2rem;
}
.price-toggle {
  display: inline-flex;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}
.price-toggle button {
  background: transparent;
  border: 0;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.price-toggle button:hover {
  color: var(--text);
}
.price-toggle button[aria-selected="true"] {
  background: var(--brand);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 184, 148, 0.3);
}
.price-toggle button[aria-selected="true"]:hover {
  color: #FFFFFF;
}
.save-pill {
  font-size: 0.65rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--brand-soft);
  color: var(--brand);
  line-height: 1;
}
.price-toggle button[aria-selected="true"] .save-pill {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
}
.pricing-card { position: relative; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-card.featured { border-color: var(--brand); box-shadow: var(--shadow-md); }
.pricing-card .badge { position: absolute; top: -12px; left: 1.5rem; }
.pricing-price { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin: 0.5rem 0 0.25rem; }
.pricing-sub { color: var(--text-muted); font-size: 0.9rem; }
.pricing-features { list-style: none; padding: 0; margin: 1.25rem 0; display: flex; flex-direction: column; gap: 0.625rem; }
.pricing-features li { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.95rem; }
.pricing-features li::before { content: "✓"; color: var(--brand); font-weight: 800; flex-shrink: 0; }
.pricing-card .store-row {
  margin-top: auto;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
.pricing-card .store-row a {
  flex: 1 1 0;
  min-width: 0;
  max-width: 170px;
  display: flex;
  justify-content: center;
}
.pricing-card .store-row img {
  height: auto;
  width: 100%;
  max-height: 48px;
  display: block;
}
.pricing-tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }
.pricing-disclosure { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }
.pricing-fineprint {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 1.75rem auto 0;
  max-width: 38rem;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.grid .reveal:nth-child(1) { transition-delay: 0s; }
.grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid .reveal:nth-child(4) { transition-delay: 0.08s; }
.grid .reveal:nth-child(5) { transition-delay: 0.16s; }
.grid .reveal:nth-child(6) { transition-delay: 0.24s; }
.pricing-grid > .reveal:nth-child(1) { transition-delay: 0s; }
.pricing-grid > .reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid > .reveal:nth-child(3) { transition-delay: 0.2s; }
.faq > .reveal:nth-child(n+5) { transition-delay: 0s; }
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--bg-elevated); }
.compare { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 480px; }
.compare th, .compare td { padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.compare thead th { background: #F8FBFA; font-weight: 700; }
.compare td:nth-child(2), .compare td:nth-child(3), .compare th:nth-child(2), .compare th:nth-child(3) { text-align: center; width: 22%; }
.compare tr:last-child td { border-bottom: 0; }
.compare .check { color: var(--brand); font-weight: 800; }
.compare .dash { color: var(--text-muted); }
.compare-row-hidden { display: none; }
.compare-toggle { margin: 1rem auto 0; display: block; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0.75rem; max-width: 56rem; margin: 0 auto; }
.faq-item { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-question { width: 100%; background: transparent; border: 0; padding: 1.125rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; font-weight: 600; font-size: 1rem; color: var(--text); }
.faq-question::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--brand); transition: transform 0.2s ease; }
.faq-item.open .faq-question::after { content: "\2212"; }
.faq-answer { display: none; padding: 0 1.25rem 1.25rem; color: var(--text-muted); }
.faq-item.open .faq-answer { display: block; }

/* Final CTA */
.cta-final { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%); color: #FFFFFF; border-radius: var(--radius-xl); padding: 3rem 1.5rem; text-align: center; }
.cta-final h2 { color: #FFFFFF; }
.cta-final p { color: rgba(255, 255, 255, 0.92); max-width: 36rem; margin: 0 auto 1.75rem; }
.cta-final .store-row { justify-content: center; }
.cta-final .hero-qr { margin: 1.75rem auto 0; background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.24); }
.cta-final .hero-qr p { color: rgba(255, 255, 255, 0.92); }

/* Footer */
.footer { padding: 3rem 0 2rem; background: #F4F6F8; border-top: 1px solid var(--border); margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand-row { display: flex; align-items: center; gap: 0.625rem; font-weight: 800; }
.footer-brand-row img { width: 36px; height: 36px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); max-width: 22rem; }
.footer h4 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer a { color: var(--text); font-size: 0.95rem; }
.footer a:hover { color: var(--brand); }
.social-row { display: flex; gap: 0.625rem; }
.social-row a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 8px; background: #FFFFFF; }
.social-row a:hover { background: var(--brand); color: #FFFFFF; border-color: var(--brand); }
.social-row a svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.825rem; color: var(--text-muted); }

/* Legal pages */
.legal { padding: 3rem 0 5rem; }
.legal-container { max-width: 48rem; margin: 0 auto; padding: 0 1.25rem; }
.legal h1 { font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem); margin-bottom: 0.25rem; }
.legal .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.25rem; margin-top: 2.25rem; margin-bottom: 0.75rem; }
.legal h3 { font-size: 1.05rem; margin-top: 1.5rem; }
.legal p, .legal li { color: #303030; font-size: 1rem; line-height: 1.7; }
.legal ul, .legal ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal li { margin-bottom: 0.375rem; }
.legal .callout { background: var(--brand-soft); border-left: 4px solid var(--brand); padding: 1rem 1.25rem; border-radius: var(--radius-md); margin: 1.5rem 0; }
.legal .callout strong { color: #003A2F; }
.legal a { font-weight: 600; }

/* Referral page */
.referral-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1.25rem; background: linear-gradient(180deg, var(--bg), var(--brand-soft)); }
.referral-card { background: var(--bg-elevated); border-radius: var(--radius-xl); padding: 2.5rem 1.75rem; max-width: 540px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.referral-card img.logo { width: 88px; height: 88px; margin: 0 auto 1rem; }
.referral-card h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.referral-card p { color: var(--text-muted); }
.referral-qr { width: 220px; height: 220px; margin: 1.5rem auto; padding: 16px; background: #FFFFFF; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.referral-qr canvas, .referral-qr img { width: 100%; height: 100%; }
.referral-code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; background: var(--brand-soft); color: #003A2F; padding: 0.5rem 0.875rem; border-radius: 999px; font-weight: 700; display: inline-block; margin: 0.5rem 0 1rem; }

/* Utility */
[hidden] { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
