/* /create/freestyle — this page's entire visual layer.
 *
 * home-v3.css loads before this file for the two things it genuinely owns and shares: the home2026
 * chrome, and the closing CTA card (`#faq .final`, the back half of buildFinalCta()). Nothing else in
 * it can reach this markup — every content class here is `fs-` prefixed and every section id but #faq
 * is this page's own, so `#read`, `#motion`, `.age-book`, `.shelf-book`, `.spread` and `.center-head`
 * match nothing here. The contract test asserts exactly that.
 *
 * REGISTER: this is the tool page. Where the picture-book and animation pages breathe, this one packs
 * — smaller type steps, tighter bands, a real data table as the centrepiece, and numbers set in a
 * tabular face. It should read like documentation that happens to be beautiful, not like a brochure.
 * `pb-` and `an-` never appear in this file, and `fs-` never appears in theirs.
 */

/* Margin reset scoped to this page, so nothing here silently depends on another sheet for its box
   model. lp.css only sets box-sizing; without this the page grows by well over a thousand pixels. */
.lp-fs :where(h1, h2, h3, h4, p, ul, ol, li, figure, figcaption) { margin: 0; padding: 0; }
.lp-fs :where(ul, ol) { list-style: none; }
.lp-fs :where(img, svg) { max-width: 100%; }

.lp-fs {
  /* Aliases for the short names the shared component markup expects (composer, chips, trust, CTA). */
  --font-body: var(--rk-font-body);
  --font-display: var(--rk-font-display);
  --shadow-card: var(--rk-shadow-card);
  --shadow-object: var(--rk-shadow-object);

  /* Match the shared header and both sibling create pages. */
  --fs-pad: clamp(36px, 3.6vw, 60px);
  --fs-gutter: clamp(24px, 4vw, 72px);
  --fs-max: 1560px;
  --fs-rule: var(--rk-line);
  color: var(--rk-ink);
  font-family: var(--rk-font-body);
}

.fs-band {
  width: min(calc(100% - 2 * var(--fs-gutter)), var(--fs-max));
  margin-inline: auto;
  padding: var(--fs-pad) 0;
}

.fs-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 12.5px var(--rk-font-body);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rk-emerald);
}
.fs-kicker::before { content: ""; width: 24px; height: 2px; background: currentColor; border-radius: 2px; }

.lp-fs h1 {
  margin-top: 14px;
  font-family: var(--rk-font-display);
  font-size: clamp(36px, 3.3vw, 54px);
  line-height: 1.07;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.lp-fs h2 {
  margin-top: 12px;
  font-family: var(--rk-font-display);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.fs-lede {
  margin-top: 12px;
  max-width: 62ch;
  font-size: clamp(15.5px, 1.1vw, 17.5px);
  line-height: 1.6;
  color: var(--rk-ink-soft);
}
.fs-head { max-width: 46em; }
.fs-sub {
  margin-top: 9px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--rk-ink-soft);
}
.fs-sr {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ── 1 · hero ─────────────────────────────────────────────────────────────── */
.fs-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(28px, 3.2vw, 56px);
  align-items: center;
  min-height: 52svh;
  padding-block: clamp(26px, 3.4vh, 46px) clamp(30px, 4vh, 52px);
}
/* min-width:0 on a grid child is not optional: the default `auto` refuses to shrink below the
   composer button's intrinsic width and pushes the copy column out of the viewport. */
.fs-hero-copy { max-width: 560px; min-width: 0; }

/* The engine picker. A native <details>, so it opens with no script. */
.fs-picker {
  margin-top: clamp(18px, 2.4vh, 30px);
  position: relative;
  max-width: 600px;
}
.fs-picker > summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  list-style: none;
  cursor: pointer;
  background: var(--rk-surface);
  border: 1px solid var(--rk-composer-border);
  border-radius: var(--rk-radius-sm);
  box-shadow: var(--rk-shadow-card);
  font-size: 14.5px;
}
.fs-picker > summary::-webkit-details-marker { display: none; }
.fs-picker > summary:hover { border-color: var(--rk-card-hover-border); }
.fs-picker > summary:focus-visible { outline: 3px solid var(--rk-focus-ring); outline-offset: 2px; }
.fs-picker-label {
  font: 700 11.5px var(--rk-font-body);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--rk-ink-muted);
}
.fs-picker-icon, .fs-opt-icon {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  flex: 0 0 auto;
  border-radius: 7px;
  background: var(--rk-emerald-soft);
  color: var(--rk-emerald);
}
.fs-picker-icon svg, .fs-opt-icon svg, .fs-model-icon svg { width: 16px; height: 16px; }
.fs-picker-name, .fs-opt-name { font-weight: 700; }
.fs-picker-price, .fs-opt-price {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
}
.fs-unit {
  margin-left: 5px;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--rk-ink-soft);
}
.fs-picker-arrow { width: 11px; height: 8px; flex: 0 0 auto; color: var(--rk-ink-muted); transition: transform .2s; }
.fs-picker[open] .fs-picker-arrow { transform: rotate(180deg); }

.fs-picker-panel {
  position: absolute;
  z-index: 30;
  inset-inline: 0;
  top: calc(100% + 6px);
  display: grid;
  gap: 2px;
  padding: 6px;
  max-height: 320px;
  overflow: auto;
  background: var(--rk-surface);
  border: 1px solid var(--rk-line);
  border-radius: var(--rk-radius-sm);
  box-shadow: var(--rk-shadow-panel);
}
.fs-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 9px;
  text-align: left;
  font: inherit;
  font-size: 13.5px;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
.fs-opt:hover { background: var(--rk-paper-2); }
.fs-opt[aria-selected="true"] { background: var(--rk-emerald-soft); }

/* ═══ SHARED COMPONENT STYLES, CARRIED ══════════════════════════════════════
   The composer, chips and trust line are shared component MARKUP (services/lp/components/
   composer.js) but their styles are NOT shared: home-v3.css scopes every one of them under
   `.hero-copy`, which this page does not use. Both sibling create pages restate them for the same
   reason. Skipping this does not look like a missing stylesheet — it looks like a broken page: the
   trust row's inline SVGs render at their intrinsic size and the hero measured 2364px instead of 630.
   Scoped to `.lp-fs` so this page can proportion them for its own denser hero without touching the
   home page or its siblings. */
.lp-fs .composer {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 62px;
  margin-top: 10px;
  padding: 6px 6px 6px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--rk-surface);
  border: 1px solid var(--rk-composer-border, var(--rk-line));
  border-radius: var(--rk-radius-lg);
  box-shadow: var(--rk-shadow-card);
  transition: box-shadow .3s, border-color .3s;
}
.lp-fs .composer:focus-within { border-color: var(--rk-emerald); box-shadow: 0 0 0 4px var(--rk-focus-ring); }
.lp-fs .composer input {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: 600 16px var(--rk-font-body);
  color: var(--rk-ink);
}
.lp-fs .composer input::placeholder { color: var(--rk-ink-muted); font-weight: 400; }
.lp-fs .composer button {
  /* Allowed to shrink: at 375px an unshrinkable button is what pushes the hero column past the
     viewport, because a grid item's default min-width:auto refuses to go below min-content. */
  flex: 0 1 auto;
  min-width: 140px;
  height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  white-space: nowrap;
  background: var(--rk-emerald);
  color: #fff;
  font: 700 15px var(--rk-font-body);
  transition: background .18s, transform .18s;
}
.lp-fs .composer button:hover { background: var(--rk-emerald-hover); transform: translateY(-1px); }
.lp-fs .composer button svg { transition: transform .22s cubic-bezier(.2, .9, .3, 1.2); }
.lp-fs .composer button:hover svg { transform: translateX(4px); }

.fs-try { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: clamp(12px, 1.8vh, 22px); }
.fs-try-label { font: 600 14px var(--rk-font-body); color: var(--rk-ink-muted); }
.lp-fs .chips { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.lp-fs .chips .idea-chip {
  appearance: none;
  margin: 0;
  min-height: 36px;
  text-align: left;
  font: 600 13.5px var(--rk-font-body);
  color: var(--rk-ink-soft);
  border: 1px solid var(--rk-line);
  background: var(--rk-surface);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all .18s;
}
.lp-fs .chips .idea-chip:hover,
.lp-fs .chips .idea-chip.is-selected { border-color: var(--rk-emerald); color: var(--rk-emerald); background: var(--rk-emerald-soft); transform: translateY(-2px); }
@media (hover: none), (pointer: coarse), (max-width: 767px) {
  .lp-fs .chips .idea-chip { min-height: 44px; }
}

.lp-fs .trust {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
  color: var(--rk-ink-soft);
  font: 600 13.5px var(--rk-font-body);
}
.lp-fs .trust span { display: flex; align-items: center; gap: 7px; }
/* Hairline between the three facts, drawn as a left border on every item but the first so it
   disappears by itself when the row wraps on a phone. */
.lp-fs .trust span + span { border-left: 1px solid var(--rk-line); padding-left: 20px; }
.lp-fs .trust svg { width: 16px; height: 16px; stroke: var(--rk-emerald); fill: none; flex: none; }

/* Four square outputs in one composed scene. The svh cap keeps the scene proportional on short
   laptop screens, while the fixed aspect ratio gives the absolutely positioned tiles a stable box
   before any of their lazy images arrive. */
.fs-hero-grid {
  position: relative;
  aspect-ratio: 1.28 / 1;
  min-width: 0;
  /* A definite width is required because the absolutely positioned covers contribute no intrinsic
     width to this container. */
  width: min(100%, 72svh);
  justify-self: end;
}
.fs-tile {
  position: absolute;
  overflow: hidden;
  border-radius: clamp(12px, 1.2vw, 18px);
  background: var(--rk-paper-2);
  border: 5px solid rgba(255, 253, 248, .96);
  box-shadow: var(--rk-shadow-object);
  aspect-ratio: 1 / 1;
}
/* The sibling create pages use one loose composed scene rather than a rigid card wall. These four
   real outputs form the same kind of composition while keeping every label and play control clear. */
.fs-hero-grid .fs-tile:nth-child(1) { width: 53%; left: 1%; top: 2%; transform: rotate(-2.2deg); z-index: 1; }
.fs-hero-grid .fs-tile:nth-child(2) { width: 46%; right: 1%; top: 0; transform: rotate(2deg); z-index: 2; }
.fs-hero-grid .fs-tile:nth-child(3) { width: 48%; left: 10%; bottom: 0; transform: rotate(1.4deg); z-index: 3; }
.fs-hero-grid .fs-tile:nth-child(4) { width: 42%; right: 2%; bottom: 2%; transform: rotate(-1.8deg); z-index: 4; }
.fs-hero-grid .fs-tile:nth-child(-n + 2) > figcaption { top: 8px; bottom: auto; }
/* The explicit height is what keeps the crop: the img's width/height ATTRIBUTES map to CSS height, so
   a slot relying on the tile's aspect-ratio alone renders at the source image's height instead. */
.fs-tile > img,
.fs-tile > .fs-clip-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fs-tile > .fs-clip-el { opacity: 0; transition: opacity .25s; }
.fs-tile.is-playing > .fs-clip-el { opacity: 1; }
.fs-tile > figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 3px 8px;
  font: 700 11px var(--rk-font-body);
  letter-spacing: .2px;
  color: var(--rk-ink);
  background: rgba(255, 255, 255, .88);
  border-radius: 999px;
  backdrop-filter: blur(3px);
}
.fs-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 251, 242, .94);
  box-shadow: 0 8px 24px rgba(20, 20, 20, .28);
  transition: transform .25s cubic-bezier(.2, .9, .3, 1.2);
}
.fs-play svg { width: 22px; height: 22px; fill: var(--rk-emerald); margin-left: 3px; }
.fs-play:hover { transform: scale(1.07); }
.fs-play:focus-visible { outline: 3px solid var(--rk-focus-ring); outline-offset: 3px; }
.fs-tile-clip.is-playing .fs-play { opacity: 0; pointer-events: none; }
.fs-tile-track.is-playing .fs-play svg { display: none; }
.fs-tile-track.is-playing .fs-play::before {
  content: '';
  width: 14px;
  height: 18px;
  background: linear-gradient(to right,
    var(--rk-emerald) 0 38%, transparent 38% 62%, var(--rk-emerald) 62% 100%);
}

/* ── 2 · the lineup ──────────────────────────────────────────────────────── */
.fs-engines {
  --fs-inset: clamp(18px, 2.4vw, 44px);
  background: var(--rk-paper-2);
  border-radius: clamp(18px, 1.8vw, 26px);
  padding: var(--fs-pad) var(--fs-inset);
}
.fs-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 18px; }
.fs-filter {
  padding: 7px 15px;
  font: 700 13px var(--rk-font-body);
  color: var(--rk-ink-soft);
  background: var(--rk-surface);
  border: 1px solid var(--rk-line);
  border-radius: 999px;
  cursor: pointer;
}
.fs-filter:hover { color: var(--rk-ink); border-color: var(--rk-card-hover-border); }
.fs-filter[aria-pressed="true"] {
  color: #fff;
  background: var(--rk-emerald);
  border-color: var(--rk-emerald);
}
.fs-filter:focus-visible { outline: 3px solid var(--rk-focus-ring); outline-offset: 2px; }

.fs-table-wrap {
  margin-top: 14px;
  background: var(--rk-surface);
  border: 1px solid var(--rk-line);
  border-radius: var(--rk-radius);
  overflow: hidden;
}
.fs-table { width: 100%; border-collapse: collapse; text-align: left; }
.fs-table thead th {
  padding: 11px 16px;
  font: 700 11.5px var(--rk-font-body);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--rk-ink-muted);
  border-bottom: 1px solid var(--fs-rule);
  white-space: nowrap;
}
.fs-table tbody tr { border-bottom: 1px solid var(--fs-rule); transition: background .16s; }
.fs-table tbody tr:last-child { border-bottom: 0; }
.fs-table tbody tr:hover { background: var(--rk-emerald-soft); }
.fs-table tbody tr[hidden] { display: none; }
.fs-table th, .fs-table td { padding: 13px 16px; vertical-align: top; font-size: 14px; }
.fs-table th[scope="row"] { font-weight: 700; white-space: nowrap; }
.fs-model { display: flex; align-items: center; gap: 9px; }
.fs-model-icon {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--rk-emerald-soft);
  color: var(--rk-emerald);
}
.fs-type {
  display: inline-block;
  padding: 2px 9px;
  font: 700 11.5px var(--rk-font-body);
  border-radius: 999px;
  white-space: nowrap;
}
.fs-type-image { color: #2f6d8f; background: #e4f0f6; }
.fs-type-video { color: #7a4f9c; background: #efe6f7; }
.fs-type-music { color: #a06a1f; background: #f8eeda; }
.fs-price { font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; }
.fs-blurb { max-width: 42em; line-height: 1.5; color: var(--rk-ink-soft); }
.fs-caps { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }
.fs-caps span {
  padding: 2px 8px;
  font: 600 11.5px var(--rk-font-body);
  color: var(--rk-ink-soft);
  background: var(--rk-paper-2);
  border-radius: 6px;
  white-space: nowrap;
}
.fs-go a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font: 700 13.5px var(--rk-font-body);
  color: var(--rk-emerald);
  text-decoration: none;
  white-space: nowrap;
}
.fs-go a svg { width: 15px; height: 15px; transition: transform .2s; }
.fs-go a:hover svg { transform: translateX(3px); }
.fs-empty { padding: 20px 16px; font-size: 14px; color: var(--rk-ink-soft); }
.fs-song-line {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--rk-ink-soft);
}

/* ── 3 · credits ─────────────────────────────────────────────────────────── */
.fs-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 26px);
  margin-top: 22px;
}
.fs-step {
  padding: 20px 20px 22px;
  background: var(--rk-surface);
  border: 1px solid var(--rk-line);
  border-radius: var(--rk-radius);
  box-shadow: var(--rk-shadow-card);
}
.fs-step-num {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  font: 700 13px var(--rk-font-body);
  color: var(--rk-emerald);
  background: var(--rk-emerald-soft);
  border-radius: 8px;
}
.fs-step h3 { margin-top: 12px; font-size: 16px; }
.fs-step p { margin-top: 7px; font-size: 14px; line-height: 1.55; color: var(--rk-ink-soft); }
.fs-credits-link { margin-top: 18px; }
.fs-credits-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 700 14.5px var(--rk-font-body);
  color: var(--rk-emerald);
  text-decoration: none;
}
.fs-credits-link a svg { transition: transform .2s; }
.fs-credits-link a:hover svg { transform: translateX(3px); }

/* ── 4 · which mode ──────────────────────────────────────────────────────── */
.fs-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 26px);
  margin-top: 22px;
}
.fs-col {
  padding: 22px 22px 24px;
  border: 1px solid var(--rk-line);
  border-radius: var(--rk-radius);
  background: var(--rk-surface);
}
/* The Freestyle column is the one this page is arguing for, so it gets the accent — but only a rule
   and a tint, not a bigger card: the block's point is that these are different jobs, not a contest. */
.fs-col-freestyle { border-color: var(--rk-card-hover-border); background: var(--rk-emerald-soft); }
.fs-col h3 { font-size: 17px; }
.fs-col-sub {
  margin-top: 4px;
  font: 700 11.5px var(--rk-font-body);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--rk-ink-muted);
}
.fs-col ul { margin-top: 14px; display: grid; gap: 8px; }
.fs-col li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--rk-ink-soft);
}
.fs-col li::before {
  content: "";
  position: absolute;
  left: 2px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--rk-emerald);
  opacity: .45;
}
.fs-col-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.fs-col-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font: 700 13.5px var(--rk-font-body);
  color: var(--rk-emerald);
  text-decoration: none;
}
.fs-col-links a svg { width: 15px; height: 15px; transition: transform .2s; }
.fs-col-links a:hover svg { transform: translateX(3px); }
.fs-guide {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--rk-ink);
}

/* ── 5 · FAQ ─────────────────────────────────────────────────────────────── */
/* The accordion markup is shared (components/faq) and its skin lives in home-v3.css under `.faq
   details`. Match the sibling create pages by centring the closing block's heading while keeping
   every question and answer left-aligned inside the shared accordion column. */
#faq > .fs-head { max-width: 720px; margin-inline: auto; text-align: center; }
#faq > .fs-head .fs-kicker { justify-content: center; }
.lp-fs .faq { margin-top: 16px; }
.lp-fs #faq .final { margin-top: clamp(56px, 5.6vw, 96px); }

/* ── cross-links ─────────────────────────────────────────────────────────── */
.fs-crosslinks {
  width: min(calc(100% - 2 * var(--fs-gutter)), var(--fs-max));
  margin: 0 auto;
  padding: clamp(24px, 2.6vw, 38px) 0 clamp(34px, 3.6vw, 54px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  font-size: 14px;
}
.fs-crosslinks-lead { color: var(--rk-ink-muted); font-weight: 600; }
.fs-crosslinks a { color: var(--rk-ink-soft); text-decoration: none; border-bottom: 1px solid var(--rk-line); }
.fs-crosslinks a:hover { color: var(--rk-emerald); border-color: currentColor; }

/* ── reveal ──────────────────────────────────────────────────────────────── */
.fs-reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s, transform .5s; }
.fs-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fs-reveal { opacity: 1; transform: none; transition: none; }
  .lp-fs .chips .idea-chip { transition: none; }
}

/* ── responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .fs-steps { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .fs-hero { grid-template-columns: 1fr; gap: 30px; min-height: 0; padding-top: 26px; }
  .fs-hero-copy { max-width: none; }
  /* The composition becomes 1x2 on a phone: four square tiles in one column is 1300px of hero before the visitor
     reaches the table. The two that stay are one still and the clip — an interaction a phone visitor
     cannot get anywhere else on the page. The music sample is not lost from the argument: the engine
     is a row in the table right below, with the song line under it. */
  .fs-hero-grid { position: static; display: grid; grid-template-columns: 1fr; gap: 12px; width: 100%; aspect-ratio: auto; }
  .fs-hero-grid .fs-tile { position: relative; inset: auto; width: auto; transform: none; border-width: 0; }
  .fs-hero-grid .fs-tile:nth-child(2),
  .fs-hero-grid .fs-tile:nth-child(4) { display: none; }
  .fs-cols { grid-template-columns: 1fr; }

  /* The table becomes a list of cards. Same markup: every cell carries data-label, so the header row
     can be dropped and each value labelled in place. */
  .fs-table-wrap { background: none; border: 0; border-radius: 0; overflow: visible; }
  .fs-table thead { display: none; }
  .fs-table, .fs-table tbody, .fs-table tr, .fs-table th, .fs-table td { display: block; width: 100%; }
  .fs-table tbody tr {
    padding: 16px;
    margin-top: 10px;
    background: var(--rk-surface);
    border: 1px solid var(--rk-line);
    border-radius: var(--rk-radius);
    box-shadow: var(--rk-shadow-card);
  }
  .fs-table tbody tr:hover { background: var(--rk-surface); }
  .fs-table th, .fs-table td { padding: 0; }
  .fs-table td { margin-top: 10px; }
  .fs-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    font: 700 11px var(--rk-font-body);
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--rk-ink-muted);
  }
  /* Type and price read as one line of metadata on a card, and the action is a full-width tap
     target at the bottom. */
  .fs-table td.fs-go::before { display: none; }
  .fs-go a { margin-top: 4px; }
}

@media (max-width: 560px) {
  .fs-picker > summary { flex-wrap: wrap; gap: 8px; }
  .fs-picker-price { margin-left: 0; }
  .fs-crosslinks { gap: 6px 14px; }
}
