/* =========================================================
   VANTA — style.css
   Tema dark · acento ignição (laranja) + sinal (verde-água)
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* cores */
  --bg: #0a0a0e;
  --bg-soft: #0d0d12;
  --surface: #15151b;
  --surface-2: #1c1c24;
  --border: #26262f;

  --accent: #ff5a1f;
  --accent-hover: #ff7438;
  --accent-dim: rgba(255, 90, 31, 0.16);

  --accent-2: #28e0b0;
  --accent-2-dim: rgba(40, 224, 176, 0.16);

  --text: #f4f3ef;
  --text-muted: #95959f;
  --text-dim: #5c5c68;

  /* tipografia */
  --font-display: "Chakra Petch", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --header-h: 76px;

  /* movimento */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t-med: 360ms;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body, h1, h2, h3, p, ul, dl, dd, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; color: inherit; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.text-accent { color: var(--accent); }

/* Tipografia compartilhada  */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}

.section-head {
  max-width: 560px;
  margin: 0 0 56px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-sub {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 16px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #100b08;
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(255, 90, 31, 0.55);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--full { width: 100%; }
.btn__icon { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.header.is-scrolled {
  background: rgba(10, 10, 14, 0.82);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.03em;
}
.brand__mark { width: 28px; height: 28px; color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  position: relative;
  font-size: 14.5px;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast) var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active { color: var(--text); }
.nav__link.is-active::after,
.nav__link:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Vídeo de fundo (fixo, cobre todas as telas) ---------- */
.site-bg-video {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.site-bg-scrim {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  /* Escurece o topo da tela (sempre por baixo do header) e o canto
     esquerdo, onde fica uma marquinha mais clara no vídeo original. */
  background:
    radial-gradient(140% 65% at 15% 0%, var(--bg) 0%, transparent 48%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 20%);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 120px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -200px;
  right: -160px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hero__subtitle {
  margin-top: 22px;
  max-width: 460px;
  font-size: 17px;
  color: var(--text-muted);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.hero__trust {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-dim);
}

/* HUD panel */
.hero__panel { position: relative; }
.hud {
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  transform-style: preserve-3d;
  will-change: transform;
}
.hud__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.hud__title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.hud__status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent-2);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); }
.dot--live { box-shadow: 0 0 0 3px var(--accent-2-dim); animation: pulse 2s var(--ease) infinite; }

.hud__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px 0;
}
.metric { display: flex; flex-direction: column; gap: 4px; }
.metric__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--text);
}
.metric__label {
  font-size: 11.5px;
  color: var(--text-dim);
}

.hud__modules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.module {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 4px;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast) var(--ease);
}
.module:hover { background: var(--surface-2); }

.toggle {
  position: relative;
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.toggle__dot {
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.toggle.is-on { background: var(--accent-2-dim); border-color: var(--accent-2); }
.toggle.is-on .toggle__dot { transform: translateX(16px); background: var(--accent-2); }

/* ---------- Como funciona ---------- */
.how { padding: 120px 0; border-top: 1px solid var(--border); }

.how__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.how__video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.how__video-el {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.how__video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  color: var(--accent-2);
}
.how__video-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 14, 0.35);
  transition: opacity var(--t-med) var(--ease);
}
.how__video-play.is-hidden { opacity: 0; pointer-events: none; }
.how__video-play__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px var(--accent-dim);
  transition: transform var(--t-fast) var(--ease);
}
.how__video-play:hover .how__video-play__circle { transform: scale(1.08); }
.how__video-play__circle svg { width: 22px; height: 22px; color: #100b08; margin-left: 2px; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.step:hover { border-color: var(--accent); transform: translateY(-4px); }
.step__index {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 18px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step__desc { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Pagamento ---------- */
.pricing { padding: 120px 0; border-top: 1px solid var(--border); }

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
}
.plans--two {
  max-width: 760px;
}
.plans--single {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}
.plan {
  position: relative;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.plan--highlight {
  border-color: var(--accent);
  background: linear-gradient(165deg, var(--surface), var(--bg-soft));
  box-shadow: 0 0 0 1px var(--accent), 0 30px 60px -30px rgba(255, 90, 31, 0.35);
}
.plan__badge {
  position: absolute;
  top: -13px; left: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #100b08;
}
.plan__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
}
.plan__price {
  margin: 18px 0 4px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
}
.plan__currency { font-size: 20px; vertical-align: top; margin-right: 2px; }
.plan__cents { font-size: 22px; }
.plan__period { font-size: 15px; color: var(--text-muted); font-weight: 500; }
.plan__note { font-size: 13px; color: var(--accent-2); margin-bottom: 18px; }
.plan__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
}
.plan__features li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.plan__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}

/* ---------- Cadastro ---------- */
.signup { padding: 120px 0; border-top: 1px solid var(--border); }
.signup__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.signup__bullets { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.signup__bullets li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--text-muted);
}
.signup__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__row { display: flex; flex-direction: column; gap: 8px; }
.form__row label { font-size: 13.5px; color: var(--text-muted); }
.form__row input,
.form__row select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14.5px;
  transition: border-color var(--t-fast) var(--ease);
}
.form__row input::placeholder { color: var(--text-dim); }
.form__row select { color: var(--text); }
.form__row input:focus,
.form__row select:focus { border-color: var(--accent-2); }
.form__row.has-error input,
.form__row.has-error select { border-color: #ff5d6c; }
.form__error {
  font-size: 12.5px;
  color: #ff5d6c;
  min-height: 1px;
}
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  cursor: pointer;
}
.form__checkbox input { margin-top: 3px; accent-color: var(--accent); }


/* ---------- Continuar pagamento ---------- */
.continue-payment { padding: 120px 0; border-top: 1px solid var(--border); }
.continue-payment__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.continue-payment__info .section-sub {
  max-width: 520px;
}
.continue-payment__form {
  border-color: rgba(255, 90, 31, 0.32);
  box-shadow: 0 0 45px rgba(255, 90, 31, 0.08);
}

/* ---------- Download ---------- */
.download { padding: 120px 0; border-top: 1px solid var(--border); }
.download__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.specs {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}
.specs__item dt {
  font-size: 11.5px;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.specs__item dd {
  font-family: var(--font-mono);
  font-size: 14.5px;
}
.download__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.download__hint { font-size: 12.5px; color: var(--text-dim); }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 0; border-top: 1px solid var(--border); }
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}
.footer__tagline { margin-top: 12px; color: var(--text-dim); font-size: 14px; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.footer__col a { font-size: 14.5px; color: var(--text-muted); transition: color var(--t-fast) var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 16px);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  z-index: 200;
  max-width: 90vw;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast.is-error { border-color: #ff5d6c; }
.toast.is-success { border-color: var(--accent-2); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-2-dim); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { order: -1; max-width: 480px; }
  .how__layout { grid-template-columns: 1fr; }
  .signup__inner, .continue-payment__inner { grid-template-columns: 1fr; gap: 40px; }
  .plans { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 760px) {
  .nav { 
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(10, 10, 14, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__link { padding: 10px 0; width: 100%; }
  .header__actions .btn--sm { display: none; }
  .nav-toggle { display: flex; }

  .download__card { padding: 32px; justify-content: flex-start; }
  .download__action { width: 100%; }
  .specs { gap: 22px; }
}

@media (max-width: 540px) {
  .hud__metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .metric__value { font-size: 20px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}


/* ---------- Modal Pix ---------- */
.pix-modal[hidden] { display: none; }
.pix-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 24px; }
.pix-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(8px); }
.pix-modal__dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 32px 80px -36px rgba(0, 0, 0, 0.85);
}
.pix-modal__close {
  position: absolute;
  top: 14px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--surface-2);
  font-size: 22px;
  line-height: 1;
}
.pix-modal__title { font-family: var(--font-display); font-size: 24px; margin: 12px 0 8px; }
.pix-modal__text { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.pix-modal__qr {
  width: 216px; height: 216px;
  margin: 0 auto 22px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: #fff;
  display: grid;
  place-items: center;
}
.pix-modal__qr img { display: block; width: 192px; height: 192px; }
.pix-modal__label { display: block; color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }
.pix-modal__code {
  width: 100%;
  resize: none;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.pix-modal__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.pix-modal__status {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}
.pix-modal__status.is-paid { color: var(--accent-2); }
.pix-modal__status.is-failed { color: #ff5d6c; }
