/* V1 "Signal" — bold editorial, continuous PEMF wave through page */

@import url("tokens.css");
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800&family=Geist+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap");

/* ----- Sticky top nav ----- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  background: rgba(243, 241, 236, 0.78);
  border-bottom: 1px solid var(--hairline-2);
}
.topnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px var(--signal-glow);
  animation: pulse-dot 2.2s var(--ease) infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px var(--signal-glow); }
  50% { box-shadow: 0 0 0 8px rgba(26, 60, 255, 0.05); }
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-pill {
  display: flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 12px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.menu-btn { display: none; }

@media (max-width: 900px) {
  .nav-links, .lang-pill { display: none; }
  .menu-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid var(--hairline);
    border-radius: var(--r-full);
  }
  .topnav__inner .btn--primary { display: none; }
}

/* ----- HERO ----- */
.hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 80px;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal);
  animation: pulse-dot 2.2s var(--ease) infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 7.2vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--ink);
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--signal);
}
.hero__lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 460px;
  margin: 0 0 36px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero video card */
.hero__video {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 30px 80px -30px rgba(10, 11, 14, 0.35);
}
.hero__video image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero__video::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero__video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  pointer-events: none;
  z-index: 2;
}
.video-tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-full);
}
.video-tag .rec {
  width: 7px; height: 7px; background: #ff4d2e; border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.video-meta {
  display: flex; align-items: flex-end; justify-content: space-between;
  color: #fff;
}
.video-meta h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 70%;
  line-height: 1.15;
}
.play-btn {
  pointer-events: auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.play-btn:hover { transform: scale(1.08); }

/* Animated PEMF wave behind hero */
.signal-wave {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 220px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.signal-wave svg { width: 100%; height: 100%; }
.signal-wave path {
  fill: none;
  stroke: var(--signal);
  stroke-width: 1.2;
  stroke-linecap: round;
  opacity: 0.5;
}

/* ----- Stat strip ----- */
.stats {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 24px 0;
  background: var(--bg);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: end;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.stat__num .plus { color: var(--signal); }
.stat__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
}

/* ----- Section base ----- */
section.block { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section.block { padding: 80px 0; } }

.section-head {
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.4fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head__index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
}
.section-head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--signal);
}
.section-head__lede {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 320px;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
}

/* ----- Science / How it works ----- */
.science {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.science__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .science__grid { grid-template-columns: 1fr; gap: 40px; }
}
.science__viz {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-paper) 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.science__viz svg { width: 80%; height: 80%; }
.science__steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.science-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
  cursor: pointer;
  transition: padding 0.3s var(--ease);
}
.science-step:last-child { border-bottom: 1px solid var(--hairline); }
.science-step.is-active { padding: 28px 0; }
.science-step__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  padding-top: 4px;
}
.science-step.is-active .science-step__num { color: var(--signal); }
.science-step__body h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.science-step__body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin 0.3s var(--ease);
}
.science-step.is-active .science-step__body p {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

/* ----- Audience switcher ----- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr; }
}
.aud-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.3s var(--ease);
}
.aud-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.aud-card__img {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-md);
  overflow: hidden;
  margin: -10px -10px 22px;
  background: var(--bg-paper);
}
.aud-card__img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.aud-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.aud-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 6px 0 12px;
  line-height: 1.02;
}
.aud-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 22px;
  flex: 1;
}
.aud-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  align-self: flex-start;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.25s var(--ease);
}
.aud-card:hover .aud-card__cta { gap: 14px; }

/* ----- Testimonials ----- */
.testimonial-block {
  background: var(--ink);
  color: #fff;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.testimonial-block .section-head h2 { color: #fff; }
.testimonial-block .section-head__lede { color: rgba(255,255,255,0.55); }
.testimonial-block .section-head__index { color: rgba(255,255,255,0.4); }

.t-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .t-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .t-grid { grid-template-columns: 1fr; }
}
.t-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: background 0.25s var(--ease);
}
.t-card:hover { background: rgba(255,255,255,0.04); }
.t-card__img {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
  background: #1a1c22;
}
.t-card__img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.t-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.t-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin: 4px 0 14px;
}
.t-card__quote {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0;
  flex: 1;
}
.t-card__quote::before {
  content: "“";
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
  color: var(--signal-soft);
}

/* ----- Equine ----- */
.equine {
  background: var(--bg);
}
.equine__hero {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  margin-bottom: 48px;
}
.equine__hero image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.equine__hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
}
.equine__hero-copy {
  position: absolute;
  left: 32px; right: 32px; bottom: 32px;
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.equine__hero-copy h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  max-width: 580px;
}
.equine__hero-copy h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
@media (max-width: 720px) {
  .equine__hero-copy { left: 20px; right: 20px; bottom: 20px; }
}

.equine__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) {
  .equine__products { grid-template-columns: 1fr; }
}
.eq-product {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
}
.eq-product__img {
  width: 120px; height: 120px;
  background: var(--bg-paper);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.eq-product__img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.eq-product h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.eq-product p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ----- Medical Board ----- */
.board-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .board-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .board-grid { grid-template-columns: repeat(2, 1fr); } }

.doc {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 14px;
  text-align: left;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.doc:hover { transform: translateY(-2px); border-color: var(--ink); }
.doc__img {
  aspect-ratio: 1 / 1;
  background: var(--bg-paper);
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.doc__img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.doc__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 0 0 4px;
}
.doc__role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ----- Lead form ----- */
.lead {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
}
.lead__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .lead__grid { grid-template-columns: 1fr; gap: 32px; } }
.lead h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 0 24px;
}
.lead h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--signal);
}
.lead__intro {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 460px;
  margin: 0 0 36px;
}
.lead__points {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead__points li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.lead__points svg { flex-shrink: 0; margin-top: 4px; }

.form-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px;
}
.form-step {
  display: none;
}
.form-step.is-active { display: block; }
.form-step__progress {
  display: flex; gap: 6px;
  margin-bottom: 22px;
}
.form-step__progress span {
  flex: 1; height: 3px;
  background: var(--hairline);
  border-radius: var(--r-full);
}
.form-step__progress span.done { background: var(--signal); }

.form-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.form-step p.helper {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 20px;
}
.form-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.form-options button {
  text-align: left;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-options button:hover { border-color: var(--ink); }
.form-options button.is-selected {
  border-color: var(--signal);
  background: rgba(26, 60, 255, 0.04);
  color: var(--signal-deep);
}
.form-options button.is-selected::after {
  content: " ✓";
  color: var(--signal);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form-row.solo { grid-template-columns: 1fr; }
.field {
  display: flex; flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select {
  height: 46px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 0 14px;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--signal);
}
.consent {
  display: flex; gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 18px 0 22px;
}
.consent input { margin-top: 3px; accent-color: var(--signal); }
.form-actions { display: flex; gap: 10px; justify-content: space-between; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.is-active { display: block; }
.form-success svg { margin: 0 auto 18px; }
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.form-success p { font-size: 15px; color: var(--muted); max-width: 360px; margin: 0 auto; }

/* ----- Footer ----- */
footer.site {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
  font-size: 13px;
}
footer.site .container { display: grid; gap: 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-grid a { display: block; padding: 4px 0; color: rgba(255,255,255,0.75); }
.footer-grid a:hover { color: #fff; }
.footer-grid .brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.footer-grid .brand-blurb {
  font-size: 13.5px;
  line-height: 1.55;
  margin-top: 12px;
  max-width: 320px;
  color: rgba(255,255,255,0.55);
}
.legal {
  display: flex; justify-content: space-between;
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  gap: 20px;
  flex-wrap: wrap;
}
.fda-disclosure {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  max-width: 720px;
}

/* ----- Sticky mobile CTA ----- */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  display: none;
}
.sticky-cta .btn {
  width: 100%;
  justify-content: center;
  height: 56px;
  font-size: 15px;
  box-shadow: 0 12px 30px -10px rgba(10, 11, 14, 0.45);
}
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 88px; }
}

/* ----- Section dividers / running PEMF wave ----- */
.divider-wave {
  height: 60px;
  width: 100%;
  overflow: hidden;
  display: block;
}
.divider-wave svg { width: 100%; height: 100%; }
.divider-wave path {
  fill: none;
  stroke: var(--signal);
  stroke-width: 1.2;
  opacity: 0.6;
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
