/* ============================================================
   RAGuard — Runtime Governance | Refactored stylesheet
   Indigo brand · Light-only · Inter + JetBrains Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Brand */
  --brand: #0B00CE;
  --brand-2: #4338CA;
  --brand-3: #6366F1;
  --brand-soft: #EEF2FF;
  --brand-line: #C7D2FE;

  /* Surface */
  --bg: #FFFFFF;
  --bg-2: #F7F7FB;
  --bg-3: #F1F2F8;
  --bg-ink: #0B0B17;

  /* Text */
  --fg-1: #0B0B17;
  --fg-2: #2A2A3A;
  --fg-3: #5B5B70;
  --fg-4: #8C8CA1;
  --fg-on-dark: #F4F4FA;

  /* Lines & shape */
  --line: #ECECF2;
  --line-2: #E1E1EA;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  /* Status */
  --green: #16A34A;
  --green-soft: #DCFCE7;
  --warning: #D97706;
  --warning-soft: #FEF3C7;
  --red: #DC2626;
  --red-soft: #FEE2E2;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(11, 0, 206, .04), 0 4px 12px rgba(11, 0, 206, .04);
  --shadow-2: 0 4px 8px rgba(11, 0, 206, .05), 0 12px 32px rgba(11, 0, 206, .07);
  --shadow-3: 0 8px 16px rgba(11, 0, 206, .06), 0 24px 64px rgba(11, 0, 206, .10);

  /* Type scale */
  --t-h1: clamp(2.6rem, 5vw, 4.5rem);
  --t-h2: clamp(2rem, 3.4vw, 3rem);
  --t-h3: clamp(1.4rem, 2vw, 1.85rem);
  --t-h4: 1.15rem;

  /* Container */
  --max: 1200px;
  --max-w: 1320px;
  --gutter: 28px;
}

/* Palette tweak themes */
[data-palette="violet"] {
  --brand: #5B21B6;
  --brand-2: #7C3AED;
  --brand-3: #A78BFA;
  --brand-soft: #F3E8FF;
  --brand-line: #DDD6FE;
}

[data-palette="azure"] {
  --brand: #1E40AF;
  --brand-2: #2563EB;
  --brand-3: #60A5FA;
  --brand-soft: #DBEAFE;
  --brand-line: #BFDBFE;
}

[data-palette="teal"] {
  --brand: #0F766E;
  --brand-2: #0D9488;
  --brand-3: #2DD4BF;
  --brand-soft: #CCFBF1;
  --brand-line: #99F6E4;
}

/* ---------- Reset / base ---------- */
* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  background: var(--bg);
  font-feature-settings: 'cv02', 'cv03', 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--fg-1);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  font-size: var(--t-h1);
  letter-spacing: -0.034em;
  line-height: 1.04;
  font-weight: 800;
}

h2 {
  font-size: var(--t-h2);
  letter-spacing: -0.028em;
}

h3 {
  font-size: var(--t-h3);
}

h4 {
  font-size: var(--t-h4);
  font-weight: 600;
}

p {
  color: var(--fg-3);
  line-height: 1.65;
  text-wrap: pretty;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-wide {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  border: 1px solid transparent;
  letter-spacing: -0.005em;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.86rem;
}

.btn-lg {
  padding: 14px 24px;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 2px rgba(11, 0, 206, .10), 0 4px 14px rgba(11, 0, 206, .18);
}

.btn-primary:hover {
  background: #0900A8;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(11, 0, 206, .14), 0 12px 28px rgba(11, 0, 206, .24);
}

.btn-secondary {
  background: var(--bg);
  color: var(--fg-1);
  border-color: var(--line-2);
}

.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

.btn .arrow {
  transition: transform .2s;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, .92);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-1);
}

.logo-h {
  height: 30px;
  width: auto;
  display: block;
  color: var(--brand);
}

.logo-v {
  height: 96px;
  width: auto;
  display: block;
}

.footer-logo {
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-2);
  border-radius: 8px;
  transition: color .15s, background .15s;
}

.nav-link:hover {
  color: var(--fg-1);
  background: var(--bg-2);
}

.nav-dd {
  position: relative;
}

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-2);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, visibility .18s, transform .18s;
  z-index: 10;
}

.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 0.88rem;
  color: var(--fg-2);
  border-radius: 8px;
  transition: background .12s, color .12s;
}

.nav-dd-item:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.badge-new {
  background: var(--brand);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 2px 6px;
  border-radius: 999px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  padding: 6px;
  color: var(--fg-1);
}

.mobile-menu {
  display: none;
  padding: 12px var(--gutter) 20px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: var(--fg-2);
  font-weight: 500;
}

.mobile-menu.open {
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 88px;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

.hero-shader {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 600px at 22% 8%, rgba(99, 102, 241, .16), transparent 60%),
    radial-gradient(900px 600px at 88% 12%, rgba(11, 0, 206, .10), transparent 60%),
    linear-gradient(180deg, rgba(238, 242, 255, .6) 0%, transparent 60%);
}

.hero-shader canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-2);
  box-shadow: 0 1px 2px rgba(11, 0, 206, .05);
  transition: transform .15s, box-shadow .15s;
}

.pill:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
}

.pill-tag {
  background: var(--brand);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, .18);
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, .18);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(99, 102, 241, .0);
  }
}

.gradient-text {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--fg-3);
  max-width: 580px;
  margin-top: 20px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-stat-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fg-1);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.74rem;
  color: var(--fg-3);
  margin-top: 6px;
  display: block;
}

.hero-meta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--fg-3);
}

.hero-meta-item svg {
  color: var(--green);
}

/* ---------- Live Trace Panel ---------- */
.trace-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  position: relative;
}

.trace-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(238, 242, 255, .4), transparent 30%);
  pointer-events: none;
}

.trace-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  color: var(--fg-3);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .16);
  animation: live-pulse-g 2s infinite;
}

@keyframes live-pulse-g {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(22, 163, 74, .18);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(22, 163, 74, .0);
  }
}

.trace-title {
  color: var(--fg-2);
  font-weight: 600;
}

.trace-meta {
  margin-left: auto;
}

.trace-rows {
  padding: 6px 8px;
}

.trace-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  position: relative;
  opacity: 0;
  transform: translateX(-6px);
  animation: row-in .5s forwards;
}

.trace-row::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 100%;
  width: 1px;
  height: 8px;
  background: var(--line-2);
}

.trace-row:last-of-type::after {
  display: none;
}

.trace-row:nth-child(1) {
  animation-delay: .1s;
}

.trace-row:nth-child(2) {
  animation-delay: .35s;
}

.trace-row:nth-child(3) {
  animation-delay: .60s;
}

.trace-row:nth-child(4) {
  animation-delay: .85s;
}

.trace-row:nth-child(5) {
  animation-delay: 1.1s;
}

.trace-row:nth-child(6) {
  animation-delay: 1.35s;
}

@keyframes row-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.trace-row.is-highlight {
  background: var(--brand-soft);
}

.trace-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--fg-4);
  font-weight: 500;
}

.trace-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trace-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--fg-1);
}

.trace-detail {
  font-size: 0.72rem;
  color: var(--fg-3);
  font-family: 'JetBrains Mono', monospace;
}

.trace-status {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
}

.trace-status.ok {
  background: var(--green-soft);
  color: var(--green);
}

.trace-status.warn {
  background: var(--warning-soft);
  color: var(--warning);
}

.trace-status.fail {
  background: var(--red-soft);
  color: var(--red);
}

.trace-ms {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-2);
  min-width: 48px;
  text-align: right;
}

.trace-ms small {
  color: var(--fg-4);
  font-weight: 500;
}

.trace-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, var(--bg-2));
}

.trace-foot-stat {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.trace-foot-stat+.trace-foot-stat {
  border-left: 1px solid var(--line);
}

.trace-foot-stat .num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--brand);
}

.trace-foot-stat .cap {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fg-3);
}

/* ---------- Trust bar ---------- */
.trustbar {
  padding: 36px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trustbar-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--fg-3);
  text-align: center;
  margin-bottom: 22px;
  font-weight: 600;
}

.trustbar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 22px;
}

.trustbar-badges {
  margin-top: 18px;
  gap: 12px 14px;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--fg-2);
  opacity: .85;
  filter: grayscale(100%);
  transition: opacity .2s, filter .2s;
}

.trust-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.trust-logo .trust-mark {
  height: 22px;
  width: 22px;
  display: block;
  flex: 0 0 auto;
}

.trust-logo .trust-text {
  height: 20px;
  width: auto;
  display: block;
}

.trust-logo .trust-combo {
  height: 30px;
  width: auto;
  display: block;
  margin: -4px 0;
}

.trust-text-label {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 22px;
  height: 22px;
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 22px;
  background: var(--line-2);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--brand);
}

/* ---------- Generic Section ---------- */
.section {
  padding: 112px 0;
}

.section.alt {
  background: var(--bg-2);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.section-head p {
  margin-top: 16px;
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand);
  padding: 6px 12px;
  background: var(--brand-soft);
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Stateless Fallacy ---------- */
.fallacy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fallacy-side {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.fallacy-side.bad {
  border-color: rgba(220, 38, 38, .16);
}

.fallacy-side.good {
  border-color: var(--brand-line);
  background: linear-gradient(180deg, var(--brand-soft) 0%, #fff 80%);
}

.fallacy-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--fg-1);
}

.fallacy-title svg {
  width: 20px;
  height: 20px;
}

.fallacy-title.bad svg {
  color: var(--red);
}

.fallacy-title.good svg {
  color: var(--green);
}

.turn-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-2);
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.fallacy-side.good .turn-row {
  background: rgba(255, 255, 255, .7);
}

.turn-icon {
  color: var(--fg-4);
  display: inline-flex;
}

.turn-text {
  color: var(--fg-2);
}

.turn-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 999px;
}

.turn-status.ok-soft {
  background: rgba(22, 163, 74, .10);
  color: var(--green);
}

.turn-status.warn {
  background: var(--warning-soft);
  color: var(--warning);
}

.turn-status.fail {
  background: var(--red-soft);
  color: var(--red);
}

.turn-status.tracked {
  background: var(--brand-soft);
  color: var(--brand);
}

.turn-status.blocked {
  background: rgba(11, 0, 206, .10);
  color: var(--brand);
}

.fallacy-foot {
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--fg-3);
  font-style: italic;
}

/* ---------- Threats ---------- */
.threats {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 80px;
}

.threats-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.threat-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.threat-card:hover {
  border-color: var(--brand-line);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.threat-card h4 {
  margin: 14px 0 6px;
  font-size: 1.02rem;
}

.threat-card p {
  font-size: 0.88rem;
}

.threat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
}

.threat-icon.red {
  background: var(--red-soft);
  color: var(--red);
}

.threat-icon.orange {
  background: var(--warning-soft);
  color: var(--warning);
}

.threat-icon.indigo {
  background: var(--brand-soft);
  color: var(--brand);
}

.threat-icon.purple {
  background: #F3E8FF;
  color: #7C3AED;
}

/* ---------- Architecture diagram ---------- */
.arch {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 28px;
}

.arch-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.arch-box:hover {
  transform: translateY(-2px);
  border-color: var(--brand-line);
  box-shadow: var(--shadow-1);
}

.arch-box.center {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
  background: linear-gradient(180deg, #fff 0%, var(--brand-soft) 100%);
  transform: scale(1.04);
}

.arch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 12px;
}

.arch-box h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.arch-box p {
  font-size: 0.82rem;
}

.arch-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-4);
}

.arch-layers {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px dashed var(--brand-line);
}

.arch-layer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--fg-2);
  padding: 5px 0;
}

.arch-layer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.arch-group-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 2px;
}

.arch-group-label+.arch-layer {
  padding-top: 2px;
}

.arch-group-divider {
  height: 0;
  border-top: 1px dashed var(--brand-line);
  margin: 10px 0 8px;
}

.arch-layer-chip {
  margin-left: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--brand-line);
  color: var(--brand);
}

/* ----- Side-card content: code · compat · foot strip ----- */
.arch-app-types {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.arch-app-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: -0.005em;
  transition: border-color .2s, color .2s, background .2s;
}

.arch-app-chip svg {
  width: 12px;
  height: 12px;
  color: var(--brand);
}

.arch-app-chip:hover {
  border-color: var(--brand-line);
  color: var(--fg-1);
  background: var(--brand-soft);
}

.arch-code {
  margin-top: 18px;
  border-radius: 12px;
  background: var(--bg-ink);
  border: 1px solid rgba(255, 255, 255, .04);
  overflow: hidden;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .04) inset,
    0 8px 24px -16px rgba(11, 0, 206, .35);
}

.arch-code-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .025);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.arch-code-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(244, 244, 250, .18);
}

.arch-code-dot:nth-child(1) {
  background: rgba(255, 107, 107, .55);
}

.arch-code-dot:nth-child(2) {
  background: rgba(255, 193, 77, .55);
}

.arch-code-dot:nth-child(3) {
  background: rgba(120, 200, 140, .55);
}

.arch-code-lang {
  margin-left: auto;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 244, 250, .42);
}

.arch-code-body {
  margin: 0;
  padding: 14px 14px;
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--fg-on-dark);
  white-space: pre;
  overflow-x: auto;
}

.arch-code-body .ck-cmt {
  color: rgba(244, 244, 250, .38);
  font-style: italic;
}

.arch-code-body .ck-fn {
  color: #93C5FD;
}

.arch-code-body .ck-str {
  color: #FCD34D;
}

.arch-compat {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.arch-compat-head {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
  padding: 9px 12px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.arch-compat-row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  font-size: 0.76rem;
  border-top: 1px solid var(--line);
}

.arch-compat-row:first-of-type {
  border-top: 0;
}

.arch-compat-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .12);
}

.arch-compat-name {
  font-weight: 600;
  color: var(--fg-1);
  letter-spacing: -0.005em;
}

.arch-compat-path {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.66rem;
  color: var(--fg-4);
  letter-spacing: 0.01em;
}

.arch-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
}

.arch-foot-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-4);
}

.arch-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity .25s, filter .25s;
}

.arch-box:hover .arch-stack {
  opacity: 0.78;
  filter: grayscale(0.5);
}

.arch-stack img {
  height: 14px;
  width: auto;
  display: block;
}

.arch-box:not(.center) .arch-foot {
  margin-top: auto;
}

/* ----- Flowing arrow ----- */
.arch-arrow svg {
  width: 56px;
  height: 16px;
  overflow: visible;
}

.arch-arrow-flow {
  animation: arch-flow 1.1s linear infinite;
}

@keyframes arch-flow {
  to {
    stroke-dashoffset: -9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arch-arrow-flow {
    animation: none;
    stroke-dasharray: 0;
  }
}

.arch-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.arch-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-2);
}

.arch-check svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* ---------- Capabilities ---------- */
.cap-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-1);
}

.cap-tab {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--fg-3);
  transition: background .2s, color .2s;
}

.cap-tab:hover {
  color: var(--fg-1);
}

.cap-tab.active {
  background: var(--brand);
  color: #fff;
}

.cap-panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cap-panel.active {
  display: grid;
}

.cap-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  overflow: hidden;
  isolation: isolate;
}

.cap-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.cap-card:hover {
  border-color: var(--brand-line);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.cap-card:hover::before {
  transform: scaleX(1);
}

.cap-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: .04em;
  margin-bottom: 16px;
}

.cap-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 14px;
}

.cap-card h4 {
  font-size: 1.04rem;
  margin-bottom: 8px;
}

.cap-card>p {
  font-size: 0.88rem;
}

.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.cap-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--fg-3);
  padding: 3px 8px;
  border-radius: 6px;
}

/* ---------- Integration ---------- */
.integrate-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.steps {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.86rem;
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.step p {
  font-size: 0.88rem;
}

.code-panel {
  background: #0F0F1F;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  font-family: 'JetBrains Mono', monospace;
}

.code-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #1A1A2E;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.code-dot:nth-child(1) {
  background: #FF5F56;
}

.code-dot:nth-child(2) {
  background: #FFBD2E;
}

.code-dot:nth-child(3) {
  background: #27C93F;
}

.code-file {
  margin-left: 12px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, .5);
}

.code-body {
  padding: 22px 24px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .86);
  overflow-x: auto;
}

.code-line {
  display: block;
  white-space: pre;
}

.c-comment {
  color: #6B7080;
}

.c-key {
  color: #93C5FD;
}

.c-keyword {
  color: #C084FC;
}

.c-red {
  color: #F87171;
}

.c-green {
  color: #6EE7B7;
}

/* ---------- Cards Grid (solutions / compare) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.card.alt {
  padding: 24px;
}

.card:hover {
  border-color: var(--brand-line);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 18px;
}

.card-icon.purple {
  background: #F3E8FF;
  color: #7C3AED;
}

.card-icon.green {
  background: var(--green-soft);
  color: var(--green);
}

.card-icon.orange {
  background: var(--warning-soft);
  color: var(--warning);
}

.card h3 {
  font-size: 1.16rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.86rem;
  transition: gap .2s;
}

.card-link:hover {
  gap: 10px;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, #fff, var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-1);
}

.stat-cell {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell .num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  line-height: 1;
}

.stat-cell .num.brand {
  color: var(--brand);
}

.stat-cell .desc {
  display: block;
  font-size: 0.82rem;
  color: var(--fg-3);
  margin-top: 12px;
  line-height: 1.5;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.pricing-card:hover {
  border-color: var(--brand-line);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.pricing-card.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-soft) 0%, #fff 80%);
  box-shadow: 0 0 0 4px rgba(11, 0, 206, .06), var(--shadow-2);
  transform: translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 999px;
}

.pricing-tier {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--fg-3);
}

.pricing-card.featured .pricing-tier {
  color: var(--brand);
}

.pricing-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg-1);
  margin-top: 6px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-price span {
  font-size: 0.8rem;
  color: var(--fg-3);
  font-weight: 500;
}

.pricing-desc {
  font-size: 0.86rem;
  color: var(--fg-3);
  margin: 10px 0 22px;
  min-height: 40px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-2);
}

.pricing-features li svg {
  color: var(--brand);
  flex: none;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(255, 255, 255, .15), transparent 60%),
    radial-gradient(800px 400px at 80% 100%, rgba(255, 255, 255, .10), transparent 60%);
  pointer-events: none;
}

.cta-banner>* {
  position: relative;
}

.cta-banner .eyebrow {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  margin: 0 0 16px;
}

.cta-banner h2 .gradient-text {
  background: linear-gradient(120deg, #fff 0%, #C7D2FE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner p {
  color: rgba(255, 255, 255, .85);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--brand);
}

.cta-banner .btn-primary:hover {
  background: #F4F4FA;
}

.cta-banner .btn-secondary {
  background: rgba(255, 255, 255, .10);
  color: #fff;
  border-color: rgba(255, 255, 255, .30);
}

.cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-ink);
  color: var(--fg-on-dark);
  padding: 80px 0 32px;
}

.footer .nav-logo {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  /* padding-bottom: 56px; */
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 18px;
  max-width: 380px;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .6);
  transition: color .15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .45);
}

/* ---------- Tweaks panel ---------- */
.tweaks-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fg-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-3);
  z-index: 90;
  transition: transform .2s, background .2s;
}

.tweaks-fab:hover {
  transform: rotate(15deg) scale(1.06);
  background: var(--brand);
}

.tweaks {
  position: fixed;
  right: 22px;
  bottom: 80px;
  width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-3);
  z-index: 91;
  transform: translateY(20px) scale(.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
}

.tweaks.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.tweaks-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.tweaks-head h5 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fg-3);
}

#tweaks-close {
  color: var(--fg-3);
  padding: 4px;
  border-radius: 6px;
}

#tweaks-close:hover {
  background: var(--bg-2);
  color: var(--fg-1);
}

.tweaks-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tweak-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tweak-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  color: var(--fg-3);
}

.tweak-swatches {
  display: flex;
  gap: 8px;
}

.tweak-swatch {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: transform .15s, border-color .15s;
}

.tweak-swatch.active {
  border-color: var(--fg-1);
  transform: scale(1.06);
}

.tweak-swatch:hover {
  transform: scale(1.06);
}

.tweak-options {
  display: grid;
  background: var(--bg-2);
  border-radius: 10px;
  padding: 4px;
}

.tweak-options.three {
  grid-template-columns: repeat(3, 1fr);
}

.tweak-opt {
  padding: 7px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-3);
  border-radius: 7px;
  transition: background .15s, color .15s;
}

.tweak-opt.active {
  background: #fff;
  color: var(--fg-1);
  box-shadow: var(--shadow-1);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .threats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .arch {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .arch-arrow {
    transform: rotate(90deg);
    height: 14px;
  }

  .integrate-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cap-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(2) {
    border-right: none;
  }

  .stat-cell:nth-child(1),
  .stat-cell:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 40px 0 56px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .threats-cards {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cap-panel {
    grid-template-columns: 1fr;
  }

  .fallacy {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }

  .stat-cell:last-child {
    border-bottom: none;
  }

  .cta-banner {
    padding: 48px 28px;
  }

  .nav-cta .btn-secondary {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}