/* ════════════════════════════════════════════════════════════════
   DNA INTEGRATIONS — styles.css
   Single source of design truth. All sizing in %/vw/vh/clamp where
   possible so the layout holds at any aspect ratio.
   ════════════════════════════════════════════════════════════════ */

/* ---- Fonts ---- */
@font-face {
  font-family: 'DM Serif Display';
  src: url('assets/Fonts/DMSerifDisplay-Italic.ttf') format('truetype');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'TimesNR';
  src: url('assets/Fonts/times-new-roman-regular_ufonts.com.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

/* ---- Design tokens ---- */
:root {
  --white: #ffffff;

  --serif: 'DM Serif Display', Georgia, serif;   /* titles / labels  */
  --body:  'TimesNR', 'Times New Roman', serif;   /* descriptions     */

  /* Glass material — tuned to the liquid-glass preset
     (tintOpacity 0.08 white, soft blur, rim highlight) */
  --glass-tint:   rgba(255, 255, 255, 0.08);
  --glass-blur:   0px;
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-rim:    rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);

  /* Heavier glass for the contact tile */
  --glass-heavy-tint: rgba(255, 255, 255, 0.16);
  --glass-heavy-blur: 0px;

  /* Dark sub-tiles layered on the contact glass (form inputs) */
  --subtile-bg: rgba(0, 0, 0, 0.38);

  --radius: clamp(14px, 1.6vw, 22px);
  --section-pad-y: clamp(4rem, 9vh, 8rem);
  --maxw: 1400px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

body {
  font-family: var(--body);
  color: var(--white);
  background: #05070d;            /* fallback behind the video */
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

/* ════════════════════════════════════════════════════════════════
   BACKGROUND VIDEO (fixed — never moves) + readability veil
   ════════════════════════════════════════════════════════════════ */
.bg-video-wrap {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.bg-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-veil {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.6) 100%);
}

/* Everything above the video/particles */
main, .navbar, .footer { position: relative; z-index: 2; }

/* ════════════════════════════════════════════════════════════════
   GLASS MATERIAL (CSS frosted — shows the live video through it)
   ════════════════════════════════════════════════════════════════ */
.glass {
  position: relative;
  background: var(--glass-tint);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 var(--glass-rim);
}
/* top rim highlight — mimics the preset's rim/edge light */
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 28%);
  opacity: 0.9;
}
.glass--heavy {
  background: var(--glass-heavy-tint);
  backdrop-filter: blur(var(--glass-heavy-blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--glass-heavy-blur)) saturate(150%);
}

/* When the WebGL material is active (webgl-glass.js adds .webgl-glass to
   <body>), neutralize the CSS frosting on the showcased tiles so the WebGL
   canvas behind them is what you see. */
body.webgl-glass .service-tile,
body.webgl-glass .about-tile,
body.webgl-glass .faq-tile,
body.webgl-glass .contact-tile {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border: none;
}
body.webgl-glass .service-tile::before,
body.webgl-glass .about-tile::before,
body.webgl-glass .faq-tile::before,
body.webgl-glass .contact-tile::before { display: none; }
body.webgl-glass .submit-btn {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border: none;
}
body.webgl-glass .submit-btn::before { display: none; }
body.webgl-glass .submit-btn > *:not(.wg-canvas) { position: relative; z-index: 1; }
/* fields + UNCHECKED pills: kill the CSS panel so only the WebGL glass shows
   (the :checked white pill fill is kept below — that's intentional state) */
body.webgl-glass .field {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border: none;
}
body.webgl-glass .field:focus-within { box-shadow: none; }
body.webgl-glass .li-btn {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border: none;
}
body.webgl-glass .li-btn::before { display: none; }
body.webgl-glass .li-btn > * { position: relative; z-index: 1; }
/* keep tile content above the WebGL canvas (z-index:0) */
body.webgl-glass .service-tile > *:not(.wg-canvas),
body.webgl-glass .about-tile > *:not(.wg-canvas),
body.webgl-glass .faq-tile > *:not(.wg-canvas),
body.webgl-glass .contact-tile > *:not(.wg-canvas) { position: relative; z-index: 1; }

/* Single-tile live-video-refraction demo (webgl-glass-video.js):
   neutralize the CSS frosting on just that one tile so the WebGL canvas shows. */
.wg-video-target {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.18);
}
.wg-video-target::before { display: none; }
.wg-video-target > *:not(.wg-canvas) { position: relative; z-index: 1; }

/* ════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: clamp(0.6rem, 1.5vh, 1.1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(96%, var(--maxw));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.5rem, 1.4vh, 0.9rem) clamp(1rem, 3vw, 2rem);
  border-radius: 999px;
}
.nav-brand {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: 0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2rem);
}
.nav-links a {
  font-family: var(--body);
  font-size: clamp(1.425rem, 1.95vw, 1.575rem);   /* 1.5x the nav link size */
  opacity: 0.85;
  transition: opacity 0.25s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  border: 1px solid var(--glass-border);
  padding: 0.35em 1em;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ════════════════════════════════════════════════════════════════
   SECTIONS (shared)
   ════════════════════════════════════════════════════════════════ */
.section {
  width: min(94%, var(--maxw));
  margin: 0 auto;
  padding: var(--section-pad-y) 0;
}
.section-head { margin-bottom: clamp(2rem, 5vh, 3.5rem); text-align: center; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
}
.section-sub {
  font-family: var(--body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  opacity: 0.8;
  margin-top: 0.6rem;
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 540px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;            /* eyebrow above the particle canvas (z-index:1) */
}
.hero-eyebrow {
  margin-top: clamp(7.5rem, 17vh, 11rem);   /* clears the navbar, sits a bit lower */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.eyebrow-text {
  font-family: var(--body);
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.4px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.chevron {
  width: 18px; height: 18px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  animation: chevron-bob 1.8s var(--ease) infinite;
  opacity: 0.9;
}
@keyframes chevron-bob {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  50%      { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICES — two double-wide glass tiles, expand-down on hover/tap
   ════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* row 1 = 2 wide tiles, rows 2-4 = 4 each */
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
}
/* first two services are double-wide (fill row 1) */
.service-tile:nth-child(-n + 2) { grid-column: span 2; }
/* rows 2-4 (the single-width tiles) share a uniform height, sized to fit the
   longest title at the row-1 font; titles vertically centered so short ones
   (e.g. "SEO & GEO") don't look top-heavy in the taller card */
.service-tile:nth-child(n + 3) {
  min-height: clamp(170px, 22vh, 240px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-tile {
  padding: clamp(1.5rem, 3vw, 2.6rem);
  cursor: pointer;
  overflow: hidden;
  text-align: center;
}
/* The reveal tiles are focusable (tabindex via makeToggle), so clicking them shows
   the browser's default outline — a RECTANGULAR light box past the rounded corners.
   Drop it on click/tap; keep a rounded ring only for keyboard focus (accessibility). */
.service-tile:focus,
.faq-item:focus { outline: none; }
.service-tile:focus-visible,
.faq-item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
  border-radius: var(--radius);
}
.service-name {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.1;
}
.service-reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease), opacity 0.45s var(--ease), margin-top 0.45s var(--ease);
  margin-top: 0;
}
.service-desc {
  font-family: var(--body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  opacity: 0.9;
}
/* click/tap (and keyboard focus) reveal — works on every device, incl. mobile */
.service-tile:focus-within .service-reveal,
.service-tile.open .service-reveal {
  max-height: 460px;
  opacity: 1;
  margin-top: 1.1rem;
}
/* hover reveal only on hover-capable devices (desktop) — avoids sticky-hover on touch */
@media (hover: hover) {
  .service-tile:hover .service-reveal {
    max-height: 460px;
    opacity: 1;
    margin-top: 1.1rem;
  }
}

/* ════════════════════════════════════════════════════════════════
   PROCESS — numbered vertical list, animated in on scroll
   ════════════════════════════════════════════════════════════════ */
.process-list {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 4vh, 3rem);
}
.process-item {
  display: grid;
  grid-template-columns: clamp(3rem, 7vw, 6rem) 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
}
.process-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1;
  opacity: 1;
}
.process-stage {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.process-desc {
  font-family: var(--body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  opacity: 0.86;
}

/* ════════════════════════════════════════════════════════════════
   FAQ — one screen-wide glass tile, hover-reveal answers
   ════════════════════════════════════════════════════════════════ */
.faq-tile {
  width: 100%;
  padding: clamp(1rem, 3vw, 2.4rem);
}
.faq-list { list-style: none; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  padding: clamp(0.9rem, 2.2vh, 1.4rem) 0.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-q::after {
  content: "+";
  font-family: var(--body);
  font-size: 1.4em;
  opacity: 0.7;
  transition: transform 0.4s var(--ease);
}
.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 0.4rem;
}
.faq-a p {
  font-family: var(--body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  opacity: 0.9;
}
.faq-item:hover .faq-a,
.faq-item:focus-within .faq-a,
.faq-item.open .faq-a {
  max-height: 360px;
  opacity: 1;
  padding-bottom: 1.2rem;
}
.faq-item:hover .faq-q::after,
.faq-item.open .faq-q::after { transform: rotate(45deg); }

/* ════════════════════════════════════════════════════════════════
   ABOUT — 4 interactive glass tiles
   ════════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}
.about-tile {
  padding: clamp(1.5rem, 3vw, 2.6rem);
  min-height: clamp(160px, 20vh, 240px);
  display: flex;
  flex-direction: column;
}
.about-section-name {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.1;
}
/* About text is always visible — no hover reveal */
.about-reveal {
  margin-top: 1rem;
}
.about-desc {
  font-family: var(--body);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  opacity: 0.9;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT — heavy glass tile + dark sub-tiles for inputs
   ════════════════════════════════════════════════════════════════ */
.contact-tile {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 3rem);
}
.contact-form { display: flex; flex-direction: column; gap: clamp(1rem, 2.4vh, 1.6rem); }
.form-fields { display: flex; flex-direction: column; gap: clamp(1rem, 2.4vh, 1.6rem); }

.field {
  background: var(--subtile-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: calc(var(--radius) * 0.7);
  padding: clamp(0.9rem, 2vw, 1.3rem);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field:focus-within {
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.12);
}
.field-label {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  margin-bottom: 0.5rem;
}
.field-num { opacity: 0.45; font-size: 0.8em; margin-right: 0.5em; }
.field-hint { font-family: var(--body); font-size: 0.85em; opacity: 0.6; margin-left: 0.4em; }

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--body);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--white);
  background: transparent;
  border: 0;
  padding: 0.55rem 0.2rem;
  outline: none;
}
.field textarea { resize: vertical; min-height: 5.5rem; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.5); }
.field select { appearance: none; cursor: pointer; }
.field select option { color: #111; }   /* readable in the native dropdown */

/* checkbox group */
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
  margin-left: 4px;
}
/* each option is a toggle pill; the real checkbox is hidden but still drives state */
.checkbox-row {
  display: inline-flex;
  align-items: center;
  font-family: var(--body);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  cursor: pointer;
  user-select: none;
  padding: 0.5em 1.1em;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
              color 0.2s var(--ease), transform 0.15s var(--ease);
}
.checkbox-row:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-1px); }
.checkbox-row input {                 /* visually hidden, still focusable & functional */
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.checkbox-row:has(input:checked) {    /* selected state */
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border-color: #fff;
  font-weight: 600;
}
.checkbox-row:has(input:focus-visible) { outline: 2px solid rgba(255, 255, 255, 0.65); outline-offset: 2px; }

/* conditional sub-fields (phone / other) */
.conditional { display: none; margin-top: 0.8rem; }
.conditional.show { display: block; }

/* validation */
.field.invalid { border-color: #ff6b6b; box-shadow: 0 0 0 2px rgba(255,107,107,0.25); }
.field-error {
  display: none;
  color: #ff4b4b;
  font-family: var(--body);
  font-size: 1.7rem;
  margin-top: 0.4rem;
}
.field.invalid .field-error { display: block; }

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-status { font-family: var(--body); opacity: 0.9; font-size: 0.95rem; }
.form-status.error { color: #ff4b4b; font-size: 1.9rem; }
.form-status.success { color: #b9f6c9; }

.submit-btn {
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 4.2rem);   /* 3x */
  color: var(--white);
  padding: 0.6em 1.8em;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.submit-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.16); }
.submit-btn:disabled { opacity: 0.6; cursor: progress; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
  width: min(94%, var(--maxw));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vh, 5rem) 0 clamp(2rem, 4vh, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.4rem, 4vh, 2.4rem);
  text-align: center;
}
.footer-people {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  justify-content: center;
}
.li-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7em 1.3em;
  border-radius: 999px;
  font-family: var(--body);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.li-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.16); }
.li-icon {
  display: inline-block;
  width: 1.25em; height: 1.25em;
  color: var(--white);
  flex-shrink: 0;
}
.li-icon svg { width: 100%; height: 100%; display: block; fill: currentColor; }

.footer-meta { display: flex; flex-direction: column; gap: 0.5rem; opacity: 0.85; font-family: var(--body); }
.footer-meta a { text-decoration: underline; text-underline-offset: 3px; }
.footer-copy { opacity: 0.7; font-size: 0.9rem; }

/* ════════════════════════════════════════════════════════════════
   SCROLL-REVEAL
   ════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* tablet: 2 columns; the first two stay double-wide (each fills its row) */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-tile:nth-child(-n + 2) { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.2rem 1.6rem;
    border-radius: var(--radius);
    background: rgba(10,12,20,0.82);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    min-width: 200px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-toggle { display: flex; }

  .services-grid,
  .about-grid { grid-template-columns: 1fr; }
  .service-tile:nth-child(-n + 2) { grid-column: auto; }

  .process-item { grid-template-columns: clamp(2.4rem, 12vw, 4rem) 1fr; }
}

/* ---- Accessibility: respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .chevron { animation: none; }
  * { transition-duration: 0.001ms !important; }
}
