/* =============================================================
   Transcendence Technologies — "The Board"
   A working studio's production board, not a landing page.
   Ground: blueprint teal. Signal: workshop amber. State is structure.
   ============================================================= */

:root {
  /* Ground — tinted toward the brand hue, never pure black */
  --ground:        #0b1416;
  --surface:       #101c1f;
  --surface-raise: #16262a;

  /* Structure */
  --rule:          rgba(143, 180, 180, 0.16);
  --rule-strong:   rgba(143, 180, 180, 0.30);

  /* Ink */
  --ink:           #eaf0ee;
  --ink-dim:       #a7bcbb;
  --ink-faint:     #7b9494;

  /* The single bold spend */
  --signal:        #e9a13b;
  --signal-soft:   rgba(233, 161, 59, 0.12);
  --signal-edge:   rgba(233, 161, 59, 0.38);

  /* State */
  --live:          #4fae7d;
  --live-soft:     rgba(79, 174, 125, 0.12);
  --live-edge:     rgba(79, 174, 125, 0.34);
  --danger:        #e8705f;

  /* Quiet anchor */
  --teal:          #5f9297;

  --font-display: "Bricolage Grotesque", "Archivo", system-ui, sans-serif;
  --font-body:    "IBM Plex Sans", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;

  --r-sm: 3px;
  --r-md: 5px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1200px, 92%); margin: 0 auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* Visible focus on everything focusable — non-negotiable */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Shared mono label — the studio's data voice */
.mono-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 20, 22, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 20px;
}

.brand { display: flex; align-items: center; gap: 11px; min-height: 44px; }
.brand-mark {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1.5px solid var(--signal);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  color: var(--signal);
  background: var(--signal-soft);
}
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  display: flex; flex-direction: column; line-height: 1.15;
  letter-spacing: -0.015em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-faint);
}

.nav-links {
  display: flex; align-items: center; gap: 30px;
  font-size: 14.5px; font-weight: 400;
}
.nav-links a {
  color: var(--ink-dim);
  transition: color 0.18s ease;
  display: inline-flex; align-items: center;
  min-height: 44px;
}
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta {
  color: var(--ground);
  background: var(--signal);
  padding: 0 20px;
  border-radius: var(--r-md);
  font-weight: 600;
  min-height: 44px;
}
.nav-links .nav-cta:hover { color: var(--ground); background: #f0ae52; }
/* Deliberately quiet — a founder/client-only utility, not a prospect-facing CTA.
   Kept plain-text-weight so it never competes with Work/Services/Get in touch. */
.nav-admin-btn {
  background: none; border: 0; color: var(--ink-faint);
  padding: 0 6px; min-height: 36px; font-size: 12px;
  font-family: inherit; cursor: pointer; transition: color 0.18s ease; opacity: .8;
}
.nav-admin-btn:hover { color: var(--ink-dim); opacity: 1; }
.nav-admin-btn--error { color: var(--danger); opacity: 1; font-weight: 600; }

.nav-burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 11px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); margin: 5px 0;
  transition: 0.22s ease;
}

/* ============ Hero — asymmetric board, not centred glow ============ */
.hero {
  position: relative;
  padding: 92px 0 72px;
  border-bottom: 1px solid var(--rule);
}
/* Blueprint grid — quiet, structural, replaces the glow blobs */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.32;
  mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
  pointer-events: none;
}
.hero-glow { display: none; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
  text-align: left;
  max-width: none;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--signal);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::after {
  content: ""; flex: 1; height: 1px;
  background: var(--rule-strong);
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 800;
  margin-bottom: 24px;
  max-width: 15ch;
}
.hero h1 .grad {
  color: var(--signal);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-dim);
  max-width: 56ch;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 26px;
  border-radius: var(--r-md);
  font-weight: 600; font-size: 15px;
  font-family: var(--font-body);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn-primary { background: var(--signal); color: var(--ground); }
.btn-primary:hover { background: #f0ae52; }
.btn-ghost { border-color: var(--rule-strong); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); }

/* The board — right column. Live studio state, not decoration. */
.hero-stats {
  display: flex; flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: 0;
  overflow: hidden;
  justify-content: flex-start;
}
.hero-stats::before {
  content: "Studio board";
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
  padding: 14px 20px 13px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface-raise);
}
.hero-stats div {
  display: flex; align-items: baseline; gap: 14px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--rule);
}
.hero-stats div:last-child { border-bottom: 0; }
.hero-stats strong {
  font-family: var(--font-mono);
  font-size: 30px; font-weight: 600;
  color: var(--ink);
  background: none;
  -webkit-text-fill-color: currentColor;
  min-width: 2.2ch;
  letter-spacing: -0.03em;
}
.hero-stats div:nth-child(2) strong { color: var(--live); }
.hero-stats div:nth-child(3) strong { color: var(--signal); }
.hero-stats span {
  font-size: 13.5px; color: var(--ink-dim);
  letter-spacing: 0; text-transform: none;
}

/* ============ Sections ============ */
.section { padding: 84px 0; position: relative; }
.section + .section { border-top: 1px solid var(--rule); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--signal);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800; margin-bottom: 14px;
  max-width: 20ch;
}
.section-sub { color: var(--ink-dim); max-width: 62ch; margin-bottom: 44px; }

/* ============ Services — ruled register, no cards ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 44px;
  border-top: 1px solid var(--rule);
  counter-reset: svc;
}
.service-card {
  counter-increment: svc;
  padding: 30px 30px 34px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  background: transparent;
  transition: background 0.2s ease;
}
.service-card:last-child { border-right: 0; }
.service-card:hover { background: var(--surface); }
/* The icon slot carries a real index, not an emoji */
.service-icon { font-size: 0; margin-bottom: 20px; height: 20px; }
.service-icon::before {
  content: "0" counter(svc);
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em;
  color: var(--signal);
}
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { color: var(--ink-dim); font-size: 14.5px; }

/* ============ Screen frame ============ */
.browser-frame {
  background: var(--surface-raise);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 0;
  padding: 9px 12px;
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  min-height: 32px;
}
/* Traffic-light dots read as template. One quiet marker instead. */
.browser-bar span { display: none; }
.browser-bar span:first-child {
  display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--teal); opacity: 0.6;
}
.browser-url {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.browser-frame img {
  width: 100%; aspect-ratio: 16 / 10;
  object-fit: cover; object-position: top;
  cursor: zoom-in;
  transition: opacity 0.25s ease;
}

/* Scroll-scrubbed showcase — one screenshot occupies the frame at a time, entering from
   below+blurred, holding sharp at center, then exiting up+scaled as the next enters. Height
   is N * 90vh so scrolling through the section drives N distinct enter/exit cycles. */
.showcase {
  position: relative;
  height: calc(var(--showcase-count) * 90vh);
  background: var(--ground);
}
.showcase-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.showcase-frame {
  position: relative;
  width: min(78vw, 1100px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--rule-strong);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.showcase-shot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  opacity: 0;
  transform: translateY(60px) scale(0.94);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}
.showcase-caption { margin-top: 28px; text-align: center; }
.showcase-names { position: relative; height: 32px; margin-top: 8px; }
.showcase-names span {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink);
  opacity: 0; transition: opacity 0.4s ease;
  white-space: nowrap;
}
.showcase-names span.name-active { opacity: 1; }
.showcase-dots { display: flex; gap: 7px; margin-top: 18px; }
.showcase-dots i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rule-strong);
  transition: background 0.3s ease, transform 0.3s ease;
}
.showcase-dots i.dot-active { background: var(--signal); transform: scale(1.4); }
@media (max-width: 900px) {
  .showcase { height: calc(var(--showcase-count) * 70vh); }
  .showcase-frame { width: 90vw; }
  .showcase-names span { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .showcase { height: auto; }
  .showcase-sticky { position: relative; height: auto; padding: 60px 0; }
  .showcase-shot { position: static; display: none; opacity: 1; transform: none; filter: none; }
  .showcase-shot[data-i="0"] { display: block; }
}

/* Scroll-reveal shots — starts zoomed in and hazy, settles to sharp/full-scale as it
   enters the viewport. Same family of effect as the hero parallax, but per-image via
   IntersectionObserver since a 24-card gallery can't afford a continuous scroll listener. */
.browser-shot {
  transform: scale(1.12);
  opacity: 0;
  filter: saturate(0.7);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease, filter 0.9s ease;
}
.browser-shot.shot-visible {
  transform: scale(1);
  opacity: 1;
  filter: saturate(1);
}
@media (prefers-reduced-motion: reduce) {
  .browser-shot { transition: none; transform: none; opacity: 1; filter: none; }
}

/* ============ Featured — spec sheet, not a glowing card ============ */
.section-featured { padding-top: 84px; }
.featured {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: center;
  margin-top: 40px;
  background: transparent;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--live);
  border-radius: var(--r-md);
  padding: 36px;
}
.featured-info h3 { font-size: 32px; margin: 14px 0 12px; }
.featured-info p { color: var(--ink-dim); margin-bottom: 20px; }
.featured-info .btn { margin-top: 10px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em;
  padding: 5px 10px; border-radius: var(--r-sm);
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-live { background: var(--live-soft); color: var(--live); border: 1px solid var(--live-edge); }
.badge-dev  { background: var(--signal-soft); color: var(--signal); border: 1px solid var(--signal-edge); }

.tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 4px 0 14px; }
.tags li {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-faint);
  letter-spacing: 0.06em;
  border: 1px solid var(--rule);
  padding: 4px 9px; border-radius: var(--r-sm);
}

/* ============ Category headings ============ */
.category-title {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; gap: 12px;
}
.category-title::before {
  content: ""; width: 20px; height: 2px;
  background: var(--signal); flex-shrink: 0;
}
.category-title:not(:first-of-type) { margin-top: 58px; }

/* ============ Products — tier 1: shipped, shown large ============ */
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.project-card:hover { border-color: var(--rule-strong); background: var(--surface-raise); }
.project-card .browser-frame {
  border-radius: 0; border: 0;
  border-bottom: 1px solid var(--rule);
  background: var(--surface-raise);
}
.project-card:hover .browser-frame img { opacity: 0.92; }
.project-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.project-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 9px; flex-wrap: wrap;
}
.project-head h3 { font-size: 19px; }
.project-body p { color: var(--ink-dim); font-size: 14px; flex: 1; }
.project-body .tags { margin: 14px 0 0; }

/* ============ Services — pricing grid ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-bottom: 44px; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 20px 22px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.pricing-card:hover { border-color: var(--rule-strong); background: var(--surface-raise); }
.pricing-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.pricing-head h3 { font-size: 17px; }
.pricing-card > p { color: var(--ink-dim); font-size: 14px; margin-bottom: 14px; flex: 1; }
.pricing-amount { font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.pricing-amount span { font-size: 13px; font-weight: 400; color: var(--ink-dim); }
.pricing-note { font-size: 12px; color: var(--ink-dim); margin-bottom: 14px; }
.badge-free { background: var(--accent, #2e7d32); color: #fff; }

/* ============ Products — tier 2: the ledger. The signature. ============ */
.projects-ledger {
  display: block;
  border-top: 1px solid var(--rule);
  counter-reset: item;
}
.projects-ledger .project-card {
  counter-increment: item;
  display: grid;
  grid-template-columns: 56px 190px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding: 18px 12px 18px 0;
  position: relative;
}
.projects-ledger .project-card::before {
  content: counter(item, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--ink-faint);
  padding-left: 14px;
  align-self: start;
  padding-top: 4px;
}
/* Status rail — encodes real state, left edge of every row */
.projects-ledger .project-card::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--signal);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.projects-ledger .project-card:hover { background: var(--surface); }
.projects-ledger .project-card:hover::after { opacity: 1; }

.projects-ledger .browser-frame {
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  background: var(--surface-raise);
}
.projects-ledger .browser-bar { display: none; }
.projects-ledger .browser-frame img { aspect-ratio: 16 / 10; }
.projects-ledger .project-poster { aspect-ratio: 16 / 10; border-bottom: 0; }
.projects-ledger .project-poster .poster-mark { font-size: 18px; }
.projects-ledger .project-poster .poster-note { font-size: 9.5px; }

.projects-ledger .project-body { padding: 0; display: block; }
.projects-ledger .project-head { margin-bottom: 6px; }
.projects-ledger .project-head h3 { font-size: 18px; }
.projects-ledger .project-body p { font-size: 14px; max-width: 68ch; }
.projects-ledger .project-body .tags { margin: 10px 0 0; }

/* ============ Process — ruled sequence (genuinely a sequence) ============ */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 44px;
  border-top: 1px solid var(--rule);
}
.process-step {
  border: 0;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  padding: 28px 26px 30px;
  background: transparent;
}
.process-step:last-child { border-right: 0; }
.process-step span {
  font-family: var(--font-mono);
  font-weight: 500; font-size: 12px; letter-spacing: 0.16em;
  color: var(--signal);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.process-step h3 { font-size: 19px; margin: 12px 0 8px; }
.process-step p { color: var(--ink-dim); font-size: 14px; }

/* ============ Contact ============ */
.section-contact { overflow: hidden; }
.contact-inner { position: relative; text-align: left; }
.contact-inner .section-title,
.contact-inner .section-sub { margin-left: 0; margin-right: 0; }

.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 40px;
  border-top: 1px solid var(--rule);
}
.contact-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-radius: 0;
  padding: 26px 26px 28px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 5px;
  min-height: 44px;
  transition: background 0.2s ease;
}
.contact-card:last-child { border-right: 0; }
.contact-card:hover { background: var(--surface); }
.contact-icon { display: none; }
.contact-label {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 500;
}
.contact-value {
  font-weight: 500; font-size: 15px;
  word-break: break-word;
  color: var(--ink);
}
.contact-card:hover .contact-value { color: var(--signal); }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--rule);
  padding: 44px 0 40px;
  background: var(--surface);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; text-align: left;
}
.footer p { color: var(--ink-dim); font-size: 14px; }
.footer a { color: var(--ink); }
.footer a:hover { color: var(--signal); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11.5px; color: var(--ink-faint); letter-spacing: 0.06em;
}

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6, 12, 13, 0.94);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-md);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--rule-strong); border-radius: var(--r-md);
  width: 44px; height: 44px; font-size: 16px; cursor: pointer;
}
.lightbox-close:hover { border-color: var(--signal); color: var(--signal); }

/* ============ Reveal — ease-out entrance, no bounce ============ */
.reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============ Lead form ============ */
.lead-form {
  max-width: 640px; margin: 48px 0 0; text-align: left;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--signal);
  border-radius: var(--r-md);
  padding: 30px;
}
.lead-form-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px;
  color: var(--ink); margin-bottom: 22px; text-align: left;
  letter-spacing: -0.015em;
}
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-field { margin-bottom: 16px; }
.lead-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 8px;
}
.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%; min-height: 46px; padding: 12px 14px;
  background: var(--ground);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.18s ease;
}
.lead-field input::placeholder,
.lead-field textarea::placeholder { color: var(--ink-faint); }
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus { border-color: var(--signal); }
.lead-field textarea { resize: vertical; min-height: 112px; }
.lead-form .btn { width: 100%; margin-top: 6px; }
.lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lead-status {
  margin-top: 14px; font-family: var(--font-mono);
  font-size: 12.5px; text-align: left; min-height: 20px;
}
.lead-status-ok { color: var(--live); }
.lead-status-err { color: var(--danger); }

/* ============ Screenshot placeholder ============ */
.project-poster {
  width: 100%; aspect-ratio: 16 / 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 18px;
  background:
    repeating-linear-gradient(135deg,
      rgba(143, 180, 180, 0.045) 0 6px,
      transparent 6px 14px),
    var(--surface-raise);
  border-bottom: 1px solid var(--rule);
}
.project-poster .poster-mark { font-size: 24px; line-height: 1; color: var(--teal); opacity: 0.7; }
.project-poster .poster-note {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero h1 { max-width: 18ch; }
  .hero-stats { max-width: 460px; }
}

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2n) { border-right: 0; }
  .service-card:last-child { border-right: 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2n) { border-right: 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { border-right: 0; }
  .featured { grid-template-columns: 1fr; padding: 26px; }
  .projects-ledger .project-card { grid-template-columns: 46px 150px minmax(0, 1fr); gap: 16px; }
}

@media (max-width: 640px) {
  .hero { padding: 60px 0 56px; }
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--rule); }
  .process-step:last-child { border-bottom: 0; }
  .lead-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 22px; }

  /* Ledger collapses to a stacked record — still ruled, still indexed */
  .projects-ledger .project-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 4px 20px 0;
  }
  .projects-ledger .project-card::before { padding-left: 8px; font-size: 11px; }
  .projects-ledger .browser-frame { grid-column: 2; max-width: 190px; margin-bottom: 12px; }
  .projects-ledger .project-body { grid-column: 2; }

  .nav-burger { display: block; }
  .nav-links {
    display: none; position: absolute; top: 66px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ground);
    border-bottom: 1px solid var(--rule);
    padding: 8px 4vw 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0; width: 100%;
    border-bottom: 1px solid var(--rule);
  }
  .nav-links .nav-cta {
    justify-content: center; margin-top: 12px; border-bottom: 0;
    min-height: 46px;
  }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .hero-actions .btn { width: 100%; }
}

/* ============ Reduced motion — mandatory ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ================= GAMES SECTION ================= */
.games-subheading {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-dim); margin: 22px 0 8px;
}
.games-subheading:first-of-type { margin-top: 6px; }
.games-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 22px; }
.game-tab {
  font-family: var(--font-mono); font-size: 13px; padding: 9px 16px;
  border: 1px solid var(--rule-strong); border-radius: 3px;
  background: transparent; color: var(--ink-dim); cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.game-tab:hover { color: var(--ink); border-color: var(--signal-edge); }
.game-tab.is-active { background: var(--signal); color: var(--ground); border-color: var(--signal); font-weight: 600; }
.game-tab-locked { border-style: dashed; }
.game-tab-price { font-size: 11px; opacity: .75; margin-left: 6px; }
.game-panel { display: none; }
.game-panel.is-active { display: block; }
.game-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.game-meta h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; }
.game-meta p { color: var(--ink-dim); max-width: 640px; font-size: 14.5px; }
.game-feedback-btn { white-space: nowrap; }
.game-feedback-btn:disabled { opacity: .5; cursor: not-allowed; }
.game-feedback-btn.is-unlocked { border-color: var(--live); color: var(--live); }
.roadmap-locked-msg {
  border: 1px dashed var(--rule-strong); border-radius: 6px; padding: 20px 24px;
  color: var(--ink-dim); font-size: 14.5px; background: rgba(233,161,59,.06);
}
.roadmap-locked-msg a { color: var(--signal); }
.game-embed {
  position: relative; width: 100%; height: 620px; max-height: 78vh;
  border: 1px solid var(--rule-strong); border-radius: 6px; overflow: hidden;
  background: var(--ground); box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.game-embed-tall { height: 720px; }
.game-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 640px) { .game-embed { height: 70vh; } }

/* ================= FOOTER ADMIN LINK ================= */
.footer-admin-link { color: var(--ink-faint); opacity: .55; text-decoration: none; }
.footer-admin-link:hover { color: var(--signal); opacity: 1; }

/* ================= ADMIN VIEW ================= */
#admin-projects { border-top: 2px solid var(--signal); }
.admin-banner {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 12px 16px; margin-bottom: 24px;
  background: var(--signal-soft); border: 1px solid var(--signal-edge); border-radius: 4px;
}
.admin-banner-badge { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--signal); text-transform: uppercase; letter-spacing: .1em; }
.admin-banner-user { font-size: 13px; color: var(--ink-dim); }
.admin-signout { margin-left: auto; padding: 8px 14px; font-size: 13px; }
.admin-loading { color: var(--ink-dim); padding: 20px 0; }

/* ================= GAME FEEDBACK MODAL ================= */
.gf-modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(6,12,13,.78); backdrop-filter: blur(3px);
}
.gf-modal.open { display: flex; }
.gf-card {
  position: relative; width: 100%; max-width: 440px;
  background: var(--surface); border: 1px solid var(--rule);
  border-top: 2px solid var(--signal); border-radius: 6px;
  padding: 28px 26px; box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.gf-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; }
.gf-sub { color: var(--ink-dim); font-size: 14px; margin-bottom: 18px; }
.gf-close { position: absolute; top: 12px; right: 12px; background: none; border: 0; color: var(--ink-faint); font-size: 18px; cursor: pointer; }
.gf-close:hover { color: var(--ink); }
.gf-label { display: block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); margin: 14px 0 7px; }
.gf-stars { display: flex; gap: 4px; }
.gf-stars button { background: none; border: 0; font-size: 26px; line-height: 1; color: var(--rule-strong); cursor: pointer; padding: 0 2px; transition: color .1s; }
.gf-stars button.on { color: var(--signal); }
.gf-card input[type=text], .gf-card textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--rule-strong);
  border-radius: 3px; background: var(--ground); color: var(--ink);
  font-family: var(--font-body); font-size: 14px;
}
.gf-card input:focus, .gf-card textarea:focus { outline: 2px solid var(--signal); outline-offset: 1px; border-color: var(--signal); }
.gf-card #gf-submit { width: 100%; margin-top: 18px; }
.gf-status { font-size: 13px; margin-top: 10px; min-height: 18px; }
.gf-status.ok { color: var(--live); }
.gf-status.err { color: var(--danger); }

/* ================= LANDING PAGE REFINEMENT — STUDIO DOSSIER ================= */
body {
  background:
    radial-gradient(circle at 82% 0%, rgba(233, 161, 59, .12), transparent 26rem),
    radial-gradient(circle at 0% 38%, rgba(57, 122, 124, .13), transparent 31rem),
    var(--ground);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image: radial-gradient(rgba(234, 240, 238, .34) .5px, transparent .7px);
  background-size: 5px 5px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  z-index: -1;
}

.nav {
  background: rgba(11, 20, 22, .68);
  border-bottom-color: rgba(143, 180, 180, .12);
}
.nav-inner { height: 76px; }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; }
.nav-links { gap: clamp(16px, 2.2vw, 34px); }
.nav-links .nav-cta { border-radius: 999px; padding-inline: 22px; }

.hero {
  padding: clamp(82px, 11vw, 154px) 0 clamp(74px, 9vw, 118px);
  overflow: hidden;
  border-bottom: 0;
}
.hero::before {
  background-image:
    linear-gradient(rgba(143, 180, 180, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 180, 180, .18) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: .42;
  mask-image: linear-gradient(130deg, #000 0%, rgba(0,0,0,.7) 48%, transparent 78%);
  -webkit-mask-image: linear-gradient(130deg, #000 0%, rgba(0,0,0,.7) 48%, transparent 78%);
}
.hero-3d {
  position: absolute; top: 0; right: 0; bottom: 0; width: 52%;
  z-index: 0; pointer-events: none;
  perspective: 1400px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
}
.hero-3d-stage {
  position: absolute; top: 50%; left: 50%; width: 640px; height: 640px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(18deg) rotateY(-26deg);
  animation: hero3dDrift 14s ease-in-out infinite;
}
@keyframes hero3dDrift {
  0%, 100% { transform: translate(-50%, -50%) rotateX(18deg) rotateY(-26deg); }
  50% { transform: translate(-50%, -50%) rotateX(14deg) rotateY(-20deg); }
}
.panel-3d {
  position: absolute;
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(42,42,48,.92), rgba(16,28,31,.88));
  border: 1px solid rgba(233,161,59,.4);
  box-shadow: 0 40px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06), 0 0 60px rgba(233,161,59,.08);
  padding: 18px 20px;
  backdrop-filter: blur(2px);
}
.panel-3d-glow {
  position: absolute; top: -1px; left: 16px; right: 16px; height: 2px;
  background: linear-gradient(90deg, transparent, #e9a13b, transparent);
  opacity: .8;
}
.panel-3d-line { height: 7px; border-radius: 4px; margin-top: 12px; background: linear-gradient(90deg, rgba(143,180,180,.4), rgba(143,180,180,.12)); }
.panel-3d-line:first-of-type { margin-top: 18px; background: linear-gradient(90deg, rgba(233,161,59,.55), rgba(233,161,59,.15)); }
.panel-3d-a { width: 300px; height: 190px; top: 60px; left: 60px; transform: translateZ(80px) rotateY(6deg); }
.panel-3d-b { width: 220px; height: 150px; top: 300px; left: 280px; transform: translateZ(160px) rotateY(-8deg) rotateX(-4deg); }
.panel-3d-c { width: 180px; height: 120px; top: 130px; left: 380px; transform: translateZ(240px) rotateY(10deg); }
.panel-3d-arc {
  position: absolute; width: 460px; height: 460px; top: 90px; left: 90px;
  border: 1.5px solid rgba(233,161,59,.3);
  border-radius: 50%;
  transform: translateZ(20px) rotateX(70deg);
  box-shadow: 0 0 0 40px rgba(233,161,59,.02);
}
@media (max-width: 900px) {
  .hero-3d { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-3d-stage { animation: none; }
}
.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
  transform: scale(1.15);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 28%, #000 52%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 28%, #000 52%, #000 100%);
  pointer-events: none;
  will-change: transform, opacity;
  transition: transform 0.05s linear, opacity 0.05s linear;
}
.hero-lede { will-change: transform, opacity; transition: transform 0.05s linear, opacity 0.05s linear; }
@media (prefers-reduced-motion: reduce) {
  .hero-visual, .hero-lede { transition: none; }
}
@media (max-width: 900px) {
  .hero-visual { opacity: 0.5; mask-image: linear-gradient(180deg, transparent 0%, #000 60%); -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 60%); }
}
.hero-inner { gap: clamp(44px, 7vw, 112px); align-items: center; }
.hero-lede { position: relative; z-index: 1; }
.hero h1 {
  max-width: 12ch;
  font-size: clamp(48px, 6.2vw, 82px);
  letter-spacing: -.055em;
  line-height: .98;
  text-wrap: balance;
}
.hero h1 .grad {
  display: inline;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: .105em;
  text-underline-offset: .13em;
}
.hero-eyebrow { margin-bottom: 28px; color: #f0b55d; }
.hero-sub { max-width: 50ch; font-size: clamp(16px, 1.45vw, 19px); line-height: 1.65; }
.hero-actions { gap: 14px; }
.btn { border-radius: 999px; min-height: 50px; padding-inline: 28px; }
.btn-primary { box-shadow: 0 10px 28px rgba(233, 161, 59, .18); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 32px rgba(233, 161, 59, .26); }
.btn-ghost:hover { background: rgba(233, 161, 59, .08); }
.hero-proof {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-top: 42px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-faint);
}
.hero-proof i { width: 4px; height: 4px; background: var(--signal); border-radius: 50%; }
.hero-stats {
  position: relative; z-index: 1;
  border-color: rgba(233, 161, 59, .34);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(22, 38, 42, .94), rgba(11, 20, 22, .78));
  box-shadow: 22px 22px 0 rgba(233, 161, 59, .07);
}
.hero-stats::before { color: var(--signal); background: rgba(233, 161, 59, .06); padding: 17px 22px 15px; }
.hero-stats div { padding: 20px 22px; }
.hero-stats div strong { font-size: clamp(31px, 3.4vw, 44px); letter-spacing: -.06em; }
.hero-stats div:nth-child(2) strong { color: var(--signal); }

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section + .section { border-top-color: rgba(143, 180, 180, .1); }
.section-eyebrow { color: var(--signal); letter-spacing: .18em; }
.section-title { font-size: clamp(35px, 4.4vw, 61px); letter-spacing: -.05em; max-width: 15ch; }
.section-sub { font-size: 17px; line-height: 1.7; }

.services-grid { border: 0; gap: 14px; }
.service-card {
  min-height: 248px;
  padding: 30px 28px 26px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: rgba(16, 28, 31, .58);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.service-card:nth-child(2) { transform: translateY(26px); }
.service-card:last-child { border-right: 1px solid var(--rule); }
.service-card:hover { transform: translateY(-7px); border-color: var(--signal-edge); background: var(--surface-raise); }
.service-card:nth-child(2):hover { transform: translateY(19px); }
.service-icon { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--signal-edge); background: var(--signal-soft); margin-bottom: 45px; }
.service-card h3 { font-size: 24px; letter-spacing: -.04em; }

.featured { gap: clamp(30px, 6vw, 82px); padding-block: 54px; }
.featured + .featured { border-top-color: rgba(143, 180, 180, .14); }
.browser-frame { border-radius: 12px; border-color: var(--rule-strong); box-shadow: 18px 22px 0 rgba(95, 146, 151, .10); overflow: hidden; }
.featured-info h3 { font-size: clamp(35px, 4vw, 54px); letter-spacing: -.055em; }
.projects-grid { gap: 18px; }
.project-card { border-radius: 12px; overflow: hidden; transition: transform .22s ease, border-color .22s ease; }
.project-card:hover { transform: translateY(-5px); border-color: var(--signal-edge); }
.pricing-grid { gap: 16px; }
.pricing-card { border-radius: 12px; padding: 25px; background: rgba(16, 28, 31, .64); }
.pricing-card:hover { transform: translateY(-4px); border-color: var(--signal-edge); box-shadow: 0 18px 36px rgba(0,0,0,.18); }
.pricing-amount { font-family: var(--font-display); font-size: 28px; letter-spacing: -.045em; color: var(--signal); }

@media (max-width: 960px) {
  .hero::after { width: 58vw; right: -18%; top: -10%; }
  .service-card:nth-child(2) { transform: none; }
  .service-card:nth-child(2):hover { transform: translateY(-7px); }
}
@media (max-width: 640px) {
  .nav-inner { height: 68px; }
  .hero { padding-block: 76px 72px; }
  .hero::after { width: 84vw; right: -35%; top: -8%; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-proof { margin-top: 32px; gap: 8px; }
  .hero-stats { border-radius: 14px; box-shadow: 11px 12px 0 rgba(233, 161, 59, .07); }
  .section-title { max-width: 18ch; }
  .service-card { min-height: 0; }
  .service-icon { margin-bottom: 30px; }
}

/* ============ Channel Showcase — Drake-style channel-surfing browse ============ */
.channel-show {
  background: linear-gradient(165deg, #171410 0%, var(--ground) 55%);
  padding: 64px 0 76px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.channel-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 1040px; margin: 0 auto 40px; padding: 0 24px;
}
.channel-tab {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-dim); background: transparent; border: 1px solid var(--rule);
  border-radius: 999px; padding: 9px 18px; cursor: pointer; transition: all .2s ease;
}
.channel-tab:hover { border-color: var(--signal-edge); color: var(--ink); }
.channel-tab.is-active { background: var(--signal-soft); border-color: var(--signal); color: var(--signal); font-weight: 600; }

.channel-stage {
  max-width: 1040px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 14px;
}
.channel-arrow {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: 1px solid var(--rule-strong); color: var(--ink);
  font-size: 22px; line-height: 1; cursor: pointer; transition: all .2s ease;
}
.channel-arrow:hover { border-color: var(--signal); color: var(--signal); }

.channel-panel {
  flex: 1; min-height: 380px; background: var(--surface);
  border: 1px solid var(--rule); border-radius: var(--r-lg, 10px);
  display: grid; grid-template-columns: 1.1fr 1fr; overflow: hidden;
  animation: channelFade .35s ease;
}
@keyframes channelFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.channel-visual { position: relative; min-height: 260px; background: var(--ground); }
.channel-shot { width: 100%; height: 100%; object-fit: cover; display: block; }
.channel-locked {
  width: 100%; height: 100%; min-height: 260px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(160deg, #1c1914, #26221c); color: #cdbf9c;
}
.channel-lock-icon { font-size: 30px; filter: grayscale(1) opacity(.8); }
.channel-lock-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; text-align: center; max-width: 26ch; }

.channel-info { padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.channel-kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--signal); }
.channel-info h3 { font-family: var(--font-display); font-size: 27px; color: var(--ink); letter-spacing: -.01em; }
.channel-info p { font-family: var(--font-body); font-size: 14.5px; line-height: 1.65; color: var(--ink-dim); max-width: 52ch; }
.channel-tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.channel-tags li { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--ink-dim); border: 1px solid var(--rule); border-radius: 999px; padding: 4px 12px; }
.channel-info .btn { align-self: flex-start; margin-top: 6px; }
.channel-nolink { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); font-style: italic; }
.channel-price { font-family: var(--font-display); font-size: 22px; color: var(--signal); letter-spacing: -.02em; }

.channel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.channel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rule-strong); cursor: pointer; transition: all .2s ease; }
.channel-dot.is-active { background: var(--signal); width: 20px; border-radius: 4px; }

@media (max-width: 760px) {
  .channel-panel { grid-template-columns: 1fr; }
  .channel-visual { min-height: 200px; }
  .channel-info { padding: 26px 22px; }
  .channel-stage { gap: 8px; }
  .channel-arrow { width: 38px; height: 38px; font-size: 18px; }
}

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--rule); border-radius: var(--r-md); background: var(--surface); padding: 4px 22px; }
.faq-item summary {
  padding: 18px 0; cursor: pointer; font-family: var(--font-display); font-size: 17px; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--signal); flex-shrink: 0; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-family: var(--font-body); font-size: 14.5px; line-height: 1.65; color: var(--ink-dim); padding-bottom: 20px; }

/* ============ Channel static fallback — full portfolio in raw HTML for crawlers/no-JS;
   hidden by channel-show.js once the interactive widget is confirmed running. ============ */
.channel-static-fallback { max-width: 1040px; margin: 0 auto 40px; padding: 0 24px; }
.channel-static-cat { margin-bottom: 36px; }
.channel-static-cat h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--signal); margin-bottom: 16px; }
.channel-static-item { display: flex; gap: 18px; padding: 16px 0; border-top: 1px solid var(--rule); align-items: flex-start; }
.channel-static-item img { width: 120px; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--r-sm); flex-shrink: 0; }
.channel-static-item h5 { font-family: var(--font-display); font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.channel-static-item p { font-family: var(--font-body); font-size: 13.5px; line-height: 1.55; color: var(--ink-dim); }
.channel-static-price { font-family: var(--font-mono); font-size: 13px; color: var(--signal); margin-top: 6px; }

/* ---- Sports Ladder promo banner ---- */
.promo-banner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 8px 16px; padding: 10px 20px;
  background: rgba(233, 161, 59, .08); border-bottom: 1px solid rgba(233, 161, 59, .25);
  text-align: center;
}
.promo-banner-text { font-size: .9rem; color: var(--text, #e8ecef); }
.promo-banner-cta {
  display: inline-flex; align-items: center; white-space: nowrap;
  background: var(--signal); color: var(--ground);
  font-weight: 700; font-size: .85rem; text-decoration: none;
  padding: 8px 18px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(233, 161, 59, .22);
  transition: background .2s, transform .2s;
}
.promo-banner-cta:hover { background: #f0ae52; transform: translateY(-1px); }
.promo-banner-cta:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
