/*
 * AGEYE Market Intelligence — /market-intelligence/
 *
 * Every rule is scoped under `.mi`. This file is enqueued site-wide like every
 * other theme stylesheet, so an unscoped rule here would restyle the whole site —
 * the page's vocabulary (.card, .chip, .btn, .hero) overlaps the theme's.
 * Colliding names were renamed `.mi-*`; @keyframes were renamed `mi-*` so they
 * cannot clash with theme animations.
 *
 * Palette and type come from the app's own AMI design system, deliberately
 * different from the site theme — hence the reset below, which stops the theme's
 * global element styles from reaching inside the page.
 */

/* ── local reset: the theme styles these globally ── */
.mi h1, .mi h2, .mi h3, .mi h4, .mi p, .mi ul, .mi li, .mi figure, .mi blockquote {
  margin: 0; padding: 0; border: 0; background: none; text-transform: none;
}
.mi h1::after, .mi h2::after, .mi h3::after,
.mi h1::before, .mi h2::before, .mi h3::before { content: none; }
.mi a { text-decoration: none; }
.mi img, .mi svg { max-width: 100%; }
.mi *, .mi *::before, .mi *::after { box-sizing: border-box; }


/* Urbanist variable — self-hosted (same file the app ships), latin subset, wght 100–900.
   No third-party font request: nothing on this page calls out to another host. */
@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/urbanist.woff2') format('woff2');
}
/* ————————————————————————————————————————————————————————————————
   AGEYE Market Intelligence — promotional one-pager
   Palette + type lifted from the app's AMI design system (global.css)
   ———————————————————————————————————————————————————————————————— */
.mi {
  --ink: #0b0b0a;
  --paper: #f6f6f3;
  --gray: #f0f0ed;
  --card: #ffffff;
  --blue: #82add4;
  --blue-2: #6f9ec9;
  --blue-wash: #e9f0f7;
  --lime: #ddfd2c;
  --lime-wash: #f6fbd8;
  --mut: #64645f;
  --accent: #39587a;
  --hair: rgba(11, 11, 10, 0.07);
  --hair-2: rgba(11, 11, 10, 0.12);
  --pos: #3c5a24;
  --neg: #7a4a3a;
  --on-blue: rgba(255, 255, 255, 0.93);
  --on-blue-dim: rgba(255, 255, 255, 0.78);
  --slate-grad: linear-gradient(168deg, #556f8e 0%, #4d6682 62%, #465d77 100%);
  --deep-grad: linear-gradient(168deg, #2c6db4 0%, #235fa6 55%, #1e589c 100%);
  --shadow: 0 24px 48px -28px rgba(60, 80, 100, 0.28);
  --shadow-soft: 0 14px 30px -22px rgba(60, 80, 100, 0.18);
  --r-lg: 22px;
  --r-md: 16px;
  --font: 'Urbanist', 'Avenir Next', 'Century Gothic', sans-serif;
}
.mi, .mi * { margin: 0; padding: 0; box-sizing: border-box; }
.mi { scroll-behavior: smooth; }
.mi {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.mi ::selection { background: var(--lime); color: var(--ink); }
.mi a { color: inherit; }
.mi button { font-family: inherit; }

/* grain + atmosphere */
.mi .grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.mi .atmo { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.mi .atmo i { position: absolute; border-radius: 50%; filter: blur(70px); }
.mi .atmo .a1 { width: 720px; height: 720px; right: -240px; top: -220px; background: radial-gradient(circle, rgba(130,173,212,.34), transparent 65%); }
.mi .atmo .a2 { width: 560px; height: 560px; left: -260px; top: 34%; background: radial-gradient(circle, rgba(233,240,247,.9), transparent 65%); }
.mi .atmo .a3 { width: 380px; height: 380px; right: 12%; bottom: -160px; background: radial-gradient(circle, rgba(221,253,44,.13), transparent 62%); }
.mi .wrap { max-width: 1220px; margin: 0 auto; padding: 0 32px; position: relative; }

/* ————————————————————— nav ————————————————————— */
.mi .nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, box-shadow .3s;
}
.mi .nav.scrolled { background: rgba(246, 246, 243, .86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--hair); }
.mi .nav-in { max-width: 1220px; margin: 0 auto; padding: 0 32px; height: 72px; display: flex; align-items: center; gap: 34px; }
/* The logo's viewBox is 0–132.4 but its ® sits at the very top: the AGEYE letterforms
   occupy 34.7–132.5, so their optical centre is 17.4 units (13.1% of the height) BELOW
   the box centre. Centring the lockup on the box makes the text ride high — offset it. */
.mi .brand { --logo-h: 25px; display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.mi .brand .logo { height: var(--logo-h); width: auto; display: block; flex: none; }
.mi .brand span {
  font-size: 13px; color: var(--mut); font-weight: 500; line-height: 1.2;
  padding-left: 11px; border-left: 1px solid var(--hair-2);
  transform: translateY(calc(var(--logo-h) * 0.131));
}
.mi .nav-links { display: flex; gap: 26px; margin-left: auto; }
.mi .nav-links a { font-size: 14.5px; font-weight: 600; color: var(--mut); text-decoration: none; transition: color .2s; }
.mi .nav-links a:hover { color: var(--ink); }
.mi .nav-cta { display: flex; align-items: center; gap: 16px; }
.mi .nav-cta .signin { font-size: 14.5px; font-weight: 600; color: var(--ink); text-decoration: none; }
.mi-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 700; letter-spacing: .01em;
  padding: 12px 22px; border-radius: 999px; text-decoration: none;
  border: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
}
.mi-btn.ink { background: var(--ink); color: #fff; }
.mi-btn.ink:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -12px rgba(11,11,10,.5); }
.mi-btn.lime { background: var(--lime); color: var(--ink); box-shadow: 0 10px 26px -14px rgba(180,210,20,.7); }
.mi-btn.lime:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(180,210,20,.85); }
.mi-btn.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--hair-2); }
.mi-btn.ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.mi-btn .arr { transition: transform .25s; }
.mi-btn:hover .arr { transform: translateX(3px); }
.mi .nav .mi-btn { padding: 10px 19px; font-size: 14px; }

/* ————————————————————— hero ————————————————————— */
.mi-hero { position: relative; padding: 158px 0 46px; }
.mi .hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.mi .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mut);
}
.mi .eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(221,253,44,.35); animation: mi-pulse 2.6s infinite; }
@keyframes mi-pulse {
0%,100% { box-shadow: 0 0 0 3px rgba(221,253,44,.4); }
50% { box-shadow: 0 0 0 7px rgba(221,253,44,.08); } }
.mi-hero h1 {
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 750; letter-spacing: -0.035em; line-height: 1.01;
  margin: 22px 0 24px;
}
.mi-hero h1 .thin { font-weight: 300; }
.mi-hero h1 .mark { position: relative; white-space: nowrap; }
.mi-hero h1 .mark u {
  position: absolute; left: -2%; right: -2%; bottom: 6%; height: .34em;
  background: var(--lime); z-index: -1; transform: scaleX(0); transform-origin: left;
  animation: mi-sweep .7s .9s cubic-bezier(.6,0,.2,1) forwards; text-decoration: none; border-radius: 3px;
}
@keyframes mi-sweep {
to { transform: scaleX(1); } }
.mi-hero .sub { font-size: 19px; color: var(--mut); max-width: 54ch; font-weight: 500; }
.mi-hero .sub b { color: var(--ink); font-weight: 700; }
.mi-hero-ctas { display: flex; align-items: center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
/* Full hero width (outside .hero-grid) — in the left column all four items can't fit
   one line, and the last one orphans onto a second row. */
.mi-hero .proof { margin-top: 52px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px 0; font-size: 14.5px; color: var(--mut); font-weight: 500; }
.mi-hero .proof b { color: var(--ink); font-weight: 750; }
/* Rule rides the END of its item, so a wrapped line never opens with a stray separator */
.mi-hero .proof span:not(:last-child)::after {
  content: ''; display: inline-block; width: 1px; height: 14px;
  background: var(--hair-2); margin: 0 20px; vertical-align: -2px;
}

/* load-in stagger */
.mi .li { opacity: 0; transform: translateY(18px); animation: mi-liIn .8s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--d, 0s); }
@keyframes mi-liIn {
to { opacity: 1; transform: none; } }

/* ————————————————————— app frame chrome ————————————————————— */
.mi .frame {
  background: var(--card); border-radius: var(--r-lg);
  box-shadow: var(--shadow), 0 0 0 1px var(--hair);
  overflow: hidden;
}
.mi .frame-bar {
  display: flex; align-items: center; gap: 18px;
  padding: 13px 18px; border-bottom: 1px solid var(--hair);
}
.mi .fb-brand { display: flex; align-items: center; gap: 7px; flex: none; color: var(--ink); }
.mi .fb-logo { height: 14px; width: auto; display: block; flex: none; }
/* same optical-centre correction as the page header (the ® sits above the letterforms) */
.mi .fb-brand span { font-size: 10.5px; color: var(--mut); transform: translateY(1.8px); }
.mi .fb-tabs { display: flex; gap: 4px; background: var(--gray); border-radius: 999px; padding: 3px; }
.mi .fb-tabs span { font-size: 11.5px; font-weight: 600; color: var(--mut); padding: 4px 11px; border-radius: 999px; }
.mi .fb-tabs span.on { background: var(--card); color: var(--ink); box-shadow: 0 1px 3px rgba(11,11,10,.1); }
.mi .fb-av { margin-left: auto; width: 24px; height: 24px; border-radius: 50%; background: var(--blue-wash); box-shadow: inset 0 0 0 1.5px var(--blue); flex: none; }
.mi .frame-body { padding: 18px; background: var(--paper); }

/* ————————————————————— hero visual —————————————————————
   A real AGEYE crop photo carries the attention; the live price card sits on top of
   it so the promise ("what's it worth") and the proof (a real number) are one object. */
.mi .hero-side { position: relative; padding-bottom: 58px; }
.mi .shot {
  position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden;
  /* the video's native ratio (1088x800) — matching it means no crop, so the
     composition that was framed for the overlays survives intact */
  aspect-ratio: 1088 / 800;
  box-shadow: var(--shadow), 0 0 0 1px rgba(11,11,10,.05);
  background: #2a2130;
}
.mi .shot img,
.mi .shot .shot-vid {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* the slow settle-in belonged to a still frame; the video has its own motion */
.mi .shot img { transform: scale(1.06); animation: mi-shotIn 1.8s .25s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes mi-shotIn {
to { transform: scale(1); } }
.mi .shot-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(190deg, rgba(11,11,10,.34) 0%, rgba(11,11,10,0) 34%, rgba(11,11,10,.34) 100%);
}
.mi .shot-tag {
  position: absolute; right: 16px; top: 16px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: #fff;
  background: rgba(11,11,10,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 7px 13px; border-radius: 999px;
  opacity: 0; animation: mi-liIn .7s 1.1s forwards;
}
.mi .shot-tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: mi-pulse 2.6s infinite; }

/* The live number overlaps the photo's bottom-RIGHT: the crop rows are on the left of
   the frame, so a left-hand card would sit on top of the very thing worth showing. */
.mi .quote-card {
  position: absolute; right: -24px; bottom: 0; width: 60%; min-width: 258px; z-index: 2;
  background: var(--card); border-radius: var(--r-md); padding: 15px 17px 16px;
  box-shadow: 0 28px 54px -26px rgba(60,80,100,.5), 0 0 0 1px var(--hair);
  opacity: 0; transform: translateY(20px); animation: mi-liIn .8s 1s forwards;
}
.mi .qc-top { display: flex; align-items: center; gap: 8px; margin-bottom: 11px; }
.mi .qc-top .fb-logo { height: 13px; }
.mi .qc-when {
  margin-left: auto; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: var(--blue-wash); padding: 4px 9px; border-radius: 999px;
}
.mi .qc-crop { font-size: 12px; color: var(--mut); font-weight: 600; }
.mi .qc-price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; margin-top: 3px; }
.mi .qc-price .big { font-size: 40px; font-weight: 750; letter-spacing: -.03em; line-height: 1.05; font-variant-numeric: tabular-nums; }
.mi .qc-price .unit { font-size: 14px; color: var(--mut); font-weight: 600; }
.mi .qc-price .chg { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--pos); white-space: nowrap; }
.mi .qc-price .chg em { font-style: normal; font-weight: 500; color: var(--mut); }
.mi .qc-spark { width: 100%; height: 52px; margin-top: 6px; display: block; }
.mi .qc-spark path.line {
  fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 340; stroke-dashoffset: 340; animation: mi-draw 1.5s 1.5s cubic-bezier(.5,0,.3,1) forwards;
}
.mi .qc-spark path.fill { fill: url(#sparkfill); opacity: 0; animation: mi-liIn .8s 2.3s forwards; }
@keyframes mi-draw {
to { stroke-dashoffset: 0; } }
.mi .qc-foot { margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--hair); }
.mi .qc-band { font-size: 12px; color: var(--mut); font-weight: 500; }
.mi .qc-band b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.mi .best-chip {
  position: absolute; left: -22px; top: -16px; z-index: 3;
  background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 600;
  padding: 10px 16px; border-radius: 999px; box-shadow: 0 16px 30px -14px rgba(11,11,10,.55);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  opacity: 0; transform: translateY(-12px); animation: mi-liIn .7s 2s forwards;
}
.mi .best-chip b { font-weight: 750; }
.mi .best-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex: none; }

/* ————————————————————— ticker ————————————————————— */
.mi .ticker { border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); background: rgba(255,255,255,.5); overflow: hidden; margin-top: 56px; position: relative; }
.mi .ticker::before, .mi .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.mi .ticker::before { left: 0; width: 170px; background: linear-gradient(90deg, var(--paper) 40%, transparent); }
.mi .tick-tag {
  position: absolute; left: 26px; top: 50%; transform: translateY(-50%); z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--mut);
  background: var(--card); box-shadow: inset 0 0 0 1px var(--hair-2);
  padding: 6px 11px; border-radius: 999px; white-space: nowrap;
}
.mi .tick-tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.mi .ticker::after { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.mi .tick-track { display: flex; width: max-content; animation: mi-tick 46s linear infinite; }
.mi .ticker:hover .tick-track { animation-play-state: paused; }
@keyframes mi-tick {
to { transform: translateX(-50%); } }
.mi .tick-set { display: flex; align-items: center; }
.mi .tick-item { display: flex; align-items: baseline; gap: 8px; padding: 15px 26px; white-space: nowrap; font-size: 14px; }
.mi .tick-item .c { font-weight: 700; }
.mi .tick-item .m { color: var(--mut); font-weight: 500; font-size: 12.5px; }
.mi .tick-item .mi-p { font-weight: 700; font-variant-numeric: tabular-nums; }
.mi .tick-item .d { font-size: 12px; font-weight: 700; }
.mi .tick-item .d.pos { color: var(--pos); }
.mi .tick-item .d.neg { color: var(--neg); }
.mi .tick-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--hair-2); flex: none; }

/* ————————————————————— section headers ————————————————————— */
.mi-sec-head { max-width: 760px; margin: 0 auto; text-align: center; }
.mi-sec-head h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 750; letter-spacing: -.03em; line-height: 1.05; margin-top: 18px; }
.mi-sec-head p { font-size: 17.5px; color: var(--mut); font-weight: 500; margin-top: 16px; }

/* reveal on scroll */
.mi .rv { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0s); }
.mi .rv.on { opacity: 1; transform: none; }

/* ————————————————————— walkthrough ————————————————————— */
.mi .walk { position: relative; height: 520vh; margin-top: 130px; }
.mi .walk-pin {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  /* the site header is position:fixed, 73px — without this the vertically centred
     scene slides under it on short viewports */
  padding-top: var(--mi-site-header, 73px);
}
.mi .walk-head { text-align: center; margin-bottom: 0; }
.mi .walk-head h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 750; letter-spacing: -.03em; }
.mi .walk-body { display: grid; grid-template-columns: 330px 1fr; gap: 54px; align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 32px; width: 100%; }
.mi .rail { display: flex; flex-direction: column; gap: 6px; position: relative; padding-left: 22px; }
.mi .rail-track { position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: var(--hair-2); border-radius: 2px; }
.mi .rail-track i { display: block; width: 100%; height: 0%; background: var(--ink); border-radius: 2px; transition: height .3s; }
.mi .rstep { background: none; border: none; text-align: left; padding: 13px 0; cursor: pointer; transition: opacity .35s; opacity: .38; }
.mi .rstep.on { opacity: 1; }
.mi .rstep .idx { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; color: var(--mut); display: inline-flex; align-items: center; gap: 8px; }
.mi .rstep.on .idx { color: var(--ink); }
.mi .rstep.on .idx::after { content: ''; width: 18px; height: 6px; border-radius: 3px; background: var(--lime); }
.mi .rstep h3 { font-size: 21px; font-weight: 750; letter-spacing: -.015em; margin-top: 6px; }
.mi .rstep p { font-size: 15px; color: var(--mut); font-weight: 500; margin-top: 6px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .45s, opacity .45s; }
.mi .rstep.on p { max-height: 120px; opacity: 1; }
.mi .stage { position: relative; }
.mi .stage .frame { position: relative; }
/* 442, not 430: the map scene's footnote ("Los Angeles quoted only unweighable
   packs…") overflowed the old height by 5px and was clipped by .frame's overflow. */
.mi .stage .frame-body { height: 442px; position: relative; }
.mi .scene {
  position: absolute; inset: 18px; opacity: 0; transform: translateY(22px) scale(.985);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1);
  pointer-events: none; display: flex; flex-direction: column; gap: 12px;
}
.mi .scene.on { opacity: 1; transform: none; pointer-events: auto; }

/* scene shared bits */
.mi .sc-card { background: var(--card); border-radius: var(--r-md); padding: 16px 18px; box-shadow: 0 1px 0 var(--hair), var(--shadow-soft); }
.mi .sc-title { font-size: 13px; font-weight: 700; }
.mi .sc-sub { font-size: 11.5px; color: var(--mut); font-weight: 500; margin-top: 2px; }
.mi .chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600;
  padding: 7px 13px; border-radius: 999px; background: var(--card); box-shadow: inset 0 0 0 1px var(--hair-2);
  color: var(--ink); white-space: nowrap;
}
.mi .chip.sel { background: var(--ink); color: #fff; box-shadow: none; }
.mi .chip.sel i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.mi .chip.usda { background: var(--blue-wash); color: var(--accent); box-shadow: none; font-size: 10.5px; padding: 4px 9px; }
.mi .chip.est { background: var(--gray); color: var(--mut); box-shadow: none; font-size: 10.5px; padding: 4px 9px; }

/* scene 1 — crop & variety */
.mi .s1 .mi-crops { display: flex; flex-wrap: wrap; gap: 8px; }
.mi .s1 .mi-crops .chip { opacity: 0; transform: translateY(10px); }
.mi .s1.on .mi-crops .chip { animation: mi-liIn .45s forwards; }
.mi .s1.on .mi-crops .chip:nth-child(1) { animation-delay: .1s; }
.mi .s1.on .mi-crops .chip:nth-child(2) { animation-delay: .16s; }
.mi .s1.on .mi-crops .chip:nth-child(3) { animation-delay: .22s; }
.mi .s1.on .mi-crops .chip:nth-child(4) { animation-delay: .28s; }
.mi .s1.on .mi-crops .chip:nth-child(5) { animation-delay: .34s; }
.mi .s1.on .mi-crops .chip:nth-child(6) { animation-delay: .4s; }
.mi .s1.on .mi-crops .chip:nth-child(7) { animation-delay: .46s; }
.mi .s1.on .mi-crops .chip:nth-child(8) { animation-delay: .52s; }
.mi .s1 .mi-crops .chip.pick { position: relative; }
.mi .s1.on .mi-crops .chip.pick { animation: mi-liIn .45s .28s forwards, mi-pickIt .4s 1s forwards; }
@keyframes mi-pickIt {
to { background: var(--ink); color: #fff; box-shadow: none; } }
.mi .s1 .vrow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; opacity: 0; transform: translateY(-6px); }
.mi .s1.on .vrow { animation: mi-liIn .5s 1.5s forwards; }
.mi .s1 .vrow .vl { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mut); margin-right: 2px; }
.mi .s1 .vrow .chip.vpick { transition: background .3s, color .3s; }
.mi .s1.on .vrow .chip.vpick { animation: mi-vSel .4s 2.3s forwards; }
@keyframes mi-vSel {
to { background: var(--lime); color: var(--ink); box-shadow: none; font-weight: 700; } }
.mi .s1 .read { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch; }
.mi .s1 .readcard { display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.mi .s1 .readcard .rl { font-size: 11.5px; color: var(--mut); font-weight: 600; }
.mi .s1 .readcard .rv2 { font-size: 40px; font-weight: 750; letter-spacing: -.03em; font-variant-numeric: tabular-nums; line-height: 1.1; margin-top: 6px; }
.mi .s1 .readcard .rv2 .u { font-size: 15px; color: var(--mut); font-weight: 600; letter-spacing: 0; }
.mi .s1 .readcard .rn { font-size: 12px; color: var(--mut); font-weight: 500; margin-top: 6px; }
.mi .s1 .readcard.blend .rv2 { color: var(--mut); text-decoration: line-through rgba(11,11,10,.35) 3px; }
.mi .s1 .readcard.vary { box-shadow: 0 1px 0 var(--hair), var(--shadow-soft), inset 0 0 0 2px var(--lime); }
.mi .s1 .readcard.vary .flag { position: absolute; top: 12px; right: 14px; font-size: 10.5px; font-weight: 700; background: var(--lime); border-radius: 999px; padding: 4px 9px; }
.mi .s1 .readcard.vary .rv2, .mi .s1 .readcard.vary .flag { opacity: 0; }
.mi .s1.on .readcard.vary .rv2 { animation: mi-liIn .5s 2.6s forwards; }
.mi .s1.on .readcard.vary .flag { animation: mi-liIn .5s 2.9s forwards; }

/* scene 2 — ladder */
.mi .s2 .lad { display: flex; flex-direction: column; gap: 9px; flex: 1; justify-content: center; }
.mi .lrung { display: grid; grid-template-columns: 168px 1fr 118px; align-items: center; gap: 12px; }
.mi .lrung .ll { font-size: 12.5px; font-weight: 600; }
.mi .lrung .lbar { height: 22px; border-radius: 7px; background: var(--accent); transform: scaleX(0); transform-origin: left; width: var(--w); }
.mi .lrung.est .lbar { background: repeating-linear-gradient(-55deg, #c6cfd9 0 6px, #dde3ea 6px 12px); }
.mi .lrung.shelf .lbar { background: var(--ink); }
.mi .lrung .lv { font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; display: flex; align-items: center; gap: 7px; opacity: 0; }
.mi .s2.on .lrung .lbar { animation: mi-grow .7s cubic-bezier(.3,.7,.2,1) forwards; }
.mi .s2.on .lrung .lv { animation: mi-liIn .4s forwards; }
.mi .s2.on .lrung:nth-child(1) .lbar { animation-delay: .15s; }
.mi .s2.on .lrung:nth-child(1) .lv { animation-delay: .55s; }
.mi .s2.on .lrung:nth-child(2) .lbar { animation-delay: .3s; }
.mi .s2.on .lrung:nth-child(2) .lv { animation-delay: .7s; }
.mi .s2.on .lrung:nth-child(3) .lbar { animation-delay: .45s; }
.mi .s2.on .lrung:nth-child(3) .lv { animation-delay: .85s; }
.mi .s2.on .lrung:nth-child(4) .lbar { animation-delay: .6s; }
.mi .s2.on .lrung:nth-child(4) .lv { animation-delay: 1s; }
.mi .s2.on .lrung:nth-child(5) .lbar { animation-delay: .75s; }
.mi .s2.on .lrung:nth-child(5) .lv { animation-delay: 1.15s; }
.mi .s2.on .lrung:nth-child(6) .lbar { animation-delay: .9s; }
.mi .s2.on .lrung:nth-child(6) .lv { animation-delay: 1.3s; }
@keyframes mi-grow {
to { transform: scaleX(1); } }
.mi .s2 .legend { display: flex; gap: 18px; font-size: 11.5px; color: var(--mut); font-weight: 500; }
.mi .s2 .legend span { display: inline-flex; align-items: center; gap: 7px; }
.mi .s2 .legend i { width: 14px; height: 10px; border-radius: 3px; display: inline-block; }
.mi .s2 .legend .sw-m { background: var(--accent); }
.mi .s2 .legend .sw-e { background: repeating-linear-gradient(-55deg, #c6cfd9 0 4px, #dde3ea 4px 8px); }

/* scene 3 — quote checker */
.mi .s3 .qgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mi .s3 .field { margin-top: 8px; }
.mi .s3 .field .fl { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--mut); }
.mi .s3 .fbox {
  margin-top: 6px; background: var(--paper); border-radius: 11px; padding: 11px 13px;
  font-size: 19px; font-weight: 700; font-variant-numeric: tabular-nums;
  box-shadow: inset 0 0 0 1.5px var(--hair-2); display: flex; align-items: center; min-height: 46px;
}
.mi .s3 .typed { display: inline-block; overflow: hidden; white-space: nowrap; width: 0; }
.mi .s3.on .typed { animation: mi-typeIn 1s .5s steps(5) forwards; }
@keyframes mi-typeIn {
to { width: 5ch; } }
.mi .s3 .caret { width: 2px; height: 22px; background: var(--ink); margin-left: 2px; animation: mi-blink 1s step-end infinite; }
@keyframes mi-blink {
50% { opacity: 0; } }
.mi .s3 .selrow { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.mi .s3 .band-card { display: flex; flex-direction: column; justify-content: center; }
.mi .s3 .mi-band { position: relative; height: 46px; margin-top: 20px; }
.mi .s3 .mi-band .base { position: absolute; left: 0; right: 0; top: 20px; height: 8px; border-radius: 4px; background: var(--gray); }
.mi .s3 .mi-band .iqr { position: absolute; left: 26%; width: 48%; top: 20px; height: 8px; border-radius: 4px; background: var(--blue); transform: scaleX(0); transform-origin: center; }
.mi .s3.on .mi-band .iqr { animation: mi-grow .7s 1.7s cubic-bezier(.3,.7,.2,1) forwards; }
.mi .s3 .mi-band .med { position: absolute; left: 50%; top: 13px; width: 2.5px; height: 22px; background: var(--accent); border-radius: 2px; opacity: 0; }
.mi .s3.on .mi-band .med { animation: mi-liIn .4s 2.2s forwards; }
.mi .s3 .mi-band .you {
  position: absolute; left: 34%; top: 5px; transform: translateX(-50%) scale(0); transform-origin: bottom center;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.mi .s3.on .mi-band .you { animation: mi-popIn .5s 2.5s cubic-bezier(.2,1.4,.4,1) forwards; }
@keyframes mi-popIn {
to { transform: translateX(-50%) scale(1); } }
.mi .s3 .mi-band .you .yl { font-size: 10px; font-weight: 800; letter-spacing: .06em; background: var(--ink); color: #fff; padding: 3px 8px; border-radius: 999px; }
.mi .s3 .mi-band .you .yp { width: 2.5px; height: 26px; background: var(--ink); border-radius: 2px; }
.mi .s3 .bl { display: flex; justify-content: space-between; font-size: 11px; color: var(--mut); font-weight: 600; margin-top: 8px; font-variant-numeric: tabular-nums; }
.mi .s3 .verdict {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  background: var(--lime-wash); border-radius: 999px; padding: 9px 16px;
  font-size: 14px; font-weight: 750; opacity: 0; transform: scale(.9);
}
.mi .s3.on .verdict { animation: mi-popV .5s 3s cubic-bezier(.2,1.4,.4,1) forwards; }
@keyframes mi-popV {
to { opacity: 1; transform: scale(1); } }
.mi .s3 .verdict i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(221,253,44,.4); }
.mi .s3 .vnote { font-size: 12.5px; color: var(--mut); font-weight: 500; margin-top: 10px; opacity: 0; }
.mi .s3.on .vnote { animation: mi-liIn .5s 3.4s forwards; }

/* scene 4 — map */
.mi .s4 { justify-content: center; }
.mi .s4 .mapwrap { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; }
/* 326, not 360: at 360 the scene's content (title + map + footnote) filled the frame
   exactly, leaving the "Los Angeles quoted only unweighable packs" line flush against
   the card's bottom edge — it read as clipped. Trimming the map rather than growing
   the frame keeps the other three scenes from gaining dead whitespace. */
.mi .s4 svg { width: 100%; height: 100%; max-height: 326px; }
.mi .s4 .outline { fill: #ecece7; stroke: rgba(11,11,10,.18); stroke-width: 1.2; }
.mi .s4 .mkt { transform-origin: center; transform-box: fill-box; transform: scale(0); }
.mi .s4.on .mkt { animation: mi-popIn2 .5s cubic-bezier(.2,1.4,.4,1) forwards; animation-delay: var(--d); }
@keyframes mi-popIn2 {
to { transform: scale(1); } }
.mi .s4 .mkt circle.b { fill: rgba(130, 173, 212, .55); stroke: var(--blue-2); stroke-width: 1.5; }
.mi .s4 .mkt.best circle.b { fill: var(--lime); stroke: var(--ink); stroke-width: 2; }
.mi .s4 .mkt.none circle.b { fill: none; stroke: rgba(11,11,10,.3); stroke-dasharray: 3 4; stroke-width: 1.5; }
.mi .s4 .mkt text { font-family: var(--font); font-size: 15px; font-weight: 600; fill: var(--mut); }
.mi .s4 .mkt.best text { font-weight: 800; fill: var(--ink); font-size: 16px; }
.mi .s4 .home circle { fill: var(--ink); }
.mi .s4 .home text { font-family: var(--font); font-size: 14px; font-weight: 700; fill: var(--ink); }
.mi .s4 .arc { fill: none; stroke: var(--ink); stroke-width: 2; stroke-dasharray: 6 7; opacity: 0; }
.mi .s4.on .arc { animation: mi-liIn .6s 1.7s forwards; }
.mi .s4 .besttag {
  position: absolute; top: 4px; right: 4px; background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 700; padding: 8px 13px; border-radius: 12px;
  display: flex; align-items: center; gap: 8px; opacity: 0; transform: translateY(-8px);
}
.mi .s4.on .besttag { animation: mi-liIn .6s 2.1s forwards; }
.mi .s4 .besttag i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.mi .s4 .mapnote { font-size: 11.5px; color: var(--mut); font-weight: 500; text-align: center; }

/* ————————————————————— mid cta ————————————————————— */
.midcta { margin-top: 44px; }
.mid-line { font-size: 16.5px; color: var(--mut); font-weight: 500; margin-bottom: 18px; }

/* ————————————————————— stats band ————————————————————— */
.mi .band-sec { margin-top: 110px; }
.mi .band-panel {
  background: var(--slate-grad); border-radius: 28px; padding: 74px 64px;
  color: var(--on-blue); position: relative; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(70,85,105,.55);
}
.mi .band-panel::after {
  content: ''; position: absolute; right: -160px; top: -160px; width: 460px; height: 460px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.13), transparent 65%);
}
.mi .band-panel .eyebrow { color: var(--on-blue-dim); }
.mi .band-panel .eyebrow i { background: var(--lime); }
.mi .band-panel h2 { font-size: clamp(30px, 4.1vw, 54px); font-weight: 750; letter-spacing: -.03em; margin-top: 16px; line-height: 1.06; position: relative; z-index: 1; }
.mi .band-copy { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; position: relative; z-index: 1; }
.mi .band-panel .bp-copy { font-size: 18px; color: var(--on-blue-dim); font-weight: 500; line-height: 1.6; }
.mi .band-panel .bp-copy b { color: var(--on-blue); }
.mi .band-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; position: relative; }
.mi .bstat { background: rgba(255,255,255,.09); border-radius: 18px; padding: 20px 22px; }
.mi .bstat .bv { font-size: clamp(26px, 2.6vw, 38px); font-weight: 750; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.mi .bstat .bv em { font-style: normal; color: var(--lime); }
.mi .bstat .bl2 { font-size: 13px; color: var(--on-blue-dim); font-weight: 600; margin-top: 5px; }

/* ————————————————————— features ————————————————————— */
.mi .features { margin-top: 130px; }
.mi .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.mi .fcard {
  background: var(--card); border-radius: var(--r-lg); padding: 26px 26px 28px;
  box-shadow: 0 1px 0 var(--hair), var(--shadow-soft);
  transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.mi .fcard:hover { transform: translateY(-5px); box-shadow: 0 1px 0 var(--hair), var(--shadow); }
.mi .fcard .fviz { height: 96px; border-radius: var(--r-md); background: var(--paper); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.mi .fcard .ftag { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: var(--blue-wash); padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
.mi .fcard h3 { font-size: 19.5px; font-weight: 750; letter-spacing: -.015em; }
.mi .fcard p { font-size: 15.5px; color: var(--mut); font-weight: 500; margin-top: 8px; }
/* vignettes */
.mi .viz-spark path { fill: none; stroke: var(--accent); stroke-width: 2; }
.mi .viz-spark .spike { stroke: var(--ink); stroke-width: 2.4; }
.mi .viz-spark circle { fill: var(--lime); stroke: var(--ink); stroke-width: 1.6; }
.mi .viz-bars { display: flex; align-items: flex-end; gap: 10px; }
.mi .viz-bars i { width: 26px; border-radius: 6px 6px 3px 3px; display: block; }
.mi .viz-bars .org { height: 46px; background: var(--accent); }
.mi .viz-bars .conv { height: 28px; background: var(--blue); }
.mi .viz-bars span { font-size: 10px; font-weight: 700; color: var(--mut); }
.mi .viz-season { display: flex; gap: 3px; }
.mi .viz-season i { width: 14px; height: 34px; border-radius: 4px; background: var(--gray); }
.mi .viz-season i.w { background: var(--lime); }
.mi .viz-season i.mid { background: var(--blue-wash); }
.mi .viz-chips { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; padding: 0 14px; }
.mi .viz-chips span { font-size: 10.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px; background: var(--card); box-shadow: inset 0 0 0 1px var(--hair-2); }
.mi .viz-chips span.on2 { background: var(--ink); color: #fff; box-shadow: none; }
.mi .viz-plant { font-size: 26px; font-weight: 750; letter-spacing: -.02em; }
.mi .viz-plant .u2 { font-size: 13px; color: var(--mut); font-weight: 600; }
.mi .viz-term { font-size: 15px; font-weight: 600; }
.mi .viz-term u { text-decoration: underline dotted var(--mut) 2px; text-underline-offset: 4px; }
.mi .viz-term .pop { display: block; font-size: 10.5px; color: var(--mut); background: var(--card); border-radius: 8px; padding: 6px 9px; margin-top: 8px; box-shadow: 0 1px 0 var(--hair), var(--shadow-soft); font-weight: 500; }

/* ————————————————————— parent-brand tie-back ————————————————————— */
.mi .plat { margin-top: 130px; }
.mi .plat .mi-sec-head p { font-size: 16.5px; }
.mi .plat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 50px; }
.mi .pcard {
  position: relative; display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--card); border-radius: var(--r-lg); padding: 24px 24px 22px;
  box-shadow: 0 1px 0 var(--hair), var(--shadow-soft);
  transition: transform .3s, box-shadow .3s;
}
.mi a.pcard:hover { transform: translateY(-4px); box-shadow: 0 1px 0 var(--hair), var(--shadow); }
.mi .pcard .pk {
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: var(--blue-wash); align-self: flex-start;
  padding: 4px 10px; border-radius: 999px;
}
.mi .pcard h3 { font-size: 19px; font-weight: 750; letter-spacing: -.015em; margin-top: 12px; }
/* Urbanist draws U+2122 as full-height "TM" letterforms (1.46em wide) rather than a
   trademark mark, so it reads as text at any size. Borrow Arial's glyph, which IS a
   proper raised mark, and set it small — measured against 3 alternatives on the card. */
.mi .pcard h3 .tm {
  font-family: Arial, Helvetica, sans-serif;
  font-size: .55em; font-weight: 500; vertical-align: .28em; letter-spacing: 0;
}
.mi .pcard p { font-size: 14.5px; color: var(--mut); font-weight: 500; margin-top: 7px; flex: 1; }
/* whole card is the link — one arrow in the corner instead of the domain repeated 5x */
.mi a.pcard::after {
  content: '→'; position: absolute; right: 22px; top: 22px;
  font-size: 17px; line-height: 1; color: var(--mut); opacity: .5;
  transition: transform .25s, opacity .25s, color .25s;
}
.mi a.pcard:hover::after { opacity: 1; color: var(--ink); transform: translateX(3px); }
/* the rung the reader is standing on — marked, not linked */
.mi .pcard.here { background: var(--ink); color: #fff; }
.mi .pcard.here .pk { background: var(--lime); color: var(--ink); }
.mi .pcard.here p { color: rgba(255,255,255,.72); }
.mi .pcard.here .parr.on { color: var(--lime); }
.mi .plat-foot {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px;
  margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--hair);
}
.mi .plat-foot p {
  font-size: 19px; color: var(--ink); font-weight: 600; letter-spacing: -.01em;
  max-width: 52ch; line-height: 1.45; text-wrap: balance;
}
.mi .plat-foot p b { font-weight: 750; }

/* ————————————————————— closing cta ————————————————————— */
/* the platform section already ends on a button, so it needs less air than a 130px gap */
.mi .cta-sec { margin-top: 96px; padding-bottom: 40px; }
.mi .cta-panel {
  background: var(--deep-grad); border-radius: 28px; padding: 90px 64px;
  text-align: center; color: var(--on-blue); position: relative; overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(30,88,156,.5);
}
.mi .cta-panel::before, .mi .cta-panel::after {
  content: ''; position: absolute; border-radius: 50%;
}
.mi .cta-panel::before { width: 500px; height: 500px; left: -180px; bottom: -260px; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 65%); }
.mi .cta-panel::after { width: 380px; height: 380px; right: -120px; top: -180px; background: radial-gradient(circle, rgba(221,253,44,.16), transparent 62%); }
.mi .cta-panel h2 { font-size: clamp(32px, 4.2vw, 56px); font-weight: 750; letter-spacing: -.03em; line-height: 1.04; max-width: 19ch; margin: 0 auto; position: relative; z-index: 1; }
.mi .cta-panel .csub { font-size: 16.5px; color: var(--on-blue-dim); font-weight: 500; margin-top: 18px; position: relative; z-index: 1; }
.mi .cta-panel .mi-btn { margin-top: 34px; position: relative; z-index: 1; font-size: 16px; padding: 16px 30px; }

/* ————————————————————— footer ————————————————————— */
.mi .foot { border-top: 1px solid var(--hair); margin-top: 40px; }
.mi .foot-in { max-width: 1220px; margin: 0 auto; padding: 34px 32px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.mi .foot .brand { --logo-h: 22px; }
.mi .foot-links { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap; }
.mi .foot-links a { font-size: 14px; font-weight: 600; color: var(--mut); text-decoration: none; }
.mi .foot-links a:hover { color: var(--ink); }
.mi .foot-note { width: 100%; font-size: 13.5px; color: var(--mut); font-weight: 500; }

/* ————————————————————— responsive ————————————————————— */
@media (max-width: 1020px) {
.mi .hero-grid { grid-template-columns: 1fr; gap: 48px; }
.mi-hero { padding-top: 128px; }
.mi-hero .sub { max-width: 60ch; }
.mi .best-chip { left: 4px; top: -15px; }
.mi .walk-body { grid-template-columns: 1fr; gap: 20px; align-items: start; }
.mi .walk { height: 480vh; }
.mi .rail { flex-direction: row; gap: 4px; padding-left: 0; overflow: hidden; }
.mi .rail-track { display: none; }
.mi .rstep { flex: 1; padding: 8px 6px; }
.mi .rstep h3 { font-size: 14px; margin-top: 4px; }
.mi .rstep p { display: none; }
.mi .stage .frame-body { height: 400px; }
.mi .feat-grid, .mi .plat-grid { grid-template-columns: 1fr 1fr; }
.mi .band-stats { grid-template-columns: 1fr 1fr; }
.mi .band-panel { padding: 54px 40px; }
.mi .cta-panel { padding: 70px 36px; }
}
@media (max-width: 620px) {
.mi .wrap, .mi .nav-in, .mi .foot-in { padding-left: 20px; padding-right: 20px; }
.mi .frame-bar { gap: 10px; padding: 11px 14px; }
.mi .tick-tag { display: none; }
.mi .ticker::before { width: 90px; }
  /* the strip wraps here — a rule would dangle at each line end, so hide it and carry
     the spacing on the flex gap instead (the rule's own margins did that on desktop) */
.mi-hero .proof { margin-top: 34px; gap: 8px 20px; font-size: 13.5px; }
.mi-hero .proof span:not(:last-child)::after { display: none; }
.mi .fb-brand span, .mi .fb-av { display: none; }
.mi .fb-tabs { margin-left: auto; }
.mi .fb-tabs span { padding: 4px 8px; font-size: 10.5px; }
.mi .nav-links { display: none; }
.mi .nav-cta .signin { display: none; }
.mi-hero h1 { font-size: clamp(38px, 11vw, 52px); }
.mi .quote-card { position: static; width: 100%; min-width: 0; margin-top: -34px; }
.mi .shot { aspect-ratio: 4 / 3; }
.mi .s1 .read { grid-template-columns: 1fr; }
.mi .s3 .qgrid { grid-template-columns: 1fr; }
.mi .lrung { grid-template-columns: 104px 1fr 96px; gap: 8px; }
.mi .lrung .ll { font-size: 10.5px; }
.mi .lrung .lv { font-size: 11px; }
.mi .stage .frame-body { height: 480px; }
.mi .walk-head h2 { padding: 0 16px; }
.mi .feat-grid, .mi .plat-grid { grid-template-columns: 1fr; }
.mi .band-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
.mi .bstat { padding: 15px 16px; }
.mi .foot-links { margin-left: 0; }
}

/* reduced motion — final states, no theater */
@media (prefers-reduced-motion: reduce) {
.mi { scroll-behavior: auto; }
.mi, .mi *, .mi *::before, .mi *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; transition-duration: .01ms !important; }
.mi .tick-track { animation: none; }
.mi .li, .mi .rv { opacity: 1; transform: none; }
}

/* ————————————————————— FAQ —————————————————————
   <summary> defaults to list-item, which puts the disclosure triangle on its own
   line above a block-level <h3>. Suppress the native marker, lay the summary out
   as a flex row, and draw the chevron with a border so it can rotate on [open]. */
.mi .mi-faq { margin-top: 130px; }
.mi .mi-faq-list {
  max-width: 820px; margin: 46px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.mi .mi-faq-item {
  background: var(--card); border-radius: var(--r-md);
  box-shadow: 0 1px 0 var(--hair), var(--shadow-soft);
}
.mi .mi-faq-item > summary {
  display: flex; align-items: center; gap: 16px;
  padding: 19px 22px; cursor: pointer; list-style: none;
}
.mi .mi-faq-item > summary::-webkit-details-marker { display: none; }
.mi .mi-faq-item > summary::marker { content: ''; }
.mi .mi-faq-item > summary h3 {
  flex: 1; font-size: 17px; font-weight: 700; letter-spacing: -.012em; line-height: 1.35;
}
.mi .mi-faq-item > summary::after {
  content: ''; flex: none; width: 9px; height: 9px; margin-top: -5px;
  border-right: 2px solid var(--mut); border-bottom: 2px solid var(--mut);
  transform: rotate(45deg); transition: transform .25s, margin-top .25s;
}
.mi .mi-faq-item[open] > summary::after { transform: rotate(-135deg); margin-top: 3px; }
.mi .mi-faq-item[open] > summary h3 { color: var(--ink); }
.mi .mi-faq-item > p {
  padding: 0 22px 21px; font-size: 15.5px; line-height: 1.62;
  color: var(--mut); font-weight: 500; max-width: 68ch;
}
@media (max-width: 620px) {
  .mi .mi-faq { margin-top: 90px; }
  .mi .mi-faq-item > summary { padding: 16px 17px; gap: 12px; }
  .mi .mi-faq-item > summary h3 { font-size: 15.5px; }
  .mi .mi-faq-item > p { padding: 0 17px 18px; font-size: 15px; }
}

/* ————————————————————— sticky containment —————————————————————
   position:sticky is disabled by ANY ancestor that establishes a scroll container.
   `overflow-x: hidden` alone does it: the other axis computes to `auto`, which is a
   scrolling box. The page inherited `body { overflow-x: hidden }` from its standalone
   days; scoped to `.mi` that silently broke the whole pinned walkthrough — it scrolled
   through 4,680px of empty grey because the pin never pinned.

   Horizontal overflow is still contained: the THEME sets `overflow-x: hidden` on body,
   which propagates to the viewport (html is `overflow: visible`), so the body itself is
   not a scroll container and sticky keeps working. Never reintroduce an overflow value
   on .mi or on any wrapper between it and .walk-pin. */
.mi { overflow: visible; }

/* ————————————————————— hero video —————————————————————
   The clip runs magenta grow-room -> white packhouse, so the background under the
   overlays gets BRIGHTER as it plays and rests on a bright crate. The scrim is
   therefore sized for the END of the clip, not the start: measured on the resting
   frame, not the poster. */
.mi .shot-vid { background: #2a2130; }

/* Reduced motion: the poster is all anyone gets, and the script never calls play()
   or fetches the video. */
@media (prefers-reduced-motion: reduce) {
  .mi .shot-vid { animation: none; }
}

/* ————————————————————— walkthrough spacing —————————————————————
   The section heading used to live INSIDE .walk-pin. Because the pin is 100vh with
   its content vertically centred, that put ~174px of centring slack (plus the 73px
   header pad and the section margin) above the heading — 413px of dead space between
   the hero and the first thing you read. Measured on production, not eyeballed.

   The heading now sits in normal flow above the pin: it follows the hero at ordinary
   section spacing and scrolls away as the scenes take over, which is how the rail's
   01-04 steps carry the context from there. The pin keeps centring the stage only. */
.mi .walk-head { position: relative; z-index: 1; padding-top: 0; }
.mi .walk-pin { padding-top: var(--mi-site-header, 73px); }

/* With the heading lifted out, the pin holds only the rail + stage (~470px). Centring
   that in 100vh parks ~265px of slack above it, which reads as a second gap under the
   heading before the pin sticks. Top-align instead: the stage then sits just below the
   fixed nav both while scrolling in and once pinned.

   Only above the mobile breakpoint — under it the rail turns horizontal and the body is
   much taller, where centring is still the safer choice against .walk-pin's overflow. */
@media (min-width: 1021px) {
  .mi .walk-pin {
    justify-content: flex-start;
    padding-top: calc(var(--mi-site-header, 73px) + 30px);
    /* Size to the content instead of the viewport. At 100vh the pin was 1000px tall
       around 592px of content, so 408px of it was empty — and because the content is
       top-aligned that void sat at the BOTTOM, which is what you scrolled through
       after the last scene before reaching the CTA. Sticky does not need a viewport
       height, only a top offset and a taller containing block (.walk is 520vh), so
       the pin can simply end where its content ends. */
    height: auto;
  }
}
