/* =========================================================
   COPR — matte black + polished copper
   Palette sampled from the logo:
   specular #fcf0d8 · light #c08460 · mid #a86c48 · shadow #784830
   ========================================================= */
:root {
  --bg:        #0a0a0b;
  --bg-soft:   #100f0e;
  --text:      #ece6dd;
  --muted:     #8c8278;
  --faint:     #5c554e;
  --line:      rgba(192, 132, 96, 0.16);
  --line-soft: rgba(236, 230, 221, 0.08);
  --cu:        #c08460;
  --cu-light:  #e0ab84;
  --cu-metal:  linear-gradient(180deg, #fcf0d8 0%, #e0ab84 30%, #c08460 60%, #8a5638 100%);
  --maxw:      1160px;
  --pad:       clamp(1.4rem, 5vw, 5rem);
  --ease:      cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: rgba(192, 132, 96, 0.28); color: #fff; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-weight: 300;
  overflow-x: hidden;
}

/* subtle film grain — kills the flat AI-gradient look */
.grain {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--pad);
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: .9rem var(--pad);
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.wordmark {
  font-weight: 500; font-size: 1.15rem; letter-spacing: .42em;
  text-decoration: none; padding-left: .42em;
  background: var(--cu-metal); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--cu);
}
.wordmark.sm { font-size: .95rem; letter-spacing: .38em; }
.nav-right { display: flex; align-items: center; gap: 2.2rem; }
.nav-links { display: flex; gap: 2.4rem; }
.nav-links a {
  position: relative; color: var(--muted); text-decoration: none;
  font-size: .82rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--cu); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* language switcher */
.lang { display: flex; align-items: center; gap: .15rem; }
.lang-btn {
  appearance: none; background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: .78rem; font-weight: 400; letter-spacing: .12em;
  color: var(--faint); padding: .25rem .45rem; line-height: 1;
  transition: color .3s var(--ease);
}
.lang-btn + .lang-btn { border-left: 1px solid var(--line-soft); }
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  background: var(--cu-metal); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--cu);
}

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 7rem var(--pad) 4rem; position: relative;
  background:
    radial-gradient(120% 80% at 50% 38%, rgba(192, 132, 96, 0.07), transparent 60%),
    var(--bg);
}
.hero-logo-wrap {
  position: relative; width: min(700px, 84vw);
  margin: 0 auto clamp(2rem, 5vw, 3.2rem);
  animation: fade-in 1.1s var(--ease) both;
}
.hero-logo {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 10px 50px rgba(192, 132, 96, 0.22));
}
/* specular highlight — copper behaves like polished metal under a moving light */
@property --mx { syntax: '<percentage>'; inherits: false; initial-value: 50%; }
@property --my { syntax: '<percentage>'; inherits: false; initial-value: 35%; }
.hero-logo-shine {
  position: absolute; inset: 0; pointer-events: none;
  -webkit-mask: url(logo.png) center / contain no-repeat;
  mask: url(logo.png) center / contain no-repeat;
  background: radial-gradient(circle 26% at var(--mx) var(--my),
    rgba(255, 248, 235, 0.95), rgba(232, 180, 143, 0.35) 38%, transparent 66%);
  mix-blend-mode: screen; opacity: .85;
  animation: sweep 7s var(--ease) infinite;
}
.hero-logo-shine.tracking { animation: none; opacity: 1; }
@keyframes sweep {
  0%   { --mx: 12%;  --my: 30%; }
  50%  { --mx: 88%;  --my: 62%; }
  100% { --mx: 12%;  --my: 30%; }
}
@keyframes fade-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.hero-tagline {
  font-size: clamp(1.6rem, 4.4vw, 3rem); font-weight: 300; line-height: 1.12;
  letter-spacing: -.015em; color: var(--text);
}
.hero-tagline em { font-style: normal; color: var(--cu-light); }
.hero-sub {
  margin-top: 1.4rem; color: var(--muted); font-size: clamp(.95rem, 1.6vw, 1.1rem);
  letter-spacing: .01em; max-width: 34ch;
}
.link-cta {
  margin-top: 2.6rem; display: inline-flex; align-items: center; gap: .6rem;
  color: var(--text); text-decoration: none; font-size: .92rem;
  letter-spacing: .14em; text-transform: uppercase; padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.link-cta .arrow { color: var(--cu); transition: transform .3s var(--ease); }
.link-cta:hover { color: #fff; border-color: var(--cu); }
.link-cta:hover .arrow { transform: translateX(5px); }

.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1px solid rgba(224, 171, 132, 0.4); border-radius: 12px;
  display: grid; place-items: start center; padding-top: 7px;
}
.scroll-cue span { width: 2px; height: 8px; border-radius: 2px; background: var(--cu-light); box-shadow: 0 0 6px rgba(224, 171, 132, 0.6); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(9px); } }

/* ---------- shared section ---------- */
section { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.label {
  display: inline-block; font-size: .74rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--cu); font-weight: 400; margin-bottom: 1.4rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem); font-weight: 300; line-height: 1.1;
  letter-spacing: -.02em; color: var(--text);
}

/* ---------- manifesto ---------- */
.manifesto { padding-block: clamp(6rem, 14vw, 11rem); border-bottom: 1px solid var(--line-soft); }
.manifesto p {
  font-size: clamp(1.5rem, 3.4vw, 2.5rem); font-weight: 300; line-height: 1.3;
  letter-spacing: -.015em; max-width: 22ch; color: var(--text);
}
.manifesto .cu {
  background: var(--cu-metal); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- services ---------- */
.services { padding-block: clamp(5rem, 11vw, 9rem); }
.section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.rows { list-style: none; }
.row {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: clamp(1rem, 4vw, 3rem);
  align-items: baseline; padding: clamp(1.6rem, 3.5vw, 2.6rem) 0;
  border-top: 1px solid var(--line-soft); position: relative;
}
.row:last-child { border-bottom: 1px solid var(--line-soft); }
.row::after {
  content: ""; position: absolute; left: 0; top: -1px; height: 1px; width: 0;
  background: var(--cu); transition: width .5s var(--ease);
}
.row:hover::after { width: 100%; }
.row-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .95rem; font-weight: 400; letter-spacing: .08em;
  color: rgba(192, 132, 96, 0.6); transition: color .35s var(--ease);
}
.row:hover .row-num { color: var(--cu); }
.row-body h3 {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-weight: 400; letter-spacing: -.01em;
  color: var(--text); margin-bottom: .55rem; transition: transform .4s var(--ease);
}
.row:hover .row-body h3 { transform: translateX(6px); }
.row-body p { color: var(--muted); max-width: 56ch; font-size: clamp(.95rem, 1.5vw, 1.05rem); }

/* ---------- approach ---------- */
.approach { padding-block: clamp(5rem, 11vw, 9rem); border-top: 1px solid var(--line-soft); }
.approach .section-head { margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.principles { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.1rem, 2.6vw, 2rem); }
.principles li { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.principles .p-num {
  display: block; margin-bottom: .8rem; font-family: 'JetBrains Mono', monospace;
  font-size: .78rem; letter-spacing: .1em; color: var(--cu);
}
.principles p { color: var(--text); font-weight: 300; font-size: clamp(.98rem, 1.5vw, 1.1rem); line-height: 1.45; }

/* ---------- contact ---------- */
.contact {
  text-align: center; padding-block: clamp(4.5rem, 9vw, 7.5rem);
  border-top: 1px solid var(--line-soft);
}
.contact h2 {
  font-size: clamp(2rem, 6vw, 4rem); font-weight: 300; line-height: 1.08;
  letter-spacing: -.025em; margin-bottom: 2.4rem;
}
.email {
  display: inline-block; position: relative; text-decoration: none;
  font-size: clamp(1.3rem, 4vw, 2.4rem); font-weight: 400; letter-spacing: -.01em;
  background: var(--cu-metal); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--cu);
}
.email::after {
  content: ""; position: absolute; left: 0; bottom: -.4rem; height: 1px; width: 100%;
  background: var(--line); transform: scaleX(.35); transform-origin: left;
  transition: transform .45s var(--ease), background .45s var(--ease);
}
.email:hover::after { transform: scaleX(1); background: var(--cu); }
.contact-alt { margin-top: 1.8rem; color: var(--muted); font-size: .9rem; letter-spacing: .04em; }
.contact-alt a { color: var(--muted); text-decoration: none; transition: color .3s var(--ease); }
.contact-alt a:hover { color: var(--cu-light); }
.contact-alt .sep { margin: 0 .8rem; color: var(--faint); }

/* ---------- footer ---------- */
.footer {
  max-width: var(--maxw); margin: 0 auto; padding: 2.4rem var(--pad);
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between;
  color: var(--faint); font-size: .8rem; letter-spacing: .04em;
}
.footer .wordmark.sm { color: var(--cu); }

/* ---------- section dot-nav (the "conductor") ---------- */
.dotnav {
  position: fixed; right: clamp(16px, 2.4vw, 34px); top: 50%; transform: translateY(-50%);
  z-index: 40; display: flex; flex-direction: column; gap: 1.15rem; align-items: center;
}
.dotnav::before { /* the conductor wire linking the nodes */
  content: ""; position: absolute; top: 4px; bottom: 4px; left: 50%;
  width: 1px; transform: translateX(-50%); background: var(--line-soft); z-index: -1;
}
.dotnav a { display: grid; place-items: center; width: 16px; height: 16px; }
.dotnav i {
  width: 7px; height: 7px; border-radius: 50%;
  background: transparent; border: 1px solid var(--faint);
  transition: all .4s var(--ease);
}
.dotnav a:hover i { border-color: var(--cu-light); transform: scale(1.25); }
.dotnav a.active i {
  background: var(--cu-light); border-color: var(--cu-light); transform: scale(1.3);
  box-shadow: 0 0 10px 1px rgba(224, 171, 132, 0.6);
}

/* ---------- magnetic ---------- */
.magnetic { transition: transform .35s var(--ease), color .3s var(--ease), border-color .3s var(--ease); will-change: transform; }

/* ---------- demo ---------- */
.demo { padding-block: clamp(5rem, 11vw, 9rem); border-top: 1px solid var(--line-soft); }
.section-head.centered { text-align: center; max-width: 760px; margin-inline: auto; }
.section-head.centered .demo-intro { margin-inline: auto; }
.demo-intro { margin-top: 1.2rem; color: var(--muted); max-width: 58ch; font-size: clamp(.95rem, 1.6vw, 1.08rem); }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 1.6rem); margin-top: clamp(2rem, 5vw, 3.4rem); }
.panel {
  position: relative; background: var(--bg-soft); border: 1px solid var(--line-soft);
  border-radius: 12px; min-height: 340px; display: flex; flex-direction: column; overflow: hidden;
}
.panel-bar {
  display: flex; align-items: center; gap: .7rem; padding: .7rem 1rem;
  border-bottom: 1px solid var(--line-soft); background: rgba(255, 255, 255, 0.015);
}
.panel-bar .dots { display: flex; gap: .35rem; }
.panel-bar .dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(192, 132, 96, .35); }
.panel-bar .panel-file {
  font-family: 'JetBrains Mono', monospace; font-size: .72rem; letter-spacing: .08em; color: var(--faint);
}
#demo-src {
  flex: 1; width: 100%; resize: none; min-height: 220px; padding: 1.2rem 1.3rem;
  background: transparent; border: 0; outline: none; color: var(--text);
  font-family: 'JetBrains Mono', monospace; font-size: .8rem; line-height: 1.75; letter-spacing: .01em;
}
.btn-extract {
  margin: 0 1.3rem 1.3rem; align-self: flex-start; cursor: pointer;
  font-family: inherit; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bg); font-weight: 500; padding: .8rem 1.5rem; border: 0; border-radius: 999px;
  background: var(--cu-metal);
}
.btn-extract:hover { filter: brightness(1.08); }
/* output: faint grid + processing glow */
.demo-output .fields {
  padding: .4rem 1.3rem 1.3rem;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 26px 26px; background-position: -1px -1px;
}
.demo-output::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: 12px;
  box-shadow: inset 0 0 0 1px transparent; transition: box-shadow .4s var(--ease); opacity: 0;
}
.demo-output.processing::after {
  opacity: 1; box-shadow: inset 0 0 0 1px rgba(224, 171, 132, .5), inset 0 0 40px rgba(192, 132, 96, .12);
  animation: pulse 1.1s var(--ease);
}
@keyframes pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
.scanline {
  position: absolute; left: 0; right: 0; top: 0; height: 2px; opacity: 0; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--cu-light), transparent);
  box-shadow: 0 0 14px 2px rgba(224, 171, 132, 0.5);
}
.scanline.run { animation: scan 1s var(--ease) 1; }
@keyframes scan { 0% { opacity: 1; top: 3rem; } 100% { opacity: 0; top: 100%; } }
.fields { display: grid; gap: 0; }
.field {
  display: grid; grid-template-columns: 9.5rem 1fr; gap: 1rem; align-items: baseline;
  padding: .72rem 0; border-bottom: 1px solid var(--line-soft);
}
.field:last-child { border-bottom: 0; }
.field dt { color: var(--muted); font-size: .82rem; letter-spacing: .04em; }
.field dd {
  font-family: 'JetBrains Mono', monospace; font-size: .92rem; color: var(--text);
  opacity: 0; transform: translateY(4px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.field dd.on { opacity: 1; transform: none; }
.field dd.miss { color: var(--faint); font-style: italic; }
.field.total dt { color: var(--cu-light); }
.field.total dd {
  font-size: 1.15rem; background: var(--cu-metal);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--cu);
}

/* ---------- work / proof ---------- */
.work { padding-block: clamp(5rem, 11vw, 9rem); border-top: 1px solid var(--line-soft); }
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
.case {
  border: 1px solid var(--line-soft); border-radius: 14px; padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex; flex-direction: column; gap: .7rem; transition: border-color .4s var(--ease), background .4s var(--ease);
}
.case:hover { border-color: var(--line); background: rgba(192, 132, 96, 0.04); }
.case-metric {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 300; letter-spacing: -.02em; line-height: 1;
  background: var(--cu-metal); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--cu);
}
.case-unit {
  font-family: 'JetBrains Mono', monospace; font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-top: -.3rem;
}
.case h3 { font-size: 1.15rem; font-weight: 500; letter-spacing: -.01em; }
.case p { color: var(--muted); font-size: .95rem; flex: 1; }
.case-tag {
  font-family: 'JetBrains Mono', monospace; font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); margin-top: .4rem;
}
.case-art { width: 64px; height: 40px; color: var(--cu); opacity: .8; margin-bottom: .4rem; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.case:hover .case-art { opacity: 1; transform: translateX(3px); }

/* ---------- material band (engraved copper) ---------- */
.material {
  width: 100vw; margin-left: calc(50% - 50vw); max-width: none; padding: 0;
  height: clamp(180px, 24vw, 280px); display: grid; place-items: center; text-align: center;
  position: relative; overflow: hidden;
  background: url(copper.jpg) center / cover;
}
.material::before { /* darken + vignette to blend into the black page */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 30%, rgba(10,10,11,.55) 100%),
    linear-gradient(90deg, var(--bg), transparent 18%, transparent 82%, var(--bg)),
    linear-gradient(0deg, rgba(10,10,11,.35), rgba(10,10,11,.15));
}
.material p {
  position: relative; z-index: 1; margin: 0;
  font-size: clamp(1.6rem, 4.6vw, 3.1rem); font-weight: 500; letter-spacing: .02em;
  color: #2a1810; /* engraved into the metal */
  text-shadow: 0 1px 0 rgba(255, 240, 220, 0.35), 0 -1px 1px rgba(0, 0, 0, 0.4);
}
.material-cap {
  max-width: 30ch; margin: clamp(2rem, 5vw, 3rem) auto 0; padding-inline: var(--pad);
  text-align: center; color: var(--muted); font-weight: 300;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem); line-height: 1.5; letter-spacing: -.005em;
}

/* ---------- about / founder ---------- */
.about { padding-block: clamp(4.5rem, 9vw, 7rem); border-top: 1px solid var(--line-soft); }
.founder { display: flex; align-items: center; gap: clamp(1.4rem, 4vw, 3rem); max-width: 760px; }
.avatar {
  flex: none; width: clamp(110px, 15vw, 150px); height: clamp(110px, 15vw, 150px); border-radius: 50%;
  background: url(founder.jpg) center / cover; border: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(192, 132, 96, 0.18); position: relative;
}
.avatar::after { /* subtle copper rim light */
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(224, 171, 132, 0.25), inset 0 14px 26px -14px rgba(255, 240, 220, 0.4);
}
.founder-info .label { margin-bottom: .8rem; }
.founder-info h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 400; letter-spacing: -.01em; }
.founder-info .role { color: var(--cu-light); font-size: .95rem; margin-top: .15rem; }
.founder-info .bio { color: var(--muted); margin-top: .9rem; max-width: 48ch; font-size: clamp(.95rem, 1.6vw, 1.05rem); }
.founder-links { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.2rem; }
.founder-link {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--text); text-decoration: none; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  padding-bottom: .35rem; border-bottom: 1px solid var(--line); transition: color .3s var(--ease), border-color .3s var(--ease);
}
.founder-link .arrow { color: var(--cu); transition: transform .3s var(--ease); }
.founder-link:hover { color: #fff; border-color: var(--cu); }
.founder-link:hover .arrow { transform: translateX(4px); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease) var(--d, 0ms), transform .8s var(--ease) var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) { .dotnav { display: none; } }
@media (max-width: 900px) {
  .demo-grid { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .principles { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.4rem; }
}
@media (max-width: 720px) {
  .nav-right { gap: 1.3rem; }
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: .72rem; letter-spacing: .1em; }
  .lang-btn { font-size: .72rem; padding: .25rem .35rem; }
  .row { grid-template-columns: 3rem 1fr; gap: 1rem; }
  .founder { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .footer { flex-direction: column; align-items: flex-start; gap: .7rem; }
}
@media (max-width: 480px) {
  .principles { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  .hero { padding-top: 5.5rem; }
  .hero-logo-wrap { width: 90vw; }
}
@media (prefers-reduced-motion: reduce) {
  *, .reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
