/* ============================================================
   SAC — Social Anxiety Club · Design System v1.0
   Theme: Pure White / Matte Black / SAC Pink
   Vibe: Apple × Linear × Spotify
   ============================================================ */

:root {
  --white: #ffffff;
  --black: #111111;
  --pink: #ff4f9a;
  --pink-soft: #ff5ca8;
  --gray-100: #f5f5f5;
  --gray-200: #ececec;
  --text: #111111;
  --text-dim: #6b6b70;

  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 999px;

  --shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.05);
  --shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 24px 70px rgba(17, 17, 17, 0.12);
  --glow: 0 18px 60px rgba(17, 17, 17, 0.12);

  --font-display: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --bg: #fbedf3;
  --bg-deep: #f6dbe8;

  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  background-image: 
    linear-gradient(to right, rgba(17,17,17,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17,17,17,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: center top;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 900; line-height: 1.02; letter-spacing: -0.04em; }

a { color: inherit; text-decoration: none; }

/* ============ 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: 13px 26px;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

.btn--primary { background: var(--black); color: var(--white); }
.btn--primary:hover {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.btn--ghost { background: var(--white); color: var(--black); border-color: var(--black); }
.btn--ghost:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

.btn__wa { flex: none; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06), var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav__logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -0.06em;
}
.nav__links { display: flex; gap: 24px; align-items: center; }
.nav__links a {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--pink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 10px 22px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: 0.3s var(--ease); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px 24px 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 12px 4px; font-weight: 500; font-family: var(--font-display); }
.nav__mobile .btn { margin-top: 8px; }

/* ============ HERO GRAPHIC ============ */
.hero {
  position: relative;
  padding: 130px 0 60px;
  text-align: center;
}
.hero__graphic-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px;
}
.hero__giant {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 15vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--black);
  text-align: center;
  position: relative;
  z-index: 10;
}
.highlight--pink {
  background: #ffdceb;
  padding: 0 16px;
  display: inline-block;
}
.float { position: absolute; z-index: 20; }
.bubble {
  font-family: var(--font-serif);
  padding: 10px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--black);
  box-shadow: 2px 2px 0 var(--black);
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
.bubble--green { background: #bced9b; color: var(--black); top: 5%; left: 10%; transform: rotate(-4deg); }
.bubble--green::after {
  content: ""; position: absolute; bottom: -12px; right: 20px;
  border-width: 12px 12px 0 0; border-style: solid; border-color: var(--black) transparent transparent transparent;
}
.bubble--white-1 { background: var(--white); color: var(--black); right: 2%; top: 35%; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; border-radius: 20px; }
.bubble--white-2 { background: var(--white); color: var(--black); left: 8%; bottom: 40%; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; border-radius: 20px; }
.bubble--white-3 { background: var(--white); color: var(--black); right: 12%; bottom: 35%; border-radius: 8px; font-size: 0.85rem; }
.bubble--blue { background: #a2dbdd; color: var(--black); font-size: 2rem; font-weight: 700; bottom: 0%; left: 45%; }
.dot--pink { display: inline-block; width: 10px; height: 10px; background: #ff4f9a; border-radius: 50%; margin-right: 6px; }
.cursor { position: absolute; width: 22px; height: 22px; z-index: 30; }
.cursor--1 { bottom: -12px; left: -10px; }
.cursor--2 { bottom: -15px; right: -5px; }

.emoji { font-size: 2.4rem; filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.15)); }
.emoji--cherry { right: 28%; top: 22%; transform: rotate(15deg); }
.emoji--disco { left: 4%; top: 36%; }
.emoji--lightning { right: 18%; top: 50%; }
.emoji--money { left: 5%; bottom: 20%; }

/* ============ ORBIT SYSTEM ============ */
.orbit {
  position: relative;
  width: min(560px, 92vw);
  height: min(560px, 92vw);
  margin: 100px auto 40px;
}
.orbit__ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed rgba(17, 17, 17, 0.1);
  border-radius: 50%;
}
.orbit__ring--outer { width: 100%; height: 100%; }
.orbit__ring--inner { width: 62%; height: 62%; border-color: rgba(17, 17, 17, 0.08); }

/* Center brandmark — Brewhaus (BH) logo, floating like a planet */
.brandmark {
  position: absolute;
  top: 50%; left: 50%;
  width: 34%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 5;
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}
.brandmark__disc {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brandmark__bh {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-14px); }
}

/* orbiting icon carriers — the spinner ring rotates the whole group around
   centre; each icon body counter-rotates the same amount to stay upright. */
.spinner {
  position: absolute;
  inset: 0;
  transform-origin: center;
  will-change: transform;
}
.orbiter {
  position: absolute;
  width: 0; height: 0;
}
.orbiter__body {
  position: absolute;
  transform: translate(-50%, -50%);
  will-change: transform;
}
/* pause the whole system while a visitor hovers to inspect an icon */
.orbit:hover .spinner,
.orbit:hover .orbiter__body { animation-play-state: paused; }
.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 18px;
  background: var(--white);
  border: 1.5px solid rgba(17, 17, 17, 0.1);
  box-shadow: var(--shadow-sm);
  color: var(--black);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  cursor: pointer;
}
.social svg { width: 26px; height: 26px; }
.social:hover {
  color: var(--pink);
  border-color: var(--pink);
  box-shadow: var(--glow);
}
/* per-platform hover personalities */
.social--instagram:hover { transform: scale(1.18); }
.social--facebook:hover  { transform: rotate(-10deg); }
.social--tiktok:hover    { animation: bounce 0.6s var(--ease); }
.social--whatsapp:hover  { animation: pulse 1s ease infinite; }
.social--threads:hover   { transform: translateY(-6px); }
.social--messenger:hover { transform: rotate(8deg) scale(1.08); }

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  30% { transform: translateY(-12px); }
  60% { transform: translateY(-4px); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); box-shadow: var(--glow); }
  50% { transform: scale(1.12); }
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes orbit-counter {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  overflow: hidden;
  margin-top: 40px;
}
.marquee__track {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--black);
  font-size: 1rem;
}
.marquee__track .dot { color: var(--pink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section--tint { background: var(--white); }
.section__head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section__eyebrow { display: none; }
.section__title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -0.04em; }
.section__lead { margin-top: 18px; color: var(--text-dim); font-size: 1.1rem; }

/* soft pink gradient divider (Linear-style) */
.section + .section:not(.section--tint)::before,
.divider { display: none; }

/* ============ SERVICE CARDS ============ */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}
.card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
  border-color: rgba(255, 79, 154, 0.4);
}
.card__icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: var(--gray-100);
  border-radius: 16px;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.98rem; }
.card__icon svg { width: 26px; height: 26px; color: var(--black); }

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 46px;
}
.stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--pink);
  line-height: 1;
}
.stat__label { margin-top: 14px; color: var(--text-dim); font-size: 0.96rem; }

.quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote p { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 500; line-height: 1.35; }
.quote span { display: block; margin-top: 20px; color: var(--text-dim); font-size: 0.98rem; }

/* ============ PRICING ============ */
.pricing {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}
.price {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price--dark { background: var(--black); color: var(--white); border-color: var(--black); }
.price--featured { border: 2px solid var(--pink); box-shadow: var(--glow); }
.price__tag {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}
.price__name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: 0.02em; }
.price__amount { font-family: var(--font-display); font-weight: 700; font-size: 3rem; margin: 14px 0 4px; line-height: 1; }
.price__amount small { font-size: 1rem; font-weight: 500; color: var(--text-dim); }
.price--dark .price__amount small { color: rgba(255,255,255,.6); }
.price__period { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 24px; }
.price--dark .price__period { color: rgba(255,255,255,.6); }
.price__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.price__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; }
.price__list li::before { content: "✓"; color: var(--pink); font-weight: 700; }
.price .btn { width: 100%; }
.price--dark .btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.price--dark .btn--ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn--gradient { background: linear-gradient(120deg, var(--pink), #ff7d3f); color: #fff; border: none; }
.btn--gradient:hover { transform: translateY(-2px); box-shadow: var(--glow); filter: brightness(1.05); }
.pricing__note { text-align: center; margin-top: 26px; color: var(--text-dim); font-size: 0.9rem; }

/* ============ ABOUT ============ */
.about { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about__text .section__title { text-align: left; }
.about__text .section__head { text-align: left; margin: 0; }
.about__text p { color: var(--text-dim); margin: 18px 0; font-size: 1.05rem; }
.about__text .btn { margin-top: 12px; }
.about__visual {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.about__visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(17,17,17,.06) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}
.about__bh {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--black);
  letter-spacing: -0.05em;
  line-height: 1;
}
.about__badge {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-size: 0.86rem;
}

/* ============ BOOKING ============ */
.book { text-align: center; }
.book__title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
.book__sub { color: var(--text-dim); margin: 16px auto 0; max-width: 480px; font-size: 1.08rem; }
.book__form {
  max-width: 560px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-display); font-weight: 500; font-size: 0.86rem; }
.field input, .field select {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  background: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 79, 154, 0.12);
}
.book__submit { grid-column: 1 / -1; margin-top: 6px; }
.book__hint { grid-column: 1 / -1; text-align: center; color: var(--text-dim); font-size: 0.82rem; }

/* ============ FOOTER ============ */
.footer { background: var(--black); color: var(--white); padding: 70px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer__logo { font-family: var(--font-display); font-weight: 900; font-size: 3.8rem; letter-spacing: -0.05em; }
.footer__brand p { color: rgba(255,255,255,.6); margin-top: 10px; max-width: 320px; }
.footer__social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__social .social {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: #fff;
  width: 48px; height: 48px;
}
.footer__social .social svg { width: 22px; height: 22px; }
.footer__social .social:hover { color: var(--pink); border-color: var(--pink); background: rgba(255,79,154,.12); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 46px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5); font-size: 0.86rem;
}

/* ============ FAB ============ */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: 0.4s var(--ease), background 0.3s var(--ease);
}
.fab.show { opacity: 1; transform: translateY(0) scale(1); }
.fab:hover { background: var(--pink); transform: translateY(-3px) scale(1.06); }

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .cards, .stats, .pricing { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__visual { min-height: 280px; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .cards, .stats, .pricing { grid-template-columns: 1fr; }
  .book__form { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .social { width: 48px; height: 48px; }
  .social svg { width: 22px; height: 22px; }
}

/* ---- Phones: reflow the hero so nothing overlaps or runs off-screen ---- */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  html { scroll-padding-top: 74px; }

  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }

  .nav__inner { height: 62px; }
  .nav__logo { font-size: 1.9rem; }

  /* Hero: stack the headline first, then value-prop pills in normal flow */
  .hero { padding: 96px 0 36px; }
  .hero__graphic-wrap {
    max-width: 100%;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .hero__giant {
    flex: 0 0 100%;
    order: -1;
    font-size: clamp(3rem, 19vw, 5rem);
    margin-bottom: 6px;
  }
  /* neutralise the absolute positioning — let pills sit in the flex row */
  .float {
    position: static !important;
    transform: none !important;
    top: auto; left: auto; right: auto; bottom: auto;
  }
  .bubble { white-space: normal; font-size: 0.82rem; }
  .bubble--blue { font-size: 1.5rem; padding: 8px 18px; }
  .bubble--green::after { display: none; }   /* speech-bubble tail */
  .cursor,
  .emoji { display: none; }                   /* pure decoration */

  .orbit { margin: 48px auto 24px; }
  .hero__hint { padding: 0 24px; }

  .marquee { margin-top: 24px; }

  .footer__logo { font-size: 2.4rem; }
  .footer__bottom { flex-direction: column; gap: 6px; }

  .fab { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}

/* ---- Very small phones ---- */
@media (max-width: 380px) {
  .hero__giant { font-size: clamp(2.6rem, 18vw, 4rem); }
  .bubble { font-size: 0.78rem; }
  .price__amount { font-size: 2.6rem; }
}

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