/* =========================================================
   HELIOS CYCLES — blueprint-to-glamour scrollytelling site
   ========================================================= */

:root {
  --graphite: #101418;
  --graphite-2: #171c22;
  --graphite-3: #1e242b;
  --silver: #e8ecef;
  --silver-dim: #b9c0c7;
  --blue: #3e9bff;
  --blue-dim: #6b8eb8;
  --orange: #ff5a1f;
  --slate: #8892a0;
  --line: rgba(232, 236, 239, 0.12);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-mono: "Chivo Mono", ui-monospace, "SF Mono", monospace;

  /* modular scale, base 17px, ratio 1.25 */
  --step--1: 0.85rem;
  --step-0: 1.0625rem;
  --step-1: 1.328rem;
  --step-2: 1.66rem;
  --step-3: 2.075rem;
  --step-4: 2.59rem;
  --step-5: 3.24rem;
  --step-6: 4.05rem;

  --rail-w: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--graphite);
  color: var(--silver);
  font-family: var(--font-display);
  font-size: var(--step-0);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* fine drafting-paper grain — breaks up the flat digital black */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
button { font-family: inherit; }

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

.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 200;
  background: var(--blue); color: var(--graphite); padding: 10px 16px;
  font-family: var(--font-mono); font-size: var(--step--1); font-weight: 700;
  transition: top 160ms var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

main { position: relative; margin-left: var(--rail-w); }

/* =========================================================
   RAIL NAV
   ========================================================= */
.rail {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--rail-w);
  border-right: 1px solid var(--line);
  background: var(--graphite-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 0 18px;
  z-index: 100;
}

.rail-mark {
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 6px;
}
.rail-mark:hover { color: var(--orange); }

.rail-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: none; border: 1px solid var(--line); color: var(--silver);
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 8px 14px; cursor: pointer;
}

.rail-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}

.rail-nav a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  border-left: 2px solid transparent;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.rail-nav a .tick { color: var(--slate); font-size: 0.62rem; opacity: 0.7; }
.rail-nav a:hover,
.rail-nav a:focus-visible { color: var(--silver); }
.rail-nav a.active { color: var(--blue); border-left-color: var(--blue); }
.rail-nav a.active .tick { color: var(--blue); opacity: 1; }

.rail-order-btn {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--graphite);
  background: var(--orange);
  padding: 16px 8px;
  display: inline-block;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}
.rail-order-btn:hover,
.rail-order-btn:focus-visible { background: var(--blue); }

@media (max-width: 860px) {
  main { margin-left: 0; }
  .rail {
    top: 0; left: 0; right: 0; bottom: auto;
    width: 100%; height: 58px;
    flex-direction: row;
    padding: 0 14px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .rail-toggle { display: flex; }
  .rail-order { display: none; }
  .rail-nav {
    position: fixed;
    top: 58px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    background: var(--graphite);
    padding: 10px 20px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
  }
  .rail-nav.open {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  }
  .rail-nav a {
    writing-mode: horizontal-tb;
    transform: none;
    width: 100%;
    padding: 16px 4px;
    border-left: none;
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
  }
  .rail-nav a.active { border-left: none; }
}

/* =========================================================
   OPENER
   ========================================================= */
.opener {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 8vw 90px;
  border-bottom: 1px solid var(--line);
}

.opener-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 40%, transparent 90%);
  opacity: 0.5;
}

.eyebrow {
  position: relative;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  color: var(--blue-dim);
  margin-bottom: 26px;
}

.opener-title {
  position: relative;
  font-size: clamp(2.6rem, 6.2vw, 5.6rem);
  line-height: 1.02;
  max-width: 16ch;
  color: var(--silver);
}

.opener-lede {
  position: relative;
  max-width: 56ch;
  margin-top: 28px;
  font-size: var(--step-1);
  color: var(--silver-dim);
}

.opener-bike {
  position: absolute;
  z-index: 1;
  right: 1vw;
  bottom: 1vh;
  width: min(39vw, 39rem);
  color: var(--blue);
  opacity: 0.58;
}

.opener-bike svg { display: block; width: 100%; overflow: visible; }
.opener-bike__ghost { fill: none; stroke: currentColor; stroke-width: 2; vector-effect: non-scaling-stroke; }
.opener-bike__ghost circle { stroke-dasharray: 4 6; }
.opener-bike__measure { fill: none; stroke: var(--slate); stroke-width: 1; vector-effect: non-scaling-stroke; }
.opener-bike__measure text { fill: var(--blue-dim); stroke: none; font: 10px var(--font-mono); letter-spacing: 0.12em; text-anchor: middle; }
.opener-bike::after {
  content: "";
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(circle, rgba(62,155,255,0.12), transparent 66%);
  filter: blur(18px);
  z-index: -1;
}
.opener-bike > span { position: absolute; right: 8%; bottom: 2%; font: 0.62rem var(--font-mono); letter-spacing: 0.16em; color: var(--blue-dim); }

@media (max-width: 1040px) {
  .opener-bike { opacity: 0.16; width: 65vw; right: 0; bottom: 7vh; }
}

.opener-scroll-cue {
  position: relative;
  margin-top: 60px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  cursor: pointer;
  padding: 6px 2px;
  width: fit-content;
}
.opener-scroll-cue svg { animation: bob 1.8s ease-in-out infinite; }
.opener-scroll-cue:hover,
.opener-scroll-cue:focus-visible { color: var(--blue); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* =========================================================
   STORY (pinned scrollytelling)
   ========================================================= */
.story {
  position: relative;
  height: 700vh;
}

.story-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--graphite);
}

.story-frame-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  transition: opacity 600ms var(--ease);
}
.story.is-beauty .story-frame-grid { opacity: 0; }

.story-stage {
  position: relative;
  width: min(1100px, 92vw);
  aspect-ratio: 1200 / 640;
}

.bike-svg { width: 100%; height: 100%; overflow: visible; }

.bike-svg .tube {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 900ms var(--ease), stroke-width 900ms var(--ease), filter 900ms var(--ease);
}
.bike-svg .tube.chain { stroke-width: 2.5; }
.bike-svg .tube.crank-arm { stroke-width: 5; }
.bike-svg .pedal { fill: var(--graphite); stroke: var(--blue); stroke-width: 2.5; transition: stroke 900ms var(--ease); }

.bike-svg .ground-line {
  stroke: var(--line);
  stroke-width: 1;
  stroke-dasharray: 2 8;
}

.bike-svg .wheel .tire { fill: none; stroke: var(--blue-dim); stroke-width: 2.5; }
.bike-svg .wheel .rim { fill: none; stroke: var(--blue); stroke-width: 2; }
.bike-svg .wheel .hub { fill: var(--graphite); stroke: var(--blue); stroke-width: 2; }
.bike-svg .spokes line { stroke: var(--blue-dim); stroke-width: 1; }

.bike-svg .dim { opacity: 0; }
.bike-svg .dim-line { stroke: var(--slate); stroke-width: 1; fill: none; }
.bike-svg .dim-arc { stroke: var(--slate); stroke-width: 1; }
.bike-svg .dim-label {
  font-family: var(--font-mono); font-size: 15px; fill: var(--slate);
  letter-spacing: 0.06em;
}
.bike-svg .dim-value {
  font-family: var(--font-mono); font-size: 22px; fill: var(--orange); font-weight: 700;
}

.beauty-spotlight { opacity: 0; transition: opacity 1s var(--ease); }
.story.is-beauty .beauty-spotlight { opacity: 1; }

.story.is-beauty .bike-svg .tube {
  stroke: url(#gradFrame);
  stroke-width: 9;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
}
.story.is-beauty .bike-svg .tube-fork { stroke: url(#gradFork); }
.story.is-beauty .bike-svg .tube.chain { stroke: #d3a24a; stroke-width: 4; }
.story.is-beauty .bike-svg .tube.crank-arm { stroke: url(#gradFrame); stroke-width: 11; }
.story.is-beauty .bike-svg .ring { stroke: #7d8590; stroke-width: 5; }
.story.is-beauty .bike-svg .pedal { stroke: #7d8590; }
.story.is-beauty .bike-svg .wheel .tire { stroke: #2a2f35; stroke-width: 9; }
.story.is-beauty .bike-svg .wheel .rim { stroke: url(#gradFrame); stroke-width: 4; }
.story.is-beauty .bike-svg .wheel .hub { stroke: var(--orange); }
.story.is-beauty .bike-svg .spokes line { stroke: #6b7078; }

.story-caption {
  position: absolute;
  left: 6vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(360px, 34vw);
  z-index: 5;
}
.story-step {
  position: absolute;
  top: 0; left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
}
.story-num {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--orange);
  letter-spacing: 0.1em;
}
.story-text {
  font-size: var(--step-1);
  color: var(--silver);
  line-height: 1.4;
  text-shadow: 0 2px 16px var(--graphite), 0 0 30px var(--graphite);
}

.story-progress {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  height: 46vh;
  z-index: 5;
}
.story-progress-track {
  position: relative;
  width: 2px;
  height: 100%;
  background: var(--line);
}
.story-progress-fill {
  position: absolute;
  top: 0; left: 0; width: 100%;
  height: 0%;
  background: var(--blue);
}

.story-progress-readout {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--slate);
  white-space: nowrap;
}

.story-progress-ticks { position: absolute; inset: 0; }
.story-progress-tick {
  position: absolute;
  left: -3px;
  width: 8px;
  height: 1px;
  background: var(--slate);
  opacity: 0.55;
  transition: background 250ms var(--ease), opacity 250ms var(--ease);
}
.story-progress-tick.is-passed { background: var(--blue); opacity: 1; }

@media (max-width: 860px) {
  .story { height: 620vh; }
  .story-stage { width: 150vw; }
  .story-caption { left: 5vw; width: 62vw; top: 9%; transform: none; }
  .story-progress { right: 4vw; height: 30vh; top: auto; bottom: 6%; transform: none; }
  .bike-svg .dim-label { font-size: 19px; }
  .bike-svg .dim-value { font-size: 26px; }
}

/* =========================================================
   SHARED SECTION HEAD
   ========================================================= */
.section-head {
  padding: 120px 8vw 0;
  max-width: 74ch;
}
.section-kicker {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  color: var(--blue-dim);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  color: var(--silver);
  max-width: 18ch;
}
.section-lede {
  margin-top: 20px;
  font-size: var(--step-0);
  color: var(--silver-dim);
  max-width: 62ch;
}

/* =========================================================
   GEOMETRY
   ========================================================= */
.geometry { padding-bottom: 130px; border-bottom: 1px solid var(--line); }

.geo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "picker picker"
    "diagram table";
  gap: 40px 6vw;
  padding: 60px 8vw 0;
  align-items: start;
}

.geo-picker { grid-area: picker; display: flex; gap: 10px; }
.geo-size {
  font-family: var(--font-mono);
  font-size: var(--step-0);
  font-weight: 600;
  width: 56px; height: 56px;
  border: 1px solid var(--line);
  background: var(--graphite-2);
  color: var(--slate);
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.geo-size:hover { color: var(--silver); border-color: var(--slate); }
.geo-size.active { background: var(--blue); color: var(--graphite); border-color: var(--blue); }

.geo-diagram-wrap { grid-area: diagram; }
.geo-svg { width: 100%; height: auto; overflow: visible; }
.geo-svg .tube { fill: none; stroke: var(--silver-dim); stroke-width: 4; stroke-linecap: round; }
.geo-svg .tube-fork { stroke: var(--blue); }
.geo-svg .rim { fill: none; stroke: var(--line); stroke-width: 2; }
.geo-svg .ground-line { stroke: var(--line); stroke-width: 1; stroke-dasharray: 2 8; }
.geo-svg .geo-dim line { stroke: var(--orange); stroke-width: 1; }
.geo-svg .dim-label { font-family: var(--font-mono); font-size: 26px; fill: var(--orange); letter-spacing: 0.06em; }
.geo-svg .dim-value { font-family: var(--font-mono); font-size: 32px; fill: var(--orange); font-weight: 700; }

.geo-size-readout {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--slate);
  letter-spacing: 0.04em;
}
.geo-size-readout span#geoReadoutSize { color: var(--blue); }

.geo-table-wrap { grid-area: table; min-width: 0; max-width: 100%; overflow-x: auto; }
.geo-table { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-size: var(--step--1); }
.geo-table th, .geo-table td { padding: 12px 10px; text-align: right; border-bottom: 1px solid var(--line); white-space: nowrap; }
.geo-table th[scope="row"] { text-align: left; color: var(--silver-dim); font-weight: 400; }
.geo-table thead th { color: var(--slate); font-weight: 600; letter-spacing: 0.06em; border-bottom: 1px solid var(--slate); }
.geo-table td { color: var(--silver); }
.geo-table td.is-active-size { color: var(--orange); font-weight: 700; }
.geo-table thead th.is-active-size { color: var(--orange); }

@media (max-width: 860px) {
  .geo-wrap { grid-template-columns: 1fr; grid-template-areas: "picker" "diagram" "table"; }
}

/* =========================================================
   BUILD KITS
   ========================================================= */
.kits { padding-bottom: 60px; border-bottom: 1px solid var(--line); }

.kits-list {
  padding: 60px 8vw 0;
  display: flex;
  flex-direction: column;
}
.kit {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 36px 0 36px 20px;
  margin-left: -20px;
  border-top: 1px solid var(--line);
  border-left: 2px solid transparent;
  transition: background 200ms var(--ease), border-left-color 200ms var(--ease);
}
.kit:last-child { border-bottom: 1px solid var(--line); }
.kit:hover { background: rgba(62, 155, 255, 0.06); border-left-color: var(--blue); }
.kit:hover .kit-num { color: var(--blue); }

.kit-num {
  font-family: var(--font-mono);
  font-size: var(--step-1);
  color: var(--slate);
  padding-top: 4px;
  transition: color 200ms var(--ease);
}
.kit-name { font-size: var(--step-2); color: var(--silver); }
.kit-spec {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--blue-dim);
  margin-top: 10px;
  max-width: 62ch;
}
.kit-desc { margin-top: 12px; color: var(--silver-dim); max-width: 58ch; }

.kit-price { text-align: right; padding-top: 4px; }
.kit-price-num { display: block; font-size: var(--step-2); color: var(--orange); font-family: var(--font-mono); font-weight: 700; }
.kit-price-note { display: block; margin-top: 6px; font-size: 0.75rem; color: var(--slate); font-family: var(--font-mono); max-width: 16ch; margin-left: auto; }

.kits-footnote {
  margin: 40px 8vw 0;
  padding: 22px 26px;
  border: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--silver-dim);
  max-width: 70ch;
}
.kits-footnote strong { color: var(--orange); }

@media (max-width: 860px) {
  .kit { grid-template-columns: 40px 1fr; }
  .kit-price { grid-column: 1 / -1; text-align: left; margin-top: 8px; }
  .kit-price-note { margin-left: 0; }
}

/* =========================================================
   ORDER PROCESS
   ========================================================= */
.process { padding-bottom: 130px; border-bottom: 1px solid var(--line); }

.timeline {
  padding: 70px 8vw 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 46px 5vw;
}
.timeline::before {
  content: "";
  grid-column: 1 / -1;
  height: 1px;
  background: var(--line);
  margin-bottom: -30px;
}

.timeline-item {
  position: relative;
  padding-top: 26px;
  border-top: 2px solid var(--blue);
}
.timeline-item:nth-child(5),
.timeline-item:nth-child(6),
.timeline-item:nth-child(7) { border-top-color: var(--orange); }

.timeline-total {
  border-top: 1px dashed var(--orange);
}
.timeline-total .timeline-week { color: var(--orange); }
.timeline-total .timeline-title { color: var(--orange); font-family: var(--font-mono); font-size: var(--step-2); }

.timeline-week {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 10px;
}
.timeline-title { font-size: var(--step-1); color: var(--silver); }
.timeline-desc { margin-top: 10px; font-size: 0.92rem; color: var(--silver-dim); max-width: 34ch; }

@media (max-width: 1100px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  margin-left: var(--rail-w);
  padding: 80px 8vw 40px;
  background: var(--graphite-2);
}
@media (max-width: 860px) { .site-footer { margin-left: 0; padding-top: 50px; } }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--blue); }
.footer-brand p { font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.1em; color: var(--silver); }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--slate);
  margin-bottom: 14px; font-weight: 600;
}
.footer-col p, .footer-col address { margin-bottom: 8px; color: var(--silver-dim); font-size: 0.92rem; line-height: 1.6; }
.footer-col a { transition: color 180ms var(--ease); }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--blue); }

.footer-bottom {
  padding-top: 26px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--slate);
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .section-head { padding-top: 72px; }
  .geometry, .kits, .process { padding-bottom: 72px; }
  .kits-list, .timeline, .geo-wrap { padding-top: 40px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .opener-scroll-cue svg { animation: none; }
  .bike-svg .tube,
  .bike-svg .pedal,
  .beauty-spotlight,
  .story-frame-grid,
  .kit,
  .rail-nav a,
  .rail-order-btn,
  .footer-col a,
  .geo-size,
  .story-progress-tick,
  .kit { transition: none !important; }
}
