/* ═══════════════════════════════════════════════════════
   CORNELIUS DIGITAL SOLUTIONS — V5 DEFINITIVE
   Gold: 3 moments. Steel: everything else.
   Light: top-center. Always.
   ═══════════════════════════════════════════════════════ */

:root {
  --bg-deep:    #070a0f;
  --bg-primary: #0b0f14;
  --bg-raised:  #0e1219;
  --bg-surface: #121820;

  --gold:       #C9A227;
  --gold-subtle:rgba(201,162,39,0.08);

  --steel:      #5b8fb9;
  --steel-bright:#7db4e0;
  --steel-dim:  rgba(91,143,185,0.10);
  --steel-glow: rgba(91,143,185,0.20);
  --steel-micro:rgba(91,143,185,0.06);

  --white:      #ffffff;
  --text:       #c8cdd4;
  --text-dim:   #7a8494;
  --text-muted: #4a5568;

  --border:     rgba(255,255,255,0.06);
  --border-vis: rgba(255,255,255,0.10);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;

  --section-v:  clamp(100px, 12vw, 180px);
  --max-w:      1120px;
  --side:       clamp(24px, 5vw, 48px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--sans); font-weight: 400; color: var(--text); background: var(--bg-deep); line-height: 1.7; overflow-x: hidden; }
::selection { background: rgba(91,143,185,0.3); color: var(--white); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.film-grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.025;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}


/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 var(--side);
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(11,15,20,0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 40px rgba(0,0,0,0.4);
}
.nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 34px; width: auto; }
.nav-wordmark { font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: -.2px; }
.nav-links { display: flex; gap: 32px; }
.nav-link { font-size: 13px; font-weight: 500; color: var(--text-dim); letter-spacing: .2px; transition: color .3s; }
.nav-link:hover { color: var(--white); }
.nav-cta { font-size: 13px; font-weight: 600; color: var(--white); padding: 9px 22px; border-radius: 6px; background: var(--steel); letter-spacing: .2px; transition: all .3s; }
.nav-cta:hover { background: var(--steel-bright); box-shadow: 0 4px 20px var(--steel-glow); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-toggle span { display: block; width: 20px; height: 1.5px; background: var(--text-dim); transition: all .3s; }
.nav-mobile-toggle.open span:first-child { transform: rotate(45deg) translate(2px,2px); }
.nav-mobile-toggle.open span:last-child { transform: rotate(-45deg) translate(2px,-2px); }
.nav-mobile { display: none; flex-direction: column; padding: 16px 0 24px; gap: 4px; }
.nav-mobile.open { display: flex; }
.nav-mobile-link { font-size: 14px; font-weight: 500; color: var(--text-dim); padding: 10px 0; transition: color .3s; }
.nav-mobile-link:hover { color: var(--white); }
.nav-mobile-link--cta { color: var(--steel); font-weight: 600; }


/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 120px var(--side) 80px; overflow: hidden; background: var(--bg-deep);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at 50% 35%, transparent 35%, var(--bg-deep) 80%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }

.urgency-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 100px;
  background: var(--gold-subtle); border: 1px solid rgba(201,162,39,0.18);
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 44px;
}
.urgency-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 8px var(--gold); }
  50% { opacity: .3; box-shadow: 0 0 2px var(--gold); }
}

.hero-headline {
  font-size: clamp(40px, 6.5vw, 74px);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -2px; color: var(--white);
  margin-bottom: 28px;
}
.hero-headline-accent { color: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.75; color: var(--text);
  max-width: 560px; margin: 0 auto 44px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-location {
  margin-top: 36px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--text-muted), transparent); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim {
  0% { opacity:0; transform: scaleY(0); transform-origin: top; }
  50% { opacity:1; transform: scaleY(1); }
  100% { opacity:0; transform: scaleY(1); transform-origin: bottom; }
}


/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: .3px; padding: 14px 32px; border-radius: 6px;
  border: none; cursor: pointer;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.btn--primary { background: var(--steel); color: var(--white); box-shadow: 0 1px 2px rgba(0,0,0,.2); }
.btn--primary:hover { background: var(--steel-bright); box-shadow: 0 4px 24px var(--steel-glow); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.btn--ghost:hover { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.3); width: 100%; }
.btn--outline:hover { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }
.btn--lg { padding: 18px 44px; font-size: 15px; }
.btn--pulse { position: relative; overflow: visible; }
.btn--pulse::after {
  content: ''; position: absolute; inset: -2px; border-radius: 8px;
  background: transparent; border: 1px solid var(--steel);
  opacity: 0; animation: btnPulse 3s ease-out infinite 2s;
}
@keyframes btnPulse { 0% { opacity: .6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.15); } }


/* ═══════════════ CREDENTIAL BAR ═══════════════ */
.cred-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-raised); padding: 32px var(--side);
}
.cred-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.cred-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cred-mono { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--steel-bright); letter-spacing: 1px; }
.cred-label { font-size: 11px; color: var(--text-muted); letter-spacing: .5px; text-transform: uppercase; }
.cred-divider { width: 1px; height: 32px; background: var(--border); }


/* ═══════════════ SHARED SECTION ═══════════════ */
.section { padding: var(--section-v) var(--side); position: relative; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-block; font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--steel); margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; line-height: 1.1;
  letter-spacing: -1px; color: var(--white); margin-bottom: 20px;
}
.section-intro { font-size: 17px; line-height: 1.7; color: var(--text-dim); max-width: 560px; margin-bottom: 56px; }
.section-body { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 20px; }
.section-body:last-child { margin-bottom: 0; }
.section-body--emphasis { color: var(--white); font-weight: 500; }


/* ═══════════════ CHALLENGE ═══════════════ */
.section--challenge { background: var(--bg-primary); overflow: hidden; }
.challenge-circles {
  position: absolute; top: 50%; right: -40px; transform: translateY(-50%);
  width: 400px; height: 400px; pointer-events: none;
}
.challenge-circles::before, .challenge-circles::after {
  content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.035);
}
.challenge-circles::before { inset: 0; }
.challenge-circles::after { inset: 60px; }
.section-inner--split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split-left .section-heading { max-width: 400px; }

/* Inline CTA at end of challenge — subtle, not a button */
.challenge-cta {
  display: inline-block; margin-top: 12px;
  font-size: 14px; font-weight: 600; color: var(--steel);
  transition: color .3s;
}
.challenge-cta:hover { color: var(--steel-bright); }


/* ═══════════════ SERVICES ═══════════════ */
.section--services { background: var(--bg-deep); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.service-card {
  background: var(--bg-primary); padding: 40px 36px;
  position: relative; overflow: hidden; transition: background .4s;
}
.spotlight {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, var(--steel-micro), transparent 70%);
  transform: translate(var(--spot-x, -150px), var(--spot-y, -150px));
  pointer-events: none; opacity: 0; transition: opacity .3s;
}
.service-card:hover .spotlight { opacity: 1; }
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--steel); transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.service-card:hover { background: var(--bg-raised); }
.service-card:hover::after { transform: scaleX(1); }
.service-number { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--steel); letter-spacing: 1px; display: block; margin-bottom: 20px; }
.service-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: -.2px; position: relative; }
.service-desc { font-size: 15px; line-height: 1.7; color: var(--text-dim); position: relative; }


/* ═══════════════ STATEMENT ═══════════════ */
.section--statement {
  padding: clamp(100px, 14vw, 200px) var(--side);
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--bg-raised); overflow: hidden; position: relative;
}
.statement-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.statement-glow {
  position: absolute; width: 600px; height: 400px; top: 15%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(91,143,185,.05) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.statement-text {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.3;
  letter-spacing: -.5px; color: var(--white); max-width: 720px;
  position: relative; z-index: 2; font-style: normal; border: none;
}
.statement-text::before {
  content: '\201C'; position: absolute; top: -48px; left: 50%; transform: translateX(-50%);
  font-size: 90px; line-height: 1; color: var(--steel); opacity: .08; font-family: Georgia, serif;
}
.statement-accent { color: var(--gold); }


/* ═══════════════ PROCESS ═══════════════ */
.section--process { background: var(--bg-primary); }
.process-timeline { position: relative; padding-left: 80px; margin-top: 16px; }
.process-line {
  position: absolute; left: 27px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(to bottom, var(--steel), var(--border));
}
.process-step { display: flex; gap: 32px; margin-bottom: 56px; position: relative; }
.process-step:last-child { margin-bottom: 0; }
.process-marker {
  position: absolute; left: -80px; top: 0; width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-primary); border: 1px solid rgba(91,143,185,.25);
  border-radius: 50%; z-index: 1; transition: border-color .4s, box-shadow .4s;
}
.process-step:hover .process-marker { border-color: var(--steel); box-shadow: 0 0 24px rgba(91,143,185,.1); }
.process-num { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--steel); }
.process-content { padding-top: 8px; }
.process-title { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -.3px; }
.process-desc { font-size: 15px; line-height: 1.7; color: var(--text-dim); max-width: 480px; }


/* ═══════════════ PRICING ═══════════════ */
.section--pricing { background: var(--bg-deep); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card {
  background: var(--bg-primary); border: 1px solid var(--border); border-radius: 10px;
  padding: 40px 36px; display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: border-color .3s, box-shadow .3s;
}
.pricing-card .spotlight { width: 350px; height: 350px; background: radial-gradient(circle, rgba(91,143,185,.08), transparent 70%); }
.pricing-card:hover .spotlight { opacity: 1; }
.pricing-card:hover { border-color: var(--border-vis); }
.pricing-card--featured { border-color: rgba(201,162,39,.25); background: var(--bg-raised); box-shadow: 0 0 60px rgba(201,162,39,.04); overflow: visible; }
.pricing-card--featured:hover { border-color: rgba(201,162,39,.45); box-shadow: 0 0 60px rgba(201,162,39,.08); }
.pricing-featured-label {
  position: absolute; top: -12px; left: 32px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); background: var(--bg-raised);
  padding: 4px 12px; border: 1px solid var(--gold); border-radius: 4px;
}
.pricing-header { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); min-height: 100px; display: flex; flex-direction: column; justify-content: flex-end; }
.pricing-tier { display: block; font-size: 13px; font-weight: 500; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-price { font-size: 26px; font-weight: 800; color: var(--white); letter-spacing: -.5px; line-height: 1.2; }
.pricing-body { flex: 1; margin-bottom: 28px; }
.pricing-desc { font-size: 15px; line-height: 1.65; color: var(--text-dim); margin-bottom: 20px; min-height: 100px; }
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 15px; color: var(--text); padding: 8px 0 8px 20px;
  position: relative; border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
/* Subtle dash instead of dot — premium consultancy style */
.pricing-features li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 8px; height: 1px; background: var(--steel);
}


/* ═══════════════ FAQ ═══════════════ */
.section--faq { background: var(--bg-raised); }
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left;
  gap: 24px;
}
.faq-question {
  font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.4;
  transition: color .3s;
}
.faq-trigger:hover .faq-question { color: var(--steel-bright); }
.faq-icon {
  flex-shrink: 0; width: 20px; height: 20px; position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--text-dim);
  transition: transform .3s, opacity .3s;
}
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-trigger[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .4s;
  padding: 0 0 0 0;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 0 24px 0;
}
.faq-answer p {
  font-size: 15px; line-height: 1.8; color: var(--text-dim); max-width: 620px;
}


/* ═══════════════ FOUNDER ═══════════════ */
.section--founder { background: var(--bg-primary); }
.section-inner--founder { gap: 80px; align-items: center; }
.founder-image-col { display: flex; justify-content: center; }
.founder-image-wrap { position: relative; width: 320px; }
.founder-image {
  width: 100%; border-radius: 8px;
  filter: grayscale(1) contrast(1.2) brightness(0.85);
  position: relative; z-index: 1;
}
.founder-image-vignette {
  position: absolute; inset: 0; z-index: 2; border-radius: 8px;
  box-shadow: inset 0 -40px 50px rgba(0,0,0,0.4), inset 0 40px 50px rgba(0,0,0,0.15);
  pointer-events: none;
}
.founder-image-border {
  position: absolute; inset: -8px; border: 1px solid var(--border); border-radius: 12px; z-index: 0;
}
.founder-text-col .section-label { margin-bottom: 14px; }
.founder-text-col .section-heading { margin-bottom: 24px; }
.founder-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.founder-cred {
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 1px;
  color: var(--steel); padding: 6px 14px;
  border: 1px solid rgba(91,143,185,.18); border-radius: 4px; background: var(--steel-dim);
}


/* ═══════════════ CTA ═══════════════ */
.section--cta {
  background: var(--bg-deep); text-align: center;
  padding-top: clamp(120px, 14vw, 200px);
  padding-bottom: clamp(120px, 14vw, 200px);
  overflow: hidden;
}
.cta-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.cta-rule {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
}
.cta-glow {
  position: absolute; width: 700px; height: 400px; top: 20%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(91,143,185,.07) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.section-inner--cta { position: relative; z-index: 2; }
.cta-headline {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -1.5px; color: var(--white); margin-bottom: 24px;
}
.cta-body { font-size: 17px; line-height: 1.7; color: var(--text-dim); max-width: 520px; margin: 0 auto 40px; }
.cta-actions { margin-bottom: 20px; }
.cta-alt {}
.cta-email { font-family: var(--mono); font-size: 14px; color: var(--text-dim); transition: color .3s; }
.cta-email:hover { color: var(--steel); }


/* ═══════════════ FOOTER ═══════════════ */
.footer { border-top: 1px solid var(--border); padding: 40px var(--side); background: var(--bg-deep); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { height: 26px; width: auto; opacity: .5; }
.footer-name { font-size: 13px; color: var(--text-dim); font-weight: 500; }
.footer-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.footer-sep { opacity: .3; }


/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .section-inner--split { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-header { min-height: auto; }
  .pricing-desc { min-height: auto; }
  .section-inner--founder { grid-template-columns: 1fr; text-align: center; }
  .founder-text-col { order: 2; } .founder-image-col { order: 1; }
  .founder-image-wrap { width: 260px; }
  .founder-creds { justify-content: center; }
  .challenge-circles { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { flex-wrap: wrap; justify-content: center; }
  .spotlight { display: none; }
}
@media (max-width: 600px) {
  .hero-headline { letter-spacing: -1px; }
  .urgency-badge { font-size: 10px; padding: 6px 14px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cred-bar-inner { gap: 20px; }
  .cred-divider { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
  .process-timeline { padding-left: 60px; }
  .process-marker { left: -60px; width: 44px; height: 44px; }
}

/* ═══════════════ ANIMATION PREP ═══════════════ */
[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal="side"] { opacity: 0; transform: translateX(30px); }
[data-reveal="blur"] { opacity: 0; filter: blur(8px); transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal="side"], [data-reveal="blur"] { opacity: 1; transform: none; filter: none; }
  .urgency-dot, .scroll-line { animation: none; }
  .btn--pulse::after { animation: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
