/* =========================================================
   PerforMarket — Advertising & Consulting
   Static showcase site · style.css
   ========================================================= */

:root {
  /* Brand */
  --blue-900: #07215f;
  --blue-800: #0b2f8a;
  --blue-700: #0e4fdc;
  --blue-600: #1f6dff;
  --blue-500: #2b7bff;
  --blue-400: #5b91ff;
  --blue-300: #8298ff;
  --blue-200: #b9c6ff;
  --blue-100: #e6ecff;
  --lavender: #c8c4ff;

  /* Ink / surfaces */
  --ink-900: #0a0f24;
  --ink-800: #111733;
  --ink-700: #1b2342;
  --ink-500: #4a5578;
  --ink-400: #6b7596;
  --ink-300: #98a1bd;
  --paper: #ffffff;
  --paper-soft: #f6f8ff;
  --paper-line: #e8ecf7;

  /* Gradients */
  --grad-brand: linear-gradient(120deg, #0e4fdc 0%, #1f6dff 45%, #6f96ff 100%);
  --grad-brand-soft: linear-gradient(120deg, #1f6dff 0%, #8298ff 100%);
  --grad-deep: radial-gradient(120% 120% at 18% 12%, #163a9e 0%, #0c1f5c 45%, #070f2e 100%);

  /* Type */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(14, 30, 80, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(13, 38, 110, 0.28);
  --shadow-lg: 0 40px 90px -30px rgba(11, 33, 95, 0.45);
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; color: var(--ink-900); letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.container { width: min(var(--maxw), 92vw); margin-inline: auto; }
.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(54px, 6vw, 84px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue-700);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-brand); border-radius: 2px; }
.eyebrow--light { color: var(--blue-200); }
.eyebrow--light::before { background: linear-gradient(90deg, var(--blue-300), transparent); }

.section-head { max-width: 760px; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
.section-head p { margin-top: 18px; font-size: 1.12rem; color: var(--ink-500); }
.section-head--center { margin-inline: auto; text-align: center; }

.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 15px 28px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: 0 14px 30px -12px rgba(31, 109, 255, 0.65); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 42px -14px rgba(31, 109, 255, 0.75); }
.btn--ghost { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.22); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.btn--dark { background: var(--ink-900); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--paper-line);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo img { height: 34px; width: auto; transition: opacity .3s; }
.nav__logo .logo-dark { display: none; }
.site-header.scrolled .nav__logo .logo-light { display: none; }
.site-header.scrolled .nav__logo .logo-dark { display: block; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.82);
  transition: color .25s; position: relative;
}
.nav__links a:hover { color: #fff; }
.site-header.scrolled .nav__links a { color: var(--ink-500); }
.site-header.scrolled .nav__links a:hover { color: var(--blue-700); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.site-header.scrolled .btn--ghost { background: transparent; color: var(--ink-800); border-color: var(--paper-line); }
.site-header.scrolled .btn--ghost:hover { border-color: var(--blue-400); color: var(--blue-700); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .3s; }
.site-header.scrolled .nav__toggle span { background: var(--ink-900); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--grad-deep); color: #fff; overflow: hidden;
  padding-top: 120px; padding-bottom: 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__poly {
  position: absolute; right: -8%; top: -10%; width: 70%; opacity: 0.16;
  mix-blend-mode: screen; filter: saturate(1.2);
  transform: rotate(8deg);
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55;
}
.hero__glow--1 { width: 520px; height: 520px; background: radial-gradient(circle, #2b7bff 0%, transparent 70%); top: -160px; left: -120px; animation: float 14s ease-in-out infinite; }
.hero__glow--2 { width: 460px; height: 460px; background: radial-gradient(circle, #6f96ff 0%, transparent 70%); bottom: -180px; right: 8%; animation: float 18s ease-in-out infinite reverse; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

.hero__inner { position: relative; z-index: 2; max-width: 900px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.82rem; font-weight: 500; color: var(--blue-100);
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #43e0a0; box-shadow: 0 0 0 4px rgba(67,224,160,0.18); }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6.6vw, 5rem); line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero h1 em { font-style: normal; background: linear-gradient(110deg, #8fb4ff, #c8c4ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin-top: 26px; font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: rgba(232,236,255,0.82); max-width: 640px; }
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero__stats {
  margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 34px; max-width: 760px;
}
.hero__stat .num { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: #fff; letter-spacing: -0.03em; }
.hero__stat .num span { background: linear-gradient(110deg, #8fb4ff, #c8c4ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__stat .lbl { font-size: 0.86rem; color: var(--blue-200); margin-top: 4px; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll .line { width: 1px; height: 38px; background: linear-gradient(rgba(255,255,255,0.6), transparent); animation: scrolldown 2s ease-in-out infinite; }
@keyframes scrolldown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Trust / logos strip ---------- */
.trust { background: var(--paper-soft); border-bottom: 1px solid var(--paper-line); }
.trust__inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; padding: 30px 0; }
.trust__label { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-400); font-weight: 600; }
.trust__items { display: flex; gap: 38px; flex-wrap: wrap; align-items: center; }
.trust__items span { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink-400); opacity: 0.75; }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.card {
  position: relative; background: var(--paper); border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg); padding: 36px 32px; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-brand); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .45s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::after { opacity: 1; }
.card__icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--blue-100); color: var(--blue-700); margin-bottom: 22px;
  transition: background .4s, color .4s;
}
.card:hover .card__icon { background: var(--grad-brand); color: #fff; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: var(--ink-500); font-size: 1rem; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.card__tags span { font-size: 0.78rem; font-weight: 500; color: var(--blue-700); background: var(--blue-100); padding: 5px 12px; border-radius: 100px; }

/* ---------- AI Edge (split) ---------- */
.ai { background: var(--grad-deep); color: #fff; overflow: hidden; }
.ai__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.ai h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.ai .lead { margin-top: 20px; color: rgba(232,236,255,0.8); font-size: 1.12rem; }
.ai__list { margin-top: 34px; display: grid; gap: 20px; }
.ai__item { display: flex; gap: 16px; align-items: flex-start; }
.ai__item .mk { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: var(--blue-200); }
.ai__item .mk svg { width: 19px; height: 19px; }
.ai__item h4 { color: #fff; font-size: 1.08rem; margin-bottom: 4px; }
.ai__item p { color: rgba(232,236,255,0.7); font-size: 0.98rem; }

.ai__panel {
  position: relative; border-radius: var(--radius-lg); padding: 34px;
  background: linear-gradient(165deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.ai__panel .panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.ai__panel .panel-head .t { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: #fff; }
.ai__panel .panel-head .live { font-size: 0.72rem; color: #43e0a0; display: inline-flex; align-items: center; gap: 7px; }
.ai__panel .panel-head .live::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: #43e0a0; box-shadow: 0 0 0 4px rgba(67,224,160,0.18); }
.metric-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.metric-row:last-child { border-bottom: 0; }
.metric-row .k { font-size: 0.9rem; color: var(--blue-100); }
.metric-row .v { font-family: var(--font-display); font-weight: 600; color: #fff; display: flex; align-items: center; gap: 8px; }
.metric-row .v .up { font-size: 0.78rem; color: #43e0a0; }
.bar { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.1); overflow: hidden; margin-top: 18px; }
.bar > i { display: block; height: 100%; border-radius: inherit; background: var(--grad-brand-soft); width: 0; transition: width 1.4s var(--ease); }

/* ---------- Process ---------- */
.process { background: var(--paper-soft); }
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius); transition: transform .4s var(--ease), box-shadow .4s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__n { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 16px; }
.step h4 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--ink-500); font-size: 0.96rem; }

/* ---------- Outcomes / why ---------- */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--paper-line); }
.why__media .bigstat { background: var(--grad-deep); color: #fff; padding: 48px 40px; }
.why__media .bigstat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 6vw, 4.6rem); letter-spacing: -0.04em; line-height: 1; }
.why__media .bigstat .n span { background: linear-gradient(110deg,#8fb4ff,#c8c4ff); -webkit-background-clip:text; background-clip:text; color:transparent; }
.why__media .bigstat .c { margin-top: 12px; color: var(--blue-100); }
.why__media .row3 { display: grid; grid-template-columns: repeat(3,1fr); background: var(--paper); }
.why__media .row3 > div { padding: 26px 22px; text-align: center; border-right: 1px solid var(--paper-line); }
.why__media .row3 > div:last-child { border-right: 0; }
.why__media .row3 .n { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--blue-700); }
.why__media .row3 .l { font-size: 0.82rem; color: var(--ink-400); margin-top: 4px; }
.checklist { margin-top: 30px; display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .ck { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; }
.checklist .ck svg { width: 14px; height: 14px; }
.checklist b { color: var(--ink-900); }
.checklist p { color: var(--ink-500); font-size: 0.98rem; }

/* ---------- Testimonial / quote ---------- */
.quote { background: var(--paper); }
.quote__card {
  max-width: 920px; margin-inline: auto; text-align: center; padding: 10px 20px;
}
.quote__mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.5; color: var(--blue-200); }
.quote blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 3vw, 2.1rem); letter-spacing: -0.02em; color: var(--ink-900); margin: 18px 0 26px; }
.quote__who { font-size: 0.95rem; color: var(--ink-400); }
.quote__who b { color: var(--ink-800); }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; }
.cta__box {
  position: relative; border-radius: 32px; overflow: hidden;
  background: var(--grad-deep); color: #fff; text-align: center;
  padding: clamp(50px, 7vw, 86px) clamp(24px, 5vw, 80px);
}
.cta__box .hero__glow--1 { top: -120px; left: 10%; opacity: 0.4; }
.cta__box .hero__glow--2 { bottom: -160px; right: 6%; opacity: 0.4; }
.cta__box h2 { position: relative; color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); }
.cta__box p { position: relative; margin: 18px auto 0; color: rgba(232,236,255,0.82); max-width: 560px; font-size: 1.1rem; }
.cta__box .hero__actions { position: relative; justify-content: center; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact__card {
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.contact__line { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--paper-line); }
.contact__line:last-child { border-bottom: 0; }
.contact__line .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; flex: 0 0 auto; }
.contact__line .ic svg { width: 21px; height: 21px; }
.contact__line > div { min-width: 0; }
.contact__line .k { font-size: 0.8rem; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.08em; }
.contact__line .v { font-weight: 600; color: var(--ink-900); font-size: 1.05rem; overflow-wrap: anywhere; word-break: break-word; }
.contact__line a.v:hover { color: var(--blue-700); }

/* ---------- Footer ---------- */
.footer { background: var(--ink-900); color: rgba(255,255,255,0.7); padding: 70px 0 34px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand img { height: 36px; margin-bottom: 20px; }
.footer__brand p { color: rgba(255,255,255,0.55); max-width: 320px; font-size: 0.96rem; }
.footer__col h5 { font-family: var(--font-display); color: #fff; font-size: 0.95rem; margin: 0 0 16px; letter-spacing: 0.02em; }
.footer__col a { display: block; padding: 6px 0; color: rgba(255,255,255,0.6); font-size: 0.94rem; transition: color .25s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; flex-wrap: wrap; font-size: 0.86rem; color: rgba(255,255,255,0.45); }
.footer__bottom a { color: rgba(255,255,255,0.6); }
.footer__bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- Legal pages ---------- */
.legal { padding-top: 150px; padding-bottom: 90px; }
.legal__wrap { max-width: 800px; margin-inline: auto; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal .updated { color: var(--ink-400); font-size: 0.92rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.35rem; margin: 38px 0 12px; }
.legal p, .legal li { color: var(--ink-500); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal ul li { margin-bottom: 8px; }
.legal a { color: var(--blue-700); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .ai__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta .btn--ghost, .nav__cta .btn--primary { display: none; }
  .nav__toggle { display: block; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .hero__sub { font-size: 1.05rem; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 20px 6vw 28px; gap: 6px; box-shadow: var(--shadow-md); align-items: flex-start;
  }
  .nav.open .nav__links a { color: var(--ink-800); padding: 10px 0; width: 100%; border-bottom: 1px solid var(--paper-line); }
  .cards, .steps, .footer__top { grid-template-columns: 1fr; }
  .why__media .row3 { grid-template-columns: 1fr; }
  .why__media .row3 > div { border-right: 0; border-bottom: 1px solid var(--paper-line); }
  .hero { min-height: auto; }
  .hero__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
