/* =========================================================================
   GUIDE.CSS — unified setup-guide design system
   Shared by /mybeyond, /mybeyond/halo-mount, /mybeyond/audio-strap.
   Built from the Halo Mount reference, grounded in the shipped Bigscreen system
   (system.css tokens): one violet signal on the black stage, Neue Haas Grotesk
   Display Pro + Fragment Mono only, hairline tonal cards (no shadow), and the
   angular bevel shape system (3 soft corners + a 45deg cut bottom-right).
   Container = the site's --maxw / --gutter. Classes namespaced .g-*.
   ========================================================================= */

.guide {
  /* body voice = Neue Haas Roman (headings use the system --font-display) */
  --g-body: "Neue Haas Grotesk Display Pro - 55 Roman", "Zen Kaku Gothic New - Regular", sans-serif;
  --g-ink-2: color-mix(in srgb, var(--off-white) 70%, var(--muted)); /* supporting copy */
  --g-ink-3: var(--muted);               /* captions, fine print */
  --g-violet-ink: #B7A5FF;               /* violet as small text on dark (legible) */
  --g-panel: color-mix(in srgb, var(--graphite) 35%, var(--paper)); /* near-black image stage */
  --g-line: color-mix(in srgb, var(--hairline) 14%, transparent);
  --g-line-2: color-mix(in srgb, var(--hairline) 22%, transparent);
  /* bevels at three scales (WITH corner-shape: round round bevel round) */
  --g-bevel-lg: 3px 3px 24px 3px;
  --g-bevel: 3px 3px 16px 3px;
  --g-bevel-sm: 2px 2px 10px 2px;
  --g-bevel-xs: 2px 2px 7px 2px;
  /* external-link (cornered) arrow, drawn in currentColor via mask */
  --g-ext-arrow: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M4 3.2h4.8V8" fill="none" stroke="black" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.4 3.6 3.2 8.8" fill="none" stroke="black" stroke-width="1.3" stroke-linecap="round"/></svg>');

  position: relative;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--g-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-bottom: clamp(120px, 16vw, 220px);
}
.guide *, .guide *::before, .guide *::after { box-sizing: border-box; }
/* real content sits above the decorative prefooter background */
.guide > .g-wrap, .guide > .g-plate { position: relative; z-index: 1; }

/* prefooter line-art band — grey fade + circuit SVG + cursor "circuit wake"
   reveal, matching the site's #prefooter-signal so the guides tie in exactly. */
@property --cr { syntax: "<length>"; inherits: true; initial-value: 0px; }
@keyframes g-circuitWake { from { opacity: 0; } 55% { opacity: .075; } to { opacity: .055; } }
.g-prefooter {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none;
  height: clamp(420px, 44vw, 640px); overflow: hidden;
  /* smooth black -> grey; transparent at the top so it dissolves into the page,
     no hard band edge (the black content above simply shows through) */
  background: linear-gradient(180deg, transparent 0%, rgba(19, 20, 22, .55) 26%, #1C1E20 58%, #2C2F32 100%);
  --cr: 0px;
  transition: --cr .85s cubic-bezier(.16, 1, .3, 1);
}
.g-prefooter.is-probing { --cr: 620px; }
/* base line-art — a full-bleed background that fades in at the top and out at the
   footer, and is free to run behind the cards above it */
.g-prefooter::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: url("/landing/assets/006-asset.svg") center center / cover no-repeat;
  opacity: .3;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 26%, #000 78%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 26%, #000 78%, transparent 100%);
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
/* brighter circuit layer, revealed only in a soft circle that trails the cursor */
.g-prefooter::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: url("/landing/assets/007-asset.svg") center center / cover no-repeat;
  opacity: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 48%, #000 62%, transparent 100%), radial-gradient(circle var(--cr) at var(--cx) var(--cy), #000 0%, transparent 78%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 48%, #000 62%, transparent 100%), radial-gradient(circle var(--cr) at var(--cx) var(--cy), #000 0%, transparent 78%);
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-composite: source-in; mask-composite: intersect;
  transition: opacity .6s ease;
}
.g-prefooter.is-probing::after { opacity: .055; animation: g-circuitWake 1.05s cubic-bezier(.16, 1, .3, 1) both; }
@media (hover: none), (prefers-reduced-motion: reduce) {
  .g-prefooter::after { opacity: 0; }
  .g-prefooter { transition: none; }
}

/* --- shared layout (same container as every other page) ------------------ */
.g-wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* --- hero ---------------------------------------------------------------- */
.g-hero { padding-top: clamp(104px, 15vh, 168px); padding-bottom: clamp(28px, 5vw, 56px); }
/* Two-tone stacked title (matches the model-chooser / experiences heros):
   product name in Instrument White, the guide type as a dimmed second line. */
.g-title {
  margin: 0; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.25rem); line-height: 1.08; letter-spacing: -.02em;
}
.g-title__sub { display: block; color: var(--muted); }
.g-hero__sub {
  margin: clamp(16px, 2vw, 20px) 0 0; max-width: 62ch; color: var(--g-ink-2);
  font-size: 1.125rem; line-height: 1.5rem;
}

/* --- section container card (bevelled) ---------------------------------- */
.g-card {
  border: 1px solid var(--g-line); border-radius: var(--g-bevel); corner-shape: round round bevel round;
  background: rgba(252, 252, 253, .014);
  padding: clamp(20px, 3.4vw, 40px);
  margin-bottom: clamp(20px, 3vw, 32px);
}

/* --- block header (STEP 01 / eyebrow + rule + headline + lead) ----------- */
.g-eyebrow {
  display: flex; align-items: center; gap: 14px; margin: 0;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .13em;
  font-size: 12px; line-height: 1; color: var(--muted);
}
.g-h {
  margin: clamp(14px, 1.6vw, 18px) 0 0; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.14; letter-spacing: -.01em;
}
.g-lead {
  margin: clamp(12px, 1.4vw, 16px) 0 0; max-width: 74ch; color: var(--g-ink-2);
  font-size: 1.125rem; line-height: 1.5rem;
}
.g-lead a, .g-body-p a, .g-cap__p a, .g-faq__a a { color: var(--brand); text-underline-offset: 3px; }
.g-sub-h {
  margin: 0 0 4px; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 2.1vw, 1.5rem); line-height: 1.2; letter-spacing: -.01em;
}

/* --- quick navigation ---------------------------------------------------- */
.g-quick__title { margin: 0 0 clamp(16px, 2vw, 20px); font-family: var(--g-body); font-size: 15px; color: var(--g-ink-2); }
.g-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.g-chip {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  border: 1px solid var(--g-line); border-radius: var(--g-bevel-sm); corner-shape: round round bevel round;
  padding: 15px 16px; background: rgba(252, 252, 253, .02); color: var(--ink);
  transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}
.g-chip__n { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.g-chip__t { font-size: 1rem; line-height: 1.25rem; }
.g-chip:hover { border-color: rgba(77, 30, 247, .55); background: rgba(77, 30, 247, .08); transform: translateY(-1px); }
.g-chip:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

/* --- image-card grid ----------------------------------------------------- */
.g-grid { display: grid; column-gap: clamp(12px, 1.3vw, 16px); row-gap: clamp(30px, 3.5vw, 44px); margin-top: clamp(22px, 2.6vw, 32px); }
.g-grid--2 { grid-template-columns: repeat(2, 1fr); }
.g-grid--3 { grid-template-columns: repeat(3, 1fr); }
/* Cable-routing sequence: taller frames give the close-up steps room to read.
   The first two details fill their frames; the final overview remains fully visible. */
.g-grid--cable-route .g-frame { aspect-ratio: 4 / 3; }
.g-grid--cable-route .g-imgcard:nth-child(-n + 2) .g-frame img { object-fit: cover; }
.g-grid--cable-route .g-imgcard:nth-child(3) .g-frame img { object-fit: contain; }
.g-grid--tall-cover .g-frame { aspect-ratio: 4 / 3; }
.g-grid--tall-cover .g-frame img { object-fit: cover; }

/* .g-imgcard is a <figure> — kill the browser's default 40px inline margin so
   images align flush to the section's text on both edges (everywhere). */
.g-imgcard { margin: 0; display: flex; flex-direction: column; }
.g-frame {
  position: relative;
  background: var(--g-panel); border: 1px solid var(--g-line);
  border-radius: var(--g-bevel); corner-shape: round round bevel round;
  overflow: hidden; aspect-ratio: 16 / 9;
}
/* contain, never crop — the whole drawing/photo fits inside the frame */
.g-frame img { width: 100%; height: 100%; object-fit: contain; display: block; }
.g-frame--compact { display: flex; align-items: center; justify-content: center; }
.g-frame--compact img { width: 75%; height: 75%; }
.g-frame--tall { aspect-ratio: 4 / 3; }
/* product/studio shots: contain + padding so a logo or render isn't blown up or cropped */
.g-frame--product { aspect-ratio: 4 / 3; }
.g-frame--product img { object-fit: contain; padding: clamp(20px, 3.5vw, 34px); }
/* logo/mark frames (e.g. the Windows mark): center a much smaller graphic */
.g-frame--logo { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; }
.g-frame--logo img { width: 20%; height: auto; padding: 0; object-fit: contain; }

/* overlay badge (Required / Optional), top-left on a product frame — matches the
   landing page's on-image product tag */
.g-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; border: none;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em;
  font-size: 11px; line-height: 1; padding: 8px 12px;
  color: #0A0A0C; background: var(--ink);
  border-radius: var(--g-bevel-xs); corner-shape: round round bevel round;
}
.g-badge--req { color: #fff; background: var(--brand); }
.g-cap__meta { margin: 6px 0 0; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; font-size: 10.5px; color: var(--g-ink-3); }
.g-frame > .g-cap__meta { position: absolute; top: 12px; right: 12px; z-index: 2; margin: 0; }
.g-cap { margin-top: 14px; }
.g-cap__t {
  display: inline-flex; align-items: center; gap: 9px; margin: 0; width: fit-content; max-width: 100%;
  font-family: var(--font-display); font-weight: 500; font-size: 15px; line-height: 1.3;
}
/* state dot lives only on the step pill/done chips; plain card titles have no dot */
.g-cap--pill::before, .g-cap--done::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
/* step caption pills — grey (start) -> grey + violet dot (active) -> solid violet (done) */
.g-cap--pill { padding: 7px 13px; font-size: 14px; background: rgba(252, 252, 253, .07);
  border-radius: 2px 2px 9px 2px; corner-shape: round round bevel round; }
.g-cap--pill::before { background: var(--muted); }
.g-cap--pill.is-active::before { background: var(--brand); }
.g-cap--done { padding: 7px 13px; font-size: 14px; color: #fff; background: var(--brand);
  border-radius: 2px 2px 9px 2px; corner-shape: round round bevel round; }
.g-cap--done::before { background: #fff; }
.g-cap--done a, .g-plate .g-cap--done a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.g-cap__p { margin: 10px 0 0; color: var(--g-ink-3); font-size: 1rem; line-height: 1.5rem; }

/* --- text + image row (alternating) ------------------------------------- */
.g-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 52px); align-items: center; }
.g-row + .g-row { margin-top: clamp(28px, 4vw, 48px); }
.g-row--rev .g-row__media { order: -1; }
/* image-led row: text ~30% / media ~70% (for large diagrams) */
.g-row--wide { grid-template-columns: minmax(0, 3fr) minmax(0, 7fr); }
.g-row__body > * + * { margin-top: 14px; }
.g-row__media .g-frame { aspect-ratio: 16 / 10; }
@media (min-width: 901px) {
  .g-card--pc-connect { padding-left: 24px; }
  .g-row--pc-connect { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 40px; }
  .g-row--pc-connect .g-row__media .g-frame { aspect-ratio: 3 / 2; }
  .g-row--pc-connect .g-row__media .g-frame img { object-fit: cover; }
}
.g-body-p { margin: 0; color: var(--g-ink-2); font-size: 1rem; line-height: 1.62; }
.g-body-p + .g-body-p { margin-top: 12px; }

/* --- numbered major section header -------------------------------------- */
.g-major { display: flex; align-items: flex-start; gap: clamp(14px, 1.8vw, 20px); margin: clamp(56px, 9vw, 112px) 0 clamp(24px, 3.5vw, 40px); }
.g-major:first-of-type { margin-top: clamp(8px, 2vw, 24px); }
/* when a Quick Nav card precedes the first section, give it room to breathe */
nav.g-card + .g-major { margin-top: clamp(32px, 4.5vw, 60px); }
/* Chapter index as a bevel chip that mirrors the Quick Nav chips exactly:
   same hairline border, bevel radius, faint fill, and muted grey mono numeral
   so the section index and the nav read as one system. Top-aligned to the
   headline's first line. */
.g-major__n {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: clamp(38px, 4.2vw, 46px); height: clamp(38px, 4.2vw, 46px);
  font-family: var(--font-mono); font-weight: 400; font-size: 13px; letter-spacing: .06em;
  line-height: 1; color: var(--muted);
  background: rgba(252, 252, 253, .02);
  border: 1px solid var(--g-line); border-radius: var(--g-bevel-sm); corner-shape: round round bevel round;
}
.g-major__t { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.1; letter-spacing: -.015em; }
.g-major__lead { margin: clamp(10px, 1.5vw, 16px) 0 0; max-width: 74ch; color: var(--g-ink-2); font-size: 1.125rem; line-height: 1.5rem; }

/* --- tags (checklist: Required / Optional / Not Included) ---------------- */
.g-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.g-tag {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em;
  font-size: 11px; line-height: 1; padding: 5px 10px; white-space: nowrap;
  border-radius: var(--g-bevel-xs); corner-shape: round round bevel round;
}
.g-tag--req { background: rgba(77, 30, 247, .16); color: var(--g-violet-ink); border: 1px solid rgba(77, 30, 247, .45); }
.g-tag--opt { color: var(--g-ink-2); border: 1px solid var(--g-line-2); }
.g-tag--muted { color: var(--g-ink-3); border: 1px solid var(--g-line); }

/* --- callout / note (hairline card + violet mono label; no side stripe) -- */
.g-callout {
  border: 1px solid var(--g-line); border-radius: var(--g-bevel-sm); corner-shape: round round bevel round;
  background: transparent; padding: 16px 18px; margin-top: clamp(16px, 2vw, 24px);
}
.g-callout__label {
  display: block; margin: 0 0 8px; font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: .1em; font-size: 11px; color: var(--g-violet-ink);
}
.g-callout__label--warn { color: #FF453A; }
.g-callout p { margin: 0; color: var(--g-ink-2); font-size: 14.5px; line-height: 1.58; }

/* --- buttons (angular, Fragment Mono — matches the nav CTA) -------------- */
.g-btn {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none; cursor: pointer;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em;
  font-size: 12.5px; line-height: 1; padding: 14px 22px; border: 1px solid transparent;
  border-radius: 3px 3px 14px 3px; corner-shape: round round bevel round;
  transition: background-color .22s ease, border-color .22s ease, transform .22s ease, color .22s ease;
}
.g-btn--primary { background: var(--brand); color: #fff; }
.g-btn--primary:hover { transform: translateY(-1px); background: #5a2eff; }
.g-btn--ghost { border-color: var(--g-line-2); color: var(--ink); }
.g-btn--ghost:hover { border-color: color-mix(in srgb, var(--hairline) 38%, transparent); background: color-mix(in srgb, var(--graphite) 18%, transparent); }
.g-btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
/* external-link buttons get a cornered arrow after the label */
.g-btn--ext::after {
  content: ""; flex: 0 0 auto; width: 12px; height: 12px; margin-left: 1px; background: currentColor;
  -webkit-mask: var(--g-ext-arrow) no-repeat center / contain;
          mask: var(--g-ext-arrow) no-repeat center / contain;
}
.g-btn--discord svg { width: 17px; height: 17px; flex: 0 0 auto; fill: currentColor; }
/* frame variant that fills (cover) instead of contain — for UI screenshots */
.g-frame--cover img { object-fit: cover; padding: 0; }

/* button sitting inside an image-card caption (e.g. the Steam download link) */
.g-cap__cta { margin-top: 16px; }

/* --- link CTA card (cross-links) ---------------------------------------- */
.g-linkcard { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.g-linkcard__body { flex: 1 1 320px; }
.g-linkcard__body > * { margin: 0; }
.g-linkcard__body p { margin-top: 8px; color: var(--g-ink-2); font-size: 1rem; line-height: 1.5rem; }

/* --- note / precaution card (icon + title + copy) ----------------------- */
.g-note-card {
  background: transparent; border: 1px solid var(--g-line);
  border-radius: var(--g-bevel-sm); corner-shape: round round bevel round; padding: clamp(18px, 2vw, 24px);
}
.g-note-card__icon { display: block; width: 26px; height: 26px; margin-bottom: 14px; color: var(--g-violet-ink); }
.g-note-card__icon svg { width: 100%; height: 100%; display: block; }
.g-note-card__t { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.3; }
.g-note-card__p { margin: 8px 0 0; color: var(--g-ink-3); font-size: 1rem; line-height: 1.5rem; }
/* numbered step marker (e.g. top-strap 1-2-3), mirrors the on-image markers */
.g-num {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; margin-bottom: 14px; flex: 0 0 auto;
  background: var(--brand); border-radius: 50%;
  font-family: var(--font-mono); font-size: 11px; line-height: 1; color: #fff;
}

/* --- CTA card (safety guide / warranty etc.) ---------------------------- */
.g-cta {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  border: 1px solid var(--g-line); border-radius: var(--g-bevel); corner-shape: round round bevel round;
  background: rgba(252, 252, 253, .014); padding: clamp(22px, 3vw, 32px);
}
.g-cta__t { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 1.8vw, 1.375rem); line-height: 1.2; }
.g-cta__p { margin: 0; flex: 1 0 auto; color: var(--g-ink-2); font-size: 1rem; line-height: 1.5rem; }
.g-cta .g-btn { margin-top: 4px; }

/* --- FAQ (native details/summary, no JS) --------------------------------- */
.g-faq { border-top: 1px solid var(--g-line); }
.g-faq details { border-bottom: 1px solid var(--g-line); }
.g-faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 4px; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.125rem); line-height: 1.4; color: var(--g-ink-2);
  transition: color .2s ease;
}
.g-faq summary::-webkit-details-marker { display: none; }
.g-faq summary::after {
  content: "+"; flex: 0 0 auto; font-family: var(--font-mono); font-size: 20px; line-height: 1;
  color: var(--g-ink-3); transition: transform .2s ease;
}
.g-faq details[open] summary::after { content: "\2212"; }
.g-faq details[open] summary { color: var(--ink); }
.g-faq summary:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.g-faq__a { padding: 0 4px 22px; margin: 0; color: var(--g-ink-3); font-size: 1rem; line-height: 1.5rem; max-width: 74ch; }
.g-support-resources {
  margin-top: clamp(48px, 7vw, 80px);
}
/* Match the model-chooser plate width (83.334% of the container, centered) so the
   whole Support and Troubleshooting section — header, FAQ, and resources — reads at
   the same measure as the "Ready to go Beyond?" element. */
@media (min-width: 992px) {
  #sec-faq, .g-faq, .g-support-resources { width: 83.334%; margin-inline: auto; }
}
.g-support-resources__title {
  margin: 0 0 clamp(24px, 3vw, 32px); font-family: var(--font-display);
  font-weight: 500; font-size: clamp(1.75rem, 3vw, 2.25rem); line-height: 1.15;
  letter-spacing: -.01em; text-wrap: balance;
}
/* Primary path — Knowledge Base on a violet-washed panel (the one destination
   that resolves most issues), with the rest as compact cards below it. */
.g-sup-primary {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(20px, 3vw, 40px); text-decoration: none; color: var(--ink);
  padding: clamp(24px, 3vw, 36px);
  background: transparent;
  border: 1px solid var(--g-line-2);
  border-radius: var(--g-bevel-lg); corner-shape: round round bevel round;
  transition: border-color .25s ease, transform .25s cubic-bezier(.16, 1, .3, 1);
}
.g-sup-primary:hover { border-color: color-mix(in srgb, var(--hairline) 40%, transparent); transform: translateY(-2px); }
.g-sup-primary:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.g-sup-primary__main { min-width: 0; }
.g-sup-primary__eyebrow { display: block; margin-bottom: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--g-ink-3); }
.g-sup-primary__t { display: block; margin-bottom: 8px; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.1vw, 1.6rem); line-height: 1.2; letter-spacing: -.01em; }
.g-sup-primary__p { display: block; color: var(--g-ink-2); font-size: 1rem; line-height: 1.5rem; max-width: 48ch; }
.g-sup-cta {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px;
  background: var(--brand); color: #fff; font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; padding: 14px 22px;
  border-radius: var(--g-bevel-sm); corner-shape: round round bevel round;
}
.g-sup-arrow { flex: 0 0 auto; transition: transform .3s cubic-bezier(.16, 1, .3, 1); }
.g-sup-primary:hover .g-sup-cta .g-sup-arrow { transform: translateX(4px); }

/* Secondary destinations — Discord / Warranty / Safety Guide */
.g-sup-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.g-sup-item {
  display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  padding: clamp(18px, 2vw, 22px);
  border: 1px solid var(--g-line); border-radius: var(--g-bevel-sm); corner-shape: round round bevel round;
  background: rgba(252, 252, 253, .014);
  transition: border-color .2s ease, background-color .2s ease;
}
.g-sup-item:hover { border-color: var(--g-line-2); background: rgba(252, 252, 253, .03); }
.g-sup-item:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.g-sup-item__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; color: var(--g-ink-3); }
.g-sup-item:hover .g-sup-item__head { color: var(--ink); }
.g-sup-item__ico { width: 22px; height: 22px; }
.g-sup-item:hover .g-sup-arrow { transform: translateX(4px); }
.g-sup-item__t { margin: 0 0 5px; font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.25; }
.g-sup-item__p { margin: 0; color: var(--g-ink-3); font-size: 1rem; line-height: 1.5rem; }
@media (prefers-reduced-motion: reduce) {
  .g-sup-primary, .g-sup-arrow { transition: none; }
  .g-sup-primary:hover { transform: none; }
}
.g-support-contact {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; margin-top: clamp(20px, 3vw, 28px); padding: 22px 4px;
  border-top: 1px solid var(--g-line); color: var(--g-ink-2);
  font-family: var(--font-mono); font-size: 12px; line-height: 1.4;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  transition: color .2s ease, padding-left .3s cubic-bezier(.16, 1, .3, 1);
}
.g-support-contact:hover { color: var(--ink); padding-left: 12px; }
.g-support-contact:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.g-support-contact__arrow { flex: 0 0 auto; color: var(--g-ink-3); font-size: 18px; transition: transform .3s cubic-bezier(.16, 1, .3, 1); }
.g-support-contact:hover .g-support-contact__arrow { transform: translateX(5px); color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .g-support-contact, .g-support-contact__arrow { transition: none; }
  .g-support-contact:hover { padding-left: 4px; }
}
@media (max-width: 700px) {
  .g-sup-primary { flex-direction: column; align-items: flex-start; }
  .g-sup-cta { width: 100%; justify-content: center; }
  .g-sup-list { grid-template-columns: 1fr; }
}

/* --- light plate (Cleaning & Maintenance) -------------------------------
   A full-bleed white section (the system's light-surface inversion). The
   line-art care images are drawn on white, so they blend on this plate instead
   of clashing on black. Violet stays the one signal. */
.g-plate {
  background: #fff; color: #0A0A0C;
  padding-block: clamp(56px, 9vw, 104px);
  margin-block: clamp(48px, 8vw, 96px);
}
.g-plate .g-major:first-child { margin-top: 0; }
/* even rhythm between the plate's subsections (they carry no card padding) */
.g-plate .g-wrap > section { margin-top: clamp(48px, 6.5vw, 84px); }
.g-plate .g-major__t, .g-plate .g-h, .g-plate .g-sub-h,
.g-plate .g-cap__t, .g-plate .g-note-card__t { color: #0A0A0C; }
.g-plate .g-major__lead, .g-plate .g-lead, .g-plate .g-body-p { color: rgba(10, 10, 12, .70); }
.g-plate .g-eyebrow, .g-plate .g-quick__title { color: rgba(10, 10, 12, .55); }
.g-plate .g-cap__p, .g-plate .g-note-card__p, .g-plate .g-cap__meta { color: rgba(10, 10, 12, .56); }
.g-plate .g-note-card { background: var(--white); border-color: rgba(10, 10, 12, .08); }
.g-plate .g-note-card__icon { color: var(--brand); }
.g-face-care__row { margin-top: clamp(24px, 4vw, 40px); align-items: start; }
.g-face-safe {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px; border-block: 1px solid rgba(10, 10, 12, .10);
}
.g-face-safe__item { padding: 20px 24px 20px 0; }
.g-face-safe__item + .g-face-safe__item { padding-inline: 24px 0; border-left: 1px solid rgba(10, 10, 12, .10); }
.g-face-safe__heading { display: flex; align-items: center; gap: 10px; }
.g-face-safe__icon { width: 22px; height: 22px; flex: 0 0 auto; color: var(--brand); }
.g-face-safe__icon svg { display: block; width: 100%; height: 100%; }
.g-face-safe__title { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 15px; line-height: 1.3; }
.g-face-safe__copy { margin: 10px 0 0 32px; color: rgba(10, 10, 12, .62); font-size: 1rem; line-height: 1.5rem; }
/* care images are line-art drawn on white — let them blend into the plate:
   no frame box, no border, no bevel notch (which read as "weird bits" on white) */
.g-plate .g-frame {
  background: var(--off-white);
  border: 1px solid rgba(10, 10, 12, .10);
  border-radius: var(--g-bevel);
  corner-shape: round round bevel round;
}
.g-plate .g-cap--pill { background: rgba(10, 10, 12, .06); }
.g-plate .g-cap--pill::before { background: rgba(10, 10, 12, .38); }
.g-plate .g-cap--done { background: var(--brand); color: #fff; }
.g-plate .g-cap--done::before { background: #fff; }
.g-plate a { color: var(--brand); }

/* --- scroll reveal (opacity/transform only; progressive enhancement) -----
   Content is visible by default. The hidden->reveal effect only applies once the
   guide script has added .g-anim, so a JS/IO failure never leaves a step blank. */
.guide.g-anim [data-g-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease-signature), transform .6s var(--ease-signature); }
.guide.g-anim [data-g-reveal].is-in { opacity: 1; transform: none; }

/* --- responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .g-chips { grid-template-columns: repeat(2, 1fr); }
  .g-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .g-chips { grid-template-columns: 1fr; }
  .g-grid--2, .g-grid--3 { grid-template-columns: 1fr; }
  .g-row { grid-template-columns: 1fr; gap: 20px; }
  .g-row--rev .g-row__media { order: 0; }   /* text always leads on mobile */
  .g-major { flex-wrap: wrap; gap: 8px; }
  .g-face-safe { grid-template-columns: 1fr; }
  .g-face-safe__item { padding: 20px 0; }
  .g-face-safe__item + .g-face-safe__item { padding-inline: 0; border-top: 1px solid rgba(10, 10, 12, .10); border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .guide *, .guide *::before, .guide *::after { transition: none !important; }
  .guide [data-g-reveal] { opacity: 1 !important; transform: none !important; }
}
