/* HoangCore — Brutalist Newsprint design system */
:root {
  --bg: #F5F0E8;
  --bg-2: #EDE8DC;
  --surface: #E8E3D8;
  --surface-2: #DDD8CC;
  --border: rgba(26, 26, 26, 0.18);
  --border-strong: rgba(26, 26, 26, 0.35);
  --text: #111111;
  --muted: #666655;
  --primary: #CC2200;
  --primary-2: #AA1500;
  --cyan: #1A1A1A;
  --grad: #CC2200;
  --grad-soft: rgba(204, 34, 0, 0.08);
  --shadow-glow: 2px 4px 0px rgba(26, 26, 26, 0.5);
  --shadow-cyan: 2px 4px 0px rgba(26, 26, 26, 0.4);
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "JetBrains Mono", "Courier New", Courier, monospace;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.img-fluid { width: 100%; height: auto; }
.img-rounded { border-radius: var(--radius); border: 1px solid var(--border); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: "JetBrains Mono", "Courier New", Courier, monospace;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

.h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); margin-bottom: 16px; }
.lead { color: var(--muted); font-size: 1.075rem; max-width: 60ch; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(204, 34, 0, 0.08);
  border: 2px solid var(--primary);
  padding: 6px 12px;
  border-radius: 0;
  margin-bottom: 18px;
}

.grad-text {
  color: var(--primary);
}

/* BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
}
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--primary {
  background: var(--primary);
  color: #F5F0E8;
  box-shadow: 3px 3px 0 #1A1A1A;
  border-radius: 0;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 5px 5px 0 #1A1A1A; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn--primary:hover::after { left: 125%; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
  border-radius: 0;
  border-width: 2px;
}
.btn--ghost:hover { background: rgba(26, 26, 26, 0.06); transform: translateY(-2px); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(0px);
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.is-scrolled { background: rgba(245, 240, 232, 0.97); border-bottom-color: var(--border-strong); backdrop-filter: blur(14px); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "JetBrains Mono", "Courier New", monospace; font-weight: 700; font-size: 1.2rem; }
.brand__mark {
  width: 28px; height: 28px; border-radius: 0;
  background: var(--primary);
  position: relative;
  box-shadow: 2px 2px 0 #1A1A1A;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
}
.brand__dot { position: absolute; right: -4px; top: -4px; width: 10px; height: 10px; border-radius: 50%; background: #1A1A1A; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.25);opacity:.7} }
.brand__accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--muted); font-weight: 500; position: relative; transition: color 0.2s ease; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: inline-flex; }
.nav__burger { display: none; background: transparent; border: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(245, 240, 232, 0.99);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  display: none; flex-direction: column; gap: 16px;
  transform: translateY(-10px); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__mobile.is-open { display: flex; transform: translateY(0); opacity: 1; }
.nav__mobile a { color: var(--text); font-size: 1.1rem; }

/* HERO */
.hero { position: relative; padding: 140px 0 90px; overflow: hidden; min-height: 92vh; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; z-index: 0; mix-blend-mode: screen; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(245,240,232,0.1) 0%, rgba(245,240,232,0.5) 100%); z-index: 1; }
.hero__blob { position: absolute; border-radius: 0; filter: blur(60px); opacity: 0.18; z-index: 1; animation: float 12s ease-in-out infinite; }
.hero__blob--1 { width: 380px; height: 380px; background: #CC2200; top: -80px; left: -80px; }
.hero__blob--2 { width: 420px; height: 420px; background: #1A1A1A; bottom: -120px; right: -100px; animation-delay: -4s; }
.hero__blob--3 { width: 280px; height: 280px; background: #CC2200; top: 30%; right: 30%; animation-delay: -8s; opacity: 0.1; }
@keyframes float { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-30px) translateX(20px)} }

.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero__title { font-size: clamp(2.25rem, 5vw, 3rem); margin: 16px 0 20px; font-weight: 700; }
.hero__sub { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin: 0 0 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__meta { display: flex; gap: 36px; flex-wrap: wrap; }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta strong { font-family: "JetBrains Mono", "Courier New", monospace; font-size: 1.6rem; color: var(--primary); }
.hero__meta span { font-size: 0.85rem; color: var(--muted); }

.hero__art { position: relative; }
.hero__art img { position: relative; z-index: 2; height: auto; filter: drop-shadow(4px 4px 0px rgba(26,26,26,0.4)); animation: floatY 6s ease-in-out infinite; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
.hero__orbit {
  position: absolute; inset: -10%; border: 2px dashed rgba(204,34,0,0.3); border-radius: 50%;
  animation: spin 30s linear infinite;
}
.hero__orbit::before, .hero__orbit::after { content: ""; position: absolute; width: 14px; height: 14px; border-radius: 0; background: #1A1A1A; top: 10%; left: 50%; }
.hero__orbit::after { background: var(--primary); top: auto; bottom: 10%; left: 30%; }
@keyframes spin { to { transform: rotate(360deg); } }

/* SECTIONS */
.section { padding: 100px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__head .lead { margin: 0 auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col--reverse > div:first-child { order: 2; }
.two-col--reverse > div:last-child { order: 1; }

/* CARDS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--surface);
  border: 2px solid var(--border-strong);
  border-radius: 0;
  padding: 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-soft); opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 4px 4px 0 #1A1A1A; }
.card:hover::before { opacity: 1; }
.card:hover .card__icon { transform: rotate(-8deg) scale(1.1); }
.card__icon {
  width: 56px; height: 56px; border-radius: 0;
  background: rgba(204, 34, 0, 0.08);
  border: 2px solid var(--primary);
  display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 18px;
  transition: transform 0.4s ease;
}
.card h3 { font-size: 1.25rem; margin-bottom: 8px; position: relative; }
.card p { color: var(--muted); margin: 0; position: relative; }

/* TESTIMONIALS */
.testimonial { background: var(--surface); border: 2px solid var(--border-strong); border-radius: 0; padding: 32px; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.testimonial:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 4px 4px 0 #1A1A1A; }
.stars { color: #CC2200; letter-spacing: 4px; margin-bottom: 14px; }
.testimonial p { font-size: 1.05rem; margin: 0 0 24px; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.avatar { width: 48px; height: 48px; border-radius: 0; display: grid; place-items: center; font-weight: 700; color: #F5F0E8; }
.avatar--sr { background: #CC2200; }
.avatar--dm { background: #1A1A1A; }
.testimonial__author strong { display: block; }
.testimonial__author span { color: var(--muted); font-size: 0.9rem; }

/* STATS */
.stats { background: #1A1A1A; padding: 60px 0; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; }
.stat__num { display: block; font-family: "JetBrains Mono", "Courier New", monospace; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: #CC2200; line-height: 1; }
.stat__label { color: rgba(245,240,232,0.7); font-weight: 600; font-size: 0.95rem; }

/* POSTS */
.post { background: var(--surface); border: 2px solid var(--border-strong); border-radius: 0; padding: 22px; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.post:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 4px 4px 0 #1A1A1A; }
.post__img { height: 160px; border-radius: 0; margin-bottom: 18px; position: relative; overflow: hidden; }
.post__img::after { content: ""; position: absolute; inset: 0; }
.post__img--1 { background: #CC2200; }
.post__img--2 { background: #1A1A1A; }
.post__img--3 { background: #AA1500; }
.post__img--4 { background: #333322; }
.post__img--5 { background: #881800; }
.post__img--6 { background: #444433; }
.tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); background: rgba(204,34,0,0.1); border: 1px solid var(--primary); padding: 4px 10px; border-radius: 0; margin-bottom: 10px; }
.post h3 { font-size: 1.1rem; margin-bottom: 6px; }
.post p { color: var(--muted); margin: 20px 0 20px 0; font-size: 0.95rem; }

/* CHECK LIST */
.check-list { list-style: none; padding: 0; margin: 22px 0 28px; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 12px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 0; background: var(--primary); color: #F5F0E8; font-weight: 700; font-size: 0.8rem; display: grid; place-items: center; }
.check-list--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 28px; }

/* CALLOUT */
.callout { margin-top: 24px; padding: 22px; border-radius: 0; background: var(--surface); border: 2px solid var(--primary); box-shadow: 4px 4px 0 #1A1A1A; }
.callout strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.callout p { margin: 0; color: var(--muted); }

/* PRICING */
.pricing { align-items: stretch; }
.price { background: var(--surface); border: 2px solid var(--border-strong); border-radius: 0; padding: 32px; display: flex; flex-direction: column; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; position: relative; }
.price:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 4px 4px 0 #1A1A1A; }
.price h3 { font-size: 1.2rem; margin-bottom: 10px; }
.price__amount { font-family: "Space Grotesk", sans-serif; font-size: 2.4rem; font-weight: 700; margin-bottom: 8px; }
.price__amount span { font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.price ul { list-style: none; padding: 0; margin: 18px 0 24px; flex: 1; }
.price ul li { padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.price--featured { border-color: var(--primary); border-width: 3px; box-shadow: 5px 5px 0 #1A1A1A; transform: translateY(-6px); }
.price--featured h3 { color: var(--text); }
.price--featured .price__amount { color: var(--primary); }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #F5F0E8; border-radius: 0; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }

/* STANDOUT */
.standout { position: relative; padding: 100px 0; overflow: hidden; text-align: center; }
.standout__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; z-index: 0; mix-blend-mode: screen; }
.standout::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(245,240,232,0.6), rgba(245,240,232,0.9)); z-index: 1; }
.standout__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.standout h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.standout p { color: var(--muted); font-size: 1.15rem; margin: 0 0 28px; }

/* TRUSTED MARQUEE */
.trusted { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); overflow: hidden; }
.trusted__label { text-align: center; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 28px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 60px; animation: marquee 28s linear infinite; width: max-content; }
.marquee__track span { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--muted); letter-spacing: 0.15em; opacity: 0.7; transition: opacity 0.3s ease, color 0.3s ease; }
.marquee__track span:hover { opacity: 1; color: var(--text); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* FORM */
.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.form input, .form textarea {
  background: var(--bg);
  border: 2px solid var(--border-strong);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 0;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 3px 3px 0 var(--primary); }
.form__note { font-size: 0.8rem; color: var(--muted); margin: 0; text-align: center; }
.contact__art { max-width: 320px; margin-top: 24px; opacity: 0.9; }

/* FOOTER */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__blurb { color: var(--muted); margin-top: 14px; max-width: 320px; }
.footer h4 { font-size: 0.95rem; margin-bottom: 14px; }
.footer a { display: block; color: var(--muted); padding: 4px 0; transition: color 0.2s ease; }
.footer a:hover { color: var(--primary); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }

/* TOAST */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--surface); border: 2px solid var(--primary);
  color: var(--text); padding: 14px 22px; border-radius: 999px;
  box-shadow: var(--shadow-cyan);
  opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 100; font-weight: 500;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }

/* REVEAL ANIMATIONS */
.reveal, .reveal-scale { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; will-change: opacity, transform; }
.reveal { transform: translateY(28px); }
.reveal-scale { transform: scale(0.94); }
.reveal.is-visible, .reveal-scale.is-visible { opacity: 1; transform: none; }

.delay-0 { transition-delay: 0ms; }
.delay-80 { transition-delay: 80ms; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { border: 2px solid var(--border-strong); border-radius: 0; background: var(--surface); overflow: hidden; }
.faq-item summary { padding: 20px 24px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "["; font-size: 1.25rem; color: var(--primary); flex-shrink: 0; transition: transform .25s; }
.faq-item[open] summary::after { content: "]"; transform: none; }
.faq-item p { margin: 0; padding: 0 24px 20px; color: var(--muted); }
.faq-item a { color: var(--primary); text-decoration: underline; }

/* PROCESS STEPS */
.process-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.process-step { list-style: none; background: var(--surface); border: 2px solid var(--border-strong); border-radius: 0; padding: 32px; }
.process-step__num { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 0; background: var(--primary); font-family: "JetBrains Mono", "Courier New", monospace; font-size: 1.05rem; font-weight: 700; color: #F5F0E8; margin-bottom: 20px; box-shadow: 3px 3px 0 #1A1A1A; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }
@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
}

/* INSIGHTS ACCORDION */
.post__expand { border: none; background: none; }
.post__expand summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.post__expand summary::-webkit-details-marker { display: none; }
.post__expand summary .post__summary-title { margin: 0; flex: 1; transition: color 0.2s; font-family: "Space Grotesk", "Inter", sans-serif; font-size: 1.05rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.post__expand summary:hover h3, .post__expand[open] summary h3 { color: var(--primary); }
.post__expand summary::after { content: " [+]"; color: var(--primary); font-weight: 700; white-space: nowrap; }
.post__expand[open] summary::after { content: " [-]"; }
.post__expand p { color: var(--muted); font-size: 0.9rem; margin: 12px 0 0; line-height: 1.65; }
.post__expand p code { font-size: 0.85em; background: var(--surface-2); padding: 1px 5px; border-radius: 4px; }
.delay-160 { transition-delay: 160ms; }
.delay-240 { transition-delay: 240ms; }
.delay-400 { transition-delay: 400ms; }

.float-anim { animation: floatY 6s ease-in-out infinite; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .hero__art { max-width: 380px; margin: 0 auto; }
  .two-col, .two-col--reverse { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse > div:first-child, .two-col--reverse > div:last-child { order: initial; }
  .grid-2, .grid-3, .grid-4, .pricing { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .check-list--grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .price--featured { transform: none; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__meta { gap: 24px; }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
}