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

    :root {
      --ink:     #0d0d12;
      --paper:   #f5f2eb;
      --cream:   #ede9df;
      --accent:  #2d5a3d;
      --gold:    #c9a84c;
      --muted:   #6b6b6b;
      --white:   #ffffff;
      --serif:   'Instrument Serif', Georgia, serif;
      --sans:    'DM Sans', sans-serif;
      --radius:  12px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      font-weight: 400;
      overflow-x: hidden;
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999;
      opacity: 0.4;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.25rem 3rem;
      background: rgba(245,242,235,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }

    .nav-logo-mark {
      width: 36px; height: 36px;
      background: var(--ink);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      color: var(--paper);
      font-family: var(--serif);
      font-size: 1.1rem;
      font-style: italic;
    }

    .nav-logo-text {
      font-family: var(--serif);
      font-size: 1.2rem;
      color: var(--ink);
      letter-spacing: -0.01em;
    }

    .nav-cta {
      display: flex; align-items: center; gap: 1rem;
    }

    .nav-link {
      font-size: 0.875rem; font-weight: 500;
      color: var(--muted); text-decoration: none;
      transition: color 0.2s;
    }

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

    .btn {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 0.6rem 1.4rem;
      border-radius: 100px;
      font-family: var(--sans);
      font-size: 0.875rem; font-weight: 600;
      text-decoration: none;
      transition: all 0.25s;
      cursor: pointer; border: none;
    }

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

    .btn-primary:hover {
      background: var(--accent);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(45,90,61,0.25);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink);
      border: 1.5px solid rgba(0,0,0,0.2);
    }

    .btn-outline:hover {
      border-color: var(--ink);
      background: var(--ink);
      color: var(--paper);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 8rem 3rem 5rem;
      position: relative;
      overflow: hidden;
    }

    /* Decorative large circle */
    .hero::after {
      content: '';
      position: absolute;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(45,90,61,0.08) 0%, transparent 70%);
      right: -200px; top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .hero-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 2rem;
      opacity: 0; animation: fadeUp 0.6s 0.1s forwards;
    }

    .hero-label::before {
      content: '';
      width: 24px; height: 1.5px;
      background: var(--accent);
    }

    .hero-headline {
      font-family: var(--serif);
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: 1.0;
      letter-spacing: -0.02em;
      max-width: 700px;
      color: var(--ink);
      opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
    }

    .hero-headline em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-sub {
      font-size: 1.1rem; font-weight: 300; line-height: 1.7;
      color: var(--muted);
      max-width: 500px;
      margin-top: 1.75rem;
      opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
    }

    .hero-actions {
      display: flex; align-items: center; gap: 1rem;
      margin-top: 2.5rem;
      opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
    }

    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 3rem;
      display: flex; align-items: center; gap: 10px;
      font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--muted);
      opacity: 0; animation: fadeUp 0.7s 0.8s forwards;
    }

    .scroll-line {
      width: 40px; height: 1px; background: var(--muted);
      position: relative; overflow: hidden;
    }

    .scroll-line::after {
      content: '';
      position: absolute; top: 0; left: -100%;
      width: 100%; height: 100%;
      background: var(--accent);
      animation: scanline 2s 1.5s infinite;
    }

    /* ── STATS STRIP ── */
    .stats {
      background: var(--ink);
      padding: 2.5rem 3rem;
      display: flex; align-items: center; justify-content: space-around;
      gap: 2rem; flex-wrap: wrap;
    }

    .stat {
      text-align: center;
      opacity: 0;
      animation: fadeUp 0.6s forwards;
    }

    .stat:nth-child(1) { animation-delay: 0.1s; }
    .stat:nth-child(2) { animation-delay: 0.2s; }
    .stat:nth-child(3) { animation-delay: 0.3s; }
    .stat:nth-child(4) { animation-delay: 0.4s; }

    .stat-num {
      font-family: var(--serif);
      font-size: 2.5rem; font-style: italic;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.78rem; font-weight: 500;
      color: rgba(245,242,235,0.5);
      text-transform: uppercase; letter-spacing: 0.1em;
      margin-top: 4px;
    }

    /* ── FEATURES ── */
    .features {
      padding: 7rem 3rem;
      max-width: 1100px; margin: 0 auto;
    }

    .section-label {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.1; letter-spacing: -0.02em;
      color: var(--ink);
      max-width: 500px;
      margin-bottom: 4rem;
    }

    .section-title em { font-style: italic; color: var(--accent); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5px;
      background: rgba(0,0,0,0.08);
      border: 1.5px solid rgba(0,0,0,0.08);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .feature {
      background: var(--paper);
      padding: 2.5rem;
      transition: background 0.25s;
      position: relative;
      overflow: hidden;
    }

    .feature::before {
      content: '';
      position: absolute; inset: 0;
      background: var(--accent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .feature:hover::before { opacity: 0.04; }

    .feature-icon {
      width: 48px; height: 48px;
      background: var(--cream);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 1.25rem;
      border: 1px solid rgba(0,0,0,0.07);
      position: relative; z-index: 1;
    }

    .feature-title {
      font-family: var(--serif);
      font-size: 1.2rem; font-style: italic;
      color: var(--ink); margin-bottom: 0.5rem;
      position: relative; z-index: 1;
    }

    .feature-desc {
      font-size: 0.9rem; line-height: 1.65;
      color: var(--muted);
      position: relative; z-index: 1;
    }

    /* ── HOW IT WORKS ── */
    .how {
      background: var(--ink);
      padding: 7rem 3rem;
      color: var(--paper);
    }

    .how-inner {
      max-width: 900px; margin: 0 auto;
    }

    .how .section-label { color: var(--gold); }

    .how .section-title { color: var(--paper); max-width: 600px; }

    .how .section-title em { color: var(--gold); }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
      counter-reset: steps;
    }

    .step {
      counter-increment: steps;
      position: relative;
      padding-top: 1rem;
    }

    .step::before {
      content: "0" counter(steps);
      font-family: var(--serif);
      font-size: 3.5rem; font-style: italic;
      color: rgba(201,168,76,0.25);
      line-height: 1;
      display: block;
      margin-bottom: 0.75rem;
    }

    .step-title {
      font-family: var(--serif);
      font-size: 1.1rem; font-style: italic;
      color: var(--paper);
      margin-bottom: 0.5rem;
    }

    .step-desc {
      font-size: 0.875rem; line-height: 1.65;
      color: rgba(245,242,235,0.5);
    }

    /* ── HIGHLIGHT BAND ── */
    .highlight {
      padding: 7rem 3rem;
      max-width: 1100px; margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .highlight-visual {
      background: var(--ink);
      border-radius: 20px;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }

    .highlight-visual::before {
      content: '';
      position: absolute; top: -40px; right: -40px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    }

    .mock-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 1.25rem 1.5rem;
      margin-bottom: 1rem;
    }

    .mock-card:last-child { margin-bottom: 0; }

    .mock-label {
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(245,242,235,0.35);
      margin-bottom: 4px;
    }

    .mock-value {
      font-family: var(--serif);
      font-size: 1.8rem; font-style: italic;
      color: var(--paper);
    }

    .mock-value.green { color: #6fcf97; }
    .mock-value.red   { color: #eb5757; }

    .mock-bar {
      height: 5px; background: rgba(255,255,255,0.08);
      border-radius: 3px; margin-top: 0.75rem; overflow: hidden;
    }

    .mock-bar-fill {
      height: 100%; border-radius: 3px;
      background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.4));
    }

    .highlight-content .section-title { margin-bottom: 1.25rem; }

    .highlight-list {
      list-style: none;
      display: flex; flex-direction: column; gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .highlight-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.9rem; line-height: 1.5; color: var(--muted);
    }

    .highlight-list li::before {
      content: '→';
      color: var(--accent); font-weight: 600;
      flex-shrink: 0; margin-top: 1px;
    }

    /* ── CTA FINAL ── */
    .cta-section {
      background: var(--accent);
      padding: 7rem 3rem;
      text-align: center;
      position: relative; overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/svg%3E");
    }

    .cta-inner { position: relative; z-index: 1; }

    .cta-label {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: rgba(255,255,255,0.6);
      margin-bottom: 1.5rem;
    }

    .cta-title {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.05; letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 2rem;
    }

    .cta-title em {
      font-style: italic;
      color: var(--gold);
    }

    .cta-actions {
      display: flex; align-items: center; justify-content: center; gap: 1rem;
      flex-wrap: wrap;
    }

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

    .btn-white:hover {
      background: var(--paper);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    }

    .btn-ghost {
      background: transparent;
      color: rgba(255,255,255,0.8);
      border: 1.5px solid rgba(255,255,255,0.3);
    }

    .btn-ghost:hover {
      background: rgba(255,255,255,0.1);
      color: white;
      border-color: white;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      padding: 2.5rem 3rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }

    .footer-logo {
      font-family: var(--serif);
      font-size: 1rem; font-style: italic;
      color: rgba(245,242,235,0.4);
    }

    .footer-note {
      font-size: 0.78rem; color: rgba(245,242,235,0.25);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes scanline {
      0%   { left: -100%; }
      50%  { left: 100%; }
      100% { left: 100%; }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .hero { padding: 7rem 1.5rem 4rem; }
      .hero::after { display: none; }
      .stats { padding: 2rem 1.5rem; }
      .features, .how-inner { padding: 5rem 1.5rem; }
      .features { padding: 5rem 1.5rem; }
      .how { padding: 5rem 1.5rem; }
      .highlight {
        grid-template-columns: 1fr;
        padding: 5rem 1.5rem;
        gap: 3rem;
      }
      .cta-section { padding: 5rem 1.5rem; }
      footer { padding: 2rem 1.5rem; }
      .nav-link { display: none; }
    }
/* ── PRICING ── */
.pricing {
  padding: 7rem 3rem;
  background: var(--cream);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.plan {
  background: var(--paper);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.plan-pro {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.plan-pro .plan-header {
  border-bottom-color: rgba(255,255,255,0.08);
}

.plan-name {
  font-family: var(--serif);
  font-size: 1rem; font-style: italic;
  color: var(--muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.plan-pro .plan-name { color: rgba(245,242,235,0.45); }

.plan-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 0.75rem;
}

.plan-amount {
  font-family: var(--serif);
  font-size: 3.5rem; font-style: italic;
  line-height: 1; letter-spacing: -0.03em;
  color: var(--ink);
}

.plan-pro .plan-amount { color: var(--gold); }

.plan-period {
  font-size: 0.82rem; color: var(--muted);
  font-weight: 400;
}

.plan-pro .plan-period { color: rgba(245,242,235,0.4); }

.plan-desc {
  font-size: 0.875rem; line-height: 1.6;
  color: var(--muted);
}

.plan-pro .plan-desc { color: rgba(245,242,235,0.5); }

.plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem;
  color: var(--ink);
}

.plan-pro .plan-features li { color: rgba(245,242,235,0.85); }

.plan-features li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}

.plan-features li.yes::before {
  content: '✓';
  background: rgba(45,90,61,0.12);
  color: var(--accent);
}

.plan-pro .plan-features li.yes::before {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}

.plan-features li.no {
  opacity: 0.3;
}

.plan-features li.no::before {
  content: '×';
  background: rgba(0,0,0,0.06);
  color: var(--muted);
}

.btn-plan-free {
  width: 100%;
  display: block; text-align: center;
  padding: 0.8rem;
  border-radius: 100px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.15);
  color: var(--ink);
  transition: all 0.25s;
}

.btn-plan-free:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.btn-plan-pro {
  width: 100%;
  display: block; text-align: center;
  padding: 0.8rem;
  border-radius: 100px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none;
  background: var(--gold);
  color: var(--ink);
  border: none;
  transition: all 0.25s;
}

.btn-plan-pro:hover {
  background: #d4b05a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2rem;
  font-style: italic;
}

/* Add pricing to nav */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-pro {
    order: -1;
  }
}

/* ── PRICING 3 TIERS ── */
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

/* Reduce padding slightly so 3 cols fit comfortably */
.pricing-grid-3 .plan {
  padding: 1.75rem;
}

.plan-individual {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.plan-individual .plan-name   { color: rgba(245,242,235,0.45); }
.plan-individual .plan-amount { color: var(--paper); }
.plan-individual .plan-period { color: rgba(245,242,235,0.4); }
.plan-individual .plan-desc   { color: rgba(245,242,235,0.5); }
.plan-individual .plan-header { border-bottom-color: rgba(255,255,255,0.08); }

.plan-individual .plan-features li       { color: rgba(245,242,235,0.85); }
.plan-individual .plan-features li.no    { opacity: 0.25; }

.plan-individual .plan-features li.yes::before {
  background: rgba(255,255,255,0.1);
  color: rgba(245,242,235,0.7);
}

.plan-individual .plan-features li.no::before {
  background: rgba(255,255,255,0.05);
  color: rgba(245,242,235,0.4);
}

.btn-plan-individual {
  width: 100%;
  display: block; text-align: center;
  padding: 0.8rem;
  border-radius: 100px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--paper);
  transition: all 0.25s;
}

.btn-plan-individual:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
  .pricing-grid-3 {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-grid-3 .plan-pro { order: -1; }
}



/* ── HERO VISUAL ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: center;
  column-gap: 4rem;
}

.hero-label   { grid-column: 1; grid-row: 1; }
.hero-headline{ grid-column: 1; grid-row: 2; }
.hero-sub     { grid-column: 1; grid-row: 3; }
.hero-actions { grid-column: 1; grid-row: 4; }
.hero-scroll  { grid-column: 1 / -1; grid-row: 5; }
.hero::after  { display: none; }

.hero-visual {
  grid-column: 2;
  grid-row: 1 / 5;
  position: relative;
  height: 420px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

/* Bar chart */
.hv-chart {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 200px;
  width: 240px;
}

.hv-bar {
  flex: 1;
  height: var(--h);
  background: var(--c);
  border-radius: 6px 6px 0 0;
  opacity: 0.85;
  transform-origin: bottom;
  transform: scaleY(0);
  animation: barGrow 0.6s calc(0.8s + var(--d)) cubic-bezier(.34,1.4,.64,1) forwards;
}

@keyframes barGrow {
  to { transform: scaleY(1); }
}

/* Floating cards */
.hv-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--paper);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  white-space: nowrap;
  opacity: 0;
  animation: cardPop 0.5s forwards cubic-bezier(.34,1.4,.64,1);
}

.hv-card-1 { top: 10px;  left: 10px;  animation-delay: 1.2s; }
.hv-card-2 { top: 80px;  left: 10px;  animation-delay: 1.4s; }
.hv-card-3 { top: 155px; left: 10px;  animation-delay: 1.6s; }

@keyframes cardPop {
  from { opacity: 0; transform: scale(0.85) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hv-card-dot {
  width: 10px; height: 10px;
  border-radius: 50%; flex-shrink: 0;
}

.hv-card-text {
  display: flex; flex-direction: column;
}

.hv-card-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}

.hv-card-val {
  font-family: var(--serif);
  font-size: 1rem; font-style: italic;
  color: var(--ink); line-height: 1.2;
}

/* Donut */
.hv-donut {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 100px; height: 100px;
  opacity: 0;
  animation: fadeUp 0.6s 1.8s forwards;
}

.hv-donut svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}

.hv-donut-arc {
  stroke-dasharray: 0 301;
  animation: arcDraw 0.8s 2s ease-out forwards;
}

.hv-arc-1 { animation-delay: 2s; }
.hv-arc-2 { animation-delay: 2.15s; }
.hv-arc-3 { animation-delay: 2.3s; }

@keyframes arcDraw {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hv-donut-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  font-size: 0.85rem; color: var(--muted);
}

/* Responsive — ocultar en móvil */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }
  .hero-label, .hero-headline, .hero-sub, .hero-actions { grid-column: 1; }
}
