:root {
  --primary: #1b4d3e;
  --primary-dark: #0f2e25;
  --primary-hover: #143d31;
  --primary-light: #e8f2ef;
  --accent: #c17f3a;
  --accent-light: #faf3eb;
  --bg: #f7f5f0;
  --bg-elevated: #ffffff;
  --bg-subtle: #edeae3;
  --border: #d4cfc4;
  --text: #1a1814;
  --muted: #524c47;
  --success: #1f5c3f;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(26, 24, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 24, 20, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 46, 37, 0.18);
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.925rem;
  color: var(--muted);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--primary);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-size: 0.925rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

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

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

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

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

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background: linear-gradient(165deg, var(--primary) 0%, var(--primary-dark) 55%, #1a1814 100%);
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6dd4a8;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 127, 58, 0.18) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

/* App preview mock */
.app-preview {
  position: relative;
  z-index: 1;
}

.app-window {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.app-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.app-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.app-dot:nth-child(1) { background: #e07a7a; }
.app-dot:nth-child(2) { background: #e0c07a; }
.app-dot:nth-child(3) { background: #7ac07a; }

.app-title {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-right: 46px;
}

.app-body {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 320px;
}

.app-sidebar {
  background: var(--primary-dark);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-nav-item {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.app-nav-item.active {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 500;
}

.app-main {
  padding: 20px;
  background: var(--bg);
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.app-stat {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
}

.app-stat-label {
  font-size: 0.65rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.app-stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary);
}

.app-stat-value.income { color: var(--success); }
.app-stat-value.expense { color: #7a1a2b; }

.app-table {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.app-table-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg-subtle);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.app-table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 8px;
  padding: 10px 12px;
  font-size: 0.72rem;
  border-top: 1px solid var(--border);
}

.app-table-row span:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Trust strip */
.trust-strip {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.trust-strip p {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-strip strong {
  color: var(--text);
  font-weight: 600;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.pillar p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Features */
.features-section {
  background: var(--bg-subtle);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  font-size: 0.925rem;
}

/* Privacy band */
.privacy-band {
  background: var(--primary-dark);
  color: white;
  padding: 72px 0;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.privacy-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.privacy-band p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.privacy-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: #6dd4a8;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.tier {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.tier.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
}

.tier h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.tier-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.tier .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin: 20px 0 4px;
  letter-spacing: -0.02em;
}

.tier .price-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.tier ul {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.tier li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
}

.tier li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

/* CTA band */
.cta-band {
  padding: 80px 0;
  text-align: center;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  box-shadow: var(--shadow-lg);
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

.cta-card .hero-actions {
  justify-content: center;
  margin-bottom: 16px;
}

.coming-soon-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6dd4a8;
  margin-bottom: 12px;
}

.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto 20px;
}

.notify-input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.notify-input:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-elevated);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-grid p {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--primary);
}

.nav-links a.nav-active {
  color: var(--primary);
  font-weight: 600;
}

/* Onboarding / product tour */
.onboarding-page {
  background: var(--bg);
}

.tour-hero {
  padding: 56px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.tour-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.tour-hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.tour-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tour-jump a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.tour-jump a:hover,
.tour-jump a.is-active {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.tour-step {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.tour-step-alt {
  background: var(--bg-subtle);
}

.tour-step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.tour-step-reverse .tour-mock {
  order: -1;
}

.tour-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.tour-step-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.tour-step-content p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.tour-step-content code {
  font-size: 0.9em;
  background: var(--bg-subtle);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--primary);
}

.tour-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-bullets li {
  padding-left: 22px;
  position: relative;
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.55;
}

.tour-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

/* UI mocks (tour) */
.tour-mock {
  display: flex;
  justify-content: center;
}

.mock-panel {
  width: 100%;
  max-width: 380px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.mock-panel-header {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.mock-welcome-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}

.mock-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.mock-input {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 12px;
}

.mock-input-sm {
  padding: 8px 10px;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.mock-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.mock-btn-sm {
  padding: 7px 12px;
  font-size: 0.75rem;
}

.mock-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}

.mock-divider {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 12px 0;
}

.mock-form-row {
  margin-bottom: 12px;
}

.mock-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mock-field-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.mock-table-mini {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 12px 0;
  font-size: 0.75rem;
}

.mock-table-mini-head,
.mock-table-mini-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr;
  gap: 8px;
  padding: 8px 10px;
}

.mock-table-mini-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px 10px;
}

.mock-table-mini-head {
  background: var(--bg-subtle);
  font-weight: 600;
  color: var(--muted);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.mock-table-mini-row {
  border-top: 1px solid var(--border);
}

.mock-table-mini-row span:last-child,
.mock-table-mini-foot span:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.mock-table-mini-foot {
  border-top: 2px solid var(--border);
  font-weight: 600;
  grid-template-columns: 1fr auto;
}

.mock-table-mini.cols-2 .mock-table-mini-head,
.mock-table-mini.cols-2 .mock-table-mini-row {
  grid-template-columns: 1fr auto;
}

.mock-row-check {
  background: var(--primary-light);
}

.income { color: var(--success); }
.expense { color: #7a1a2b; }

.mock-btn-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.mock-import-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

.mock-hint {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 8px;
}

.mock-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.mock-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.mock-badge-warn {
  background: #faf3eb;
  color: var(--accent);
}

.mock-subhead {
  font-size: 0.75rem;
  color: var(--muted);
  margin: -8px 0 16px;
}

.mock-report-section {
  margin-bottom: 14px;
}

.mock-report-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.mock-report-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 4px 0;
}

.mock-report-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.9rem;
  padding-top: 12px;
  border-top: 2px solid var(--border);
  margin-top: 8px;
}

.mock-settings-group {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mock-settings-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mock-settings-title {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.mock-settings-desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.tour-summary {
  padding-top: 72px;
  padding-bottom: 72px;
}

.tour-feature-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tour-matrix-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}

.tour-matrix-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.tour-matrix-item span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .tour-feature-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .tour-feature-matrix {
    grid-template-columns: 1fr;
  }
}

/* Mobile nav */
@media (max-width: 900px) {
  .hero-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pillars,
  .feature-grid,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .app-preview {
    order: -1;
  }

  .nav-links,
  .nav-cta .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }

  .nav.is-open .nav-cta {
    position: absolute;
    top: calc(100% + 180px);
    left: 24px;
    right: 24px;
  }

  .nav {
    position: relative;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .app-body {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .tour-step-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tour-step-reverse .tour-step-content,
  .tour-step-reverse .tour-mock {
    order: unset;
  }

  .tour-jump {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
}
