:root {
    --bg: #F8F5EE;
    --bg-alt: #EFEAE0;
    --ink: #0B1628;
    --ink-2: #2A3549;
    --ink-muted: #5F6A7D;
    --line: #0B16281A;
    --line-strong: #0B162833;
    --accent: #E85D2F;
    --accent-dark: #C14618;
    --accent-soft: #FBEADF;
    --sage: #6B8E4E;
    --sage-soft: #E8EFDE;
    --sans: 'DM Sans', -apple-system, sans-serif;
    --serif: 'Fraunces', Georgia, serif;
    --mono: 'JetBrains Mono', monospace;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }

  /* ========== ANNOUNCEMENT BAR ========== */
  .topbar {
    background: var(--ink);
    color: #F8F5EE;
    font-size: 13px;
    padding: 10px 24px;
    text-align: center;
    letter-spacing: 0.01em;
  }
  .topbar strong { color: #FFB38A; font-weight: 500; }
  .topbar .dot { display: inline-block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin: 0 10px; vertical-align: middle; animation: pulse 2s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

  /* ========== NAV (focada: logo + CTAs) ========== */
  nav.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(248, 245, 238, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
  }
  .logo {
    width: 200px;
  }
  .logo span { color: var(--accent); font-style: italic; }
  .nav-ctas { display: flex; gap: 10px; align-items: center; }
  .nav-cta-ghost {
    color: var(--ink-2);
    font-size: 14px; font-weight: 500;
    padding: 9px 16px;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-cta-ghost:hover { color: var(--accent); background: var(--accent-soft); }
  .nav-cta {
    background: var(--accent); color: #FFF;
    padding: 10px 18px; border-radius: 100px;
    font-size: 14px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: 0 4px 14px rgba(232,93,47,0.22);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232,93,47,0.32);
  }
  @media (max-width: 560px) {
    .nav-cta-ghost { display: none; }
    .nav-cta { padding: 9px 14px; font-size: 13px; }
    .logo { font-size: 18px; }
  }

  /* ========== HERO ========== */
  .hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
  .hero::before {
    content: ''; position: absolute;
    top: -200px; right: -200px; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,93,47,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.15fr 1fr;
    gap: 64px; align-items: center;
  }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent-dark);
    padding: 8px 14px; border-radius: 100px;
    background: var(--accent-soft);
    margin-bottom: 24px;
  }
  .eyebrow::before {
    content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  }

  h1.hero-title {
    font-family: var(--serif);
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
  }
  h1.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  .hero-sub {
    font-size: 19px; line-height: 1.55;
    color: var(--ink-2);
    max-width: 560px; margin-bottom: 36px;
  }
  .hero-sub strong { color: var(--ink); font-weight: 500; }

  .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 26px;
    border-radius: 100px;
    font-size: 15px; font-weight: 500;
    border: none; cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
  }
  .btn-primary {
    background: var(--accent); color: #FFF;
    box-shadow: 0 4px 20px rgba(232,93,47,0.25);
  }
  .btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232,93,47,0.35);
  }
  .btn-secondary {
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--line-strong);
  }
  .btn-secondary:hover {
    background: var(--ink); color: var(--bg); border-color: var(--ink);
  }
  .btn-arrow { font-size: 16px; transition: transform 0.2s; }
  .btn:hover .btn-arrow { transform: translateX(3px); }

  .trust-row {
    display: flex; align-items: center; gap: 18px;
    font-size: 13px; color: var(--ink-muted);
    flex-wrap: wrap;
  }
  .stars { color: var(--accent); letter-spacing: 1px; }
  .trust-sep { color: var(--line-strong); }

  /* Hero visual mockup */
  .hero-visual {
    position: relative;
    padding: 12px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, #E5DECE 100%);
    border-radius: 16px;
    border: 1px solid var(--line);
  }
  .hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 20px 60px -20px rgba(11,22,40,0.25);
  }
  .feature-visual {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px -12px rgba(11,22,40,0.1);
    background: #FFF;
    border: 1px solid var(--line);
  }
  .feature-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  
  
  
  
  
  
  
  
  
  
  

  
  
  
  
  
  
  

  /* Floating badge */
  .float-badge {
    position: absolute; bottom: -14px; left: -14px;
    background: var(--ink); color: var(--bg);
    padding: 12px 18px; border-radius: 100px;
    font-size: 12px; font-weight: 500;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 10px 30px rgba(11,22,40,0.2);
  }
  .float-badge .pulse { width: 8px; height: 8px; background: #7CC96A; border-radius: 50%; animation: pulse 2s infinite; }

  /* ========== LOGO STRIP ========== */
  .logos {
    padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: var(--bg-alt);
  }
  .logos-label {
    text-align: center; font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--ink-muted); margin-bottom: 24px;
    font-family: var(--mono);
  }
  .logos-grid {
    display: flex; justify-content: space-around; align-items: center;
    flex-wrap: wrap; gap: 30px; opacity: 0.65;
  }
  .logo {
    font-family: var(--serif); font-size: 18px; font-weight: 500;
    letter-spacing: -0.01em; color: var(--ink);
    width: 150px;
  }


  /* ========== SECTION BASE ========== */
  section { padding: 100px 0; position: relative; }
  .section-label {
    display: inline-block;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 16px;
  }
  .section-label::before { content: '— '; }
  h2.section-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400; line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    max-width: 800px;
  }
  h2.section-title em { font-style: italic; color: var(--accent); font-weight: 300; }
  .section-lead {
    font-size: 18px; color: var(--ink-2);
    max-width: 640px; line-height: 1.55;
  }

  /* ========== PAIN SECTION ========== */
  .pain { background: #0B1628; color: var(--bg); }
  .pain h2.section-title { color: var(--bg); }
  .pain .section-label { color: #FFB38A; }
  .pain .section-lead { color: #B8C0CC; }
  .pain-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin-top: 56px;
  }
  @media (max-width: 860px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px) { .pain-grid { grid-template-columns: 1fr; } }

  .pain-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 28px 24px;
    border-radius: 14px;
    transition: all 0.3s;
  }
  .pain-card:hover {
    background: rgba(232,93,47,0.08);
    border-color: var(--accent);
    transform: translateY(-4px);
  }
  .pain-icon {
    width: 40px; height: 40px;
    background: rgba(232,93,47,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; color: var(--accent);
  }
  .pain-title { font-size: 17px; font-weight: 500; margin-bottom: 10px; color: var(--bg); }
  .pain-desc { font-size: 14px; color: #B8C0CC; line-height: 1.6; }

  .pain-quote {
    margin-top: 64px; padding: 32px;
    border-left: 3px solid var(--accent);
    background: rgba(232,93,47,0.05);
    max-width: 800px;
  }
  .pain-quote-text {
    font-family: var(--serif); font-style: italic;
    font-size: 24px; line-height: 1.35; color: var(--bg);
  }

  /* ========== SOLUTION / FEATURES ========== */
  .solution { background: var(--bg); }
  .feature-pillars {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 60px;
  }
  @media (max-width: 860px) { .feature-pillars { grid-template-columns: 1fr; } }
  .pillar {
    background: #FFF;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .pillar::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s;
  }
  .pillar:hover::before { transform: scaleX(1); }
  .pillar:hover { transform: translateY(-4px); border-color: var(--line-strong); }
  .pillar-num {
    font-family: var(--serif); font-size: 14px;
    color: var(--accent); font-style: italic;
    margin-bottom: 12px;
  }
  .pillar-title {
    font-family: var(--serif);
    font-size: 24px; font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.15;
  }
  .pillar-desc { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin-bottom: 18px; }
  .pillar-list { list-style: none; }
  .pillar-list li {
    font-size: 14px; color: var(--ink-2);
    padding: 6px 0 6px 22px;
    position: relative;
  }
  .pillar-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--sage); font-weight: 600;
  }

  /* ========== DEEP DIVE ========== */
  .deep-dive {
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .feature-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-block:last-child { border-bottom: none; }
  .feature-block.reverse { direction: rtl; }
  .feature-block.reverse > * { direction: ltr; }
  @media (max-width: 860px) {
    .feature-block, .feature-block.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  }

  .feature-content h3 {
    font-family: var(--serif);
    font-size: 36px; font-weight: 400;
    letter-spacing: -0.025em;
    margin-bottom: 16px; line-height: 1.1;
  }
  .feature-content p {
    font-size: 16px; color: var(--ink-2);
    margin-bottom: 20px; line-height: 1.65;
  }
  .feature-bullets { list-style: none; margin-bottom: 24px; }
  .feature-bullets li {
    padding: 10px 0 10px 28px; position: relative;
    border-top: 1px solid var(--line);
    font-size: 15px; color: var(--ink);
  }
  .feature-bullets li:first-child { border-top: none; }
  .feature-bullets li::before {
    content: '→'; position: absolute; left: 0; top: 10px;
    color: var(--accent); font-weight: 500;
  }
  .feature-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 500;
    color: var(--accent-dark);
    padding-bottom: 2px; border-bottom: 1px solid var(--accent);
    transition: gap 0.2s;
  }
  .feature-link:hover { gap: 10px; }

  /* Feature visuals */
  
  

  /* Approval chain */
  
  
  
  
  
  
  
  
  
  
  
  

  /* SLA meter */
  
  
  
  
  
  
  
  
  
  
  
  
  

  /* Dashboard bars */
  
  
  
  
  
  
  
  

  /* ========== STATS SECTION ========== */
  .stats-section { padding: 80px 0; text-align: center; }
  .big-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px; margin-top: 40px;
  }
  @media (max-width: 700px) { .big-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
  .big-stat { }
  .big-stat-num {
    font-family: var(--serif);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400; line-height: 1;
    letter-spacing: -0.03em;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .big-stat-num small { font-size: 0.5em; color: var(--ink); vertical-align: top; }
  .big-stat-label { font-size: 14px; color: var(--ink-2); line-height: 1.4; }

  /* ========== TESTIMONIALS ========== */
  .testimonials { background: var(--bg); }
  .test-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; margin-top: 48px;
  }
  @media (max-width: 760px) { .test-grid { grid-template-columns: 1fr; } }
  .test-card {
    background: #FFF;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px;
    display: flex; flex-direction: column; gap: 20px;
  }
  .test-card.featured {
    background: var(--ink); color: var(--bg);
    border-color: var(--ink);
  }
  .test-stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; }
  .test-quote {
    font-family: var(--serif);
    font-size: 20px; font-weight: 400;
    line-height: 1.4; letter-spacing: -0.01em;
    flex: 1;
  }
  .test-card.featured .test-quote { color: var(--bg); }
  .test-author { display: flex; align-items: center; gap: 12px; }
  .test-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent); color: #FFF;
    display: flex; align-items: center; justify-content: center;
    font-weight: 500; font-size: 16px;
    font-family: var(--serif);
  }
  .test-card.featured .test-avatar { background: var(--accent); }
  .test-name { font-size: 14px; font-weight: 500; }
  .test-role { font-size: 12px; color: var(--ink-muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.05em; }
  .test-card.featured .test-role { color: #B8C0CC; }

  /* ========== HOW IT WORKS ========== */
  .how-it-works {}
  .steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 60px;
    position: relative;
  }
  @media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
  .step {
    position: relative;
    padding: 32px 28px;
    background: #FFF;
    border-radius: 16px;
    border: 1px solid var(--line);
  }
  .step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent-soft); color: var(--accent-dark);
    font-family: var(--serif); font-size: 20px; font-weight: 500;
    margin-bottom: 20px;
  }
  .step h4 {
    font-family: var(--serif); font-size: 22px; font-weight: 500;
    letter-spacing: -0.02em; margin-bottom: 10px;
  }
  .step p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
  .step-time {
    display: inline-block; margin-top: 16px;
    font-family: var(--mono); font-size: 11px;
    color: var(--accent-dark);
    text-transform: uppercase; letter-spacing: 0.1em;
  }

  /* ========== GUARANTEES ========== */
  .guarantees {
    padding: 60px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
  }
  .guarantee-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 820px) { .guarantee-grid { grid-template-columns: repeat(2, 1fr); } }
  .guarantee {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .guarantee-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--sage-soft); color: var(--sage);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 18px;
  }
  .guarantee-text {}
  .guarantee-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
  .guarantee-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }

  /* ========== FINAL CTA ========== */
  .final-cta {
    background: var(--ink); color: var(--bg);
    padding: 100px 0;
    position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute;
    top: -300px; right: -300px; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(232,93,47,0.15) 0%, transparent 70%);
  }
  .final-cta-inner {
    max-width: 900px; margin: 0 auto; padding: 0 24px;
    text-align: center; position: relative;
  }
  .final-cta h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 400; line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--bg);
    margin-bottom: 20px;
  }
  .final-cta h2 em { font-style: italic; color: #FFB38A; }
  .final-cta p {
    font-size: 18px; color: #B8C0CC;
    max-width: 600px; margin: 0 auto 40px;
  }
  .final-cta-buttons {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  }
  .btn-light {
    background: var(--bg); color: var(--ink);
  }
  .btn-light:hover { background: #FFF; transform: translateY(-2px); }
  .btn-ghost {
    background: transparent; color: var(--bg);
    border: 1.5px solid rgba(255,255,255,0.25);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,0.08); border-color: var(--bg);
  }
  .final-cta-small {
    margin-top: 24px;
    font-size: 13px; color: #B8C0CC;
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  }
  .final-cta-small span::before { content: '✓ '; color: var(--sage); }

  /* ========== VIDEO SECTION ========== */
  .video-section {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .video-section::before {
    content: ''; position: absolute;
    top: -150px; left: -150px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,93,47,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .video-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
    position: relative;
  }
  .video-header .section-label::before { content: ''; }
  .video-header .section-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-soft);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
  }
  .video-header .section-label::after {
    content: '▶';
    font-size: 9px;
    color: var(--accent);
  }
  .video-header h2.section-title {
    margin: 0 auto 20px;
    text-align: center;
  }
  .video-header p {
    font-size: 17px;
    color: var(--ink-2);
    line-height: 1.55;
  }

  .video-frame-wrap {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
  }
  .video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    background: var(--ink);
    box-shadow:
      0 30px 80px -20px rgba(11,22,40,0.3),
      0 0 0 1px var(--line);
  }
  .video-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }
  /* Decorative corner brackets */
  .video-bracket {
    position: absolute;
    width: 32px; height: 32px;
    border: 2px solid var(--accent);
    pointer-events: none;
  }
  .video-bracket.tl { top: -12px; left: -12px; border-right: none; border-bottom: none; }
  .video-bracket.tr { top: -12px; right: -12px; border-left: none; border-bottom: none; }
  .video-bracket.bl { bottom: -12px; left: -12px; border-right: none; border-top: none; }
  .video-bracket.br { bottom: -12px; right: -12px; border-left: none; border-top: none; }
  @media (max-width: 600px) {
    .video-bracket { width: 20px; height: 20px; }
  }

  .video-cta-row {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .video-cta-text {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    color: var(--ink-2);
    letter-spacing: -0.01em;
  }

  /* ========== FOOTER ========== */
  footer {
    background: var(--bg);
    padding: 48px 0 32px;
    border-top: 1px solid var(--line);
    font-size: 13px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 32px;
  }
  @media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  .footer-col h5 {
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 14px;
    color: var(--ink-muted); font-weight: 500;
    font-family: var(--mono);
  }
  .footer-col a {
    display: block; padding: 5px 0;
    color: var(--ink-2);
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-brand p { color: var(--ink-muted); line-height: 1.6; margin-top: 12px; max-width: 320px; }
  .footer-bottom {
    padding-top: 24px; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between;
    color: var(--ink-muted); font-size: 12px;
    flex-wrap: wrap; gap: 12px;
  }

  /* ========== REVEAL ANIMATIONS ========== */
  .reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
  }