/* =========================================================
   Rio Negro Analítica — folha de estilo única
   Paleta: azul/roxo da marca sobre fundo escuro profundo
   ========================================================= */

:root {
  --bg:            #0b1020;
  --bg-alt:        #0e1428;
  --bg-card:       #131a30;
  --bg-card-soft:  #161e37;
  --line:          #232c47;
  --text:          #e8ecf7;
  --text-soft:     #a7b0c8;
  --text-dim:      #7d879f;
  --blue:          #4f7cff;
  --purple:        #8b5cf6;
  --green:         #34d399;
  --red:           #f87171;
  --grad:          linear-gradient(100deg, #4f7cff, #8b5cf6);
  --radius:        16px;
  --radius-lg:     24px;
  --shadow:        0 20px 50px -20px rgba(0, 0, 0, .8);
  --wrap:          1160px;
  --ease:          cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.17rem; }
p  { margin: 0 0 1rem; }

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

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, 820px); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 999;
  background: var(--blue); color: #fff; padding: .6rem 1rem; border-radius: 0 0 10px 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: .97rem; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  font-family: inherit;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -12px rgba(79, 124, 255, .9); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(139, 92, 246, .95); }
.btn-ghost { border-color: rgba(255, 255, 255, .18); color: var(--text); background: rgba(255, 255, 255, .03); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .07); transform: translateY(-2px); }
.btn-sm { padding: .58rem 1.05rem; font-size: .88rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 16, 32, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px #000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.02rem; letter-spacing: -.02em; }
.brand-text span { font-size: .82rem; color: var(--text-dim); letter-spacing: .06em; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav > a:not(.btn) { font-size: .95rem; color: var(--text-soft); position: relative; padding: .25rem 0; transition: color .18s var(--ease); }
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width .22s var(--ease);
}
.nav > a:not(.btn):hover, .nav > a.is-active { color: var(--text); }
.nav > a:not(.btn):hover::after, .nav > a.is-active::after { width: 100%; }

.nav-toggle {
  display: none; width: 44px; height: 40px; border-radius: 11px; cursor: pointer;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .14);
  align-items: center; justify-content: center;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.hero-glow {
  position: absolute; inset: -30% -10% auto -10%; height: 720px; pointer-events: none;
  background:
    radial-gradient(46% 50% at 22% 38%, rgba(79, 124, 255, .28), transparent 70%),
    radial-gradient(40% 46% at 78% 22%, rgba(139, 92, 246, .24), transparent 70%);
  filter: blur(6px);
}
.hero-grid {
  position: relative; display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: 1.05fr .95fr; align-items: center;
}

.eyebrow {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700;
  color: var(--text-dim); margin-bottom: .9rem;
}
.eyebrow.center, .center { text-align: center; }

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

.lede { font-size: 1.09rem; color: var(--text-soft); max-width: 34em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.4rem; }

.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; padding: 0; margin: 0; }
.hero-points li { font-size: .9rem; color: var(--text-dim); display: flex; align-items: center; gap: .45rem; }
.hero-points li::before {
  content: ""; width: 15px; height: 15px; border-radius: 50%; flex: none;
  background: rgba(52, 211, 153, .16);
  box-shadow: inset 0 0 0 1.5px rgba(52, 211, 153, .55);
}

/* ---------- Ilustração do painel ---------- */
.hero-art { perspective: 1400px; }
.dash {
  background: linear-gradient(160deg, #16203c, #101733);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 1rem 1.1rem 1.1rem; transform: rotateY(-9deg) rotateX(4deg);
  transition: transform .5s var(--ease);
}
.dash:hover { transform: rotateY(-3deg) rotateX(1deg); }
.dash-top { display: flex; align-items: center; gap: .4rem; padding-bottom: .85rem; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.dash-title { margin-left: .6rem; font-size: .78rem; color: var(--text-dim); letter-spacing: .04em; }

.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin: .95rem 0; }
.kpi { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .06); border-radius: 12px; padding: .6rem .7rem; }
.kpi-label { display: block; font-size: .68rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .09em; }
.kpi-value { display: block; font-size: 1.02rem; font-weight: 700; margin-top: .15rem; }
.kpi-up   { font-size: .7rem; color: var(--green); }
.kpi-down { font-size: .7rem; color: var(--red); }

.dash-body { display: grid; grid-template-columns: 1.35fr 1fr; gap: .9rem; align-items: end; }
.chart-bars { display: flex; align-items: flex-end; gap: 7px; height: 132px; padding: .4rem .2rem 0; }
.chart-bars span {
  flex: 1; height: var(--h); border-radius: 5px 5px 3px 3px;
  background: linear-gradient(180deg, #6b8dff, #3f5fd6);
  animation: grow 1.1s var(--ease) backwards;
}
.chart-bars span:nth-child(even) { background: linear-gradient(180deg, #a78bfa, #7c4fe0); }
.chart-bars span:nth-child(1) { animation-delay: .05s } .chart-bars span:nth-child(2) { animation-delay: .1s }
.chart-bars span:nth-child(3) { animation-delay: .15s } .chart-bars span:nth-child(4) { animation-delay: .2s }
.chart-bars span:nth-child(5) { animation-delay: .25s } .chart-bars span:nth-child(6) { animation-delay: .3s }
.chart-bars span:nth-child(7) { animation-delay: .35s } .chart-bars span:nth-child(8) { animation-delay: .4s }
@keyframes grow { from { height: 4px; opacity: .2; } }

.chart-donut { display: flex; flex-direction: column; align-items: center; gap: .55rem; }
.donut {
  width: 96px; height: 96px; border-radius: 50%;
  background: conic-gradient(#60a5fa 0 46%, #a78bfa 46% 78%, #34d399 78% 100%);
  -webkit-mask: radial-gradient(circle 30px at 50% 50%, transparent 98%, #000 100%);
  mask: radial-gradient(circle 30px at 50% 50%, transparent 98%, #000 100%);
}
.legend { list-style: none; margin: 0; padding: 0; display: grid; gap: .22rem; font-size: .7rem; color: var(--text-dim); }
.legend li { display: flex; align-items: center; gap: .4rem; }
.legend i { width: 8px; height: 8px; border-radius: 2px; background: var(--c); }

.dash-foot { margin-top: .9rem; padding-top: .75rem; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .72rem; color: var(--text-dim); display: flex; align-items: center; gap: .45rem; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }

/* ---------- Seções ---------- */
.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid rgba(255, 255, 255, .05); }
.section-title { margin-bottom: .9rem; }
.section-lede { color: var(--text-soft); max-width: 44em; }
h2.center + .cards, h2.center + .steps, h2.center + .diffs, h2.center + .faq { margin-top: 2.6rem; }

/* ---------- Dores ---------- */
.section-pain { padding-block: clamp(2.6rem, 5vw, 3.6rem); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: .7rem; margin-top: 1.8rem; }
.pain {
  display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--text-soft);
  background: rgba(248, 113, 113, .05); border: 1px solid rgba(248, 113, 113, .16);
  border-radius: 12px; padding: .8rem .95rem;
}
.pain-x { color: var(--red); font-weight: 700; flex: none; }

/* ---------- Cards de serviço ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.2rem; }
.card {
  position: relative; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg); padding: 1.8rem 1.6rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: rgba(79, 124, 255, .45); box-shadow: var(--shadow); }
.card-featured { background: var(--bg-card-soft); border-color: rgba(139, 92, 246, .4); }
.card-tag {
  position: absolute; top: -11px; left: 1.6rem; background: var(--grad); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 999px;
}
.card-icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(79, 124, 255, .13); color: #93b0ff; margin-bottom: 1.1rem;
}
.card-icon svg { width: 24px; height: 24px; }
.card > p { color: var(--text-soft); font-size: .96rem; }
.card-list { list-style: none; padding: 0; margin: 1.1rem 0; display: grid; gap: .55rem; }
.card-list li { position: relative; padding-left: 1.5rem; font-size: .92rem; color: var(--text-soft); }
.card-list li::before {
  content: ""; position: absolute; left: 0; top: .52em; width: 8px; height: 8px; rotate: 45deg;
  border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  border-radius: 1px; translate: 0 -50%; scale: .8;
}
.card-out { font-size: .88rem; color: var(--text-dim); margin: 0; padding-top: 1rem; border-top: 1px dashed rgba(255, 255, 255, .12); }
.card-out strong { color: var(--text-soft); }

/* ---------- Etapas ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; counter-reset: s; }
.step { position: relative; padding: 1.5rem 1.3rem; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, .07); border-radius: var(--radius); }
.step-n { display: block; font-size: 1.7rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: .5rem; }
.step p { color: var(--text-soft); font-size: .93rem; margin: 0; }

/* ---------- Split / setores ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.split-narrow { grid-template-columns: 1.25fr .75fr; align-items: start; }
.sectors { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.sectors li {
  display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 1.1rem;
  background: var(--bg-card); border: 1px solid rgba(255, 255, 255, .07); border-radius: var(--radius);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.sectors li:hover { border-color: rgba(139, 92, 246, .45); transform: translateX(4px); }
.sectors li > span { font-size: 1.4rem; line-height: 1.2; flex: none; }
.sectors strong { display: block; margin-bottom: .15rem; }
.sectors p { margin: 0; font-size: .89rem; color: var(--text-dim); }

/* ---------- Diferenciais ---------- */
.diffs { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.1rem; }
.diff { padding: 1.4rem 1.3rem; border-radius: var(--radius); background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .07); }
.diff h3 { margin-bottom: .4rem; }
.diff p { margin: 0; font-size: .93rem; color: var(--text-soft); }

/* ---------- Sobre ---------- */
.about-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.about-tags span {
  font-size: .82rem; padding: .35rem .8rem; border-radius: 999px; color: var(--text-soft);
  background: rgba(79, 124, 255, .1); border: 1px solid rgba(79, 124, 255, .25);
}
.quote-card {
  background: var(--bg-card); border: 1px solid rgba(255, 255, 255, .08); border-left: 3px solid transparent;
  border-image: var(--grad) 1; border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow);
}
.quote-card p { font-size: 1.15rem; line-height: 1.45; font-weight: 600; margin-bottom: .9rem; }
.quote-card span { font-size: .85rem; color: var(--text-dim); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--bg-card); border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius); padding: 0 1.2rem; transition: border-color .2s var(--ease);
}
.faq details[open] { border-color: rgba(79, 124, 255, .4); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.05rem 2rem 1.05rem 0; font-weight: 600;
  position: relative; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; translate: 0 -50%;
  font-size: 1.4rem; font-weight: 400; color: var(--blue); transition: rotate .22s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--text-soft); font-size: .95rem; padding-bottom: 1.1rem; margin: 0; max-width: 60em; }

/* ---------- Contato ---------- */
.section-contact { background: radial-gradient(70% 100% at 50% 0%, rgba(79, 124, 255, .12), transparent 70%), var(--bg-alt); border-top: 1px solid rgba(255, 255, 255, .05); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: .7rem; }
.contact-list a {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: .95rem 1.15rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid rgba(255, 255, 255, .08);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-list a:hover { border-color: rgba(79, 124, 255, .5); transform: translateY(-2px); }
.contact-list strong { font-size: .95rem; }
.contact-list span { font-size: .9rem; color: var(--text-dim); }

.form { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--radius-lg); padding: 1.8rem 1.6rem; box-shadow: var(--shadow); }
.form h3 { margin-bottom: .3rem; }
.form-hint { font-size: .86rem; color: var(--text-dim); margin-bottom: 1.3rem; }
.form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; }
.form .opt { font-weight: 400; color: var(--text-dim); }
.form input, .form select, .form textarea {
  width: 100%; padding: .75rem .9rem; margin-bottom: 1rem; border-radius: 11px;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .13);
  color: var(--text); font-family: inherit; font-size: .95rem; resize: vertical;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: #66708a; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--blue); background: rgba(79, 124, 255, .07); outline: none; }
.form select option { background: var(--bg-card); color: var(--text); }
.form-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .3rem; }
.form-error { color: var(--red); font-size: .87rem; margin: .9rem 0 0; }

/* ---------- Rodapé ---------- */
.site-footer { background: #080c19; border-top: 1px solid rgba(255, 255, 255, .07); padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-grid h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .13em; color: var(--text-dim); margin-bottom: .9rem; }
.footer-grid nav, .footer-grid > div:last-child { display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; }
.footer-grid a:not(.brand) { font-size: .93rem; color: var(--text-soft); transition: color .18s var(--ease); }
.footer-grid a:not(.brand):hover { color: var(--text); }
.footer-note { font-size: .9rem; color: var(--text-dim); max-width: 32em; margin-top: 1rem; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  border-top: 1px solid rgba(255, 255, 255, .07); padding-block: 1.2rem;
}
.footer-bottom p { margin: 0; font-size: .82rem; color: var(--text-dim); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #072b16; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .65);
  transition: transform .2s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }

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

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .split-narrow, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 520px; }
  .dash { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11, 16, 32, .98); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .1); padding: .6rem 1.25rem 1.4rem;
    clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
    transition: clip-path .3s var(--ease), opacity .2s var(--ease);
  }
  .nav.is-open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .nav > a:not(.btn) { padding: .85rem 0; border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .nav > .btn { margin-top: 1rem; }
  .dash-body { grid-template-columns: 1fr; }
  .chart-donut { flex-direction: row; justify-content: center; gap: 1.2rem; margin-top: .8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
  .wa-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
  .wa-float svg { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .wa-float, .hero-art, .form-actions { display: none; }
  body { background: #fff; color: #000; }
}
