/* ============================================================
   ruicosta.ai — landing page styles
   A quiet place for ideas. Minimal, editorial, animated with
   restraint, built on the ruicosta design system tokens.
   ============================================================ */

@import url('./colors_and_type.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--fg1);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--forest); color: var(--paper); }

/* ---------- layout primitives ---------- */
.wrap {
  width: min(880px, calc(100% - 48px));
  margin-inline: auto;
}
.wrap-wide { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }

section { padding: clamp(96px, 14vw, 176px) 0; }

/* mono eyebrow — single shared treatment */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg3);
}
.eyebrow .bar {
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--phosphor), var(--teal), var(--teal-deep));
  background-size: 200% 100%;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.on-night .eyebrow { color: var(--star-3); }

/* accent dot / word */
.accent { color: var(--forest); }
.on-night .accent { color: var(--phosphor); }

/* ---------- nav (lives inside the hero, transparent) ---------- */
.hero-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding-top: 8px;
}
.chrome-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand {
  font-family: var(--sans); font-weight: 800; font-size: 18px;
  letter-spacing: -0.02em; color: var(--fg1);
}
.brand.on-dark { color: var(--star); }
.brand .dot-accent {
  color: var(--forest);
  display: inline-block;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.brand.on-dark .dot-accent { color: var(--phosphor); }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.nav {
  display: flex; gap: 28px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg3);
}
.nav.on-dark { color: var(--star-3); }
.nav a {
  position: relative; padding: 4px 0;
  transition: color 180ms var(--ease-standard);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--forest);
  transform: scaleX(0); transform-origin: left;
  transition: transform 280ms var(--ease-entrance);
}
.nav.on-dark a::after { background: var(--phosphor); }
.nav a:hover { color: var(--fg1); }
.nav.on-dark a:hover { color: var(--star); }
.nav a:hover::after { transform: scaleX(1); }
@media (max-width: 640px) { .nav { display: none; } }

/* ============================================================
   HERO — full bleed, sinusoidal AI waves on a deep field.
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(15,181,163,0.18), transparent 60%),
    radial-gradient(80% 60% at 50% -10%, rgba(61,255,168,0.06), transparent 65%),
    #05080C;
  color: var(--fg-inverse);
  overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: clamp(140px, 18vw, 220px) 0 clamp(96px, 14vw, 160px);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(232,238,246,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232,238,246,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero-glow {
  position: absolute; left: 50%; top: 50%;
  width: 130%; aspect-ratio: 1; transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 50%,
      rgba(61,255,168,0.22) 0%,
      rgba(15,181,163,0.10) 22%,
      transparent 55%);
  pointer-events: none;
  filter: blur(20px);
}

/* sinusoidal waves — phosphor → teal → deep-teal gradient */
.hero-waves {
  position: absolute; inset: 0;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.hero-waves svg {
  width: 100%; height: 100%;
  opacity: 0.95;
}
.hero-waves .wave {
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 18px rgba(61,255,168,0.18));
}
.hero-waves .w1 { animation: wave-shift  9s ease-in-out infinite; }
.hero-waves .w2 { animation: wave-shift 12s ease-in-out infinite reverse; }
.hero-waves .w3 { animation: wave-shift 15s ease-in-out infinite; }
.hero-waves .w4 { animation: wave-shift 18s ease-in-out infinite reverse; }
.hero-waves .w5 { animation: wave-shift 22s ease-in-out infinite; }

@keyframes wave-shift {
  0%, 100% { transform: translateX(-12%) scaleY(1); }
  50%      { transform: translateX(0%)   scaleY(1.06); }
}

.hero-inner { position: relative; z-index: 2; }

.hero-lead {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--fg-inverse);
  max-width: 28ch;
  letter-spacing: -0.025em;
}
.hero-lead .dot-accent {
  color: var(--phosphor);
  text-shadow: 0 0 24px rgba(61,255,168,0.5);
  display: inline-block;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.hero-chrome {
  position: absolute; left: 24px; right: 24px; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--star-3);
}
.hero-chrome.bottom { bottom: 20px; }

/* ============================================================
   ABOUT — headshot + intro, then quieter paragraphs.
   ============================================================ */
.about-head {
  display: flex; align-items: center; gap: 28px;
  margin-bottom: 28px;
}
.about-photo {
  width: clamp(96px, 11vw, 140px);
  height: clamp(96px, 11vw, 140px);
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  box-shadow:
    0 0 0 1px var(--border),
    0 12px 28px rgba(10,12,15,0.10);
}
.about-intro p {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.018em;
  color: var(--fg1);
  font-weight: 500;
}
.about p {
  margin-top: 16px;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--fg2);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  max-width: 62ch;
}
@media (max-width: 560px) {
  .about-head { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ============================================================
   IDEAS — three groups. Quiet typography, editorial whitespace.
   ============================================================ */
.ideas { background: var(--paper); }
.ideas .section-title {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--fg1);
  max-width: 22ch;
  margin-top: 16px;
}
.ideas .section-lead {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--fg2); line-height: 1.55;
  max-width: 60ch; margin-top: 14px;
}

.idea {
  padding: clamp(72px, 10vw, 128px) 0;
  border-top: 1px solid var(--border);
}
.idea:last-of-type { border-bottom: 1px solid var(--border); }

.idea .idx {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg3); margin-bottom: 20px;
}
.idea h3 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96; letter-spacing: -0.045em;
  color: var(--fg1);
}
.idea .idea-sub {
  margin-top: 16px;
  font-family: var(--sans); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25; letter-spacing: -0.02em;
  color: var(--fg2);
  max-width: 34ch;
}
.idea .idea-lead {
  margin-top: 28px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55; color: var(--fg2);
  max-width: 62ch;
}

.idea ul {
  margin-top: 40px;
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
  counter-reset: idea-list;
}
.idea ul li {
  counter-increment: idea-list;
  padding: 24px 0 24px 72px;
  position: relative;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}
.idea ul li::before {
  content: counter(idea-list, decimal-leading-zero);
  position: absolute; left: 0; top: 26px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.2em; color: var(--fg3);
  font-variant-numeric: tabular-nums;
}
.idea ul li strong {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--fg1);
  letter-spacing: -0.015em;
  line-height: 1.35;
  display: block;
}
.idea ul li span {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--fg2);
  line-height: 1.55;
  max-width: 64ch;
}

/* ---- 2x2 quadrant diagram (four waves of AI adoption) ---- */
.quadrants {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 48px minmax(220px, 1fr) minmax(220px, 1fr);
  border: 1px solid var(--border);
  background: var(--paper-2);
}
.quadrants .axis {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg3);
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}
.quadrants .axis.corner { border-right: 1px solid var(--border); }
.quadrants .axis.v {
  writing-mode: vertical-rl; transform: rotate(180deg);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quadrants .axis.v.last { border-bottom: 0; }
.quadrants .axis.h.last { border-right: 0; }

.quadrant {
  position: relative;
  padding: 28px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  background: var(--paper);
  transition: background 240ms var(--ease-standard);
}
.quadrant:hover { background: var(--forest-soft); }
.quadrant.last-col { border-right: 0; }
.quadrant.last-row { border-bottom: 0; }
.quadrant .num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; color: var(--forest);
  text-transform: uppercase;
}
.quadrant .name {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--fg1);
}
.quadrant .pos {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg3);
  margin-top: auto;
}

@media (max-width: 720px) {
  .quadrants {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto repeat(4, auto);
  }
  .quadrants .axis.h { display: none; }
  .quadrants .axis.corner { display: none; }
  .quadrant { border-right: 0; }
}

/* ---- waves expanded list (under quadrants) ---- */
.waves {
  margin-top: 56px;
  display: grid; gap: 32px;
}
.wave {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.wave:last-child { border-bottom: 1px solid var(--border); }
@media (max-width: 640px) {
  .wave { grid-template-columns: 1fr; gap: 10px; padding: 20px 0; }
}
.wave .wkey {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}
.wave .wbody h4 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--fg1);
}
.wave .wbody .wpos {
  margin-top: 6px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg3);
}
.wave .wbody p {
  margin-top: 12px;
  font-size: 16px; color: var(--fg2);
  line-height: 1.55; max-width: 60ch;
}
.wave .wbody p + p { margin-top: 8px; }

/* ---- closing thought callout ---- */
.closing-thought {
  margin-top: 72px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--forest);
  background: var(--paper-2);
}
.closing-thought .ct-key {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg3); margin-bottom: 12px;
}
.closing-thought h4 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15; letter-spacing: -0.025em;
  color: var(--fg1);
  max-width: 30ch;
}
.closing-thought ol {
  margin-top: 24px; padding: 0; list-style: none;
  counter-reset: ct;
  display: grid; gap: 16px;
}
.closing-thought ol li {
  counter-increment: ct;
  padding-left: 44px; position: relative;
  font-size: 16px; color: var(--fg2); line-height: 1.55;
}
.closing-thought ol li::before {
  content: counter(ct, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--forest);
  font-variant-numeric: tabular-nums;
}
.closing-thought ol li strong {
  font-weight: 600; color: var(--fg1);
}

/* two-column "works / didn't" inside agentic systems idea */
.split {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
@media (max-width: 720px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split .col h4 {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg3); margin-bottom: 20px;
}
.split .col h4 .mark {
  display: inline-block; width: 10px; height: 10px;
  margin-right: 8px; vertical-align: middle;
  border-radius: 999px;
}
.split .col.works h4 .mark { background: var(--forest); }
.split .col.anti h4 .mark  { background: var(--fg4); }
.split ul { margin-top: 0; }
.split ul li {
  padding: 16px 0 16px 36px;
}
.split ul li::before {
  top: 18px;
  font-size: 10px;
}
.split ul li strong { font-size: 17px; }
.split ul li span  { font-size: 15px; }

/* ============================================================
   KEYNOTES — date + title + key messages. No boasting.
   ============================================================ */
.keynotes { background: var(--paper-2); border-top: 1px solid var(--border); }
.keynotes h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 0.98; letter-spacing: -0.04em;
  color: var(--fg1); margin-top: 20px;
}
.keynotes .section-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--fg2); max-width: 54ch; margin-top: 16px;
  line-height: 1.5;
}
.keynotes-list {
  margin-top: 56px;
  border-top: 1.5px solid var(--ink);
}
.keynote {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
}
@media (max-width: 640px) {
  .keynote { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
}
.keynote .date {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg3);
  font-variant-numeric: tabular-nums;
}
.keynote .body h3 {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(19px, 1.7vw, 22px);
  letter-spacing: -0.015em; line-height: 1.3;
  color: var(--fg1);
}
.keynote .body .msg {
  margin-top: 10px;
  font-family: var(--sans); font-size: 15px;
  color: var(--fg2); line-height: 1.55;
  max-width: 70ch;
}
.keynote .body .meta {
  margin-top: 12px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; color: var(--fg3);
  text-transform: uppercase;
}
.keynote .body .meta a {
  color: var(--fg2);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 180ms var(--ease-standard), border-color 180ms var(--ease-standard);
}
.keynote .body .meta a[href="#"] {
  border-bottom: 0; cursor: default;
  color: var(--fg3);
}
.keynote .body .meta a:not([href="#"]):hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

/* ============================================================
   UPDATES OF THE WEEK — night, gradient seam
   ============================================================ */
.updates {
  background: var(--night);
  color: var(--fg-inverse);
  position: relative; overflow: hidden;
}
.updates::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('./assets/starfield.svg');
  background-size: cover; background-position: center;
  opacity: 0.35;
  pointer-events: none;
}
.updates::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--phosphor), var(--teal), var(--teal-deep));
  background-size: 300% 100%;
  animation: shimmer 6s ease-in-out infinite;
}
.updates-inner { position: relative; z-index: 1; }
.updates h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 0.98; letter-spacing: -0.04em;
  color: var(--fg-inverse); margin-top: 20px;
  max-width: 18ch;
}
.updates-lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--star-2); max-width: 54ch;
  margin-top: 20px; line-height: 1.5;
}
.updates-slot {
  margin-top: 56px;
  border: 1px dashed var(--star-4);
  padding: 48px 40px;
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; gap: 14px;
}
.updates-slot .status {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--phosphor);
}
.updates-slot .status .pulse {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--phosphor);
  box-shadow: 0 0 12px var(--phosphor);
  animation: pulse-dot 2s ease-in-out infinite;
}
.updates-slot p {
  font-size: 17px; color: var(--star-2);
  line-height: 1.55; max-width: 56ch;
}

/* ============================================================
   CONTACT CTA — quiet, but clearly actionable.
   ============================================================ */
.contact {
  background: var(--paper-2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.contact h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98; letter-spacing: -0.04em;
  color: var(--fg1);
  margin-top: 20px;
}
.contact-lead {
  margin: 20px auto 0;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--fg2); max-width: 52ch;
  line-height: 1.5;
}
.contact-cta {
  display: inline-flex; align-items: baseline; gap: 16px;
  margin-top: 40px;
  padding: 22px 32px;
  font-family: var(--mono); font-weight: 500;
  font-size: clamp(16px, 1.4vw, 18px);
  letter-spacing: 0.04em;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  position: relative;
  transition: transform 220ms var(--ease-standard),
              box-shadow 320ms var(--ease-standard),
              background 220ms var(--ease-standard);
  box-shadow:
    0 1px 0 rgba(14,16,18,0.06),
    0 8px 24px rgba(14,24,20,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.contact-cta::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--phosphor), var(--teal), var(--teal-deep));
  background-size: 220% 100%;
  z-index: -1;
  opacity: 0;
  animation: shimmer 6s ease-in-out infinite;
  transition: opacity 240ms var(--ease-standard);
}
.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 0 rgba(14,16,18,0.08),
    0 14px 34px rgba(14,24,20,0.18);
}
.contact-cta:hover::before { opacity: 1; }
.contact-cta .cta-arrow {
  font-family: var(--sans); font-weight: 500;
  transition: transform 220ms var(--ease-standard);
}
.contact-cta:hover .cta-arrow { transform: translateX(4px); }

/* ============================================================
   FOOTER — minimal.
   ============================================================ */
.foot {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
}
.foot-inner {
  display: flex; justify-content: space-between; gap: 24px;
  align-items: baseline; flex-wrap: wrap;
}
.foot .brand-block {
  font-family: var(--sans); font-weight: 800; font-size: 20px;
  letter-spacing: -0.02em; color: var(--fg1);
}
.foot .meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg3);
}

/* ============================================================
   ENTRANCE ANIMATIONS — fade + 8px rise, per design rules
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(8px);
  transition:
    opacity 640ms var(--ease-entrance),
    transform 640ms var(--ease-entrance);
}
.reveal.is-in {
  opacity: 1; transform: translateY(0);
}
.reveal.d-1 { transition-delay: 80ms; }
.reveal.d-2 { transition-delay: 160ms; }
.reveal.d-3 { transition-delay: 240ms; }
.reveal.d-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-waves .wave,
  .eyebrow .bar,
  .updates::after,
  .brand .dot-accent,
  .hero-lead .dot-accent,
  .updates-slot .status .pulse { animation: none; }
}
