/** Shopify CDN: Minification failed

Line 915:0 Unexpected "}"

**/
/* ═════════════════════════════════════════════════════════════════════════
 * PROJECT COYOTE — landing page, HOUSE STYLE (v3, 2026-08-10)
 *
 * Replaces base.css + v2.css entirely. Diego: "get rid of the all black and
 * neon words, use the style of the proton site that is already there and build
 * around it."
 *
 * ── THE HOUSE SYSTEM, read off the live theme, not invented ───────────────
 *   ground        #FFFFFF                       --color-base-background-1
 *   panel         #F3F3F3                       --color-base-background-2
 *   ink / accent  #284273  (navy)               --color-base-text / accent-1
 *   accent 2      #334FB4  (brighter blue)      --color-base-accent-2
 *   display       Bebas Neue 400, UPPERCASE     theme @font-face
 *   body          Montserrat 500 / 700          --font-body-family / weight
 *   buttons       solid navy, white label, 4px  --buttons-radius
 *   page width    1200px                        --page-width 120rem
 *
 * Section headings on this store are CENTRED, UPPERCASE Bebas in navy
 * ("SHOP BY CATEGORY", "ENGINEERED FOR YOUR PERFORMANCE"). Feature emphasis is
 * a SOLID NAVY BLOCK with white type, paired with a square photo. That is the
 * pattern this page is built from — not glass, not glow.
 *
 * 🚫 BANNED IN THIS FILE, on purpose: near-black grounds, backdrop-filter,
 * box-shadow glows, neon orange type, radial "glow" gradients, animated
 * background fields. Orange survives in exactly two places and both are
 * REPRESENTATIONAL: the real edge guard in product photography, and the foam
 * material in the technical figures. It is never used to make type shout.
 *
 * Everything stays namespaced under .cyt so it cannot leak onto another page.
 * ═════════════════════════════════════════════════════════════════════════ */

/* ── TYPE ────────────────────────────────────────────────────────────────────
 * Diego, 2026-08-11: "improve the text and fonts to feel more like a premium
 * sports brand and match the text of our logo more."
 *
 * The display face is now JOST, self-hosted off the theme. That is not a taste
 * call — COYOTE-BRAND.md identifies the paddle artwork as a FUTURA-family
 * geometric sans (circular O, straight diagonal R leg, crossbar G, pointed A),
 * and Jost is the screen-optimised Futura derivative matched at cap height.
 * It is the same geometry as the `proton` wordmark. Bebas Neue — the theme's
 * condensed display face — is the opposite: condensed, not geometric, and it
 * reads generic-sports rather than like our mark.
 *
 * 🚩 THE LOCKUP RULE IS THE SIGNATURE, and it is applied to every heading here:
 *     a LIGHT word followed by a BOLD word, all caps, widely tracked.
 *     PROJECT coyote · SERIES three · so `.cyt-h2` is light and `.cyt-cr` bold.
 * Measured tracking on the artwork is 0.16em on small caps lines; large
 * headings ease off to ~0.08em so they do not fall apart.
 *
 * ⚠️ `PROJECT` is NOT a Light weight. Measured stem/cap on the real art is
 * 0.1235 — Jost 300 gives 0.057, Jost 400 gives 0.084, Jost 450 gives 0.112.
 * Use 450 for the light half. 300 is visibly too thin beside the paddle.
 *
 * ⚠️ Jost uppercase sets MUCH wider than Bebas at the same size. Every display
 * size below is already reduced for that; do not paste Bebas-era numbers back.
 * -------------------------------------------------------------------------- */
@font-face {
  font-family: "JostVF";
  /* ⚠️ NO format() HINT ON PURPOSE. The file is uploaded as .ttf but Shopify
     transcodes theme font assets and serves WOFF2 bytes from the .ttf URL
     (verified: content-type font/woff2, 50 KB not 135 KB). A `format("truetype")`
     hint therefore describes bytes that are not there; dropping the hint makes
     the browser sniff, which is correct for both. */
  src: url("coyote-jost.ttf");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.cyt {
  --nav: #284273;
  --nav-2: #334fb4;
  --ink: #284273;
  --muted: rgba(40, 66, 115, 0.72);
  --faint: rgba(40, 66, 115, 0.55);
  --line: rgba(40, 66, 115, 0.14);
  /* ── the paddle's own ink, now doing real work on the page ──────────────
     Diego, 2026-08-11: "make the page more exciting and energetic looking
     using the colors that the paddle uses as well." The house navy stays the
     INK; safety orange becomes the ACTION colour (every CTA, every accent,
     every active state) and desert tan warms the panels so the page reads
     like the product instead of like a spec sheet. Charcoal is used ONCE,
     for the closer — a band, never a ground. The page is still white. */
  --orange: #ff6000;          /* safety orange — the edge guard */
  --orange-dk: #d94e00;       /* pressed / hover */
  --tan: #decaa4;             /* desert tan — the grip */
  --char: #0b0b0d;            /* charcoal — the face */
  --panel: #f7f2e9;           /* tan-tinted panel, was a cold #f3f3f3 */
  --panel-2: #fcfaf6;
  --bg: #ffffff;
  --r: 6px;
  --r-btn: 4px;

  --display: "JostVF", "Jost", "Futura", "Century Gothic", var(--font-heading-family, Montserrat), sans-serif;
  --body: var(--font-body-family, Montserrat), sans-serif;
  --w-light: 450;   /* the light half of the lockup — measured, not guessed */
  --w-bold: 700;

  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: normal;
  /* `clip`, never `hidden` — `hidden` makes this a scroll container and kills
     `position: sticky` on the buy box and the figure panels. */
  overflow-x: clip;
}
.cyt *,
.cyt *::before,
.cyt *::after { box-sizing: border-box; }
/* 🚩 `height: auto` is load-bearing. Images on this page carry width/height
   attributes for CLS; without this rule `width:100%` scales the width while the
   height attribute stays put, and the hero renders as a 2000px-tall smear of a
   paddle. Do not drop it. */
.cyt img { max-width: 100%; height: auto; display: block; }
.cyt a { color: inherit; }

.cyt-inner { position: relative; }
.cyt-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* the dark-field layers are inert here — the markup keeps them so the v1
   stylesheet can still be rolled back onto the same template */
.cyt-field, .cyt-grain { display: none; }

/* ── type ────────────────────────────────────────────────────────────────── */
.cyt-eyebrow {
  display: block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center;
}
.cyt-h2 {
  font-family: var(--display);
  font-weight: var(--w-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.14;
  font-size: clamp(24px, 5.8vw, 34px);
  color: var(--ink);
  margin: 0;
  text-align: center;
}
/* the bold half of the lockup — same ink, heavier weight, tighter tracking */
.cyt-cr { font-weight: 800; letter-spacing: 0.03em; color: var(--orange); }
.cyt-lede {
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  text-align: center;
}
.cyt-lede b { color: var(--ink); font-weight: 700; }
.cyt-fine {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--faint);
  text-align: center;
  margin: 10px 0 0;
}

.cyt-sec { padding: 62px 0; border-top: 1px solid var(--line); }
.cyt-sec.is-tight { padding-top: 46px; }
.cyt-anchor { position: relative; top: -80px; display: block; height: 0; }

/* ── buttons ─────────────────────────────────────────────────────────────── */
/* 🚩 Scoped to `.cyt .cyt-btn`, not `.cyt-btn`. Half the buttons on this page are
   anchors, and `.cyt a { color: inherit }` (0,1,1) outranks a bare `.cyt-btn`
   (0,1,0) — the sticky bar and the closer CTA both rendered as solid navy
   rectangles with navy-on-navy labels. */
.cyt .cyt-btn {
  display: block;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  padding: 17px 24px;
  border: 1px solid var(--orange);
  border-radius: var(--r-btn);
  background: var(--orange);
  color: #fff;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.cyt .cyt-btn:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: #fff; }

/* ── pills ───────────────────────────────────────────────────────────────── */
.cyt-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.cyt-pill.is-hot { border-color: rgba(40, 66, 115, 0.28); background: #fff; }
.cyt-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ── hero ────────────────────────────────────────────────────────────────── */
.cyt-hero { padding: 44px 0 8px; text-align: center; }
.cyt-lockup { margin: 16px 0 0; line-height: 0.9; }
/* the Proton lockup rule is LIGHT word + BOLD word. On the dark paddle art that
   is cream + white; on the white storefront it is navy at two weights. */
.cyt-lockup .cyt-project {
  display: block;
  font-family: var(--display);
  font-weight: var(--w-light);
  text-transform: uppercase;
  font-size: clamp(15px, 3.4vw, 22px);
  letter-spacing: 0.42em;
  color: var(--faint);
}
.cyt-lockup .cyt-coyote {
  display: block;
  font-family: var(--display);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  font-size: clamp(40px, 10.5vw, 74px);
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-top: 2px;
}
.cyt-kicker {
  font-family: var(--display);
  font-weight: 600;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 14px 0 0;
}
.cyt-sub {
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 16.5px;
  color: var(--muted);
}
.cyt-sub b { color: var(--ink); font-weight: 700; }

.cyt-stage { margin: 26px auto 0; max-width: 560px; }
.cyt-stage img { width: 100%; border-radius: var(--r); }

/* ── the white "specimen" card, now just a panel ─────────────────────────── */
.cyt-specimen {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--panel);
}
.cyt-specimen img { width: 100%; }
.cyt-po {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--nav);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── buy box ─────────────────────────────────────────────────────────────── */
.cyt-buybox {
  max-width: 460px;
  margin: 28px auto 0;
  padding: 26px 22px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  text-align: center;
}
.cyt-price { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin: 14px 0 4px; }
.cyt-amt { font-family: var(--display); font-weight: var(--w-bold); font-size: 40px; letter-spacing: 0.01em; line-height: 1; color: var(--ink); }
.cyt-unit { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--faint); }
.cyt-note { font-size: 13.5px; color: var(--muted); margin: 8px 0 14px; }
.cyt-note b { color: var(--ink); font-weight: 700; }
.cyt-buybox .cyt-btn { margin: 4px 0 0; }
.cyt-buybox form + .cyt-note, .cyt-buybox .cyt-btn + .cyt-note { margin: 14px 0 0; }
.cyt-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.cyt-trust span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }

/* ── jump chips ──────────────────────────────────────────────────────────── */
.cyt-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 26px 20px 6px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: flex-start;
  scrollbar-width: none;
}
.cyt-chips::-webkit-scrollbar { display: none; }
.cyt-chip {
  flex: 0 0 auto;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  background: #fff;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 600;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.cyt-chip:hover { color: #fff; background: var(--nav); border-color: var(--nav); }

/* ── "what changed" tiles ────────────────────────────────────────────────── */
.cyt-diff { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.cyt-diff .cyt-d { padding: 20px 18px; border-radius: var(--r); background: var(--panel); }
.cyt-diff .cyt-d em {
  display: block;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 8px;
}
.cyt-diff .cyt-d strong {
  display: block;
  font-family: var(--display);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(20px, 5.6vw, 25px);
  line-height: 1.06;
  color: var(--ink);
}
.cyt-diff .cyt-d span { display: block; margin-top: 9px; font-size: 13.5px; line-height: 1.55; color: var(--muted); }

/* ── figure + legend explorer ────────────────────────────────────────────── */
.cyt-explore { display: grid; gap: 20px; margin-top: 30px; }
.cyt-figwrap {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  padding: 18px 10px;
}
.cyt-fig { width: 100%; height: auto; display: block; }
.cyt-fig-core, .cyt-fig-taper { max-height: 66vh; margin: 0 auto; }

/* hotspots */
.cyt-hs { cursor: pointer; }
.cyt-hs-dot { fill: var(--nav); stroke: #fff; stroke-width: 2.5; transition: fill 0.2s; }
.cyt-hs-halo { fill: var(--nav); opacity: 0.12; }
.cyt-hs-n { fill: #fff; font-weight: 700; font-family: var(--body); pointer-events: none; }
.cyt-hs.is-on .cyt-hs-dot { fill: var(--orange); }
.cyt-hs.is-on .cyt-hs-halo { fill: var(--orange); opacity: 0.24; }

.cyt-legend { display: grid; gap: 10px; }
.cyt-lg {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 18px 17px;
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--r);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.cyt-lg:focus-visible { outline: 2px solid var(--nav-2); outline-offset: 2px; }
.cyt-lg.is-on { background: var(--panel); border-left-color: var(--nav); }
.cyt-lg .cyt-lgn {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  color: var(--faint);
  background: #fff;
}
.cyt-lg.is-on .cyt-lgn { background: var(--nav); border-color: var(--nav); color: #fff; }
.cyt-lg h3 {
  margin: 3px 0 0;
  font-family: var(--display);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 15px;
  line-height: 1.3;
  color: var(--ink);
}
.cyt-lg p { margin: 7px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.cyt-lg p b { color: var(--ink); font-weight: 700; }

/* ── three constructions ─────────────────────────────────────────────────── */
.cyt-cons { display: grid; gap: 12px; margin-top: 30px; }
.cyt-con {
  padding: 22px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  text-align: center;
}
/* the house pattern for "this is the one": a solid navy block, white type */
.cyt-con.is-hero { background: var(--nav); border-color: var(--nav); }
.cyt-con .cyt-fig-mini { width: 104px; margin: 0 auto 16px; }
.cyt-con .cyt-cat {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 6px;
}
.cyt-con h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 15.5px;
  color: var(--ink);
}
.cyt-con .cyt-plus,
.cyt-con .cyt-minus {
  display: block;
  position: relative;
  margin-top: 11px;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  text-align: left;
  color: var(--muted);
}
.cyt-con .cyt-plus::before,
.cyt-con .cyt-minus::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.cyt-con .cyt-plus::before { content: "+"; color: var(--nav); }
.cyt-con .cyt-minus::before { content: "\2212"; color: var(--faint); }
.cyt-con.is-hero .cyt-cat { color: rgba(255, 255, 255, 0.7); }
.cyt-con.is-hero h3 { color: #fff; }
.cyt-con.is-hero .cyt-plus { color: rgba(255, 255, 255, 0.86); }
.cyt-con.is-hero .cyt-plus::before { color: #fff; }

/* ── sweet-spot pair ─────────────────────────────────────────────────────── */
.cyt-ss { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.cyt-ss figure {
  margin: 0;
  padding: 20px 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  text-align: center;
}
.cyt-ss figure.is-hero { background: var(--panel); }
.cyt-ss .cyt-fig-ss { width: 88px; margin: 0 auto 14px; }
.cyt-ss figcaption { font-size: 13px; line-height: 1.5; color: var(--muted); }
.cyt-ss figcaption b {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-weight: var(--w-bold);
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ── benefits ────────────────────────────────────────────────────────────── */
.cyt-bens { display: grid; gap: 12px; margin-top: 30px; }
.cyt-ben { padding: 20px 18px; border-radius: var(--r); background: var(--panel); }
.cyt-ben h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 15px;
  color: var(--ink);
}
.cyt-ben p { margin: 7px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ── the numbers ─────────────────────────────────────────────────────────── */
.cyt-nums { display: grid; gap: 12px; margin-top: 26px; }
.cyt-num {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.cyt-num .cyt-numv { font-family: var(--display); font-weight: var(--w-bold); font-size: 34px; letter-spacing: 0.01em; line-height: 1; color: var(--ink); }
.cyt-num .cyt-numv small {
  display: block;
  margin-top: 6px;
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.cyt-num p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ── fact strip (was the cert strip) ─────────────────────────────────────── */
.cyt-cert { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 26px; }
.cyt-cert span {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── galleries ───────────────────────────────────────────────────────────── */
.cyt-gal, .cyt-angles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
/* 🚩 A square 2048px macro spanning all three columns renders 1200x1200 — a
   full screen of one photo. The wide slot is a BAND, so crop it to one. */
.cyt-gal .is-wide { grid-column: 1 / -1; }
.cyt-gal .is-wide img { aspect-ratio: 16 / 7; object-fit: cover; object-position: center 45%; }
.cyt-tile { position: relative; border-radius: var(--r); overflow: hidden; background: var(--panel); }
.cyt-tile img { width: 100%; }
.cyt-tag {
  display: block;
  padding: 11px 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  background: #fff;
  border-top: 1px solid var(--line);
}
.cyt-specimen .cyt-tag { background: #fff; }

/* ── steps ───────────────────────────────────────────────────────────────── */
.cyt-steps { display: grid; gap: 12px; margin-top: 30px; }
.cyt-step { padding: 22px 18px; border-radius: var(--r); background: var(--panel); }
.cyt-step .cyt-n {
  font-family: var(--display);
  font-weight: var(--w-bold);
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--nav-2);
  margin-bottom: 8px;
}
.cyt-step h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 15px;
  color: var(--ink);
}
.cyt-step p { margin: 7px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ── specs ───────────────────────────────────────────────────────────────── */
.cyt-split { display: grid; gap: 34px; }
.cyt-split .cyt-eyebrow, .cyt-split .cyt-h2, .cyt-split .cyt-lede { text-align: center; }
.cyt-specs { margin-top: 24px; border-top: 1px solid var(--line); }
.cyt-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
}
.cyt-k { font-family: var(--display);
  font-weight: 600;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.cyt-v { font-size: 14.5px; font-weight: 700; color: var(--ink); text-align: right; }
.cyt-plates { display: grid; gap: 12px; }
.cyt-plate { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.cyt-plate img { width: 100%; }
.cyt-plate .cyt-cap {
  padding: 11px 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  border-top: 1px solid var(--line);
}

/* ── terms ───────────────────────────────────────────────────────────────── */
.cyt-terms { border: 1px solid var(--line); border-radius: var(--r); padding: 24px 20px; }
.cyt-ship {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 18px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.cyt-terms h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 15px;
  color: var(--ink);
}
.cyt-terms ul { margin: 0; padding-left: 20px; }
.cyt-terms li { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin-bottom: 9px; }
.cyt-terms li b { color: var(--ink); font-weight: 700; }
.cyt-terms a { color: var(--nav-2); }

/* ── image band ──────────────────────────────────────────────────────────── */
.cyt-band { margin: 0; }
.cyt-band img { width: 100%; }

/* ── closer — the house navy block ───────────────────────────────────────
   The storefront's own emphasis pattern is a SOLID NAVY BLOCK with white type
   ("ENGINEERED FOR YOUR PERFORMANCE"). The closer is the one place on this page
   that earns it. It overrides .cyt-wrap's max-width so the navy runs full
   bleed; every child keeps its own max-width + auto margins. */
.cyt-closer {
  max-width: none;
  margin: 0;
  padding: 66px 20px 70px;
  background: var(--nav);
  text-align: center;
}
.cyt-closer .cyt-say {
  max-width: 860px;
  margin: 0 auto;
  font-family: var(--display);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.32;
  font-size: clamp(21px, 4.6vw, 34px);
  color: #fff;
}
.cyt-closer .cyt-say b { color: #fff; font-weight: 400; opacity: 0.62; }
.cyt-closer .cyt-lede { color: rgba(255, 255, 255, 0.78); }
.cyt-closer .cyt-pill {
  margin-bottom: 18px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}
.cyt-closer .cyt-fine { color: rgba(255, 255, 255, 0.6); }
/* inverted button — navy on navy would vanish */
.cyt .cyt-closer .cyt-btn {
  max-width: 340px;
  margin: 0 auto;
  background: #fff;
  border-color: #fff;
  color: var(--nav);
}
.cyt .cyt-closer .cyt-btn:hover { background: var(--panel); border-color: var(--panel); color: var(--nav); }

/* ── sticky bar ──────────────────────────────────────────────────────────── */
.cyt-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.cyt-sticky.is-on { transform: translateY(0); }
.cyt-sticky .cyt-meta { flex: 1; min-width: 0; }
.cyt-sticky .cyt-t { font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cyt-sticky .cyt-s { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.cyt-sticky .cyt-btn { width: auto; flex: 0 0 auto; padding: 13px 22px; font-size: 14px; }

/* ── reveal ──────────────────────────────────────────────────────────────── */
.cyt-js .cyt-rv { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.cyt-js .cyt-rv.is-in { opacity: 1; transform: none; }

/* ── desktop ─────────────────────────────────────────────────────────────── */
@media (min-width: 750px) {
  .cyt-sec { padding: 84px 0; }
  .cyt-h2 { font-size: clamp(28px, 2.9vw, 40px); }
  .cyt-lede { font-size: 17px; }
  .cyt-diff { grid-template-columns: repeat(4, 1fr); }
  .cyt-cons { grid-template-columns: repeat(3, 1fr); }
  .cyt-bens { grid-template-columns: 1fr 1fr; }
  .cyt-nums { grid-template-columns: repeat(3, 1fr); }
  .cyt-num { grid-template-columns: 1fr; align-items: start; gap: 12px; }
  .cyt-steps { grid-template-columns: repeat(3, 1fr); }
  .cyt-angles { grid-template-columns: repeat(4, 1fr); }
  .cyt-gal { grid-template-columns: repeat(3, 1fr); }
  .cyt-ss .cyt-fig-ss { width: 112px; }
  .cyt-chips { justify-content: center; }
  .cyt-hero { padding: 60px 0 10px; }
  .cyt-sticky { padding: 14px 40px; }
}
@media (min-width: 990px) {
  .cyt-explore { grid-template-columns: 0.9fr 1fr; gap: 48px; align-items: start; }
  .cyt-explore.is-flip .cyt-figwrap { order: 2; }
  .cyt-figwrap { position: sticky; top: 90px; }
  .cyt-legend { align-self: center; }
  .cyt-split { grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
  .cyt-split .cyt-eyebrow, .cyt-split .cyt-h2, .cyt-split .cyt-lede { text-align: left; }
  .cyt-split .cyt-lede { margin-left: 0; }
  .cyt-plates { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .cyt-js .cyt-rv { opacity: 1; transform: none; transition: none; }
  .cyt-sticky { transition: none; }
}

/* ═════════════════════════════════════════════════════════════════════════
 * v4 — PDP ARCHITECTURE (2026-08-11)
 * Diego pointed at a competitor's Pro-V paddle PDP and asked for the same
 * BUILD, in our style. What was taken is the STRUCTURE only — gallery + buy
 * box, Description/Specifications tabs, a "Technology" row of named features,
 * and a Class/Shape pair of line drawings. None of their copy, none of their
 * colour, and their brand is never named on the page.
 * ═════════════════════════════════════════════════════════════════════════ */

/* ── breadcrumb ──────────────────────────────────────────────────────────── */
.cyt-crumbs {
  padding: 18px 0 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--faint);
}
.cyt-crumbs a { color: var(--faint); text-decoration: none; }
.cyt-crumbs a:hover { color: var(--nav-2); text-decoration: underline; }
.cyt-crumbs span[aria-hidden] { padding: 0 5px; opacity: 0.5; }

/* ── gallery + buy box ───────────────────────────────────────────────────── */
.cyt-pdp { padding-bottom: 10px; }
.cyt-pdp-grid { display: grid; gap: 26px; }
/* 🚩 `min-width: 0` is the whole reason mobile does not scroll sideways.
   A grid item defaults to `min-width: auto`, i.e. it refuses to shrink below
   its content's min-content width. The thumbnail rail is 8 x 68px + gaps =
   600px of intrinsic width, so it blew the column — and the document — out to
   620px at a 390px viewport. `overflow-x: auto` on the rail does NOT prevent
   this on its own. */
.cyt-pdp-grid > * { min-width: 0; }
.cyt-gallery, .cyt-gthumbs { min-width: 0; max-width: 100%; }
.cyt-gmain { border-radius: var(--r); overflow: hidden; background: var(--panel); }
.cyt-gmain img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.cyt-gthumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cyt-gthumbs::-webkit-scrollbar { display: none; }
.cyt-gthumb {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  background: var(--panel);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s;
}
.cyt-gthumb img { width: 100%; height: 100%; object-fit: contain; }
.cyt-gthumb.is-on { border-color: var(--nav); }
.cyt-gthumb:focus-visible { outline: 2px solid var(--nav-2); outline-offset: 2px; }

.cyt-buy { align-self: start; }
.cyt-title {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  line-height: 0.94;
  font-size: clamp(30px, 7.4vw, 52px);
  color: var(--ink);
}
.cyt-title .cyt-title-l { font-weight: var(--w-light); color: var(--faint); letter-spacing: 0.22em; }
.cyt-title .cyt-title-b { font-weight: var(--w-bold); letter-spacing: 0.05em; }
.cyt-model {
  margin: 10px 0 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
}
.cyt-buy .cyt-price { justify-content: flex-start; margin: 18px 0 0; }
.cyt-buy .cyt-sub { margin: 14px 0 0; text-align: left; max-width: none; font-size: 15.5px; }
.cyt-kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 22px 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.cyt-kv > div { background: #fff; padding: 13px 15px; }
.cyt-kv dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.cyt-kv dd { margin: 4px 0 0; font-size: 16px; font-weight: 700; color: var(--ink); }
.cyt-buy .cyt-note { text-align: left; margin: 14px 0 0; }
.cyt-buy .cyt-trust { justify-content: flex-start; }

@media (min-width: 750px) {
  .cyt-gthumb { width: 78px; height: 78px; }
}
@media (min-width: 990px) {
  .cyt-pdp-grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
  .cyt-buy { position: sticky; top: 90px; }
}

/* ── the remaining uppercase UI lines, on the display face ───────────────── */
.cyt-trust span,
.cyt-cert span,
.cyt-kv dt,
.cyt-plate .cyt-cap,
.cyt-num .cyt-numv small,
.cyt-sticky .cyt-s,
.cyt-diff .cyt-d em,
.cyt-con .cyt-cat {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.2em;
}
.cyt-kv dd { font-family: var(--display); font-weight: var(--w-bold); font-size: 17px; letter-spacing: 0.04em; }
.cyt-v { font-family: var(--display); font-weight: var(--w-bold); font-size: 15px; letter-spacing: 0.04em; }
.cyt-diff .cyt-d strong { letter-spacing: 0.08em; font-size: clamp(15px, 3.6vw, 17px); line-height: 1.35; }
.cyt-ss figcaption b { letter-spacing: 0.1em; }

/* Jost's uppercase needs a touch more room between the cap-line and what
   follows than Bebas did — Bebas has almost no internal leading. */
.cyt-h2 + .cyt-lede, .cyt-say + .cyt-lede { margin-top: 18px; }
.cyt-eyebrow { margin-bottom: 12px; }

/* ── heading weight follows the lockup rule ──────────────────────────────────
 * A two-part heading is LIGHT + BOLD ("OUR NEWEST core."). A single-word
 * heading has no bold half to pair with, so it takes the bold weight itself —
 * otherwise "TECHNOLOGY" and "ELONGATED" sit on the page as a light, wide
 * whisper. Written as :has() so the fallback (no support) is bold, not light.
 * -------------------------------------------------------------------------- */
.cyt-h2 { font-weight: var(--w-bold); letter-spacing: 0.06em; }
.cyt-h2:has(.cyt-cr) { font-weight: var(--w-light); letter-spacing: 0.08em; }

/* square media boxes: the paddle figures are portrait and the cross-section is
   landscape — 1:1 is the only ratio that does not strand one of them */

}

/* ═════════════════════════════════════════════════════════════════════════
 * v6 — ENERGY PASS (2026-08-11)
 * Diego: "make the page more exciting and energetic looking using the colors
 * that the paddle uses as well and make the text more athletic looking."
 *
 * Two moves, and they are deliberately separate:
 *   COLOUR   safety orange becomes the ACTION colour and desert tan warms the
 *            panels. Navy stays the ink so the page still belongs to the store.
 *            Charcoal appears exactly ONCE, as the closer band — Diego killed
 *            the all-black build on 2026-08-10 and that still stands: this is a
 *            band on a white page, not a dark page.
 *   TYPE     same Jost (it is the brand's Futura geometry, that does not
 *            change) pushed athletic — heavier, tighter, bigger, uppercase,
 *            with a forward OBLIQUE on the two hero moments. Sports lettering
 *            leans; a geometric sans set upright reads editorial, not athletic.
 * ═════════════════════════════════════════════════════════════════════════ */

/* ── athletic display: heavier and tighter than the editorial pass ───────── */
.cyt-h2 { font-weight: 700; letter-spacing: 0.045em; line-height: 1.06; }
.cyt-h2:has(.cyt-cr) { font-weight: 500; letter-spacing: 0.055em; }
.cyt-h2 { font-size: clamp(27px, 6.6vw, 38px); }

/* the orange speed rule under every section eyebrow */
.cyt-eyebrow { position: relative; padding-bottom: 12px; }
.cyt-eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 34px;
  height: 3px;
  transform: translateX(-50%) skewX(-20deg);
  background: var(--orange);
}
.cyt-eyebrow.is-left { text-align: left; }
.cyt-eyebrow.is-left::after { left: 0; transform: skewX(-20deg); }

/* ── the two hero moments lean forward ──────────────────────────────────── */
.cyt-title .cyt-title-b,
.cyt-closer .cyt-say {
  font-style: normal;
  transform: skewX(-6deg);
  display: inline-block;
}
.cyt-title .cyt-title-b { color: var(--nav); font-weight: 800; letter-spacing: 0.02em; }
.cyt-title .cyt-title-l { color: var(--orange); font-weight: 500; }

/* ── buy box: the price is the loudest thing in it ──────────────────────── */
.cyt-amt { font-size: 52px; font-weight: 800; letter-spacing: -0.005em; }
.cyt-buy .cyt-pill { border-color: var(--orange); color: var(--orange); background: rgba(255, 96, 0, 0.07); }
.cyt-pill.is-hot { border-color: var(--orange); color: var(--orange); background: rgba(255, 96, 0, 0.07); }
.cyt-kv { border-color: rgba(40, 66, 115, 0.16); }
.cyt-kv > div { background: var(--panel-2); }
.cyt-kv dt { color: var(--orange); }
.cyt-trust span { color: var(--nav); }

/* ── stats: big, orange, and leaning ────────────────────────────────────── */
.cyt-num { border-color: rgba(40, 66, 115, 0.16); background: var(--panel-2); }
.cyt-num .cyt-numv {
  font-size: clamp(38px, 9vw, 48px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.01em;
  transform: skewX(-6deg);
  display: inline-block;
}
.cyt-num .cyt-numv small { transform: skewX(6deg); color: var(--nav); }

/* ── step numerals ──────────────────────────────────────────────────────── */
.cyt-step .cyt-n { color: var(--orange); font-weight: 800; font-size: 26px; transform: skewX(-6deg); display: inline-block; }

/* ── active states all burn orange ──────────────────────────────────────── */
.cyt-lg.is-on { border-left-color: var(--orange); background: var(--panel); }
.cyt-lg.is-on .cyt-lgn { background: var(--orange); border-color: var(--orange); }
.cyt-hs-dot { fill: var(--nav); }
.cyt-hs.is-on .cyt-hs-dot { fill: var(--orange); }
.cyt-gthumb.is-on { border-color: var(--orange); border-width: 2px; }
.cyt-chip:hover { background: var(--orange); border-color: var(--orange); }

/* ── the winning construction card keeps the house navy, gains orange type ─ */
.cyt-con.is-hero .cyt-cat { color: var(--orange); }
.cyt-con.is-hero .cyt-plus::before { color: var(--orange); }
.cyt-con .cyt-plus::before { color: var(--orange); }

/* ── technology cards: an orange keyline on hover, tan ground ───────────── */
.cyt-ben { background: var(--panel); }
.cyt-ben h3, .cyt-lg h3, .cyt-step h3, .cyt-con h3, .cyt-terms h3 { font-weight: 800; letter-spacing: 0.08em; }

/* ── closer: the one charcoal band, orange CTA ──────────────────────────── */
.cyt-closer { background: var(--char); }
.cyt-closer .cyt-say { color: #fff; font-weight: 800; letter-spacing: 0.03em; line-height: 1.16; }
.cyt-closer .cyt-say b { color: var(--orange); opacity: 1; font-weight: 800; }
.cyt-closer .cyt-pill { border-color: rgba(255, 255, 255, 0.3); color: #fff; background: transparent; }
.cyt .cyt-closer .cyt-btn { background: var(--orange); border-color: var(--orange); color: #fff; }
.cyt .cyt-closer .cyt-btn:hover { background: var(--orange-dk); border-color: var(--orange-dk); }

/* ── sticky bar ─────────────────────────────────────────────────────────── */
.cyt-sticky .cyt-s { color: var(--orange); }

/* the skew must not clip descenders or shear text off the frame edge */
.cyt-title, .cyt-closer .cyt-say, .cyt-num .cyt-numv { overflow: visible; }

@media (prefers-reduced-motion: reduce) {
  .cyt-title .cyt-title-b, .cyt-closer .cyt-say,
  .cyt-num .cyt-numv, .cyt-step .cyt-n { transform: none; }
  .cyt-num .cyt-numv small { transform: none; }
}

/* ── the dropdowns ───────────────────────────────────────────────────────────
 * One row per product plate. Native <details name="cytacc"> gives an EXCLUSIVE
 * accordion with no JavaScript — opening one closes the others, and it is
 * keyboard operable and screen-reader correct for free. Browsers without the
 * `name` attribute just allow several open at once; that is an acceptable
 * degradation, do not add a script to "fix" it.
 * -------------------------------------------------------------------------- */
.cyt-accsec { padding: 46px 0 8px; }
.cyt-acc { border-top: 1px solid var(--line); }
.cyt-acci { border-bottom: 1px solid var(--line); }

.cyt-acch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 2px;
  cursor: pointer;
  list-style: none;
  transition: color 0.18s;
}
/* both are needed — WebKit still ships the shadow marker */
.cyt-acch::-webkit-details-marker { display: none; }
.cyt-acch::marker { content: ""; }
.cyt-acct {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(15px, 4.2vw, 19px);
  color: var(--nav);
}
.cyt-acch::after {
  content: "";
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  background:
    linear-gradient(var(--orange), var(--orange)) center/100% 3px no-repeat,
    linear-gradient(var(--orange), var(--orange)) center/3px 100% no-repeat;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.cyt-acci[open] .cyt-acch::after { transform: rotate(135deg); }
.cyt-acci[open] .cyt-acct { color: var(--orange); }
.cyt-acch:hover .cyt-acct { color: var(--orange); }
.cyt-acch:focus-visible { outline: 2px solid var(--orange); outline-offset: -2px; }

.cyt-accb { display: grid; gap: 22px; padding: 4px 0 30px; }
.cyt-accb.is-text { max-width: 780px; }
.cyt-accb p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.72; color: var(--muted); }
.cyt-accb p:last-child { margin-bottom: 0; }
.cyt-accb p b { color: var(--nav); font-weight: 700; }
.cyt-accfig { border-radius: var(--r); overflow: hidden; background: var(--panel); }
.cyt-accfig img { width: 100%; }
.cyt-accfig.is-fig { display: grid; place-items: center; padding: 22px; background: var(--panel-2); }
.cyt-accfig.is-fig .cyt-fig { max-height: 300px; width: auto; }
.cyt-acccopy .cyt-specs { margin-top: 0; }

@media (min-width: 750px) {
  .cyt-accsec { padding-top: 60px; }
  .cyt-acch { padding: 24px 2px; }
  .cyt-accb { grid-template-columns: 0.9fr 1fr; gap: 40px; align-items: center; }
  .cyt-accb.is-text { grid-template-columns: 1fr; }
  .cyt-accfig.is-fig .cyt-fig { max-height: 340px; }
}

/* ═════════════════════════════════════════════════════════════════════════
 * v9 — THE APPLE PASS (2026-08-11)
 * Three things a premium product page has that this one did not:
 *   1 · an OVERTURE — one idea at scale before any commerce chrome
 *   2 · a product MOMENT — the cutaway builds itself as you scroll into it
 *   3 · AIR — sections roughly 1.5x taller, far less per screen
 * ═════════════════════════════════════════════════════════════════════════ */

/* ── 1 · the overture ───────────────────────────────────────────────────── */
.cyt-overture {
  text-align: center;
  padding: 40px 20px 8px;
  max-width: 1000px;
  margin: 0 auto;
}
.cyt-overture .cyt-lockup { margin: 18px 0 0; }
.cyt-statement {
  margin: 26px auto 0;
  max-width: 15ch;
  font-family: var(--display);
  font-weight: var(--w-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  font-size: clamp(26px, 7.4vw, 54px);
  color: var(--nav);
}
.cyt-statement b {
  display: block;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.025em;
  transform: skewX(-6deg);
}
.cyt-overture .cyt-sub {
  margin: 24px auto 0;
  max-width: 44ch;
  font-size: clamp(15px, 4vw, 17.5px);
  color: var(--muted);
}
.cyt-overture .cyt-kicker { margin-top: 18px; }

/* the buy column no longer repeats the lockup — it starts at the price */
.cyt-buy .cyt-price { margin-top: 0; }

/* ── 2 · the cutaway builds itself ──────────────────────────────────────────
 * Driven entirely off the reveal observer that already exists: when the
 * section gets `.is-in`, these transitions run. No new JavaScript.
 *   stroke  the traced outline draws (pathLength="1" normalises it)
 *   fill    the foam rim fades up behind it
 *   wipe    a mask scales down the figure, "cutting away" to the honeycomb
 *   marks   the hotspots arrive last
 * ---------------------------------------------------------------------- */
.cyt-fig-core .cyt-b-stroke {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.cyt-fig-core .cyt-b-fill { opacity: 0; transition: opacity 0.8s ease 0.55s; }
.cyt-fig-core .cyt-b-wipe {
  transform: scaleY(0);
  transform-box: fill-box;
  transform-origin: top;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s;
}
.cyt-fig-core .cyt-b-marks { opacity: 0; transition: opacity 0.6s ease 1.9s; }

.cyt-rv.is-in .cyt-fig-core .cyt-b-stroke { stroke-dashoffset: 0; }
.cyt-rv.is-in .cyt-fig-core .cyt-b-fill { opacity: 1; }
.cyt-rv.is-in .cyt-fig-core .cyt-b-wipe { transform: scaleY(1); }
.cyt-rv.is-in .cyt-fig-core .cyt-b-marks { opacity: 1; }

/* ── 3 · air ────────────────────────────────────────────────────────────── */
.cyt-sec { padding: 88px 0; }
.cyt-sec.is-tight { padding-top: 64px; }
.cyt-accsec { padding: 64px 0 12px; }
.cyt-h2 + .cyt-lede, .cyt-say + .cyt-lede { margin-top: 22px; }
.cyt-explore { gap: 34px; margin-top: 44px; }
.cyt-cons, .cyt-bens, .cyt-ss, .cyt-steps { margin-top: 42px; }
.cyt-nums { margin-top: 38px; }
.cyt-acch { padding: 26px 2px; }
.cyt-accb { padding-bottom: 40px; }
.cyt-closer { padding: 96px 20px 100px; }

@media (min-width: 750px) {
  .cyt-sec { padding: 132px 0; }
  .cyt-sec.is-tight { padding-top: 96px; }
  .cyt-accsec { padding: 96px 0 16px; }
  .cyt-overture { padding: 64px 20px 12px; }
  .cyt-statement { margin-top: 34px; }
  .cyt-explore { gap: 64px; margin-top: 56px; }
  .cyt-cons, .cyt-bens, .cyt-ss, .cyt-steps { margin-top: 56px; }
  .cyt-closer { padding: 130px 20px 134px; }
  .cyt-pdp-grid { gap: 56px; }
}

/* a build that plays once on a page nobody asked to animate is worse than none */
@media (prefers-reduced-motion: reduce) {
  .cyt-fig-core .cyt-b-stroke { stroke-dashoffset: 0; transition: none; }
  .cyt-fig-core .cyt-b-fill,
  .cyt-fig-core .cyt-b-marks { opacity: 1; transition: none; }
  .cyt-fig-core .cyt-b-wipe { transform: none; transition: none; }
  .cyt-statement b { transform: none; }
}
