/* =========================================================
   styles.css — Fiodor.ar
   Visual clone of Stitch reference (STITCH_DESKTOP.zip + STITCH_MOBILE.zip).
   Mobile-first. Plain CSS. No Tailwind. No inline styles.
   ========================================================= */

/* ---------------------------------------------------------
   TOKENS — from Stitch DESIGN.md + Tailwind config
   --------------------------------------------------------- */
:root {
  /* Surfaces */
  --bg:                 #fbf9f4;
  --paper:              #F9F7F2;
  --surface-low:        #f5f3ee;
  --surface-mid:        #f0eee9;
  --surface-high:       #eae8e3;
  --surface-highest:    #e4e2dd;

  /* Text */
  --ink:                #1A1A1A;
  --on-surface:         #1b1c19;
  --on-surface-variant: #444748;
  --muted:              #6B6B6B;

  /* Accents */
  --sage:               #4A5D4B;
  --sage-container:     #d3e4d1;
  --sage-container-on:  #576757;

  /* Borders */
  --border:             #E2E0D9;
  --outline:            #747878;
  --outline-variant:    #c4c7c7;

  /* Fonts */
  --font-head:  'Hanken Grotesk', system-ui, sans-serif;
  --font-body:  'Work Sans', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', monospace;

  /* Spacing — exact from Stitch */
  --gutter-mobile: 20px;
  --gutter-desk:   24px;
  --container:     1200px;
  --section-gap:   80px;
  --element-gap:   16px;

  /* Radii — Stitch uses very small radii */
  --r-xs:   2px;   /* DEFAULT = 0.125rem */
  --r-sm:   4px;   /* lg = 0.25rem */
  --r-md:   6px;   /* xl */
  --r-full: 9999px;
}

/* ---------------------------------------------------------
   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-body);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--sage-container); color: var(--ink); }

/* ---------------------------------------------------------
   CONTAINER
   --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter-mobile);
}
@media (min-width: 768px) { .container { padding-inline: var(--gutter-desk); } }

/* ---------------------------------------------------------
   UTILITIES
   --------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ---------------------------------------------------------
   TYPOGRAPHY SCALE — from Stitch DESIGN.md
   --------------------------------------------------------- */
.t-headline-xl {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (min-width: 768px) {
  .t-headline-xl {
    font-size: 48px;
    letter-spacing: -0.02em;
  }
}

.t-headline-lg {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
@media (min-width: 768px) { .t-headline-lg { font-size: 32px; } }

.t-body-md {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--on-surface-variant);
}
@media (min-width: 768px) { .t-body-md { font-size: 18px; } }

.t-body-sm {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.t-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.t-cta {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-head); font-size: 18px; font-weight: 600; line-height: 1;
  padding: 20px 32px; border-radius: var(--r-xs); border: none;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: opacity .15s;
}
.btn-primary:hover { opacity: .9; }
.btn-primary:active { opacity: .8; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--paper); color: var(--ink);
  font-family: var(--font-head); font-size: 18px; font-weight: 600; line-height: 1;
  padding: 19px 32px; border-radius: var(--r-xs); border: 1.5px solid var(--ink);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .15s;
}
.btn-secondary:hover { background: var(--surface-low); }

/* Full-width on mobile */
@media (max-width: 479px) {
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 16px;
}

/* Brand */
.header-brand { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.header-brand-name {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--ink); line-height: 1.2;
}
.header-brand-sub {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--muted); line-height: 1.2;
}
@media (max-width: 479px) { .header-brand-sub { display: none; } }

.header-right { display: flex; align-items: center; }
@media (max-width: 599px) { .header-right { display: none; } }

/* Header CTA — same as btn-primary but compact */
.header-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-head); font-size: 16px; font-weight: 600; line-height: 1;
  padding: 12px 24px; border-radius: var(--r-xs); border: none;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: opacity .15s;
}
.header-cta:hover { opacity: .85; }

/* ---------------------------------------------------------
   HERO SECTION
   --------------------------------------------------------- */
.hero { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 768px) { .hero { padding-top: var(--section-gap); padding-bottom: var(--section-gap); } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: var(--section-gap); align-items: center; }
}
.hero-grid > * { min-width: 0; }

/* Left column */
.hero-copy { display: flex; flex-direction: column; gap: 24px; }

/* Eyebrow */
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); background: var(--surface-mid);
  padding: 6px 12px; border-radius: var(--r-full);
  line-height: 1;
  align-self: flex-start;
}

/* Headline */
.hero-headline {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (min-width: 768px) {
  .hero-headline {
    font-size: 48px;
    letter-spacing: -0.02em;
  }
}

/* Subheadline */
.hero-sub {
  font-family: var(--font-body); font-size: 18px; font-weight: 400;
  line-height: 1.6; color: var(--on-surface-variant);
  max-width: 480px;
}

/* CTA row */
.hero-actions {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 16px;
}
@media (min-width: 480px) { .hero-actions { flex-direction: row; flex-wrap: wrap; } }

/* Proof strip */
.proof-strip {
  padding-top: 32px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}
.proof-items {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 16px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted);
}
.proof-dot { color: var(--outline-variant); }

/* ---------------------------------------------------------
   HERO CARD (right column) — Stitch "Workflow Preview Card"
   Desktop: flat icon rows with connector lines
   Mobile: numbered circle steps with vertical line
   --------------------------------------------------------- */
.hero-card-wrap { position: relative; }

.hero-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  position: relative; z-index: 1;
}
@media (min-width: 768px) { .hero-card { padding: 40px; } }

.hero-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.hero-card-title {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  line-height: 1.2; color: var(--ink);
}
@media (min-width: 768px) { .hero-card-title { font-size: 24px; } }

.hero-card-badge {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--sage); border: 1px solid var(--sage);
  padding: 4px 8px; border-radius: var(--r-xs); line-height: 1;
}

/* Steps list */
.hero-steps { display: flex; flex-direction: column; gap: 0; }

/* Desktop style: icon rows with connector */
.hero-step {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface-low); border: 1px solid var(--border);
  border-radius: var(--r-xs); padding: 16px;
}

.hero-step + .hero-step { margin-top: 8px; }

/* Connector line between steps (desktop) */
.hero-step-connector {
  width: 1px; height: 24px; background: var(--border);
  margin-left: 24px;
}

.hero-step-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--sage); display: flex; align-items: center; justify-content: center;
}
.hero-step-icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.hero-step-text {
  font-family: var(--font-body); font-size: 16px; font-weight: 400;
  line-height: 1.4; color: var(--ink);
}
@media (min-width: 768px) { .hero-step-text { font-size: 18px; } }

/* Mobile: numbered steps with vertical connecting line */
@media (max-width: 899px) {
  .hero-step {
    background: transparent; border: none; padding: 0;
    align-items: flex-start; gap: 24px;
    position: relative;
  }
  .hero-step + .hero-step { margin-top: 24px; }
  .hero-step-connector { display: none; }

  .hero-step-num {
    position: relative; z-index: 1;
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 10px; font-weight: 500;
    line-height: 1;
  }
  .hero-step-num-first { background: var(--ink); color: var(--paper); }
  .hero-step-num-rest  { background: var(--surface-high); border: 1px solid var(--border); color: var(--ink); }

  .hero-step-icon { display: none; }

  .hero-step-body { flex: 1; padding-bottom: 4px; }
  .hero-step-body-title {
    font-family: var(--font-body); font-size: 16px; font-weight: 500;
    line-height: 1.2; color: var(--ink); margin-bottom: 4px;
  }
  .hero-step-body-sub {
    font-family: var(--font-body); font-size: 15px; font-weight: 400;
    line-height: 1.5; color: var(--muted);
  }
  .hero-step-text { display: none; }

  /* Vertical connector line */
  .hero-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 11px; top: 24px; bottom: -24px;
    width: 1px; background: var(--border);
    z-index: 0;
  }
}

/* Desktop: hide mobile-only elements, show desktop content block */
@media (min-width: 900px) {
  .hero-step-num        { display: none; }
  .hero-step-body       { display: none; }
}

/* Desktop step content — title + sub inside the row */
.hero-step-desk {
  display: none;
  flex: 1; min-width: 0;
}
.hero-step-desk-title {
  font-family: var(--font-body); font-size: 16px; font-weight: 500;
  line-height: 1.3; color: var(--ink); margin-bottom: 2px;
}
.hero-step-desk-sub {
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  line-height: 1.45; color: var(--muted);
}
@media (min-width: 900px) {
  .hero-step-desk { display: block; }
  .hero-step { align-items: flex-start; padding: 14px 16px; }
  .hero-step-icon { margin-top: 2px; }
}
@media (max-width: 899px) {
  .hero-step-desk { display: none; }
}

/* Card footer note */
.hero-card-note {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px;
}
.hero-card-note-icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  color: var(--ink);
}
.hero-card-note-icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.hero-card-note-text {
  font-family: var(--font-body); font-size: 15px; font-weight: 400;
  font-style: italic; line-height: 1.5; color: var(--muted);
}

/* ---------------------------------------------------------
   FOOTER (minimal — Stitch reference)
   --------------------------------------------------------- */
.site-footer {
  background: var(--surface-low);
  border-top: 1px solid var(--border);
  padding-top: var(--section-gap); padding-bottom: var(--section-gap);
}
.footer-inner {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; }
}
.footer-brand {
  font-family: var(--font-head); font-size: 24px; font-weight: 700;
  color: var(--ink); display: block; margin-bottom: 8px;
}
.footer-tagline { font-family: var(--font-body); font-size: 16px; color: var(--muted); }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
}
@media (min-width: 640px) { .footer-links { justify-content: flex-end; } }
.footer-links a {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted);
  transition: color .15s; text-decoration: none;
}
.footer-links a:hover { color: var(--ink); }

/* ---------------------------------------------------------
   GRACIAS PAGE
   --------------------------------------------------------- */
.gracias-wrap {
  background: var(--bg); min-height: 100vh;
  display: flex; flex-direction: column;
}
.gracias-main {
  flex: 1; display: flex; align-items: center;
  padding-top: 80px; padding-bottom: 80px;
}
.gracias-inner { max-width: 520px; }
.gracias-check {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage-container);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.gracias-check svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--sage); stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.gracias-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 12px;
}
.gracias-title {
  font-family: var(--font-head); font-size: clamp(28px, 6vw, 42px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 14px;
}
.gracias-body { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 32px; }
.gracias-actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 480px) { .gracias-actions { flex-direction: row; flex-wrap: wrap; } }

.gracias-footer {
  background: var(--surface-low); border-top: 1px solid var(--border);
  padding-top: 24px; padding-bottom: 24px;
}
.gracias-footer-inner {
  display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 640px) {
  .gracias-footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}
.gracias-footer-brand { font-size: 14px; color: var(--muted); }
.gracias-footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.gracias-footer-legal a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.gracias-footer-legal a:hover { color: var(--ink); }

/* ---------------------------------------------------------
   CONTACT SECTION
   --------------------------------------------------------- */
.contact-section {
  background: var(--surface-low);
  border-top: 1px solid var(--border);
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.contact-header { margin-bottom: 48px; }
.contact-title {
  font-family: var(--font-head); font-size: 28px; font-weight: 700;
  line-height: 1.2; letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 10px;
}
@media (min-width: 768px) { .contact-title { font-size: 36px; } }
.contact-sub {
  font-family: var(--font-body); font-size: 17px; font-weight: 400;
  line-height: 1.6; color: var(--on-surface-variant); max-width: 540px;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
}
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.contact-grid > * { min-width: 0; }

/* Contact cards */
.contact-cards { display: flex; flex-direction: column; gap: 8px; }

.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 16px 20px;
  text-decoration: none; color: var(--ink);
  transition: border-color .15s, background .15s;
  min-height: 60px;
}
.contact-card:hover { border-color: var(--outline); background: var(--bg); }

.contact-card-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--surface-mid); border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg {
  width: 16px; height: 16px; color: var(--ink);
}

.contact-card-body { flex: 1; min-width: 0; }
.contact-card-label {
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  color: var(--ink); line-height: 1.2; margin-bottom: 2px;
}
.contact-card-sub {
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  color: var(--muted); line-height: 1.4;
}
.contact-card-arrow {
  width: 16px; height: 16px; flex-shrink: 0; color: var(--muted);
  transition: transform .15s, color .15s;
}
.contact-card:hover .contact-card-arrow { transform: translateX(3px); color: var(--ink); }

/* Primary contact card (Calendly) — slightly elevated */
.contact-card-primary {
  border-color: var(--ink);
  background: var(--paper);
}
.contact-card-primary .contact-card-label { font-weight: 700; }
.contact-card-primary .contact-card-icon { background: var(--ink); }
.contact-card-primary .contact-card-icon svg { color: var(--paper); }

/* Mailto fallback plain note */
.contact-mailto-note {
  font-family: var(--font-body); font-size: 13px; color: var(--muted);
  padding: 0 4px; margin-top: -2px; margin-bottom: 4px;
}
.contact-mailto-note a {
  color: var(--muted); text-decoration: underline; text-underline-offset: 2px;
  transition: color .15s;
}
.contact-mailto-note a:hover { color: var(--ink); }

/* Form section title */
.contact-form-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--ink); line-height: 1.2;
  margin-bottom: 20px;
}

.contact-mailto {
  color: var(--muted); text-decoration: underline; text-underline-offset: 2px;
  font-size: inherit; line-height: inherit;
  transition: color .15s;
}
.contact-mailto:hover { color: var(--ink); }

/* Form wrapper */
.contact-form-wrap {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 28px;
}
@media (min-width: 640px) { .contact-form-wrap { padding: 36px; } }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-honeypot { display: none !important; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 479px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.form-optional { text-transform: none; letter-spacing: 0; font-size: 11px; }

.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-xs);
  padding: 11px 14px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  line-height: 1.5; transition: border-color .15s; outline: none;
  appearance: none; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--outline); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--ink); background: var(--paper);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 104px; }

.form-consent { display: flex; align-items: flex-start; gap: 10px; }
.form-consent input[type="checkbox"] {
  flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px;
  border: 1px solid var(--border); border-radius: 2px;
  appearance: none; -webkit-appearance: none;
  background: var(--paper); cursor: pointer;
  transition: background .12s, border-color .12s;
}
.form-consent input[type="checkbox"]:checked {
  background: var(--ink); border-color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23F9F7F2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.form-consent-label {
  font-family: var(--font-body); font-size: 14px; color: var(--muted);
  line-height: 1.5; cursor: pointer;
}
.form-submit { width: 100%; padding: 18px; margin-top: 4px; }

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