/* =========================================================================
   Specter GTO — marketing site styles
   Brand tokens mirror client/tailwind.config.js exactly so the marketing
   site and the app read as one product.
   ========================================================================= */

:root {
  /* Brand palette (exact hex from client/tailwind.config.js) */
  --bg: #0a0a0a;
  --panel: #111111;
  --border: #1e1e1e;
  --violet: #7c3aed;
  --ice: #38bdf8;
  --text: #f1f5f9;
  --muted: #64748b;

  /* Derived tones */
  --panel-2: #161616;
  --border-2: #262626;
  --body: #94a3b8;          /* lighter than --muted for AA body contrast on --bg */
  --violet-soft: rgba(124, 58, 237, 0.14);
  --violet-line: rgba(124, 58, 237, 0.40);
  --ice-soft: rgba(56, 189, 248, 0.12);

  /* Type */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Effects */
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.75);
  --shadow-violet: 0 20px 60px -22px rgba(124, 58, 237, 0.55);
  --ring: 0 0 0 3px rgba(56, 189, 248, 0.55);

  --nav-h: 68px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

/* Anchor offset so sticky nav doesn't cover section headings */
:target,
section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--violet);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

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

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.section-head {
  max-width: 680px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
  background: var(--ice-soft);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 10px var(--ice);
}

h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-top: 18px;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--body);
  font-size: 1.05rem;
  max-width: 60ch;
}
.section-head--center .section-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease,
              background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--violet), #6d28d9);
  color: #fff;
  box-shadow: var(--shadow-violet);
}
.btn-primary:hover { box-shadow: 0 22px 64px -18px rgba(124, 58, 237, 0.75); transform: translateY(-1px); }

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border-2);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--violet-line); background: var(--violet-soft); }

.btn-block { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* SPECTER (white) + GTO (violet) lockup */
.logo {
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.logo .mark { width: 22px; height: 22px; }
.logo .word-specter { color: #fff; }
.logo .word-gto { color: var(--violet); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--body);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 104px);
  overflow: hidden;
}
/* Spectral motif — purely decorative aura, never a copy claim */
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 720px;
  background:
    radial-gradient(620px 420px at 22% 8%, rgba(124, 58, 237, 0.30), transparent 70%),
    radial-gradient(560px 420px at 88% 22%, rgba(56, 189, 248, 0.16), transparent 72%),
    radial-gradient(800px 500px at 60% -10%, rgba(124, 58, 237, 0.10), transparent 75%);
  filter: blur(8px);
  z-index: -2;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.7rem);
  margin: 22px 0 20px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--violet), var(--ice));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--body);
  max-width: 54ch;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-micro {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-micro svg { flex: none; color: var(--ice); }

/* Co-located user-responsibility note (compliance: ASA placement remedy).
   Legible, not fine print — sits in the same view as real-time/any-site claims. */
.responsibility-note {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--violet);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  max-width: 60ch;
}
.responsibility-note svg { flex: none; margin-top: 2px; color: var(--violet); }
.responsibility-note p { font-size: 0.92rem; color: var(--body); margin: 0; }

/* ---------- Decision-card mockup (illustrative, not a screenshot) ---------- */
.decision-card {
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
}
.decision-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(160deg, var(--violet-line), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.dc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dc-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ice);
  text-transform: uppercase;
}
.dc-live .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 10px var(--ice);
  animation: pulse 1.6s ease-in-out infinite;
}
.dc-context { font-size: 0.78rem; color: var(--muted); }

.dc-board {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.pcard {
  width: 38px; height: 52px;
  border-radius: 7px;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}
.pcard .suit { font-size: 0.8rem; margin-top: 1px; }
.pcard.red { color: #dc2626; }
.pcard.hole { background: #1f2937; color: #f8fafc; border: 1px solid var(--border-2); }
.pcard.hole.red { color: #f87171; }

.dc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--body);
  margin-bottom: 14px;
}
.dc-row .label { color: var(--muted); }

.dc-decision {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.dc-decision .pct { font-size: 1rem; color: var(--ice); font-weight: 600; }

.dc-bars { display: grid; gap: 9px; }
.dc-bar { display: grid; grid-template-columns: 52px 1fr 40px; align-items: center; gap: 10px; font-size: 0.78rem; }
.dc-bar .name { color: var(--body); }
.dc-bar .track { height: 8px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.dc-bar .fill { height: 100%; border-radius: 999px; }
.dc-bar .fill.raise { background: linear-gradient(90deg, var(--violet), #8b5cf6); }
.dc-bar .fill.call  { background: linear-gradient(90deg, #38bdf8, #0ea5e9); }
.dc-bar .fill.fold  { background: rgba(148, 163, 184, 0.4); }
.dc-bar .val { color: var(--muted); text-align: right; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- Card grid (What it is) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--border-2); transform: translateY(-2px); }
.card .icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: var(--violet-soft);
  border: 1px solid var(--violet-line);
  color: var(--violet);
  margin-bottom: 16px;
}
.card .icon.ice { background: var(--ice-soft); border-color: rgba(56,189,248,0.3); color: var(--ice); }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { color: var(--body); font-size: 0.96rem; }

/* ---------- Steps (How it works) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.step .num {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--violet), #6d28d9);
  color: #fff;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px -8px rgba(124,58,237,0.7);
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--body); font-size: 0.95rem; }

/* ---------- Why Specter ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.97rem;
}
.why-item svg { flex: none; color: var(--ice); }

/* ---------- Pricing ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 840px;
  margin-inline: auto;
}
.plan {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.plan--pro {
  border-color: var(--violet-line);
  background:
    radial-gradient(420px 220px at 50% -10%, var(--violet-soft), transparent 70%),
    var(--panel);
  box-shadow: var(--shadow-violet);
  position: relative;
}
.plan-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--violet);
  padding: 5px 11px;
  border-radius: 999px;
}
.plan-name { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ice); }
.plan--pro .plan-name { color: var(--violet); }
.plan-price { font-size: 2.5rem; font-weight: 800; margin: 12px 0 4px; }
.plan-price small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan-note { color: var(--violet); font-size: 0.9rem; font-weight: 600; min-height: 1.2em; }
.plan-desc { color: var(--body); font-size: 0.95rem; margin: 12px 0 20px; }
.plan-features { display: grid; gap: 10px; margin-bottom: 24px; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; color: var(--body); font-size: 0.93rem; }
.plan-features svg { flex: none; margin-top: 3px; color: var(--ice); }
.plan .btn { margin-top: auto; }
.pricing-micro { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 22px; }
.pricing-micro a { color: var(--ice); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Prominent disclaimer callout (ASA remedy: primary, not footer) ---------- */
.callout {
  background:
    radial-gradient(600px 200px at 10% 0%, var(--violet-soft), transparent 70%),
    var(--panel);
  border: 1px solid var(--violet-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
}
.callout .icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--violet-soft);
  border: 1px solid var(--violet-line);
  color: var(--violet);
  display: flex; align-items: center; justify-content: center;
}
.callout h2 { font-size: 1.3rem; margin-bottom: 12px; }
.callout p { color: var(--text); font-size: 1.04rem; line-height: 1.7; }
.callout p .em { color: #fff; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex: none;
  transition: transform 0.2s ease;
  color: var(--muted);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-answer { padding: 0 22px 20px; color: var(--body); font-size: 0.96rem; }

/* "Is Specter allowed where I play?" — emphasized, sits beside the any-site answer */
.faq-item--allowed {
  border-color: var(--violet-line);
  background:
    radial-gradient(400px 120px at 0% 0%, var(--violet-soft), transparent 70%),
    var(--panel);
}
.faq-item--allowed summary { color: #fff; }

/* HOLD-for-verification item (screen privacy) */
.faq-item--hold { border-style: dashed; border-color: var(--border-2); }
.hold-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
}
.final-cta-inner {
  background:
    radial-gradient(700px 300px at 50% 0%, var(--violet-soft), transparent 70%),
    linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--violet-line);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px) 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.final-cta h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.final-cta p { color: var(--body); max-width: 52ch; margin: 0 auto 28px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 56px 32px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 34ch; }
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--body); font-size: 0.93rem; transition: color 0.18s ease; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
  max-width: 80ch;
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 800px;
  margin-inline: auto;
  padding-block: clamp(48px, 7vw, 88px);
}
.draft-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #fbbf24;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 32px;
}
.draft-banner svg { flex: none; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 0.88rem; margin-bottom: 32px; }
.legal h2 { font-size: 1.25rem; margin: 32px 0 12px; }
.legal p, .legal li { color: var(--body); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--ice); text-decoration: underline; text-underline-offset: 3px; }
.legal .exact-line {
  background: var(--panel);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--violet);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: var(--text);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--body);
  font-size: 0.92rem;
  margin-bottom: 28px;
}
.back-link:hover { color: var(--text); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px 26px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  color: var(--body);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .callout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .container { padding-inline: 20px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
