/* ==========================================================================
   studio.css — the storefront (homepage, intake form, thank-you page).
   Palette and metrics are lifted from the approved design: Claude Design
   project 2d3ee58a, option 1a "Bold — dark · kinetic type · tilt-hover".
   Do not drift the tokens; the whole identity hangs off them.
   ========================================================================== */

:root {
  --bg:         #0F1013;
  --ink:        #F2F1EC;
  --accent:     #D6F94C;
  --accent-ink: #0F1013;
  --surface:    #14151A;
  --surface-2:  #15161B;
  --chrome:     #1A1B21;

  --line:   rgba(242, 241, 236, .12);
  --line-2: rgba(242, 241, 236, .14);
  --line-3: rgba(242, 241, 236, .30);
  --sub:    rgba(242, 241, 236, .65);
  --muted:  rgba(242, 241, 236, .50);
  --faint:  rgba(242, 241, 236, .55);
  --stripe: rgba(242, 241, 236, .05);

  --shell-max: 1180px;
  --shell-pad: clamp(20px, 5vw, 56px);

  --ease: cubic-bezier(.2, .9, .2, 1);
  --sans: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

/* Shared type helpers ---------------------------------------------------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--accent { color: var(--accent); }

.dot { color: var(--accent); }

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border-radius: 999px;
  padding: 15px 28px;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s ease, background-color .3s ease;
}
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--ghost   { background: transparent; color: var(--ink); border-color: var(--line-3); }

@media (hover: hover) {
  .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(214, 249, 76, .25); }
  .btn--ghost:hover   { border-color: var(--ink); }
}

/* Nav -------------------------------------------------------------------- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.nav__brand { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13.5px;
  color: var(--sub);
}
.nav__links a { transition: color .2s ease; }
@media (hover: hover) { .nav__links a:hover { color: var(--ink); } }

.nav__cta {
  border: 1px solid var(--line-3);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--ink);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
@media (hover: hover) {
  .nav__cta:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
}

/* Three anchors do not justify a hamburger — below 640px the CTA carries it. */
@media (max-width: 640px) {
  .nav__links .nav__link { display: none; }
  .nav__links { gap: 0; }
}

/* Hero ------------------------------------------------------------------- */

.hero { position: relative; padding: clamp(44px, 7vw, 72px) 0 30px; }

.hero__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--stripe) 1px, transparent 1px),
    linear-gradient(90deg, var(--stripe) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__eyebrow { margin-bottom: 26px; }

.hero__title {
  font-size: clamp(38px, 8.2vw, 92px);
  font-weight: 700;
  line-height: .97;
  letter-spacing: -.045em;
  margin: 0;
  max-width: 10.5em;
}
/* Each word rises on its own beat. Motion moment 1 of 3. */
.hero__title .w {
  display: inline-block;
  animation: rise .7s var(--ease) both;
  animation-delay: var(--d, 0s);   /* each word sets its own beat in the markup */
}
.hero__title .w--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
.hero__title .w--accent { color: var(--accent); }

.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 34px;
}
.hero__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--sub);
  max-width: 26em;
  text-wrap: pretty;
  animation: rise .7s ease both .7s;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  animation: rise .7s ease both .8s;
}

@media (max-width: 900px) {
  .hero__row { flex-direction: column; align-items: flex-start; gap: 26px; }
  .hero__title { max-width: none; }
}
@media (max-width: 420px) {
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__actions .btn { text-align: center; }
}

/* Marquee — motion moment 2 of 3 ----------------------------------------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin-top: 26px;
  white-space: nowrap;
  /* full-bleed back out through the shell padding */
  margin-inline: calc(var(--shell-pad) * -1);
}
.marquee__track { display: inline-flex; animation: marq 26s linear infinite; }
.marquee__track span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Why-me strip — 1px gaps over a border colour make true hairlines -------- */

.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(36px, 5vw, 56px);
}
.why__cell { background: var(--bg); padding: 24px 22px; transition: background-color .25s ease; }
@media (hover: hover) { .why__cell:hover { background: var(--surface-2); } }
.why__n { font-family: var(--mono); font-size: 11px; color: var(--accent); margin-bottom: 12px; }
.why__h { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.why__p { font-size: 13px; line-height: 1.55; color: var(--faint); }

@media (max-width: 900px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why { grid-template-columns: 1fr; } }

/* Section heads ---------------------------------------------------------- */

.sechead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: clamp(48px, 7vw, 72px) 0 10px;
}
.sechead__h { font-size: clamp(28px, 4.2vw, 38px); font-weight: 700; letter-spacing: -.03em; margin: 0; }
.sechead__note {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.sechead__note .on-touch { display: none; }
@media (hover: none) {
  .sechead__note .on-hover { display: none; }
  .sechead__note .on-touch { display: inline; }
}
@media (max-width: 620px) { .sechead__note { display: none; } }

.sechead__sub { font-size: 15px; color: var(--sub); max-width: 46em; margin: 0 0 24px; }

/* Template cards --------------------------------------------------------- */

.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.card {
  display: block;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}
/* Motion moment 3 of 3 — the tilt. Pointer devices only. */
@media (hover: hover) {
  .card:hover {
    transform: perspective(900px) rotateX(2.5deg) rotateY(-3deg) translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
    border-color: rgba(214, 249, 76, .5);
  }
  .card:nth-child(2n):hover {
    transform: perspective(900px) rotateX(2.5deg) rotateY(3deg) translateY(-8px);
  }
  .card:nth-child(n+3):hover {
    transform: perspective(900px) rotateX(-2.5deg) rotateY(-3deg) translateY(-8px);
  }
  .card:nth-child(n+3):nth-child(2n):hover {
    transform: perspective(900px) rotateX(-2.5deg) rotateY(3deg) translateY(-8px);
  }
}
.card:focus-visible { border-color: var(--accent); }

.card__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--chrome);
  padding: 10px 14px;
}
.card__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(242, 241, 236, .25); flex: none; }
.card__url {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(242, 241, 236, .4);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card__shot { position: relative; aspect-ratio: 700 / 470; background: var(--surface); }
.card__shot img { width: 100%; height: 100%; object-fit: cover; }
/* the design's diagonal-stripe tint, kept over the real photo */
.card__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, var(--tint, rgba(242, 241, 236, .05)) 0 12px, transparent 12px 24px),
    linear-gradient(to top, rgba(15, 16, 19, .82), rgba(15, 16, 19, .18));
}
.card__lockup {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 700;
  letter-spacing: -.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
.card__lockup small {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sub);
  margin-top: 4px;
}

.card__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg);
}
.card__name { font-size: 15.5px; font-weight: 500; }
.card__meta { font-family: var(--mono); font-size: 11px; color: var(--muted); flex-shrink: 0; }

/* Tablets keep the 2x2 the design intends; only phones drop to a single column. */
@media (max-width: 680px) { .cards { grid-template-columns: 1fr; } }

/* What-you-get + pricing ------------------------------------------------- */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: clamp(48px, 7vw, 72px);
  align-items: stretch;
}
@media (max-width: 820px) { .duo { grid-template-columns: 1fr; } }

.panel { border: 1px solid var(--line-2); border-radius: 14px; padding: clamp(24px, 3.5vw, 32px); }
.panel__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.gets { display: grid; gap: 14px; font-size: 15px; }
.gets li { display: flex; gap: 12px; line-height: 1.5; }
.gets .arrow { color: var(--accent); flex: none; }

.price {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 14px;
  padding: clamp(24px, 3.5vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.price__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.price__big  { font-size: clamp(40px, 6vw, 56px); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.price__p    { margin-top: 14px; font-size: 14.5px; line-height: 1.55; max-width: 26em; }
.price__foot { font-family: var(--mono); font-size: 11.5px; margin-top: 22px; }

/* Closing CTA ------------------------------------------------------------ */

.close { text-align: center; padding: clamp(56px, 9vw, 88px) 0 clamp(48px, 7vw, 72px); }
.close__eyebrow { margin-bottom: 18px; }
.close__link {
  display: inline-block;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--ink);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 8px;
  transition: color .3s ease, transform .3s ease;
}
@media (hover: hover) { .close__link:hover { color: var(--accent); transform: translateY(-4px); } }
.close__mail { margin-top: 22px; font-size: 14px; color: var(--faint); }

/* Footer ----------------------------------------------------------------- */

.foot {
  border-top: 1px solid var(--line);
  padding: 26px 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
.foot nav { display: flex; flex-wrap: wrap; gap: 20px; }
@media (hover: hover) { .foot a:hover { color: var(--ink); } }

/* Keyframes -------------------------------------------------------------- */

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Intake form (/start) and thank-you page.
   Same tokens as the homepage — this is still the storefront, just a page
   where the visitor does the talking.
   ========================================================================== */

.page-head { padding: clamp(38px, 6vw, 64px) 0 clamp(24px, 3vw, 34px); max-width: 34em; }
.page-head h1 {
  font-size: clamp(32px, 5.4vw, 54px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin: 14px 0 0;
}
.page-head p { margin-top: 18px; font-size: 17px; line-height: 1.6; color: var(--sub); text-wrap: pretty; }

.qform { max-width: 720px; padding-bottom: clamp(48px, 7vw, 80px); }

.q { padding: 26px 0; border-top: 1px solid var(--line); }
.q:first-of-type { border-top: 0; padding-top: 6px; }

.q__n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 10px;
}
.q__label { display: block; font-size: 18px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 6px; }
.q__hint  { font-size: 14px; color: var(--muted); margin-bottom: 14px; text-wrap: pretty; }
.q__opt   { font-weight: 400; color: var(--muted); font-size: 15px; }

.f {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 14px 15px;
  transition: border-color .2s ease, background-color .2s ease;
}
.f::placeholder { color: rgba(242, 241, 236, .35); }
.f:hover { border-color: var(--line-3); }
.f:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
textarea.f { min-height: 108px; resize: vertical; line-height: 1.55; }

/* native select needs its own arrow on a dark ground */
select.f {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--sub) 50%), linear-gradient(135deg, var(--sub) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
select.f option { background: var(--surface); color: var(--ink); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .grid-2 { grid-template-columns: 1fr; } }

/* Chip pickers — used for both checkbox and radio groups. */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chips label {
  display: inline-block;
  font-size: 14.5px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 10px 17px;
  cursor: pointer;
  color: var(--sub);
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}
@media (hover: hover) { .chips label:hover { border-color: var(--line-3); color: var(--ink); } }
.chips input:checked + label { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); font-weight: 500; }
.chips input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Validation ------------------------------------------------------------- */

.err { display: block; margin-top: 9px; font-size: 13.5px; color: #FF8A6B; }
.q[data-invalid] .f { border-color: #FF8A6B; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid var(--line); }
.form-actions .btn[disabled] { opacity: .55; cursor: progress; transform: none; box-shadow: none; }
.form-actions small { font-size: 13px; color: var(--muted); }

/* The alert shown when the API is unreachable or unconfigured. It carries a
   mailto fallback so a lead is never silently lost. */
.alert {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 138, 107, .5);
  border-radius: 12px;
  background: rgba(255, 138, 107, .07);
  font-size: 15px;
  line-height: 1.55;
}
.alert strong { color: #FFB9A4; }
.alert a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Thank-you page --------------------------------------------------------- */

.thanks { padding: clamp(60px, 11vw, 120px) 0 clamp(48px, 8vw, 90px); max-width: 30em; }
.thanks h1 { font-size: clamp(38px, 7vw, 66px); font-weight: 700; letter-spacing: -.04em; line-height: 1; margin: 16px 0 0; }
.thanks p { margin-top: 20px; font-size: 17px; line-height: 1.6; color: var(--sub); }
.thanks .btn { margin-top: 32px; }

/* ==========================================================================
   /templates — the full gallery. Same cards as the homepage, but each one
   also exposes every page inside that demo so nothing is buried.
   ========================================================================== */

.tset { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .85fr); gap: clamp(22px, 4vw, 46px); align-items: center; padding: clamp(32px, 5vw, 54px) 0; border-top: 1px solid var(--line); }
.tset:first-of-type { border-top: 0; }
@media (max-width: 820px) { .tset { grid-template-columns: 1fr; gap: 24px; } }

.tset__h { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; letter-spacing: -.03em; margin: 0 0 6px; }
.tset__kind { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.tset__p { font-size: 15.5px; line-height: 1.6; color: var(--sub); margin: 0 0 22px; max-width: 34em; text-wrap: pretty; }

.tset__pages { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-bottom: 22px; }
.tset__page {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  background: var(--bg);
  padding: 13px 16px;
  font-size: 14.5px;
  transition: background-color .2s ease, color .2s ease;
}
.tset__page span { font-family: var(--mono); font-size: 11px; color: var(--muted); }
@media (hover: hover) { .tset__page:hover { background: var(--surface-2); color: var(--accent); } }

/* Inline link from the homepage section out to the full gallery. */
.gallery-link {
  color: var(--accent);
  font-size: 15px;
  border-bottom: 1px solid rgba(214, 249, 76, .4);
  padding-bottom: 2px;
  transition: border-color .2s ease;
}
@media (hover: hover) { .gallery-link:hover { border-bottom-color: var(--accent); } }

/* ==========================================================================
   Live template preview showcase (/templates). Enhanced by showcase.js.
   ========================================================================== */

.showcase { margin: clamp(8px, 3vw, 24px) 0 clamp(40px, 6vw, 64px); }

.showcase__head { max-width: 40em; margin-bottom: 22px; }
.showcase__head h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; letter-spacing: -.03em; margin: 0 0 8px; }
.showcase__head p { font-size: 15.5px; color: var(--sub); margin: 0; }

/* Pills — horizontally scrollable on small screens, wrap on large. */
.showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.showcase__pill {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--sub);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 9px 16px;
  white-space: nowrap;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}
@media (hover: hover) { .showcase__pill:hover { color: var(--ink); border-color: var(--line-3); } }
.showcase__pill.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

@media (max-width: 640px) {
  .showcase__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin-inline: calc(var(--shell-pad) * -1);
    padding-inline: var(--shell-pad);
  }
  .showcase__tabs::-webkit-scrollbar { display: none; }
}

/* The browser frame. */
.showcase__stage {
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  background: var(--chrome);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
}
.showcase__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .3);
}
.showcase__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(242, 241, 236, .22); flex: none; }
.showcase__url {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(242, 241, 236, .5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.showcase__devices { display: flex; gap: 4px; flex: none; }
.showcase__device {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(242, 241, 236, .45);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 4px 8px;
  transition: color .18s ease, background-color .18s ease;
}
@media (hover: hover) { .showcase__device:hover { color: var(--ink); } }
.showcase__device.is-active { color: var(--accent-ink); background: var(--accent); }

.showcase__viewport {
  position: relative;
  height: clamp(440px, 68vh, 640px);
  background: #fff;
  transition: max-width .4s var(--ease);
  margin-inline: auto;
}
.showcase__stage.is-phone .showcase__viewport {
  max-width: 390px;
  border-inline: 1px solid rgba(0, 0, 0, .25);
}
.showcase__frame { width: 100%; height: 100%; border: 0; display: block; background: #fff; }

.showcase__load {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.showcase__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.showcase__hint { font-family: var(--mono); font-size: 11.5px; color: var(--muted); align-self: center; }

/* No-JS: hide the interactive frame, keep the pills as plain links + the gallery below. */
.no-js .showcase__stage, .no-js .showcase__actions, .no-js .showcase__devices { display: none; }
