/* ─── RESET & BASE ──────────────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }


    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Grain texture */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.03;
      z-index: 9999;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    }

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

    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .fade-up,
      .hero-eyebrow, .hero-headline, .hero-sub, .hero-status, .hero-icon-wrap {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

    /* ─── NAV ───────────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      background: rgba(9,9,11,0.7);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(63,63,70,0.4);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }
    .nav-brand img {
      width: 28px;
      height: 28px;
      border-radius: 7px;
    }
    .nav-brand-name {
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 400;
      color: var(--text);
      letter-spacing: -0.01em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .nav-link {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    .nav-link:hover { color: var(--text); }

    /* ─── HERO SECTION ──────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 7rem 1.5rem 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(var(--accent-rgb), 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(var(--accent-rgb), 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 80% 20%, rgba(var(--accent-soft-rgb, var(--accent-light-rgb, var(--accent-rgb))), 0.05) 0%, transparent 55%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
    }

    .hero-icon-wrap {
      margin-bottom: 1.75rem;
      opacity: 0;
      animation: fadeUp 0.6s ease 0.15s forwards;
    }
    .hero-icon-wrap img {
      width: 84px;
      height: 84px;
      border-radius: 18px;
      box-shadow: 0 8px 32px rgba(var(--accent-light-rgb), 0.22), 0 2px 8px rgba(0,0,0,0.45);
    }

    .hero-eyebrow {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent-soft, var(--accent-light));
      margin-bottom: 1.25rem;
      opacity: 0;
      animation: fadeUp 0.6s ease 0.3s forwards;
    }

    .hero-headline {
      font-family: var(--serif);
      font-size: clamp(2.6rem, 6.5vw, 5rem);
      font-weight: 200;
      line-height: 1.08;
      letter-spacing: -0.025em;
      color: var(--text);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.7s ease 0.45s forwards;
    }

    .hero-headline em {
      font-style: italic;
      background: linear-gradient(135deg, var(--accent-soft, var(--accent-light)) 0%, var(--accent-light) 50%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.15rem);
      font-weight: 300;
      line-height: 1.75;
      color: var(--text-secondary);
      max-width: 540px;
      margin: 0 auto 2rem;
      opacity: 0;
      animation: fadeUp 0.7s ease 0.6s forwards;
    }

    .hero-status {
      font-size: 0.78rem;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      opacity: 0;
      animation: fadeUp 0.6s ease 0.75s forwards;
    }
    .hero-status span {
      display: inline-block;
      padding: 0 0.5rem;
      color: var(--border);
    }

    /* ─── SECTION SHARED ────────────────────────────────────────── */
    .section-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 1.5rem 6rem;
    }

    .section-eyebrow {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent-light);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 1rem;
    }

    .section-sub {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--text-secondary);
      max-width: 560px;
      margin-bottom: 3.5rem;
    }

    /* ─── OVERVIEW SECTION ──────────────────────────────────────── */
    .overview-section .section-inner {
      padding-top: 5rem;
    }

    .overview-body {
      max-width: 680px;
    }

    .overview-body p {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }

    .overview-body p:last-child {
      margin-bottom: 0;
    }

    /* ─── FEATURES SECTION ──────────────────────────────────────── */
    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .features-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (min-width: 1024px) {
      .features-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(var(--accent-rgb), 0.35);
      box-shadow: 0 12px 36px rgba(0,0,0,0.3), 0 0 0 1px rgba(var(--accent-rgb), 0.10);
    }

    .feature-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 11px;
      background: rgba(var(--accent-rgb), 0.12);
      border: 1px solid rgba(var(--accent-rgb), 0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.1rem;
    }
    .feature-icon-wrap svg {
      width: 20px;
      height: 20px;
      color: var(--accent-soft, var(--accent-light));
      stroke: var(--accent-soft, var(--accent-light));
    }

    .feature-name {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
    }

    .feature-desc {
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.65;
      color: var(--text-secondary);
    }

    /* Real app icon shown inside a card (e.g. a card representing one app
       in a group of several), as opposed to the decorative SVG glyph in
       .feature-icon-wrap. Generic: any card that needs a real product icon. */
    .card-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: block;
      margin-bottom: 1.1rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    }

    /* Small inline link inside a card, e.g. a per-item store link. Generic:
       any card that needs a single lightweight call-to-action link. */
    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 1rem;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--accent-soft, var(--accent-light));
      text-decoration: none;
      border-bottom: 1px solid rgba(var(--accent-soft-rgb, var(--accent-light-rgb, var(--accent-rgb))), 0.3);
      transition: color 0.2s, border-color 0.2s;
    }
    .card-link:hover {
      color: var(--accent-light);
      border-color: rgba(var(--accent-soft-rgb, var(--accent-light-rgb, var(--accent-rgb))), 0.7);
    }

    /* ─── TECHNICAL SECTION ─────────────────────────────────────── */
    .technical-section { background: var(--surface); }
    .technical-section .section-inner { padding-top: 5rem; }

    .technical-body {
      max-width: 680px;
    }

    .technical-body p {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }

    .technical-body p:last-child {
      margin-bottom: 0;
    }

    .technical-body code {
      font-family: 'SF Mono', 'Fira Code', monospace;
      font-size: 0.82rem;
      background: var(--elevated);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 0.1em 0.4em;
      color: var(--accent-soft, var(--accent-light));
    }

    /* ─── PRIVACY BAND ──────────────────────────────────────────── */
    .privacy-section {
      background:
        linear-gradient(135deg, rgba(var(--accent-rgb), 0.07) 0%, rgba(var(--accent-rgb), 0.04) 50%, rgba(var(--accent-rgb), 0.06) 100%),
        var(--bg);
      border-top: 1px solid rgba(var(--accent-rgb), 0.2);
      border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
    }
    .privacy-section .section-inner { padding-top: 5rem; }

    .privacy-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 680px;
      margin-top: 2.5rem;
    }

    .privacy-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .privacy-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(var(--accent-rgb), 0.18);
      border: 1px solid rgba(var(--accent-rgb), 0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }
    .privacy-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--accent-soft, var(--accent-light));
    }

    .privacy-text {
      flex: 1;
    }

    .privacy-label {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 0.2rem;
      letter-spacing: -0.005em;
    }

    .privacy-detail {
      font-size: 0.82rem;
      font-weight: 300;
      line-height: 1.6;
      color: var(--text-muted);
    }

    /* ─── STATUS SECTION ────────────────────────────────────────── */
    .status-section { background: var(--surface); }
    .status-section .section-inner {
      padding-top: 5rem;
      text-align: center;
    }
    .status-section .section-title {
      max-width: 560px;
      margin: 0 auto 1rem;
    }

    .status-line {
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--text-secondary);
      max-width: 480px;
      margin: 0 auto 2rem;
    }

    .status-line a {
      color: var(--accent-soft, var(--accent-light));
      text-decoration: none;
      border-bottom: 1px solid rgba(var(--accent-soft-rgb, var(--accent-light-rgb, var(--accent-rgb))), 0.3);
      transition: border-color 0.2s, color 0.2s;
    }
    .status-line a:hover {
      color: var(--accent-light);
      border-color: rgba(var(--accent-soft-rgb, var(--accent-light-rgb, var(--accent-rgb))), 0.7);
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
      letter-spacing: 0.02em;
    }
    .back-link:hover { color: var(--text); }

    /* ─── HERO CTA + PLAY STORE BUTTON ──────────────────────────── */
    .hero-cta-wrap {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.9rem;
      opacity: 0;
      animation: fadeUp 0.7s ease 0.9s forwards;
    }
    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: #FAFAFA;
      color: var(--bg);
      font-family: var(--sans);
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      padding: 0.85rem 1.4rem;
      border-radius: 100px;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.25s ease;
      box-shadow: 0 6px 24px rgba(var(--accent-light-rgb), 0.22);
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 36px rgba(var(--accent-light-rgb), 0.36),
                  0 0 0 1px rgba(var(--accent-light-rgb), 0.25);
    }
    .btn-primary svg { flex-shrink: 0; }
    .hero-note {
      font-size: 0.78rem;
      color: var(--text-muted);
      letter-spacing: 0.02em;
      font-weight: 300;
    }

    /* ─── SCREENSHOTS SECTION ───────────────────────────────────── */
    .screenshots-section .section-inner { padding-top: 5rem; }
    .screenshots-rail {
      display: flex;
      gap: 1.25rem;
      overflow-x: auto;
      overflow-y: visible;
      scroll-snap-type: x mandatory;
      scroll-padding-left: 1.5rem;
      padding: 1.25rem 1.5rem 2.5rem;
      margin: 0 -1.5rem;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: var(--border) transparent;
    }
    .screenshots-rail::-webkit-scrollbar { height: 6px; }
    .screenshots-rail::-webkit-scrollbar-track { background: transparent; }
    .screenshots-rail::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 3px;
    }
    .ss-card {
      flex: 0 0 auto;
      width: 248px;
      scroll-snap-align: center;
      border-radius: 32px;
      overflow: hidden;
      background: var(--surface);
      box-shadow: 0 16px 56px rgba(0,0,0,0.55),
                  0 0 0 1px rgba(var(--accent-light-rgb), 0.10),
                  0 0 40px rgba(var(--accent-light-rgb), 0.05);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .ss-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 80px rgba(0,0,0,0.65),
                  0 0 0 1px rgba(var(--accent-light-rgb), 0.24),
                  0 0 60px rgba(var(--accent-light-rgb), 0.12);
    }
    .ss-card img {
      display: block;
      width: 100%;
      height: auto;
    }
    @media (min-width: 768px) {
      .ss-card { width: 288px; }
    }
    .screenshots-hint {
      font-size: 0.72rem;
      color: var(--text-muted);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
      margin-top: 0.25rem;
    }

    /* ─── TRUST BADGES ──────────────────────────────────────────── */
    .trust-badges {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 3.5rem;
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 0.45rem 1rem;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--text-secondary);
      letter-spacing: 0.02em;
    }

    .trust-badge svg {
      width: 14px;
      height: 14px;
      stroke: var(--accent-light);
      fill: none;
      flex-shrink: 0;
    }

    /* ─── FOOTER ────────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 2.5rem 1.5rem;
    }

    .footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
    }

    .footer-brand {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--text);
      letter-spacing: -0.01em;
    }

    .footer-tagline {
      font-size: 0.78rem;
      color: var(--text-muted);
      font-weight: 300;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.25rem 1.5rem;
    }

    .footer-links a {
      font-size: 0.82rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text); }

    .footer-copy {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    /* ─── DIVIDER ───────────────────────────────────────────────── */
    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border), transparent);
      max-width: 1080px;
      margin: 0 auto;
    }

    /* ---- macOS app screenshots (Pruune-style landscape grid) ---- */
/* ─── SCREENSHOTS SECTION ──────────────────────────────────── */
    .shots-section .section-inner { padding-top: 5rem; }
.shots-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
.shot {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: 0 12px 36px rgba(0,0,0,0.35);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
.shot:hover {
      transform: translateY(-4px);
      border-color: var(--accent);
      box-shadow: 0 18px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(var(--accent-rgb), 0.10);
    }
.shot img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ---- family grid (sibling apps in the same family) ---- */
    .family-section .section-inner { padding-top: 5rem; }

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

    .family-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.9rem;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
      text-decoration: none;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .family-card:hover {
      transform: translateY(-4px);
      border-color: rgba(var(--accent-rgb), 0.35);
      box-shadow: 0 12px 36px rgba(0,0,0,0.3), 0 0 0 1px rgba(var(--accent-rgb), 0.10);
    }

    .family-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    }

    .family-name {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--text);
      letter-spacing: -0.01em;
    }

    .family-desc {
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.65;
      color: var(--text-secondary);
    }

    .family-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--accent-soft, var(--accent-light));
      margin-top: auto;
    }
    .family-card:hover .family-link { color: var(--accent-light); }
    .family-link svg { width: 12px; height: 12px; flex-shrink: 0; }

    /* ---- small status dot ---- */
.hero-status .dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--accent); flex-shrink: 0;
      box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.8);
    }

@media (min-width: 760px) {
      .shots-grid { grid-template-columns: 1fr 1fr; }
    }

/* ─── PLATFORM AWARE STORE CTA (opt-in, 2026-07-27) ──────────────
   Default with no JS, unknown platform or desktop: BOTH buttons render,
   exactly as before. A page opts in by adding .cta-buttons--platform to its
   .cta-buttons wrapper and data-store to each button. */
.cta-alt {
      display: none;
      margin-top: 0.85rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      text-decoration: none;
      border-bottom: 1px solid rgba(var(--accent-rgb), 0.35);
      padding-bottom: 1px;
      transition: color 0.2s, border-color 0.2s;
    }
.cta-alt:hover { color: var(--text); border-color: rgba(var(--accent-rgb), 0.8); }

html[data-platform="android"] .cta-buttons--platform .btn-primary[data-store="app_store"],
html[data-platform="ios"] .cta-buttons--platform .btn-primary[data-store="google_play"] {
      display: none;
    }
html[data-platform="android"] .cta-alt[data-store="app_store"],
html[data-platform="ios"] .cta-alt[data-store="google_play"] {
      display: inline-block;
    }

    /* ─── NAV ON NARROW PHONES (2026-07-29) ──────────────────────────
       A brand, three text links and a language switcher do not fit on one line at
       412px: the brand collided with the first link and long labels wrapped to two
       or three lines. Every one of those links also lives in the page footer, so on
       a phone the switcher keeps its place and the text links step aside. Scoped with
       :has() so pages without a switcher are untouched. */
    @media (max-width: 600px) {
      .nav { padding: 1rem 1.15rem; }
      .nav-links { gap: 1rem; }
      .nav:has(.lang-switch) .nav-link { display: none; }
      .nav:has(.lang-switch) .nav-links { gap: 0; }
    }

    /* --- HERO STAT STRIP (opt-in, 2026-07-29) -----------------------
       Puts the product's real scale above the fold. Only pages that add
       .hero-stats render it. */
    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.6rem 1.9rem;
      margin: 1.6rem 0 1.15rem;
    }
    .hero-stat { text-align: center; }
    .hero-stat-num {
      display: block;
      font-family: var(--serif);
      font-size: 1.6rem;
      line-height: 1.1;
      color: var(--accent);
      letter-spacing: -0.01em;
    }
    .hero-stat-label {
      display: block;
      margin-top: 0.2rem;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    @media (max-width: 420px) {
      .hero-stats { gap: 0.5rem 1.2rem; }
      .hero-stat-num { font-size: 1.35rem; }
      .hero-stat-label { font-size: 0.62rem; letter-spacing: 0.07em; }
    }
