/* ===========================================================
   PROCURADA — Agência Digital · Landing Page
   Dark mode · magenta neon · Poppins
   =========================================================== */

:root {
  /* Brand */
  --brand: #d3024e;          /* crimson da logo */
  --brand-2: #ff1e6b;        /* magenta neon mais claro */
  --brand-3: #ff5b95;        /* highlight rosa */
  --brand-glow: 211, 2, 78;  /* rgb p/ sombras */
  --neon-glow: 255, 30, 107;

  /* Neutros (quase-preto com leve tom magenta) */
  --bg: #08050a;
  --bg-1: #0d070c;
  --bg-2: #140a11;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.04);

  --ink: #f7f2f5;
  --ink-soft: #cdc2c8;
  --muted: #9182898f;
  --muted-solid: #8d7a83;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;

  --font: "Poppins", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.55;
}

/* subtle full-page magenta vignette + grain-ish gradient */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1100px 700px at 80% -5%, rgba(var(--brand-glow), 0.16), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(var(--neon-glow), 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-3);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--brand-2), transparent);
}

.section-head { max-width: 720px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-head p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 60ch;
}

.text-grad {
  background: linear-gradient(100deg, var(--brand-3) 0%, var(--brand-2) 45%, #fff 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

/* ===== Buttons ===== */
.btn {
  --pad-y: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--pad-y) 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .3s, background .3s, border-color .3s;
  will-change: transform;
}
.btn .arrow { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #fff;
  box-shadow: 0 8px 30px rgba(var(--brand-glow), 0.45), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(var(--neon-glow), 0.6), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-ghost {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--ink);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(var(--neon-glow), .6); transform: translateY(-2px); }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter);
  transition: background .4s, backdrop-filter .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,5,10,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding-top: 14px; padding-bottom: 14px;
}
.nav__logo { height: 30px; width: auto; }
.nav__links {
  display: flex; align-items: center; gap: 34px;
  list-style: none;
}
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--brand-2);
  transition: width .3s; box-shadow: 0 0 10px var(--brand-2);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta .btn span.label-long { display: none; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

/* ---- MEDIA LAYER ----
   Placeholder ocupado pela imagem de fundo.
   No Claude Code, troque o conteúdo de #hero-media pelo
   <video>/<canvas> da animação GSAP scroll-scrub.            */
#hero-media {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
#hero-media .media-el {
  position: absolute; inset: -4%;
  width: 108%; height: 108%;
  object-fit: cover;
  will-change: transform, filter;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}
/* overlays p/ legibilidade */
.hero-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,5,10,0.96) 0%, rgba(8,5,10,0.86) 38%, rgba(8,5,10,0.84) 66%, rgba(8,5,10,0.99) 100%),
    radial-gradient(80% 65% at 50% 46%, rgba(8,5,10,0.55) 0%, rgba(8,5,10,0.10) 70%, transparent 100%);
  pointer-events: none;
}
.media-badge {
  position: absolute; left: 18px; bottom: 16px; z-index: 3;
  font: 600 11px/1 ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.4); border: 1px solid var(--line);
  padding: 7px 10px; border-radius: 8px; backdrop-filter: blur(4px);
}

.hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding-block: 120px;
}
.hero__logo {
  width: min(500px, 76vw);
  height: auto;
  margin-bottom: 34px;
  filter: drop-shadow(0 8px 46px rgba(8,5,10,0.8)) drop-shadow(0 0 30px rgba(var(--neon-glow), .35));
}
.hero__eyebrow {
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.42em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brand-3);
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ""; width: 38px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-2), transparent);
}
.hero h1 {
  font-size: clamp(38px, 7vw, 92px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 16ch;
  text-shadow: 0 4px 50px rgba(8,5,10,0.85), 0 2px 14px rgba(8,5,10,0.6);
}
.hero h1 .word { display: inline-block; }
.hero__sub {
  margin-top: 28px;
  max-width: 52ch;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink-soft);
  font-weight: 400;
  text-shadow: 0 2px 18px rgba(8,5,10,0.9);
}
.hero__actions {
  margin-top: 40px;
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font: 600 10.5px/1 var(--font);
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted-solid);
}
.scroll-cue .mouse {
  width: 24px; height: 38px; border-radius: 14px;
  border: 1.5px solid var(--line-strong);
  position: relative;
}
.scroll-cue .mouse::after {
  content: ""; position: absolute; left: 50%; top: 7px;
  width: 4px; height: 7px; border-radius: 3px; background: var(--brand-2);
  transform: translateX(-50%);
  animation: wheel 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px var(--brand-2);
}
@keyframes wheel { 0%{opacity:0; transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0; transform:translate(-50%,12px)} }

/* ===========================================================
   GENERIC SECTION
   =========================================================== */
.section {
  position: relative;
  z-index: 1;
  padding-block: clamp(80px, 11vw, 150px);
}
.section--alt { background:
  linear-gradient(180deg, transparent, rgba(255,255,255,0.015) 18%, rgba(255,255,255,0.015) 82%, transparent); }

/* ===========================================================
   SERVIÇOS
   =========================================================== */
.services-grid {
  margin-top: clamp(46px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.svc {
  position: relative;
  grid-column: span 4;
  padding: 34px 32px 38px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .4s, background .4s;
  min-height: 290px;
  display: flex; flex-direction: column;
}
.svc::before { /* neon edge glow on hover */
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(var(--neon-glow),.7), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s;
}
.svc::after { /* glow blob */
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--neon-glow),.35), transparent 70%);
  opacity: 0; transition: opacity .45s; filter: blur(8px);
}
.svc:hover { transform: translateY(-6px); border-color: rgba(var(--neon-glow),.35); }
.svc:hover::before, .svc:hover::after { opacity: 1; }

.svc__idx {
  font: 700 13px/1 ui-monospace, monospace;
  color: var(--brand-3); letter-spacing: .1em;
  margin-bottom: auto;
}
.svc__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(var(--neon-glow), .12);
  border: 1px solid rgba(var(--neon-glow), .3);
  margin-bottom: 22px;
  color: var(--brand-3);
}
.svc__icon svg { width: 26px; height: 26px; }
.svc h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.svc p { margin-top: 12px; color: var(--muted-solid); font-size: 15px; line-height: 1.6; }

.svc--wide { grid-column: span 4; }

@media (max-width: 900px) {
  .svc { grid-column: span 6; }
}
@media (max-width: 600px) {
  .svc { grid-column: span 12; min-height: 0; }
  .services-grid { gap: 14px; }
}

/* ===========================================================
   DIFERENCIAIS / STATS
   =========================================================== */
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } }

.feature-list { list-style: none; margin-top: 34px; display: grid; gap: 4px; }
.feature-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  padding: 22px 4px; border-top: 1px solid var(--line);
  align-items: start;
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list .fnum {
  font: 700 13px/1.4 ui-monospace, monospace; color: var(--brand-3);
}
.feature-list h4 { font-size: 18px; font-weight: 600; }
.feature-list p { color: var(--muted-solid); font-size: 14.5px; margin-top: 5px; }

.stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  padding: 38px 30px;
  position: relative;
}
.stat .num {
  font-size: clamp(40px, 5vw, 60px); font-weight: 700; line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, var(--brand-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .lbl { margin-top: 12px; color: var(--ink-soft); font-size: 14.5px; }

/* ===========================================================
   CASES
   =========================================================== */
.cases-grid {
  margin-top: clamp(46px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 920px){ .cases-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .cases-grid { grid-template-columns: 1fr; } }

.case {
  border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-1);
  transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .4s;
}
.case:hover { transform: translateY(-6px); border-color: rgba(var(--neon-glow),.4); }
.case__shot {
  aspect-ratio: 4 / 3;
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, rgba(var(--neon-glow),.18), rgba(8,5,10,.6));
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
}
.case__shot .ph {
  font: 600 11px/1 ui-monospace, monospace; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  border: 1px dashed var(--line-strong); padding: 8px 12px; border-radius: 8px;
}
.case__body { padding: 24px 24px 28px; }
.case__tag {
  font: 600 11px/1 ui-monospace, monospace; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-3);
}
.case__body h3 { margin-top: 12px; font-size: 20px; font-weight: 600; }
.case__body p { margin-top: 8px; color: var(--muted-solid); font-size: 14.5px; }

/* ===========================================================
   PROCESSO (timeline)
   =========================================================== */
.steps {
  margin-top: clamp(46px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 820px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }
.step {
  padding: 28px 24px 32px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  position: relative;
}
.step .snum {
  font: 700 14px/1 ui-monospace, monospace;
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 20px;
  color: #fff; background: linear-gradient(180deg, var(--brand-2), var(--brand));
  box-shadow: 0 6px 20px rgba(var(--brand-glow),.5);
}
.step h4 { font-size: 17px; font-weight: 600; }
.step p { margin-top: 8px; color: var(--muted-solid); font-size: 14px; }

/* ===========================================================
   CTA BAND
   =========================================================== */
.cta-band {
  position: relative; z-index: 1;
  margin: 0 var(--gutter) clamp(60px,8vw,110px);
  border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(56px, 8vw, 110px) clamp(28px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(var(--neon-glow), .3);
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(var(--neon-glow), .35), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 120%, rgba(var(--brand-glow), .4), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(30px, 5.2vw, 64px); font-weight: 700;
  line-height: 1.02; letter-spacing: -0.03em; max-width: 18ch; margin-inline: auto;
}
.cta-band p { margin-top: 20px; color: var(--ink-soft); font-size: clamp(16px,1.6vw,19px); max-width: 52ch; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; margin-top: 38px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  padding-block: clamp(54px, 7vw, 80px) 34px;
}
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 820px){ .footer__top { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 480px){ .footer__top { grid-template-columns: 1fr; } }
.footer__brand img { height: 34px; margin-bottom: 18px; }
.footer__brand p { color: var(--muted-solid); font-size: 14.5px; max-width: 34ch; }
.footer__col h5 {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-3); margin-bottom: 18px; font-weight: 600;
}
.footer__col ul { list-style: none; display: grid; gap: 12px; }
.footer__col a { color: var(--ink-soft); font-size: 14.5px; transition: color .25s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: clamp(44px, 6vw, 64px); padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
  color: var(--muted-solid); font-size: 13px;
}

/* ===========================================================
   REVEAL ANIM (set by JS / GSAP fallback)
   =========================================================== */
[data-reveal] { opacity: 0; }
.no-gsap [data-reveal] { opacity: 1; }

/* ===========================================================
   MODAL DE CONTATO
   =========================================================== */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 40px);
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(4, 2, 6, 0.74);
  backdrop-filter: blur(8px) saturate(120%);
  opacity: 0;
  transition: opacity .35s ease;
}
.modal.is-open .modal__overlay { opacity: 1; }

.modal__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 540px;
  max-height: calc(100svh - clamp(32px, 8vw, 80px));
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(var(--neon-glow), .3);
  background:
    radial-gradient(120% 120% at 50% -20%, rgba(var(--neon-glow), .18), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 50px rgba(var(--brand-glow), .25);
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), opacity .35s ease;
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); opacity: 1; }

.modal__close {
  position: absolute; top: 16px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 24px; line-height: 1;
  color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line);
  cursor: pointer; transition: color .25s, border-color .25s, transform .25s;
}
.modal__close:hover { color: #fff; border-color: rgba(var(--neon-glow), .6); transform: rotate(90deg); }

.modal__title {
  font-size: clamp(24px, 3.4vw, 34px); font-weight: 700;
  line-height: 1.08; letter-spacing: -0.02em; margin-top: 16px;
}
.modal__desc { margin-top: 12px; color: var(--ink-soft); font-size: 15px; max-width: 44ch; }

.contact-form { margin-top: 26px; display: grid; gap: 20px; }
.field { display: grid; gap: 8px; border: 0; padding: 0; min-width: 0; }
.field > label, .field legend {
  font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--ink);
  padding: 0;
}
.field input[type="text"], .field input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--font); font-size: 15px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input::placeholder { color: var(--muted-solid); }
.field input:focus {
  outline: none;
  border-color: rgba(var(--neon-glow), .7);
  background: rgba(255,255,255,.05);
  box-shadow: 0 0 0 3px rgba(var(--neon-glow), .18);
}
.field input:-webkit-autofill { -webkit-text-fill-color: var(--ink); transition: background-color 9999s; }

.field__error {
  font-size: 12.5px; color: #ff7a9a; display: none;
}
.field.has-error input { border-color: #ff4d79; }
.field.has-error .field__error { display: block; }

/* chips de serviços */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; cursor: pointer; user-select: none; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex; align-items: center;
  padding: 9px 15px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line-strong);
  transition: color .2s, border-color .2s, background .2s, box-shadow .2s;
}
.chip:hover span { border-color: rgba(var(--neon-glow), .45); color: #fff; }
.chip input:checked + span {
  color: #fff;
  background: linear-gradient(180deg, rgba(var(--neon-glow), .25), rgba(var(--brand-glow), .18));
  border-color: rgba(var(--neon-glow), .8);
  box-shadow: 0 0 16px rgba(var(--brand-glow), .35);
}
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(var(--neon-glow), .3); }

.modal__submit { width: 100%; justify-content: center; margin-top: 4px; }
.modal__submit[disabled] { opacity: .6; cursor: progress; }

.modal__status { font-size: 14px; text-align: center; margin-top: 2px; }
.modal__status[hidden] { display: none; }
.modal__status.is-ok { color: #5ce0a0; }
.modal__status.is-err { color: #ff7a9a; }

body.modal-open { overflow: hidden; }
