:root {
  --ink: #07101d;
  --ink-soft: #0c1929;
  --panel: #101f31;
  --panel-2: #14263a;
  --line: rgba(195, 210, 225, 0.15);
  --line-strong: rgba(195, 210, 225, 0.28);
  --text: #f3f0e9;
  --muted: #9caaba;
  --gold: #c6a46b;
  --gold-light: #e0c38e;
  --blue: #5faee8;
  --blue-soft: #a9d5f2;
  --red: #d56d62;
  --green: #72c3a1;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(38, 79, 116, 0.14), transparent 35%),
    var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--text);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 29, .83);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1380px, calc(100% - 48px));
  height: 76px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; color: var(--text); text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--gold-light);
  font: 600 21px/1 var(--serif); transform: rotate(45deg);
}
.brand-mark::first-letter { transform: rotate(-45deg); }
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand strong { font: 600 17px var(--serif); letter-spacing: .02em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.module-identity { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #c4ced8; }
.eyebrow, .section-number { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { padding-right: 12px; border-right: 1px solid var(--line-strong); }
.icon-button {
  justify-self: end; width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--muted); cursor: pointer;
  transition: .2s ease;
}
.icon-button:hover { color: var(--gold-light); border-color: var(--gold); transform: rotate(8deg); }
.icon-button svg { width: 19px; }
.progress-track { height: 2px; background: rgba(255,255,255,.03); }
.progress-track span { display: block; width: 8%; height: 100%; background: linear-gradient(90deg, var(--gold), var(--blue)); }

.hero {
  position: relative;
  min-height: 690px;
  padding: 170px max(24px, calc((100vw - 1280px) / 2)) 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  gap: 10%;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 92%);
}
.hero-glow { position: absolute; width: 700px; height: 700px; left: 35%; top: 2%; border-radius: 50%; background: radial-gradient(circle, rgba(52, 114, 162, .16), transparent 65%); }
.hero-content, .hero-thesis { position: relative; z-index: 1; }
.hero-kicker { display: flex; align-items: center; gap: 12px; color: var(--gold-light); font-size: 11px; letter-spacing: .17em; text-transform: uppercase; }
.kicker-line { width: 34px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 850px; margin: 28px 0 24px; font: 500 clamp(50px, 6.4vw, 91px)/.98 var(--serif); letter-spacing: -.045em; }
.hero h1 em { color: var(--gold-light); font-weight: 500; }
.hero-content > p { max-width: 680px; color: #b1bdc9; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.65; }
.primary-link {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 22px;
  color: var(--text); text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: .06em;
}
.primary-link svg { width: 17px; color: var(--gold); transition: transform .2s ease; }
.primary-link:hover svg { transform: translateY(5px); }
.hero-thesis { padding: 30px 0 0 30px; border-left: 1px solid var(--gold); }
.hero-thesis > span { color: var(--gold); font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }
.hero-thesis blockquote { margin: 18px 0 28px; color: #d7dce1; font: 500 21px/1.55 var(--serif); }
.thesis-steps { display: flex; gap: 8px; }
.thesis-steps span { width: 24px; height: 2px; background: var(--line-strong); }
.thesis-steps span.active { width: 48px; background: var(--gold); }

.concept-strip {
  width: min(1120px, calc(100% - 48px));
  margin: -1px auto 0;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}
.concept-strip article { display: flex; align-items: center; gap: 13px; }
.concept-strip article > span { color: var(--gold); font: 500 24px var(--serif); }
.concept-strip strong, .concept-strip small { display: block; }
.concept-strip strong { font: 500 16px var(--serif); }
.concept-strip small { color: var(--muted); font-size: 10px; }
.concept-strip > svg { width: 17px; color: #3c4d60; }

.lab-section { padding: 110px max(24px, calc((100vw - 1280px) / 2)) 70px; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8%; align-items: end; margin-bottom: 54px; }
.section-heading h2, .decision-intro h2, .synthesis h2 { margin: 12px 0 0; font: 500 clamp(38px, 4vw, 58px)/1.08 var(--serif); letter-spacing: -.035em; }
.section-heading > p, .decision-intro > p { margin: 0; color: var(--muted); font-size: 15px; }

.legal-rule {
  position: relative; overflow: hidden; margin-bottom: 24px; padding: 28px 38px 24px;
  border: 1px solid var(--line-strong); background: linear-gradient(130deg, rgba(20,38,58,.95), rgba(10,24,39,.9)); box-shadow: var(--shadow);
}
.legal-rule::before { content: "§"; position: absolute; right: 24px; top: -42px; color: rgba(198,164,107,.055); font: 240px/1 var(--serif); }
.rule-label { position: relative; display: flex; align-items: center; gap: 9px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.rule-label svg { width: 16px; }
.legal-rule blockquote { position: relative; max-width: 1050px; margin: 22px 0; font: 500 clamp(24px, 2.7vw, 38px)/1.35 var(--serif); letter-spacing: -.018em; }
.legal-rule mark { padding: 0 .08em; background: linear-gradient(transparent 64%, rgba(198,164,107,.25) 0); color: var(--gold-light); }
.rule-meta { position: relative; display: flex; justify-content: space-between; gap: 20px; padding-top: 19px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.rule-meta span { display: inline-flex; align-items: center; gap: 7px; }
.rule-meta svg { width: 13px; color: var(--gold); }

.lab-layout { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(540px, 1.22fr); gap: 24px; align-items: stretch; }
.control-panel, .frame-stage { border: 1px solid var(--line); background: rgba(12, 25, 41, .86); }
.control-panel { padding: 30px; }
.panel-heading > span, .stage-toolbar span, .chosen-preview span, .decision-result > div > span { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.panel-heading h3, .stage-toolbar h3 { margin: 7px 0; font: 500 24px/1.2 var(--serif); }
.panel-heading p { margin: 0 0 24px; color: var(--muted); font-size: 12px; }
.interpretation-list { display: grid; gap: 8px; }
.interpretation-option {
  width: 100%; min-height: 75px; padding: 13px 14px; display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center;
  border: 1px solid var(--line); background: rgba(255,255,255,.016); color: var(--text); text-align: left; cursor: pointer; transition: .22s ease;
}
.interpretation-option:hover { border-color: rgba(198,164,107,.45); transform: translateX(3px); }
.interpretation-option.active { border-color: var(--gold); background: rgba(198,164,107,.09); }
.option-letter { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--muted); font: 500 15px var(--serif); transition: .2s ease; }
.interpretation-option.active .option-letter { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.interpretation-option strong, .interpretation-option small { display: block; }
.interpretation-option strong { font-size: 12px; }
.interpretation-option small { margin-top: 2px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.interpretation-option > svg { width: 15px; color: #526276; }
.openness-control { margin-top: 27px; padding-top: 24px; border-top: 1px solid var(--line); }
.range-label, .range-extremes { display: flex; justify-content: space-between; align-items: center; }
.range-label label { font-size: 11px; font-weight: 700; }
.range-label output { color: var(--gold-light); font: 500 18px var(--serif); }
input[type="range"] { width: 100%; height: 3px; margin: 20px 0 7px; appearance: none; background: linear-gradient(90deg, var(--gold) 64%, #26384b 64%); cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { width: 17px; height: 17px; appearance: none; border: 3px solid var(--ink); border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 1px var(--gold); }
.range-extremes { color: #708094; font-size: 9px; text-transform: uppercase; }
.openness-control p { margin: 17px 0 0; color: #79899b; font-size: 10px; line-height: 1.5; }

.frame-stage { min-height: 690px; display: grid; grid-template-rows: auto 1fr auto; overflow: hidden; }
.stage-toolbar { padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.legend { display: flex; gap: 16px; }
.legend span { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 9px; letter-spacing: 0; text-transform: none; }
.legend-dot { width: 7px; height: 7px; border-radius: 50%; }
.legend-dot.possible { background: var(--green); box-shadow: 0 0 10px var(--green); }
.legend-dot.outside { background: var(--red); box-shadow: 0 0 10px var(--red); }
.frame-canvas { position: relative; min-height: 500px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle, rgba(44,85,120,.12), transparent 55%); }
.frame-canvas::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(rgba(200,220,235,.22) .7px, transparent .7px); background-size: 16px 16px; }
.ambient-ring { position: absolute; border: 1px solid rgba(111,151,183,.1); border-radius: 50%; }
.ring-one { width: 420px; height: 420px; }
.ring-two { width: 540px; height: 540px; }
.normative-frame {
  --frame-width: 390px;
  position: relative; z-index: 2; width: var(--frame-width); height: 330px; display: grid; place-items: center;
  border: 1px solid rgba(198,164,107,.38); background: rgba(7,16,29,.5); transition: border-color .2s ease;
}
.normative-frame::before, .normative-frame::after { content: ""; position: absolute; background: rgba(198,164,107,.32); }
.normative-frame::before { left: 50%; top: -30px; width: 1px; height: 30px; }
.normative-frame::after { left: -30px; top: 50%; width: 30px; height: 1px; }
.corner { position: absolute; width: 28px; height: 28px; border-color: var(--gold); border-style: solid; }
.top-left { left: -2px; top: -2px; border-width: 2px 0 0 2px; }
.top-right { right: -2px; top: -2px; border-width: 2px 2px 0 0; }
.bottom-left { left: -2px; bottom: -2px; border-width: 0 0 2px 2px; }
.bottom-right { right: -2px; bottom: -2px; border-width: 0 2px 2px 0; }
.frame-label { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 3px 10px; background: var(--ink-soft); color: var(--gold); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; }
.possibility-cloud span { position: absolute; width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(114,195,161,.23); border-radius: 50%; color: rgba(114,195,161,.62); font: 500 10px var(--serif); }
.possibility-cloud span:nth-child(1) { left: 36px; top: 44px; }
.possibility-cloud span:nth-child(2) { right: 36px; top: 57px; }
.possibility-cloud span:nth-child(3) { left: 57px; bottom: 45px; }
.meaning-card { width: 210px; min-height: 180px; padding: 19px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(114,195,161,.45); background: linear-gradient(145deg, rgba(22,50,58,.96), rgba(9,25,35,.96)); text-align: center; box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.meaning-status { display: flex; align-items: center; gap: 5px; color: var(--green); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.meaning-status svg { width: 12px; }
.meaning-symbol { width: 43px; height: 43px; margin: 15px 0 10px; display: grid; place-items: center; border-radius: 50%; background: rgba(114,195,161,.13); color: var(--green); font: 500 22px var(--serif); }
.meaning-card h4 { margin: 0; font: 500 18px var(--serif); }
.meaning-card p { margin: 5px 0 0; color: var(--muted); font-size: 10px; line-height: 1.4; }
.boundary-note { position: absolute; z-index: 4; right: 18px; bottom: 18px; max-width: 260px; padding: 12px 14px; display: flex; gap: 10px; border: 1px solid rgba(114,195,161,.25); background: rgba(7,16,29,.89); box-shadow: 0 12px 30px rgba(0,0,0,.23); }
.boundary-note > svg { flex: 0 0 auto; width: 17px; color: var(--green); }
.boundary-note strong, .boundary-note span { display: block; }
.boundary-note strong { font-size: 10px; }
.boundary-note span { margin-top: 2px; color: var(--muted); font-size: 9px; line-height: 1.4; }
.cognition-note { padding: 16px 28px; display: flex; gap: 16px; align-items: center; border-top: 1px solid var(--line); background: rgba(5,14,25,.55); }
.cognition-note span { color: var(--blue-soft); font: 500 17px var(--serif); }
.cognition-note p { margin: 0; color: var(--muted); font-size: 10px; }

.decision-section { margin-top: 110px; display: grid; grid-template-columns: .62fr 1.38fr; gap: 8%; align-items: start; }
.decision-intro { position: sticky; top: 110px; }
.decision-intro h2 { margin-bottom: 24px; }
.decision-workbench { min-height: 360px; border: 1px solid var(--line-strong); background: linear-gradient(145deg, rgba(17,34,53,.96), rgba(8,20,34,.96)); box-shadow: var(--shadow); }
.decision-flow { padding: 27px 30px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.decision-flow > svg { width: 16px; color: #43576b; }
.flow-step { display: flex; align-items: center; gap: 11px; opacity: .45; }
.flow-step > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; }
.flow-step svg { width: 16px; }
.flow-step strong, .flow-step small { display: block; }
.flow-step strong { font: 500 15px var(--serif); }
.flow-step small { color: var(--muted); font-size: 8px; }
.flow-step.complete, .flow-step.current { opacity: 1; }
.flow-step.complete > span { border-color: rgba(114,195,161,.5); color: var(--green); }
.flow-step.current > span { border-color: var(--gold); color: var(--gold-light); box-shadow: 0 0 0 5px rgba(198,164,107,.07); }
.chosen-preview { min-height: 175px; padding: 34px 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.chosen-preview strong { display: block; margin-top: 8px; font: 500 clamp(19px, 2vw, 27px) var(--serif); }
.decision-button { padding: 15px 17px 15px 20px; display: inline-flex; align-items: center; gap: 15px; border: 1px solid var(--gold); background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 700; cursor: pointer; transition: .2s ease; white-space: nowrap; }
.decision-button:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(198,164,107,.15); }
.decision-button:disabled { border-color: var(--line); background: rgba(255,255,255,.04); color: #708094; cursor: not-allowed; transform: none; box-shadow: none; }
.decision-button svg { width: 18px; }
.decision-result { min-height: 175px; padding: 27px 30px; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; border-top: 1px solid rgba(198,164,107,.25); background: rgba(198,164,107,.06); }
.decision-result:not([hidden]) { display: grid; }
.result-seal { width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-light); }
.result-seal svg { width: 28px; }
.decision-result h3 { margin: 5px 0 3px; font: 500 21px var(--serif); }
.decision-result p { margin: 0; color: var(--muted); font-size: 11px; }
.text-button { display: inline-flex; align-items: center; gap: 7px; border: 0; background: transparent; color: var(--muted); font-size: 10px; cursor: pointer; }
.text-button:hover { color: var(--gold-light); }
.text-button svg { width: 14px; }

.synthesis { margin-top: 120px; padding: 60px 0 20px; border-top: 1px solid var(--line); text-align: center; }
.synthesis-label { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.synthesis h2 { max-width: 800px; margin: 14px auto 55px; }
.synthesis-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: left; }
.synthesis-grid article { padding: 4px 36px 8px; border-right: 1px solid var(--line); }
.synthesis-grid article:first-child { padding-left: 0; }
.synthesis-grid article:last-child { padding-right: 0; border-right: 0; }
.synthesis-grid span { color: var(--gold); font: 500 24px var(--serif); }
.synthesis-grid h3 { margin: 15px 0 8px; font: 500 19px var(--serif); }
.synthesis-grid p { margin: 0; color: var(--muted); font-size: 12px; }

footer { width: min(1280px, calc(100% - 48px)); margin: auto; padding: 35px 0 45px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
footer strong, footer span { display: block; }
footer strong { color: var(--text); font: 500 16px var(--serif); }
footer a { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--gold-light); }
footer a svg { width: 14px; }

.help-dialog { width: min(520px, calc(100% - 32px)); padding: 38px; border: 1px solid var(--gold); background: var(--panel); color: var(--text); box-shadow: 0 30px 120px #000; }
.help-dialog::backdrop { background: rgba(2,8,15,.76); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; right: 18px; top: 18px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--muted); cursor: pointer; }
.dialog-close svg { width: 16px; }
.help-dialog h2 { margin: 10px 0 25px; font: 500 38px var(--serif); }
.help-dialog ol { margin: 0; padding: 0; display: grid; gap: 16px; list-style: none; }
.help-dialog li { display: flex; align-items: center; gap: 15px; padding-top: 15px; border-top: 1px solid var(--line); }
.help-dialog li > span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 11px; }
.help-dialog p { margin: 0; color: var(--muted); font-size: 12px; }
.help-dialog strong { color: var(--text); }

.frame-stage.outside .normative-frame { border-color: rgba(213,109,98,.42); }
.frame-stage.outside .meaning-card { border-color: var(--red); background: linear-gradient(145deg, rgba(64,31,35,.96), rgba(26,17,26,.96)); }
.frame-stage.outside .meaning-status, .frame-stage.outside .meaning-symbol { color: var(--red); }
.frame-stage.outside .meaning-symbol { background: rgba(213,109,98,.13); }
.frame-stage.outside .boundary-note { border-color: rgba(213,109,98,.3); }
.frame-stage.outside .boundary-note > svg { color: var(--red); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 65px; min-height: auto; }
  .hero-thesis { max-width: 570px; }
  .lab-layout, .decision-section { grid-template-columns: 1fr; }
  .frame-stage { min-height: 650px; }
  .decision-intro { position: static; }
  .decision-section { gap: 45px; }
}

@media (max-width: 720px) {
  .header-inner { width: calc(100% - 28px); height: 66px; grid-template-columns: 1fr auto; }
  .module-identity { display: none; }
  .hero { padding-top: 135px; padding-bottom: 75px; }
  .hero h1 { font-size: clamp(45px, 14vw, 66px); }
  .concept-strip { overflow-x: auto; justify-content: flex-start; gap: 22px; }
  .concept-strip article { min-width: 150px; }
  .lab-section { padding-top: 80px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .legal-rule { padding: 24px 22px; }
  .rule-meta, .stage-toolbar, .chosen-preview, footer { align-items: flex-start; flex-direction: column; }
  .control-panel { padding: 22px 16px; }
  .frame-stage { min-height: 610px; }
  .frame-canvas { min-height: 450px; }
  .normative-frame { height: 300px; max-width: calc(100vw - 84px); }
  .meaning-card { width: 180px; }
  .boundary-note { left: 14px; right: 14px; max-width: none; }
  .decision-flow { grid-template-columns: 1fr; gap: 12px; }
  .decision-flow > svg { transform: rotate(90deg); margin-left: 12px; }
  .chosen-preview { display: flex; }
  .decision-button { width: 100%; justify-content: space-between; }
  .decision-result:not([hidden]) { grid-template-columns: auto 1fr; }
  .decision-result .text-button { grid-column: 1 / -1; }
  .synthesis-grid { grid-template-columns: 1fr; gap: 30px; }
  .synthesis-grid article, .synthesis-grid article:first-child, .synthesis-grid article:last-child { padding: 0 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .synthesis-grid article:last-child { border-bottom: 0; }
}

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