/* ============================================================
   PromptLab Brasil — Kit IA para TCC
   AI-vibe rebrand: deep navy + electric green + cyan
   ============================================================ */

:root {
  /* surfaces */
  --bg:           #060912;
  --bg-elev:      #0a0f1f;
  --bg-card:      #0f1528;
  --bg-card-2:    #131a30;
  --border:       #1c2540;
  --border-strong:#2a3658;

  /* text */
  --text:         #e8edf7;
  --text-dim:     #a7b0cf;
  --text-mute:    #6c7596;

  /* brand */
  --brand:        #00e676;   /* electric green from logo */
  --brand-2:      #00ffa3;   /* lighter glow */
  --brand-deep:   #00b85f;
  --brand-glow:   rgba(0, 230, 118, 0.42);

  /* AI accents */
  --cyan:         #22d3ee;
  --cyan-2:       #06b6d4;
  --violet:       #8b5cf6;

  /* states */
  --amber:        #fbbf24;
  --amber-deep:   #f59e0b;
  --danger:       #ef4444;

  /* radii */
  --radius-sm:  10px;
  --radius:     14px;
  --radius-lg:  20px;

  /* shadow */
  --shadow-md:  0 12px 36px rgba(0, 230, 118, 0.18);
  --shadow-lg:  0 24px 80px rgba(0, 230, 118, 0.28);
  --shadow-card:0 8px 32px rgba(0, 0, 0, 0.45);

  /* layout */
  --max-w:        1100px;
  --max-w-narrow: 720px;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(900px 480px at 85% -120px, rgba(0, 230, 118, 0.12), transparent 60%),
    radial-gradient(700px 400px at -120px 280px, rgba(34, 211, 238, 0.10), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  position: relative;
}

/* subtle circuit grid background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 37, 64, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 37, 64, 0.32) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top, rgba(0,0,0,0.6), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, rgba(0,0,0,0.6), transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

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

a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-2); }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-weight: 800; }
h2 { font-weight: 800; }
h3 { font-weight: 700; }
p  { margin: 0 0 1em; color: var(--text-dim); }

main, header, section, footer { position: relative; z-index: 1; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: var(--max-w-narrow); }
.center { text-align: center; }

.hide-sm { display: inline; }
@media (max-width: 540px) { .hide-sm { display: none; } .sep-hide-sm { display: none; } }

.nowrap { white-space: nowrap; }

/* inline strike used inside buttons / body text near the R$19,90 mention */
.price-strike {
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 500;
  margin-right: 2px;
}

/* ============================================================
   PROMOBAR (top sticky)
   ============================================================ */
.promobar {
  background: linear-gradient(90deg, #04130a 0%, #062418 50%, #04130a 100%);
  border-bottom: 1px solid rgba(0, 230, 118, 0.22);
  position: sticky;
  top: 0;
  z-index: 60;
  font-size: 13.5px;
  overflow: hidden;
}
.promobar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.10), transparent);
  animation: sweep 6s linear infinite;
}
@keyframes sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.promobar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 16px;
  color: #d8ffea;
  text-align: center;
}
.promobar-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 var(--brand-glow);
  animation: dotpulse 1.8s ease-out infinite;
}
@keyframes dotpulse {
  0%   { box-shadow: 0 0 0 0 var(--brand-glow); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}
.promobar-text strong { color: var(--brand); letter-spacing: .04em; }
.promobar-text s { color: rgba(216, 255, 234, 0.5); }
.promobar-text b { color: #ffffff; font-weight: 800; }
.promobar-text .sep { color: rgba(216, 255, 234, 0.35); margin: 0 4px; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: sticky;
  top: 36px;   /* below promobar */
  z-index: 50;
  background: rgba(6, 9, 18, 0.78);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--text); }
.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
}
.brand-name { font-size: 15px; }
.brand-accent { color: var(--brand); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  text-align: center;
  white-space: nowrap;
  font-family: var(--font);
}
.btn-sm  { padding: 8px 14px;  font-size: 13.5px; border-radius: 10px; gap: 6px; }
.btn-lg  { padding: 17px 28px; font-size: 17px; border-radius: 14px; }
.btn-xl  { padding: 20px 32px; font-size: 18px; border-radius: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--brand) 0%, #00c97a 100%);
  color: #02160a;
  box-shadow:
    0 10px 28px rgba(0, 230, 118, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.25);
  border: 1px solid rgba(0, 255, 163, 0.5);
  letter-spacing: -0.005em;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 38px rgba(0, 230, 118, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.3);
  color: #02160a;
}
.btn-primary:active { transform: translateY(0); }

/* pulse glow animation */
.btn-pulse { position: relative; }
.btn-pulse::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  z-index: -1;
  opacity: 0;
  filter: blur(14px);
  animation: btnpulse 2.4s ease-in-out infinite;
}
@keyframes btnpulse {
  0%, 100% { opacity: 0.35; transform: scale(0.98); }
  50%      { opacity: 0.75; transform: scale(1.02); }
}

.btn-ghost {
  background: rgba(15, 21, 40, 0.6);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(0, 230, 118, 0.08);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-2);
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.32);
  margin-bottom: 26px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
}
.eyebrow-green { color: var(--brand-2); }

.headline {
  font-size: clamp(36px, 6.5vw, 64px);
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.headline .hl {
  background: linear-gradient(135deg, var(--brand) 0%, var(--cyan) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subheadline {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.subheadline b { color: var(--text); font-weight: 600; }

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  color: var(--text-mute);
  font-size: 13.5px;
}
.trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust li::before {
  content: "";
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e676' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 13 9 18 20 6'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================================
   SECTION GENERIC
   ============================================================ */
.section {
  padding: 70px 0;
}
.section-title {
  font-size: clamp(26px, 4vw, 36px);
  text-align: center;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 16.5px;
  color: var(--text-dim);
}
.section-lead b { color: var(--text); font-weight: 600; }

/* ============================================================
   DOR
   ============================================================ */
.dor {
  background: linear-gradient(180deg, transparent, rgba(239, 68, 68, 0.04), transparent);
}
.painlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.painitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-dim);
}
.painitem-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: #ff6b6b;
  font-weight: 800;
  font-size: 12px;
}

/* ============================================================
   SOLUÇÃO (bridge)
   ============================================================ */
.solucao { padding: 60px 0; }

/* ============================================================
   KIT — 3 pilares
   ============================================================ */
.kit {
  background: linear-gradient(180deg, transparent, rgba(0, 230, 118, 0.03), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.pillar {
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.5;
}
.pillar:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.pillar-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(0, 230, 118, 0.10);
  color: var(--brand);
  border: 1px solid rgba(0, 230, 118, 0.25);
}
.pillar h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.015em;
}
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pillar-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--text-dim);
  font-size: 15px;
  border-bottom: 1px dashed rgba(28, 37, 64, 0.6);
}
.pillar-list li:last-child { border-bottom: 0; }
.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e676' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 13 9 18 20 6'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================================
   BENEFÍCIOS — bullets densos
   ============================================================ */
.beneficios {}
.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-dim);
}
.benefits li b { color: var(--text); font-weight: 600; }
.bcheck {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.15);
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
}

/* ============================================================
   PREÇO — destaque máximo
   ============================================================ */
.preco {
  padding: 80px 0;
  position: relative;
}
.price-card {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 48px 36px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
  overflow: visible;
}
/* glowing animated border */
.price-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--brand), var(--cyan), var(--brand));
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0.6;
  animation: gradientmove 6s ease infinite;
  filter: blur(2px);
}
@keyframes gradientmove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* big discount badge floating top-right */
.discount-badge {
  position: absolute;
  top: -22px;
  right: -16px;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #1a0f00;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
  transform: rotate(8deg);
  animation: badgewobble 4s ease-in-out infinite;
}
@keyframes badgewobble {
  0%, 100% { transform: rotate(8deg); }
  50%      { transform: rotate(-3deg) scale(1.04); }
}
.discount-percent { font-size: 22px; line-height: 1; }
.discount-label   { font-size: 11px; letter-spacing: 0.1em; margin-top: 2px; }

.price-flag {
  display: inline-block;
  background: rgba(0, 230, 118, 0.12);
  color: var(--brand-2);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 230, 118, 0.32);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.price-display {
  margin: 0 0 30px;
}
.price-old-line {
  font-size: 18px;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.price-old-line s { color: var(--text-mute); }

.price-new-line {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-currency { font-size: 32px; align-self: flex-start; margin-top: 8px; }
.price-value    { font-size: 78px; }
.price-cents    { font-size: 32px; }

.price-sub {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: var(--text-mute);
  letter-spacing: 0.01em;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  text-align: left;
  max-width: 380px;
}
.price-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-dim);
  font-size: 15px;
  border-bottom: 1px dashed rgba(28, 37, 64, 0.6);
}
.price-list li:last-child { border-bottom: 0; }
.price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background: rgba(0, 230, 118, 0.15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e676' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 13 9 18 20 6'/></svg>");
  background-size: 11px 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.price-foot {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {}
.qa {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 10px;
  transition: border-color .2s ease;
}
.qa[open] {
  border-color: var(--brand);
  background: rgba(0, 230, 118, 0.04);
}
.qa summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--brand);
  transition: transform .2s ease;
  line-height: 1;
  flex-shrink: 0;
}
.qa[open] summary::after { content: "−"; }
.qa p {
  margin: 12px 0 4px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(0, 230, 118, 0.12), transparent 70%),
    linear-gradient(180deg, transparent, rgba(0, 230, 118, 0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-final h2 {
  font-size: clamp(24px, 4vw, 34px);
  margin-bottom: 12px;
}
.cta-final p {
  font-size: 16.5px;
  margin-bottom: 28px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 36px 0 32px;
  border-top: 1px solid var(--border);
  background: rgba(6, 9, 18, 0.6);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}
.footer-logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  object-fit: cover;
}
.footer-copy {
  margin: 0;
  font-size: 13px;
  color: var(--text-mute);
}
.footer-disclaimer {
  margin: 0;
  font-size: 12.5px;
  color: var(--text-mute);
  max-width: 680px;
  line-height: 1.55;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; gap: 14px; }
  .pillar { padding: 22px 20px; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }

  .hero { padding: 56px 0 56px; }
  .section { padding: 56px 0; }
  .preco { padding: 60px 0; }

  .topbar { top: 34px; }
  .topbar-inner { padding: 10px 16px; }
  .brand-name { font-size: 14px; }

  .promobar-inner { padding: 8px 12px; font-size: 12.5px; }

  .headline { font-size: clamp(30px, 9vw, 44px); }

  .cta-row .btn,
  .btn-xl,
  .btn-lg { width: 100%; }

  .price-card { padding: 42px 22px 28px; border-radius: 20px; }
  .discount-badge {
    width: 72px; height: 72px;
    top: -18px; right: -8px;
  }
  .discount-percent { font-size: 19px; }
  .price-value { font-size: 64px; }
  .price-currency, .price-cents { font-size: 26px; }

  .painlist { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }

  .qa summary { font-size: 15px; }
}

@media (max-width: 380px) {
  .promobar-text .sep { display: none; }
  .promobar-text .hide-sm { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}

/* selection */
::selection { background: var(--brand); color: #02160a; }

/* focus */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}
