/* ExpensesClaim — v3 Stylesheet
   Inspired by: Zoho (clean), Ramp (confident), Expensify (warm/practical)
   Design principles: lots of whitespace, calm tone, real screenshots over mockups,
   one accent color used sparingly, no decorative gradients or floating elements. */

:root {
  /* Brand colors (locked) */
  --primary: #0F766E;
  --primary-hover: #115E59;
  --accent: #0D9488;
  --accent-light: #F0FDFA;
  --accent-tint: #CCFBF1;

  /* Neutrals — used 90% of the time */
  --ink: #0F172A;          /* main text */
  --ink-2: #334155;        /* body text */
  --ink-3: #64748B;        /* secondary text */
  --ink-4: #94A3B8;        /* muted text */
  --line: #E2E8F0;         /* borders */
  --line-soft: #F1F5F9;    /* soft dividers */
  --bg-soft: #F8FAFC;      /* section backgrounds */
  --bg-cream: #FAFAF7;     /* warmer alternate */
  --white: #FFFFFF;

  /* Status (used sparingly) */
  --success: #15803D;
  --success-bg: #F0FDF4;
  --warning: #B45309;
  --warning-bg: #FFFBEB;
  --danger: #B91C1C;
  --danger-bg: #FEF2F2;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Type scale */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 15px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 48px;
  --text-5xl: 56px;

  /* Radii */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Shadows — gentle, not dramatic */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); letter-spacing: -0.01em; }
h4 { font-size: var(--text-lg); letter-spacing: -0.01em; }

p { color: var(--ink-2); }

.eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-3);
}

.lead {
  font-size: var(--text-md);
  color: var(--ink-3);
  line-height: 1.65;
  max-width: 620px;
}

/* ==================== NAVIGATION ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-brand img { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-size: var(--text-sm);
  color: var(--ink-2);
  font-weight: 500;
  transition: color 0.15s;
}

.nav-link:hover, .nav-link.active { color: var(--ink); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover { background: var(--primary); }

.btn-accent {
  background: var(--primary);
  color: var(--white);
}

.btn-accent:hover { background: var(--primary-hover); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover { border-color: var(--ink-3); }

.btn-text {
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
}

.btn-text:hover { color: var(--primary); }

.btn-lg { padding: 14px 24px; font-size: var(--text-base); }
.btn-arrow::after { content: "→"; margin-left: 4px; transition: transform 0.15s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-9) 0;
}

.section-sm { padding: var(--space-8) 0; }
.section-bg { background: var(--bg-soft); }
.section-cream { background: var(--bg-cream); }

/* ==================== HERO ==================== */
.hero {
  padding: var(--space-9) 0 var(--space-8);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: var(--text-xs);
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: var(--space-5);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

.hero h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-5);
}

.hero h1 .accent { color: var(--primary); }

.hero-sub {
  font-size: var(--text-lg);
  color: var(--ink-3);
  line-height: 1.55;
  margin-bottom: var(--space-6);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.hero-fineprint {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--ink-4);
}

.hero-fineprint span { display: inline-flex; align-items: center; gap: 4px; }
.hero-fineprint .check { color: var(--success); font-weight: 700; }

/* Phone screenshot in hero */
.hero-phone {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-phone .device {
  background: var(--ink);
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  width: 100%;
}

.hero-phone .device-screen {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
}

/* ==================== TRUST STRIP ==================== */
.trust-strip {
  padding: var(--space-7) 0;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.trust-label {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--ink-4);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.trust-item {
  font-size: var(--text-sm);
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: -0.01em;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.trust-item:hover { opacity: 1; }

/* ==================== SECTION HEADERS ==================== */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-8);
}

.section-head h2 {
  margin-bottom: var(--space-4);
}

.section-head p {
  font-size: var(--text-md);
  color: var(--ink-3);
  line-height: 1.65;
}

/* ==================== WHO IS THIS FOR (Expensify-style) ==================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 0.2s;
  cursor: pointer;
}

.audience-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.audience-card .emoji {
  font-size: 28px;
  margin-bottom: var(--space-4);
  display: block;
}

.audience-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.audience-card p {
  font-size: var(--text-sm);
  color: var(--ink-3);
  margin-bottom: var(--space-4);
  line-height: 1.55;
}

.audience-card .link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
}

/* ==================== FEATURE BLOCKS (Zoho-style alternating) ==================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-9);
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse > .feature-text { order: 2; }
.feature-row.reverse > .feature-visual { order: 1; }

.feature-text .eyebrow { margin-bottom: var(--space-3); }
.feature-text h2 { margin-bottom: var(--space-4); font-size: var(--text-3xl); }
.feature-text > p { font-size: var(--text-md); color: var(--ink-3); margin-bottom: var(--space-5); line-height: 1.65; }

.feature-list {
  list-style: none;
  margin-bottom: var(--space-5);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--ink-2);
}

.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background: var(--accent-light);
  border-radius: 50%;
  position: relative;
}

.feature-list li {
  position: relative;
}

.feature-list li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 8px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
}

.feature-visual {
  display: flex;
  justify-content: center;
  padding: var(--space-5);
}

.feature-visual .device {
  background: var(--ink);
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  max-width: 310px;
  width: 100%;
}

.feature-visual .device-screen {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
}

/* ==================== METRICS BAND ==================== */
.metrics {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-8) 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: center;
}

.metric-value {
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
  line-height: 1;
}

.metric-value .unit {
  font-size: var(--text-xl);
  color: var(--accent-light);
  font-weight: 500;
  margin-left: 2px;
}

.metric-label {
  font-size: var(--text-sm);
  color: var(--ink-4);
  line-height: 1.4;
}

/* ==================== HOW IT WORKS (Expensify-style 3 steps) ==================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.step {
  text-align: left;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-light);
  color: var(--primary);
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.step p {
  font-size: var(--text-sm);
  color: var(--ink-3);
  line-height: 1.6;
}

/* ==================== PRICING ==================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--ink);
  background: var(--white);
}

.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.price-name {
  font-size: var(--text-sm);
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: var(--space-3) 0 var(--space-2);
}

.price-amount .currency-sym {
  font-size: var(--text-xl);
  color: var(--ink-3);
  font-weight: 500;
}

.price-amount .num {
  font-size: var(--text-4xl);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-amount .period {
  font-size: var(--text-sm);
  color: var(--ink-3);
}

.price-regional {
  font-size: var(--text-xs);
  color: var(--ink-4);
  margin-bottom: var(--space-4);
}

.price-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.price-features {
  list-style: none;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: var(--text-sm);
  color: var(--ink-2);
}

.price-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==================== FAQ SHORT ==================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
}

.faq-item h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.faq-item p {
  font-size: var(--text-sm);
  color: var(--ink-3);
  line-height: 1.6;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-9) 0;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.final-cta p {
  color: var(--ink-4);
  font-size: var(--text-md);
  max-width: 520px;
  margin: 0 auto var(--space-6);
}

.final-cta .btn {
  background: var(--white);
  color: var(--ink);
}

.final-cta .btn:hover { background: var(--accent-light); }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  padding: var(--space-8) 0 var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-3);
  font-weight: 600;
  color: var(--ink);
}

.footer-brand img { width: 24px; height: 24px; }

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 280px;
}

.footer h5 {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer-link {
  display: block;
  font-size: var(--text-sm);
  color: var(--ink-3);
  padding: 4px 0;
}

.footer-link:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--ink-4);
}

.footer-trademark {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  color: var(--ink-4);
  line-height: 1.6;
}

.footer-trademark a {
  color: var(--ink-3);
  text-decoration: underline;
}

/* ==================== PRICING PAGE ==================== */
.pricing-hero {
  padding: var(--space-9) 0 var(--space-7);
  text-align: center;
  background: var(--bg-soft);
}

.pricing-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.pricing-hero p { max-width: 600px; margin: 0 auto var(--space-6); color: var(--ink-3); font-size: var(--text-md); }

.region-tabs {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
  gap: 2px;
}

.region-tab {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: var(--text-sm);
  color: var(--ink-3);
  font-weight: 500;
}

.region-tab.active {
  background: var(--ink);
  color: var(--white);
}

.guarantees {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-7);
  padding: var(--space-6);
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}

.guarantee {
  text-align: center;
}

.guarantee .emoji { font-size: 22px; margin-bottom: var(--space-2); display: block; }
.guarantee h4 { font-size: var(--text-sm); margin-bottom: 4px; }
.guarantee p { font-size: var(--text-xs); color: var(--ink-3); }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.region-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.region-card-head {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--line-soft);
}

.region-card-head .label {
  font-size: var(--text-xs);
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.region-card-head h4 { font-size: var(--text-md); margin-top: 4px; }
.region-card-head .countries { font-size: var(--text-xs); color: var(--ink-4); margin-top: 2px; }

.region-prices { padding: var(--space-4) var(--space-5); }

.region-prices .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: var(--text-sm);
}

.region-prices .row span:first-child { color: var(--ink-3); }
.region-prices .row span:last-child { color: var(--ink); font-weight: 600; }

/* ==================== FAQ PAGE ==================== */
.faq-hero {
  padding: var(--space-9) 0 var(--space-7);
  text-align: center;
  background: var(--bg-soft);
}

.faq-page-grid {
  max-width: 820px;
  margin: 0 auto;
}

.faq-section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: var(--space-7) 0 var(--space-4);
}

.faq-section-label:first-child { margin-top: 0; }

.faq-page-item {
  border-bottom: 1px solid var(--line-soft);
  padding: var(--space-5) 0;
}

.faq-page-item h4 { font-size: var(--text-md); margin-bottom: var(--space-2); }
.faq-page-item p { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.65; }

/* ==================== FEATURES PAGE ==================== */
.features-hero {
  padding: var(--space-9) 0 var(--space-7);
  text-align: center;
  background: var(--bg-soft);
}

.features-hero h1 { font-size: var(--text-4xl); max-width: 720px; margin: 0 auto var(--space-4); }
.features-hero p { max-width: 640px; margin: 0 auto; color: var(--ink-3); font-size: var(--text-md); }

.bonus-features {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.bonus-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-5);
}

.bonus-item .emoji { font-size: 22px; margin-bottom: var(--space-3); display: block; }
.bonus-item h4 { font-size: var(--text-base); margin-bottom: var(--space-2); }
.bonus-item p { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.55; }

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
  .nav-inner { padding: var(--space-3) var(--space-4); }
  .nav-link:not(.btn) { display: none; }

  .container, .container-narrow { padding: 0 var(--space-4); }

  .section { padding: var(--space-7) 0; }

  .hero { padding: var(--space-7) 0 var(--space-6); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-7); padding: 0 var(--space-4); }
  .hero h1 { font-size: var(--text-3xl); }
  .hero-sub { font-size: var(--text-md); }

  .audience-grid,
  .steps,
  .pricing-grid,
  .faq-grid,
  .regions-grid,
  .guarantees,
  .bonus-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .metrics-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }

  .feature-row { grid-template-columns: 1fr; gap: var(--space-5); margin-bottom: var(--space-8); }
  .feature-row.reverse > .feature-text { order: 1; }
  .feature-row.reverse > .feature-visual { order: 2; }
  .feature-text h2 { font-size: var(--text-2xl); }

  .trust-row { gap: var(--space-5); }

  h2 { font-size: var(--text-2xl); }

  .footer-bottom { flex-direction: column; gap: var(--space-2); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: var(--text-2xl); }
  .pricing-hero h1, .features-hero h1, .faq-hero h1 { font-size: var(--text-2xl); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
