/* ============================================================
   Protevo AI — Landing page styles
   Layers on the Protevo design system (colors_and_type.css).
   Ground: ink (#131313) primary, cream sections for contrast.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --ink:        var(--p-black);        /* #131313 */
  --ink-soft:   var(--p-black-soft);   /* #1E1E1E */
  --graphite:   var(--p-graphite);     /* #2A2A2A */
  --cream:      var(--p-cream);         /* #F0F2F1 */
  --cream-200:  var(--p-cream-200);
  --orange:     var(--p-orange);        /* #FF4202 */
  --lime:       var(--p-lime);
  --navy:       var(--p-navy);
  --wine:       var(--p-wine);

  --rule-dark:  rgba(240,242,241,0.16);
  --rule-dark-2: rgba(240,242,241,0.10);
  --rule-light: rgba(19,19,19,0.14);
  --fg-dim:     rgba(240,242,241,0.62);
  --fg-dim-2:   rgba(240,242,241,0.42);

  --font-display: var(--p-font-display);
  --font-cond:    var(--p-font-condensed);
  --font-mono:    var(--p-font-mono);
  --font-body:    var(--p-font-sans);

  --gutter: clamp(20px, 5vw, 96px);
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---- Shared layout ---------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); position: relative; }
.section--cream { background: var(--cream); color: var(--ink); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }

/* ---- Type primitives -------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}
.eyebrow--dim { color: var(--fg-dim-2); }
.section--cream .eyebrow--dim { color: rgba(19,19,19,0.45); }

.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 0.94;
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-size: clamp(34px, 4.6vw, 64px);
  margin: 0;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.04;
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0;
}
.lede {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.62;
  color: var(--fg-dim);
  max-width: 54ch;
  margin: 0;
}
.section--cream .lede { color: rgba(19,19,19,0.66); }

.body { font-size: 16.5px; line-height: 1.62; color: var(--fg-dim); margin: 0; }
.section--cream .body { color: rgba(19,19,19,0.7); }

/* Inline editorial emphasis — italic + heavy underline */
.em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  color: var(--orange);
  border-bottom: 3px solid currentColor;
  padding-bottom: 0.02em;
}

.mono { font-family: var(--font-mono); }

/* ---- Chip (signature shell) ------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border: 1.5px solid currentColor;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.01em;
  line-height: 1;
  background: transparent;
  color: inherit;
  white-space: nowrap;
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.chip .dot--live { background: var(--lime); box-shadow: 0 0 0 0 rgba(185,204,48,0.6); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(185,204,48,0.5);} 70%{box-shadow:0 0 0 7px rgba(185,204,48,0);} 100%{box-shadow:0 0 0 0 rgba(185,204,48,0);} }
@media (prefers-reduced-motion: reduce) { .chip .dot--live { animation: none; } }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1.5px solid currentColor;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: background 120ms var(--ease), color 120ms var(--ease), border-color 120ms var(--ease);
}
.btn .arr { font-weight: 700; transition: transform 200ms var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--accent { background: var(--orange); border-color: var(--orange); color: var(--cream); }
.btn--accent:hover { background: var(--orange-700, #C73000); border-color: var(--orange-700, #C73000); }
.btn--ghost-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--sm { padding: 11px 18px; font-size: 13px; }

/* ============================================================
   TOP NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(19,19,19,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule-dark-2);
}
.nav__row {
  display: flex; align-items: center; gap: 28px;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark { width: 36px; height: auto; color: var(--orange); flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; gap: 4px; }
.brand__name {
  font-family: var(--p-font-brand); font-weight: 900;
  font-size: 22px; letter-spacing: -0.01em; color: var(--cream); line-height: 1;
  white-space: nowrap;
}
.brand__by {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-weight: 400;
  font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim-2); line-height: 1;
}
.brand__by::before { content: ''; width: 13px; height: 1px; background: currentColor; display: inline-block; flex-shrink: 0; }
.nav__links { display: flex; gap: 26px; margin-left: 16px; }
.nav__links a {
  font-family: var(--font-mono); font-size: 13.5px; color: var(--fg-dim);
  letter-spacing: 0.01em; padding-bottom: 2px; border-bottom: 1.5px solid transparent;
  transition: color 140ms var(--ease), border-color 140ms var(--ease);
}
.nav__links a:hover { color: var(--cream); border-bottom-color: var(--orange); }
.nav__spacer { flex: 1; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
@media (max-width: 880px) { .nav__links { display: none; } .nav__sign { display: none; } }
@media (max-width: 560px) { .nav__cta-full { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(48px, 7vw, 96px); padding-bottom: 0; position: relative; overflow: hidden; }
.hero__chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__title { font-size: clamp(48px, 8.4vw, 124px); }
.hero__grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 56px; align-items: end; }
.hero__lede { margin-top: 30px; }
.hero__cta { display: flex; gap: 13px; margin-top: 38px; flex-wrap: wrap; }
.hero__aside { padding-bottom: 8px; }
.hero__photo {
  aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden;
  background: var(--ink-soft) center/cover no-repeat;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  border: 1px solid var(--rule-dark);
}
.hero__metaline {
  display: flex; gap: 8px; align-items: center; margin-top: 16px;
  font-family: var(--font-mono); font-size: 12px; color: var(--fg-dim-2); letter-spacing: 0.04em;
}
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .hero__aside { max-width: 420px; }
}

/* Browser frame for product shots */
.frame {
  border-radius: 12px; overflow: hidden; border: 1px solid var(--rule-dark);
  background: var(--ink-soft);
  box-shadow: 0 40px 80px -32px rgba(0,0,0,0.7);
}
.section--cream .frame { border-color: var(--rule-light); box-shadow: 0 40px 80px -34px rgba(19,19,19,0.4); }
.frame__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; background: #0E0E0E; border-bottom: 1px solid var(--rule-dark-2);
}
.frame__dots { display: flex; gap: 6px; }
.frame__dots i { width: 11px; height: 11px; border-radius: 50%; background: #3a3a3a; display: block; }
.frame__url {
  margin-left: 10px; font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-dim-2);
  background: #1a1a1a; border-radius: 5px; padding: 5px 12px; letter-spacing: 0.02em;
}
.frame img { width: 100%; display: block; }
.hero__shot { margin-top: clamp(48px, 6vw, 84px); }

/* ============================================================
   METRICS
   ============================================================ */
.metrics { border-top: 1px solid var(--rule-dark-2); border-bottom: 1px solid var(--rule-dark-2); }
.metrics__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { padding: 40px 0; border-left: 1px solid var(--rule-dark-2); padding-left: 28px; }
.metric:first-child { border-left: none; padding-left: 0; }
.metric__val {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(40px, 4.6vw, 60px); letter-spacing: -0.03em; line-height: 0.9;
  color: var(--cream); font-variant-numeric: tabular-nums;
}
.metric__val sup { font-size: 0.4em; vertical-align: super; color: var(--orange); }
.metric__unit { color: var(--orange); }
.metric__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-dim-2); margin-top: 14px; line-height: 1.4;
}
@media (max-width: 760px) {
  .metrics__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .metric { padding: 28px 0 28px 22px; }
  .metric:nth-child(odd) { border-left: none; padding-left: 0; }
  .metric:nth-child(n+3) { border-top: 1px solid var(--rule-dark-2); }
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.shead { max-width: 760px; margin-bottom: clamp(40px, 5vw, 68px); }
.shead .eyebrow { margin-bottom: 18px; }
.shead .lede { margin-top: 22px; max-width: 60ch; }

/* ============================================================
   HOW IT WORKS — alternating rows
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: clamp(56px, 7vw, 104px); }
.step { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.step:nth-child(even) .step__media { order: -1; }
.step__num {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em;
  color: var(--orange); font-weight: 700; margin-bottom: 18px;
}
.step__title { margin-bottom: 18px; }
.step__list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.step__list li {
  display: flex; gap: 12px; align-items: baseline;
  font-family: var(--font-mono); font-size: 13.5px; color: var(--fg-dim); line-height: 1.5;
}
.section--cream .step__list li { color: rgba(19,19,19,0.66); }
.step__list li::before { content: '▰'; color: var(--orange); font-size: 9px; flex-shrink: 0; transform: translateY(-2px); }
@media (max-width: 860px) {
  .step { grid-template-columns: 1fr; gap: 28px; }
  .step:nth-child(even) .step__media { order: 0; }
}

/* ============================================================
   METHOD — vertical stepper (5 steps)
   ============================================================ */
.method { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.method__list { border-top: 1px solid var(--rule-light); }
.method__item {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid var(--rule-light);
  transition: padding-left 240ms var(--ease);
}
.method__item:hover { padding-left: 12px; }
.method__idx {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--orange);
}
.method__name {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -0.02em; line-height: 1; color: var(--ink);
}
.method__desc { font-family: var(--font-mono); font-size: 13px; color: rgba(19,19,19,0.6); margin-top: 10px; line-height: 1.5; }
@media (max-width: 860px) { .method { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   CORREÇÃO AUTOMÁTICA — auto-fix feature band (ink)
   ============================================================ */
.af { border-top: 1px solid var(--rule-dark-2); }
.af__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.af__shot .frame__url { color: var(--orange); }
.af__side { display: flex; flex-direction: column; }
.af__rule { padding: 26px 0; border-top: 1px solid var(--rule-dark-2); }
.af__rule:first-child { border-top: none; padding-top: 4px; }
.af__ic { font-family: var(--font-mono); font-weight: 700; font-size: 12.5px; letter-spacing: 0.1em; color: var(--orange); }
.af__name {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(21px, 2.1vw, 27px); letter-spacing: -0.02em; line-height: 1.04;
  color: var(--cream); margin: 12px 0 0;
}
.af__desc { font-family: var(--font-mono); font-size: 13px; line-height: 1.6; color: var(--fg-dim); margin: 12px 0 0; max-width: 46ch; }
.af__desc .mono { color: var(--cream); }
.af__hosts { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--rule-dark-2); }
.af__hostlbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-dim-2); margin-right: 4px; }
.af__hosts .chip { color: var(--fg-dim); font-size: 12px; padding: 7px 12px; }
.af__hosts .chip:hover { color: var(--cream); border-color: var(--orange); }
@media (max-width: 860px) { .af__grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   SERVICES — honeycomb tiles
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule-dark-2); border: 1px solid var(--rule-dark-2); }
.svc {
  background: var(--ink); padding: 30px 26px 28px; min-height: 220px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: background 200ms var(--ease);
}
.svc:hover { background: var(--ink-soft); }
.svc__tile {
  width: 52px; height: 52px; border-radius: 8px; margin-bottom: auto;
  background-size: cover; background-position: center;
  border: 1px solid var(--rule-dark); flex-shrink: 0;
  filter: saturate(1.05);
}
.svc__name {
  font-family: var(--font-cond); font-weight: 700; font-size: 19px;
  letter-spacing: 0.01em; color: var(--cream); margin-top: 26px;
}
.svc__desc { font-family: var(--font-mono); font-size: 12px; color: var(--fg-dim-2); margin-top: 8px; line-height: 1.5; }
@media (max-width: 920px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr; } .svc { min-height: 0; } }

/* ============================================================
   MANIFESTO — full bleed honeycomb
   ============================================================ */
.manifesto { position: relative; isolation: isolate; padding-block: clamp(96px, 14vw, 220px); overflow: hidden; }
.manifesto__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.manifesto__bg::after { content: ''; position: absolute; inset: 0; background: rgba(19,19,19,0.5); }
.manifesto__quote {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(34px, 5.4vw, 78px); letter-spacing: -0.025em; line-height: 1.0;
  color: var(--cream); max-width: 18ch; text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.manifesto__quote .em { color: var(--cream); border-bottom-color: var(--orange); }
.manifesto__sig { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; color: rgba(240,242,241,0.82); margin-top: 36px; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price {
  border: 1px solid var(--rule-light); border-radius: 8px; padding: 32px 28px 30px;
  display: flex; flex-direction: column; background: var(--cream);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.price--feature { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.price__tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(19,19,19,0.5); }
.price--feature .price__tag { color: var(--orange); }
.price__name { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 30px; letter-spacing: -0.02em; margin: 14px 0 0; }
.price__amt { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 4px; }
.price__amt b { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 44px; letter-spacing: -0.03em; line-height: 1; }
.price__amt span { font-family: var(--font-mono); font-size: 13px; color: rgba(19,19,19,0.55); }
.price--feature .price__amt span { color: var(--fg-dim); }
.price__desc { font-family: var(--font-mono); font-size: 12.5px; line-height: 1.5; color: rgba(19,19,19,0.6); margin: 0 0 22px; min-height: 38px; }
.price--feature .price__desc { color: var(--fg-dim); }
.price__feats { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 11px; border-top: 1px solid var(--rule-light); padding-top: 22px; }
.price--feature .price__feats { border-top-color: var(--rule-dark-2); }
.price__feats li { font-family: var(--font-mono); font-size: 13px; line-height: 1.45; display: flex; gap: 10px; align-items: baseline; color: rgba(19,19,19,0.75); }
.price--feature .price__feats li { color: var(--cream); }
.price__feats li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.price__btn { margin-top: auto; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.faq__list { border-top: 1px solid var(--rule-dark-2); }
.faq__item { border-bottom: 1px solid var(--rule-dark-2); }
.faq__q {
  display: flex; align-items: center; gap: 16px; cursor: pointer; list-style: none;
  padding: 24px 0; font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(19px, 2vw, 25px); letter-spacing: -0.015em; color: var(--cream); line-height: 1.1;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__sign { margin-left: auto; flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform 240ms var(--ease); color: var(--orange); }
.faq__sign::before, .faq__sign::after { content: ''; position: absolute; background: currentColor; }
.faq__sign::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq__sign::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); transition: opacity 240ms var(--ease); }
.faq__item[open] .faq__sign::after { opacity: 0; }
.faq__a { font-family: var(--font-mono); font-size: 14px; line-height: 1.65; color: var(--fg-dim); padding: 0 40px 26px 0; max-width: 64ch; margin: 0; }

@media (max-width: 860px) { .faq { grid-template-columns: 1fr; gap: 28px; } }

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.cta-band { background: var(--orange); color: var(--cream); }
.cta-band__inner { display: flex; align-items: center; gap: 40px; justify-content: space-between; flex-wrap: wrap; }
.cta-band__title { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: clamp(32px, 4.6vw, 60px); letter-spacing: -0.025em; line-height: 0.96; margin: 0; max-width: 16ch; }
.cta-band .btn--ghost-light:hover { background: var(--cream); color: var(--orange); }

.footer { background: var(--ink); border-top: 1px solid var(--rule-dark-2); padding-block: clamp(56px, 7vw, 96px); }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer__brand .brand__name { font-size: 25px; }
.footer__brand .brand__mark { width: 40px; }
.footer__tag { font-family: var(--font-mono); font-size: 12.5px; color: var(--fg-dim); margin-top: 22px; max-width: 30ch; line-height: 1.6; letter-spacing: 0.01em; }
.footer__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim-2); margin: 0 0 18px; font-weight: 500; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-family: var(--font-mono); font-size: 13.5px; color: var(--fg-dim); transition: color 140ms var(--ease); }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  margin-top: clamp(48px, 6vw, 80px); padding-top: 28px; border-top: 1px solid var(--rule-dark-2);
  font-family: var(--font-mono); font-size: 12px; color: var(--fg-dim-2); letter-spacing: 0.02em;
}
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

/* ---- Scroll reveal ---------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 640ms var(--ease), transform 640ms var(--ease); }
  .reveal.is-in { opacity: 1; transform: none; }
}
