/* ============================================================
   FIDES — all-black, typography-driven redesign
   Single stylesheet. No textures, no rivets, no ambient glow.
   Headings: Anton. Body/UI: Space Grotesk. Red accent, sparing.
   ============================================================ */

:root {
  --black:      #0a0a0a;
  --black-2:    #101010;   /* barely-raised surface, used sparingly */
  --ink:        #f4f2ee;   /* near-white text */
  --ink-dim:    #8c8a86;   /* muted text */
  --ink-faint:  #4a4844;   /* very muted / hairlines text */
  --red:        #e2484f;   /* brand red — sampled from the logo */
  --red-deep:   #820000;
  --line:       rgba(255, 255, 255, 0.12);
  --line-soft:  rgba(255, 255, 255, 0.07);

  --max:        none;   /* full-width: content spans edge-to-edge, padded by --pad */
  --pad:        clamp(20px, 5vw, 72px);

  --font-display: "Anton", Impact, "Arial Narrow", sans-serif;
  --font-body:    "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Chat modal palette — rethemed to match all-black (file kept, not wired) */
  --chat-bg:          #0a0a0a;
  --chat-surface:     #161616;
  --chat-surface-alt: #1e1e1e;
  --chat-ink:         #f4f2ee;
  --chat-ink-soft:    #8c8a86;
  --chat-border:      rgba(255, 255, 255, 0.10);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

::selection { background: var(--red); color: #fff; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: none;
  color: var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

.btn-line {
  border-color: var(--line);
  color: var(--ink);
}
.btn-line:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-lg {
  padding: 20px 42px;
  font-size: 1.05rem;
}

.btn .arw { transition: transform 0.3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* ============================================================
   Header
   ============================================================ */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr.scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.hdr-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hdr-logo img { height: 30px; width: auto; }
.hdr-logo { transition: opacity 0.25s var(--ease); }
.hdr-logo:hover { opacity: 0.7; }

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hdr-nav a,
.hdr-about {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-dim);
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
}
.hdr-nav a:hover,
.hdr-about:hover { color: var(--ink); }

.hdr-about::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s var(--ease);
}
.hdr-about:hover::after { transform: scaleX(1); transform-origin: left center; }

.hdr-cta { color: var(--red) !important; }

/* "CHOOSE NOW" — same red accent, set uppercase so it reads as the primary
   action. Scoped to its own class so the stub pages' hdr-cta links are
   unaffected. */
.hdr-choose {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 64px;
}
.hero-eyebrow {
  margin: 0 0 clamp(28px, 5vw, 54px);
  color: var(--ink-dim);
}
.hero-eyebrow b { color: var(--red); font-weight: inherit; }

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3.1rem, 12.5vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.005em;
}
.hero-title .ln {
  display: block;
  overflow: hidden;
  padding: 0.04em 0;   /* room so descenders/ascenders aren't clipped by the mask */
}
.hero-title .ln > i {
  display: block;
  font-style: normal;
  transform: translateY(112%);
}
.hero-title .ln:nth-child(2) { margin-left: clamp(0px, 8vw, 130px); }  /* asymmetric offset */
.hero-title b { color: var(--red); font-weight: inherit; font-style: normal; }

.reveal-ready .hero-title .ln > i { animation: lineUp 0.95s var(--ease) forwards; }
.reveal-ready .hero-title .ln:nth-child(1) > i { animation-delay: 0.05s; }
.reveal-ready .hero-title .ln:nth-child(2) > i { animation-delay: 0.16s; }
.reveal-ready .hero-title .ln:nth-child(3) > i { animation-delay: 0.27s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-top: clamp(44px, 7vw, 96px);
}
.hero-sub {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: var(--ink-dim);
  line-height: 1.55;
}
.hero-sub b { color: var(--ink); font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* fade-in-up for non-title hero bits */
.fade-up { opacity: 0; transform: translateY(24px); }
.reveal-ready .fade-up {
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
.reveal-ready .hero-eyebrow.fade-up { animation-delay: 0.02s; }
.reveal-ready .hero-foot.fade-up { animation-delay: 0.5s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-scroll {
  position: absolute;
  left: var(--pad); bottom: 26px;
  color: var(--ink-faint);
  display: flex; align-items: center; gap: 10px;
}
.hero-scroll .bar {
  display: inline-block; width: 40px; height: 1px;
  background: var(--ink-faint); overflow: hidden; position: relative;
}
.hero-scroll .bar::after {
  content: ""; position: absolute; inset: 0;
  background: var(--red);
  transform: translateX(-100%);
  animation: scrollBar 2.4s var(--ease) infinite;
}
@keyframes scrollBar {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ============================================================
   Shared section head (asymmetric, hanging index)
   ============================================================ */
.section { padding-block: clamp(84px, 13vw, 168px); }

.sec-head {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(44px, 6vw, 84px);
}
.sec-index {
  align-self: flex-start;   /* hug content, don't stretch across the flex column */
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  line-height: 1;
  margin-bottom: clamp(24px, 2.4vw, 34px);
}
.sec-index::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.sec-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.005em;
}
.sec-title em { color: var(--red); font-style: normal; }
.sec-lead {
  margin: 26px 0 0;
  max-width: 48ch;
  color: var(--ink-dim);
  font-size: 1.06rem;
}
@media (min-width: 900px) {
  .sec-lead { align-self: flex-end; text-align: right; margin-top: -1.2em; }
}

/* Scroll-reveal utility (IntersectionObserver adds .in) */
.rise { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.rise.in { opacity: 1; transform: none; }

/* ============================================================
   Process — horizontal auto-sliding service cards
   ============================================================ */
.proc { position: relative; }
.proc-viewport {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.proc-viewport::-webkit-scrollbar { display: none; }
.proc-viewport.dragging { cursor: grabbing; }

.pcard {
  flex: 0 0 min(88%, 440px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 32px 30px 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--black-2);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.pcard:hover { border-color: rgba(226, 72, 79, 0.5); }
.pcard-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 26px;
}
.pcard-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink-faint); }
.pcard-tag { color: var(--red); }
.pcard-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
}
.pcard-desc { margin: 0 0 auto; color: var(--ink-dim); font-size: 0.98rem; }

/* timestripe / timeline inside each card */
.timestripe {
  list-style: none;
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  position: relative;
}
.timestripe::before {
  content: "";
  position: absolute;
  top: 22px; left: 5px; right: 5px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(226, 72, 79, 0.15));
}
.timestripe li {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ts-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--black-2);
  border: 2px solid var(--red);
  position: relative; z-index: 1;
}
.ts-step {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.proc-ctrl {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}
.proc-dots { display: flex; gap: 10px; }
.proc-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ink-faint);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.proc-dot.active { background: var(--red); transform: scale(1.25); }
.proc-progress {
  flex: 1; height: 1px; background: var(--line-soft); position: relative; overflow: hidden;
}
.proc-progress span {
  position: absolute; inset: 0;
  background: var(--red);
  transform-origin: left center;
  transform: scaleX(0);
}

/* ============================================================
   FAQ — accordion (grid-template-rows transition, no JS measuring)
   ============================================================ */
.faq-list { border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--red); }
.faq-q span {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
}
.faq-ic {
  flex: 0 0 auto;
  position: relative;
  width: 20px; height: 20px;
}
.faq-ic::before, .faq-ic::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.faq-ic::before { width: 20px; height: 2px; }
.faq-ic::after  { width: 2px; height: 20px; }
.faq-item.open .faq-ic::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.faq-item.open .faq-q { color: var(--red); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-in { overflow: hidden; }
.faq-a p {
  margin: 0;
  padding: 0 0 32px;
  max-width: 62ch;
  color: var(--ink-dim);
  font-size: 1.05rem;
}

/* ============================================================
   Service UI — 3 tabs (Individual / iGaming / Custom) + the
   sincere-intent slider. Typography-driven, no heavy borders.
   ============================================================ */
/* Capped so the content feels comfortably packed rather than stretched across
   the full page. Centered by .wrap's auto margins; the desktop rail gutter is
   kept, so it also stays clear of the right-rail guide. */
.svc { border-top: 1px solid var(--line-soft); }
/* Selection content lands ~1060–1090px wide (wider still, but tighter than the
   full-bleed sections and clear of the right rail). The pay slider keeps its
   own narrower 840px cap. */
.section.svc { max-width: 1300px; }
/* In this narrower section the editorial "lead hangs to the right, pulled up
   into the title" layout collides with the headline — put the lead back in
   normal flow, left-aligned under the title. */
/* #process shares this: its title wraps to a long last line, so the
   min-width:900px right-hang (-1.2em) would collide with the headline.
   Keep the lead in normal flow below the title instead. */
.svc .sec-lead,
#process .sec-lead {
  align-self: flex-start;
  text-align: left;
  margin-top: 22px;
  max-width: 60ch;
}

/* --- Tabs --- */
.svc-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: clamp(30px, 4vw, 46px);
}
.svc-tab {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 24px;
  background: none;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  cursor: pointer;
  color: var(--ink-dim);
  text-align: left;
  /* flex-grow animates the "extend" on hover; opacity handles sibling dimming */
  transition: flex-grow 0.45s var(--ease), opacity 0.35s var(--ease),
    border-color 0.35s var(--ease), color 0.35s var(--ease), background 0.35s var(--ease);
}
.svc-tab-k { font-size: 0.66rem; color: var(--ink-faint); transition: color 0.35s var(--ease); }
.svc-tab-n {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.6vw, 1.8rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
/* hover: the hovered tab widens, the others fade back */
.svc-tabs:hover .svc-tab { opacity: 0.4; }
.svc-tabs:hover .svc-tab:hover {
  opacity: 1;
  flex-grow: 1.6;
  color: var(--ink);
  border-color: var(--line);
  background: var(--black-2);
}
.svc-tab.is-active {
  color: var(--ink);
  border-color: var(--red);
  background: rgba(226, 72, 79, 0.06);
}
.svc-tab.is-active .svc-tab-k { color: var(--red); }
/* dimmed out of play (iGaming while Individual+Custom are combined) */
.svc-tab.is-dim { opacity: 0.22; }
.svc-tabs:hover .svc-tab.is-dim { opacity: 0.22; }

/* --- Panels --- */
.svc-panel { display: none; }
.svc-panel.is-active { display: block; animation: svcIn 0.4s var(--ease-out) both; }
/* [hidden] alone loses to the .is-active class rule — make it explicit so a
   hidden panel can never render if the two ever disagree. */
.svc-panel[hidden] { display: none; }
@keyframes svcIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Individual + Custom shown side by side */
.svc-panels.is-combo {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(24px, 3.4vw, 52px);
  align-items: start;
}

/* --- Service rows --- */
.svc-group + .svc-group { margin-top: clamp(28px, 3.4vw, 44px); }
.svc-group.is-muted { opacity: 0.5; }
/* dim coming-soon rows inside live groups too (e.g. AI & Automation under Virtual) */
.svc-group:not(.is-muted) .svc-row.is-soon { opacity: 0.5; }
.svc-group.is-muted:hover { opacity: 0.72; transition: opacity 0.3s var(--ease); }
.svc-group-h {
  margin: 0 0 10px;
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
/* One grid shared by every row (via subgrid) so name / price / note / action
   line up in clean columns down the whole list, regardless of button width. */
.svc-rows {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.85fr) minmax(0, 1.25fr) auto;
  column-gap: 22px;
}
.svc-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;   /* every cell centered on the row's midline */
  padding: 17px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;       /* clicking a row (off the buttons) opens its detail */
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.svc-row:hover { background: rgba(255, 255, 255, 0.03); }
/* selected via the SELECT button — the whole row highlights */
.svc-row.is-selected { background: rgba(226, 72, 79, 0.12); box-shadow: inset 3px 0 0 var(--red); }
.svc-row.is-selected:hover { background: rgba(226, 72, 79, 0.16); }

/* Column-label row (Subject / Price / Details) — rides the same subgrid. */
.svc-colhead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
}
.svc-colhead span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.svc-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.svc-price {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: var(--ink);
  white-space: nowrap;
}
.svc-unit { color: var(--ink-dim); }
.svc-row.is-soon .svc-price { color: var(--ink-faint); }
.svc-note { font-size: 0.88rem; color: var(--ink-dim); line-height: 1.4; }
/* buttons/toggles don't have a meaningful text baseline in the row — center
   them against the name instead so they read as on the same line */
.svc-act { justify-self: end; align-self: center; }

.svc-int {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 100px;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.28s var(--ease), border-color 0.28s var(--ease), background 0.28s var(--ease);
}
.svc-int:hover { color: var(--ink); border-color: var(--red); background: rgba(226, 72, 79, 0.08); }
.svc-int.is-noted { color: var(--red); border-color: var(--red); }

/* Configure — opens a service's option calculator in its detail modal */
.svc-cfg {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 100px;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.28s var(--ease), border-color 0.28s var(--ease), background 0.28s var(--ease);
}
.svc-cfg:hover { color: var(--ink); border-color: var(--red); background: rgba(226, 72, 79, 0.08); }

/* --- "Add Custom alongside" toggle --- */
.svc-add {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(26px, 3vw, 40px);
  padding: 13px 22px 13px 15px;
  border-radius: 100px;
  background: none;
  border: 1px dashed var(--line);
  color: var(--ink-dim);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.svc-add b { color: var(--ink); font-weight: 600; }
.svc-add-ic {
  position: relative;
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid currentColor;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.svc-add-ic::before, .svc-add-ic::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.svc-add-ic::before { width: 10px; height: 1.5px; }
.svc-add-ic::after  { width: 1.5px; height: 10px; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease); }
.svc-add:hover { color: var(--ink); border-color: var(--ink-faint); }
.svc-add[aria-pressed="true"] {
  color: var(--red);
  border-color: var(--red);
  border-style: solid;
  background: rgba(226, 72, 79, 0.07);
}
.svc-add[aria-pressed="true"] b { color: var(--red); }
/* + turns into − when the add-on is active */
.svc-add[aria-pressed="true"] .svc-add-ic { transform: rotate(180deg); }
.svc-add[aria-pressed="true"] .svc-add-ic::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }

/* --- iGaming empty state --- */
.svc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: clamp(56px, 10vw, 110px) 24px;
  border: 1px dashed var(--line-soft);
  border-radius: 18px;
  color: var(--ink-faint);
}
.svc-empty-ic { color: var(--ink-faint); opacity: 0.75; }
.svc-empty-tx { margin: 0; font-size: 1.02rem; line-height: 1.6; color: var(--ink-dim); }
.svc-empty-tx b { color: var(--ink-dim); font-weight: 600; }

/* --- Custom panel --- */
.svc-custom {
  text-align: center;
  padding: clamp(40px, 6vw, 76px) clamp(24px, 4vw, 54px);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--black-2);
}
.svc-custom-k { color: var(--red); margin: 0 0 20px; }
.svc-custom-h {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.005em;
}
.svc-custom-h em { color: var(--red); font-style: normal; }
.svc-custom-p {
  margin: 0 auto 32px;
  max-width: 44ch;
  color: var(--ink-dim);
  font-size: 1.02rem;
}

/* --- Bundle question (chips) --- */
.svc-ask {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: clamp(24px, 3vw, 36px);
  padding-bottom: clamp(20px, 2.6vw, 30px);
  border-bottom: 1px solid var(--line-soft);
}
.svc-ask-txt { display: flex; flex-direction: column; gap: 4px; }
.svc-ask-l { color: var(--red); }
.svc-ask-hint { color: var(--ink-dim); font-size: 0.92rem; }
.svc-chips { display: inline-flex; gap: 8px; }
.svc-chip {
  padding: 9px 18px;
  border-radius: 100px;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.svc-chip:hover { color: var(--ink); border-color: var(--ink-faint); }
.svc-chip.is-on {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

/* Always-visible container for the service list (fades in once on load). */
.svc-camp-panel { animation: svcIn 0.35s var(--ease-out) both; }

/* --- Service select (for bundle pricing) --- */
.svc-pick {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px 8px 12px;
  border-radius: 100px;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.svc-pick-box {
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 1px solid var(--ink-faint);
  position: relative;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.svc-pick:hover { color: var(--ink); border-color: var(--ink-faint); }
.svc-pick[aria-pressed="true"] { color: var(--ink); border-color: var(--red); background: rgba(226, 72, 79, 0.08); }
.svc-pick[aria-pressed="true"] .svc-pick-box { background: var(--red); border-color: var(--red); }
.svc-pick[aria-pressed="true"] .svc-pick-box::after {
  content: "";
  position: absolute;
  left: 4px; top: 1px;
  width: 4px; height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* --- SET / bundle bar --- */
.svc-set {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: clamp(24px, 3vw, 36px);
  padding: 20px 22px;
  border: 1px solid var(--red);
  border-radius: 14px;
  background: rgba(226, 72, 79, 0.06);
  animation: svcIn 0.3s var(--ease-out) both;
}
.svc-set-lead { display: flex; align-items: baseline; gap: 16px; }
.svc-set-count { color: var(--ink-dim); }
.svc-set-count b { color: var(--ink); }
.svc-set-total {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.svc-set-total.is-set { color: var(--red); }
.svc-set-total .was {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-faint);
  text-decoration: line-through;
  margin-right: 10px;
  letter-spacing: 0;
}
.svc-set-note { color: var(--ink-faint); }

/* --- Compare view: individual vs SET, both shown at once --- */
.svc-set .svc-cmp { display: none; }
.svc-set.is-compare .svc-set-lead,
.svc-set.is-compare .svc-set-note { display: none; }
.svc-set.is-compare .svc-cmp {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px clamp(18px, 4vw, 44px);
}
.svc-cmp-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  min-width: 96px;
}
.svc-cmp-col.is-set,
.svc-cmp-col.is-save {
  padding-left: clamp(18px, 4vw, 44px);
  border-left: 1px solid var(--line-soft);
}
.svc-cmp-k { color: var(--ink-dim); }
.svc-cmp-v {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.svc-cmp-col.is-set .svc-cmp-v,
.svc-cmp-col.is-save .svc-cmp-v { color: var(--red); }
/* stacked bar on mobile: drop the dividers so wrapped columns read cleanly */
@media (max-width: 700px) {
  .svc-cmp-col.is-set,
  .svc-cmp-col.is-save { padding-left: 0; border-left: none; }
}

/* ============================================================
   Service detail modal (opens on a row click, off the buttons)
   ============================================================ */
html.svc-modal-open, html.svc-modal-open body { overflow: hidden; }
.svc-modal {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.svc-modal[hidden] { display: none; }
.svc-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(6px);
}
.svc-modal-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 600px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: svcModalIn 0.24s var(--ease-out) both;
}
@keyframes svcModalIn { from { opacity: 0; transform: translateY(16px) scale(0.985); } to { opacity: 1; transform: none; } }
.svc-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.svc-modal-close:hover { background: rgba(255, 255, 255, 0.12); }
.svc-modal-k { color: var(--red); margin: 0 0 10px; }
.svc-modal-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.svc-modal-use { margin: 0 0 22px; color: var(--ink); font-size: 1.02rem; line-height: 1.6; }
.svc-modal-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px;
}
.svc-modal-shot {
  margin: 0; aspect-ratio: 4 / 3; border-radius: 10px;
  background: linear-gradient(135deg, #201a1a 0%, #141414 100%);
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
}
.svc-modal-shot span {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-faint);
}
.svc-modal-desc { margin: 0; color: var(--ink-dim); font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 520px) { .svc-modal-gallery { grid-template-columns: 1fr 1fr; } }

/* --- Detail-modal option calculator (Concept / Revisions / Piece) --- */
.svc-calc {
  margin: 0 0 22px;
  padding: 16px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}
.svc-calc[hidden] { display: none; }
.svc-calc-rows { display: flex; flex-direction: column; gap: 12px; }
.svc-calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.svc-calc-k { color: var(--ink-dim); }
.svc-calc-step { display: inline-flex; align-items: center; gap: 6px; }
.svc-calc-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.15rem; line-height: 1;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.svc-calc-btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.svc-calc-btn:disabled { opacity: 0.32; cursor: not-allowed; }
.svc-calc-n {
  min-width: 34px; text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem; line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.svc-calc-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}
.svc-calc-total-k { color: var(--ink-dim); }
.svc-calc-total-v {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Banner Design configurator (collapsible) + inquiry cart
   ============================================================ */
.bsec {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--black-2);
  margin-bottom: clamp(24px, 3vw, 38px);
}
.bsec.open { border-color: rgba(226, 72, 79, 0.4); }
.bsec-head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: clamp(16px, 2.2vw, 24px);
  background: none; border: none; cursor: pointer; text-align: left; color: var(--ink);
}
.bsec-title { display: flex; flex-direction: column; gap: 4px; }
.bsec-name {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.35rem, 3vw, 1.9rem); line-height: 1; letter-spacing: 0.01em;
}
.bsec-sub { font-size: 0.9rem; color: var(--ink-dim); }
.bsec-meta { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.bsec-status { color: var(--red); font-size: 0.62rem; white-space: nowrap; }
.bsec-chev {
  width: 9px; height: 9px; border-right: 2px solid var(--ink-dim); border-bottom: 2px solid var(--ink-dim);
  transform: rotate(45deg); transition: transform 0.3s var(--ease); margin-top: -4px;
}
.bsec.open .bsec-chev { transform: rotate(-135deg); margin-top: 3px; }
.bsec-body { display: none; padding: 0 clamp(16px, 2.2vw, 24px) clamp(18px, 2.4vw, 26px); }
.bsec.open .bsec-body { display: block; }

.bd-mode {
  display: flex; gap: 4px; padding: 4px;
  border: 1px solid var(--line); border-radius: 100px; margin-bottom: 16px;
}
.bd-mode-btn {
  flex: 1; padding: 9px; border-radius: 100px; border: none; background: none;
  color: var(--ink-dim); font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.bd-mode-btn.is-on { background: var(--red); color: #fff; }

.bd-fields { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.bd-field { flex: 1 1 68px; display: flex; flex-direction: column; gap: 6px; }
.bd-flbl { color: var(--ink-dim); font-size: 0.6rem; text-align: center; }
.bd-dd { position: relative; }
.bd-dd-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: none;
  color: var(--ink); font-family: var(--font-display); font-size: 1.15rem; cursor: pointer;
  transition: border-color 0.25s var(--ease);
}
.bd-dd.open .bd-dd-btn { border-color: var(--red); }
.bd-dd-caret {
  flex: 0 0 auto; width: 6px; height: 6px;
  border-right: 1.5px solid var(--ink-dim); border-bottom: 1.5px solid var(--ink-dim);
  transform: rotate(45deg); margin-top: -3px;
}
.bd-dd-list {
  position: absolute; top: calc(100% + 5px); left: 0; right: 0; z-index: 25;
  max-height: 178px; overflow-y: auto; display: none;
  background: #181414; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
}
.bd-dd.open .bd-dd-list { display: block; }
.bd-dd-opt {
  padding: 10px; text-align: center; cursor: pointer; color: var(--ink-dim);
  font-family: var(--font-display); font-size: 1.05rem;
}
.bd-dd-opt:hover { background: rgba(255, 255, 255, 0.05); color: var(--ink); }
.bd-dd-opt.is-sel { color: var(--red); }

.bd-pricerow { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.bd-price-k { color: var(--ink-dim); }
.bd-price {
  font-family: var(--font-display); font-size: clamp(2rem, 6vw, 2.7rem); line-height: 1;
  letter-spacing: -0.01em; color: var(--red); font-variant-numeric: tabular-nums;
}
.bd-save {
  margin: 0 0 16px; padding: 10px 12px;
  border: 1px dashed rgba(226, 72, 79, 0.5); border-radius: 10px; background: rgba(226, 72, 79, 0.08);
  font-size: 0.9rem; line-height: 1.5; color: var(--ink);
}
.bd-save b { color: var(--red); }
.bd-save-k {
  display: block; color: var(--red); font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 3px;
}

.bd-actions { display: flex; gap: 10px; }
.bd-examples {
  flex: 0 0 30%; padding: 12px 6px; border-radius: 100px; border: 1px solid var(--line);
  background: none; color: var(--ink-dim); font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; white-space: nowrap;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.bd-examples:hover { color: var(--ink); border-color: var(--ink-faint); }
.bd-add {
  flex: 1; padding: 12px; border-radius: 100px; border: 1px solid var(--red);
  background: var(--red); color: #fff; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.bd-add.is-added { background: none; color: var(--ink-dim); border-color: var(--line); }

.bd-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.bd-gallery[hidden] { display: none; }
.bd-shot {
  margin: 0; aspect-ratio: 4 / 3; border-radius: 8px; border: 1px solid var(--line-soft);
  background: linear-gradient(135deg, #201a1a, #141414);
  display: flex; align-items: center; justify-content: center;
}
.bd-shot span { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }

.svc-cart {
  margin-top: clamp(24px, 3vw, 36px); padding: 18px 20px;
  border: 1px solid var(--red); border-radius: 14px; background: rgba(226, 72, 79, 0.06);
}
.svc-cart-k { display: block; color: var(--ink-dim); margin-bottom: 10px; }
.svc-cart-empty { color: var(--ink-faint); font-size: 0.9rem; }
.svc-cart-row { display: flex; justify-content: space-between; gap: 14px; color: var(--ink); font-size: 0.94rem; padding: 5px 0; }
.svc-cart-price { font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Group header: "VIRTUAL  Subject" on one line, single divider beneath it */
.svc-group-head {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 14px; margin-bottom: clamp(18px, 2.4vw, 26px);
  border-bottom: 1px solid var(--line-soft);
}
.svc-group-head .svc-group-h { margin: 0; }
.svc-group-col { color: var(--ink-dim); font-size: 0.6rem; }
.svc-rows { border-top: 0; }

/* Website configurator (budget-based) */
.web-flbl { display: block; color: var(--ink-dim); margin-bottom: 6px; }
.web-input {
  width: 100%; background: none; border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 12px; color: var(--ink); font-family: var(--font-body); font-size: 0.98rem;
  margin-bottom: 16px; transition: border-color 0.25s var(--ease);
}
.web-input::placeholder { color: var(--ink-faint); }
.web-input:focus { outline: none; border-color: var(--red); }
.web-deliver { margin: 0 0 18px; color: var(--ink-dim); font-size: 0.92rem; }
.web-deliver::before {
  content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); margin-right: 9px; vertical-align: middle;
}
.web-budgetrow {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 14px; flex-wrap: wrap;
}
.web-blbl { color: var(--ink-dim); }
.web-budget {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--line); border-radius: 100px; padding: 4px 6px;
}
.web-bstep {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: none;
  color: var(--ink); font-size: 1.2rem; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.web-bstep:hover { border-color: var(--red); color: var(--red); }
.web-brm { color: var(--ink-dim); font-family: var(--font-mono); font-size: 0.68rem; }
.web-binput {
  width: 90px; background: none; border: none; color: var(--red); text-align: center;
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -0.01em; font-variant-numeric: tabular-nums;
}
.web-binput:focus { outline: none; }
.bd-add:disabled { opacity: 0.4; cursor: not-allowed; }

/* KOL Video Production — two pickable options, a budget each */
.kol-hint { color: var(--ink-dim); margin: 0 0 8px; }
.kol-opt {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; padding: 14px 0; border-bottom: 1px solid var(--line-soft);
}
.kol-toggle {
  display: inline-flex; align-items: center; gap: 12px; background: none; border: none;
  cursor: pointer; color: var(--ink-dim); font-family: var(--font-body); font-size: 1rem;
  transition: color 0.2s var(--ease);
}
.kol-toggle[aria-pressed="true"] { color: var(--ink); }
.kol-box {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 6px;
  border: 1px solid var(--ink-faint); position: relative;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.kol-toggle[aria-pressed="true"] .kol-box { background: var(--red); border-color: var(--red); }
.kol-toggle[aria-pressed="true"] .kol-box::after {
  content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
/* coming-soon platform row (e.g. LinkedIn under Ads) */
.ads-soon { opacity: 0.5; }
.ads-soon .kol-toggle { cursor: default; }
.ads-soon-tag { color: var(--ink-faint); }

/* pay-calc box, once the inquiry has a total */
.pay-calc.is-filled { text-transform: none; letter-spacing: 0; text-align: left; color: var(--ink); border-style: solid; }
.pay-calc-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.pay-calc-total { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.pay-calc-sub { margin-top: 8px; color: var(--ink-dim); font-size: 0.92rem; }
.pay-calc-sub span { font-variant-numeric: tabular-nums; }
.svc-cart-sum { margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--line-soft); font-weight: 600; color: var(--ink); }

@media (max-width: 560px) {
  .bd-actions { flex-wrap: wrap; }
  .bd-examples { flex: 1 1 100%; }
}

/* ============================================================
   Sincere-intent slider
   ============================================================ */
.pay {
  position: relative;
  /* tighter than the Choose section above: narrower + less padding */
  max-width: 840px;
  margin: clamp(40px, 6vw, 72px) auto 0;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
}

.pay-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.pay-label { color: var(--red); }
.pay-val {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  transition: transform 0.18s var(--ease);
}
.pay-val.pop { transform: scale(1.06); }
/* thumb presses in while dragging */
.pay-range::-webkit-slider-thumb { transition: transform 0.14s var(--ease); }
.pay-range:active::-webkit-slider-thumb { transform: scale(1.5); }
.pay-range::-moz-range-thumb { transition: transform 0.14s var(--ease); }
.pay-range:active::-moz-range-thumb { transform: scale(1.5); }

/* range input — track filled up to the current value */
.pay-range {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 26px;
  background: none;
  cursor: grab;
  touch-action: pan-y;
}
.pay-range:active { cursor: grabbing; }
/* Solid track — a clean line: red fill up to the value, muted rail after. */
.pay-range::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) calc(var(--p, 0) * 100%),
    rgba(255, 255, 255, 0.12) calc(var(--p, 0) * 100%), rgba(255, 255, 255, 0.12) 100%);
}
.pay-range::-moz-range-track {
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) calc(var(--p, 0) * 100%),
    rgba(255, 255, 255, 0.12) calc(var(--p, 0) * 100%), rgba(255, 255, 255, 0.12) 100%);
}

/* Plain dot — solid, no glow, no shine, no border. */
.pay-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px; height: 16px;
  margin-top: -5.5px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
}
.pay-range::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
}
.pay-range:focus-visible { outline: none; }
.pay-range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 3px rgba(226, 72, 79, 0.5); }
.pay-range:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 3px rgba(226, 72, 79, 0.5); }

.pay-emotion { margin: 22px 0 0; min-height: 3.4em; }
.pay-emotion-t {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3.4vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--ink);
  transition: color 0.3s var(--ease);
  /* light sweep across the mood words */
  background: linear-gradient(100deg, currentColor 0%, currentColor 43%, #fff 50%, currentColor 57%, currentColor 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: payShine 3.2s linear infinite;
}
@keyframes payShine { from { background-position: 130% 0; } to { background-position: -130% 0; } }
@keyframes payEmoIn { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.pay-emotion-s { display: block; margin-top: 8px; color: var(--ink-dim); font-size: 0.98rem; }
/* the higher the intent, the hotter the headline reads */
.pay.lvl-3 .pay-emotion-t { color: #ffb4a8; }
.pay.lvl-4 .pay-emotion-t { color: var(--red); }
.pay.lvl-5 .pay-emotion-t { color: var(--red); }

.pay-calc {
  margin: 26px 0 0;
  padding: 14px 16px;
  border: 1px dashed var(--line-soft);
  border-radius: 10px;
  color: var(--ink-faint);
  text-align: center;
}
.pay-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 26px;
}
.pay-fine { margin: 0; color: var(--ink-faint); font-size: 0.82rem; max-width: 40ch; }

/* ============================================================
   Toast (interest signals / inquiry confirmation)
   ============================================================ */
.toast-wrap {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  width: min(92vw, 460px);
}
.toast {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 20px;
  border-radius: 12px;
  background: var(--black-2);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  color: var(--ink);
  font-size: 0.94rem;
  animation: toastIn 0.32s var(--ease) both;
}
.toast.out { animation: toastOut 0.3s var(--ease) both; }
.toast-dot {
  flex: 0 0 auto;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(226, 72, 79, 0.8);
}
.toast b { font-weight: 600; }
@keyframes toastIn  { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(10px); } }

/* --- Service UI responsive --- */
@media (max-width: 860px) {
  .svc-panels.is-combo { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  /* tabs stack vertically; no hover-extend on touch */
  .svc-tabs { flex-direction: column; gap: 8px; }
  .svc-tab { flex: 0 0 auto; flex-direction: row; align-items: center; gap: 14px; padding: 16px 20px; }
  .svc-tabs:hover .svc-tab { opacity: 1; }
  .svc-tabs:hover .svc-tab:hover { flex-grow: 0; }

  /* rows become stacked blocks (drop the shared subgrid) */
  .svc-rows { display: block; }
  .svc-row {
    grid-column: auto;
    grid-template-columns: 1fr auto;
    gap: 6px 14px;
    padding: 18px 0;
  }
  .svc-name { grid-column: 1; }
  .svc-price { grid-column: 2; justify-self: end; }
  .svc-note { grid-column: 1 / -1; }
  /* the "—" placeholder carries no information — drop it rather than let it
     take a whole stacked line on narrow screens */
  .svc-note.is-empty { display: none; }
  .svc-act { grid-column: 1 / -1; justify-self: start; margin-top: 6px; }

  .pay-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .svc-add { width: 100%; justify-content: center; }

  /* column headers make no sense once rows stack; the bundle bar goes vertical */
  .svc-colhead { display: none; }
  .svc-set { flex-direction: column; align-items: stretch; }
  .svc-set-lead { justify-content: space-between; }
  .svc-ask { gap: 12px; }
}

/* ============================================================
   Footer — alive bg, Hold-to-Disrupt blob, Ask-AI widget
   ============================================================ */
.ftr {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 150px) 0 46px;
  /* Blend the seam with the section above (body is #0a0a0a): match that tone at
     the top edge and settle into the footer's #060606 lower down, so the color
     step disappears. Fade distance matches the canvas mask below. */
  background: linear-gradient(to bottom, #0a0a0a 0, #060606 clamp(180px, 26vw, 320px));
}
.ftr-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  /* Fade the meteor/starfield in from the top so the rain appears gradually
     instead of cutting off at a hard seam with the payment section above. */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 clamp(180px, 26vw, 320px));
          mask-image: linear-gradient(to bottom, transparent 0, #000 clamp(180px, 26vw, 320px));
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.ftr-inner { position: relative; z-index: 1; }

/* Former hold-to-speedup zone is now just negative space at the top of the
   footer where the meteor shower streams; no label, no button, no badge. */
.ftr-disrupt {
  position: relative;
  height: clamp(200px, 30vw, 340px);
  margin-bottom: 10px;
}
.ftr-hold { display: none; }   /* label removed — the footer cursor is the meteor now */

.ftr-statement {
  margin: clamp(20px, 4vw, 40px) 0 clamp(60px, 9vw, 110px);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.ftr-statement em { color: var(--red); font-style: normal; }

/* Ask AI widget */
.ftr-ai { max-width: 620px; margin-bottom: clamp(56px, 8vw, 96px); }
.ftr-ai-label { display: block; color: var(--red); margin-bottom: 16px; }
.ftr-ai-form {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  transition: border-color 0.3s var(--ease);
}
.ftr-ai-form:focus-within { border-color: var(--red); }
.ftr-ai-input {
  flex: 1;
  background: none; border: none; outline: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
}
.ftr-ai-input::placeholder { color: var(--ink-faint); }
.ftr-ai-send {
  flex: 0 0 auto;
  width: 48px; height: 48px; border-radius: 50%;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ftr-ai-send:hover { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(-90deg); }
.ftr-ai-out { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.ai-msg {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.98rem;
  max-width: 90%;
  line-height: 1.5;
  animation: fadeUp 0.4s var(--ease-out) both;
}
.ai-msg.ask { align-self: flex-end; background: var(--red); color: #fff; border-bottom-right-radius: 4px; }
.ai-msg.reply { align-self: flex-start; background: var(--black-2); color: var(--ink-dim); border: 1px solid var(--line-soft); border-bottom-left-radius: 4px; }
.ai-msg.reply b { color: var(--ink); font-weight: 500; }
.ai-typing span {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-dim); margin-right: 4px;
  animation: aiBounce 1.1s infinite ease-in-out;
}
.ai-typing span:nth-child(2) { animation-delay: 0.15s; }
.ai-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes aiBounce { 0%,60%,100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

.ftr-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  border-top: 1px solid var(--line-soft);
}
.ftr-logo img { height: 34px; width: auto; }
.ftr-links { display: flex; gap: 26px; }
.ftr-links a { color: var(--ink-dim); font-size: 0.9rem; transition: color 0.25s var(--ease); }
.ftr-links a:hover { color: var(--red); }
.ftr-copy { margin: 0; color: var(--ink-faint); font-size: 0.82rem; max-width: 40ch; }

/* Inside the footer the OS cursor is hidden and replaced by a red meteor streak
   drawn on a canvas overlay (see footer-fx.js). Placed last so it wins over the
   pointer/text cursors on links, the Ask-AI input, and the send button. Only
   applies on devices that actually have a cursor. */
@media (hover: hover) and (pointer: fine) {
  .ftr, .ftr * { cursor: none; }
}

/* ============================================================
   About — right-side slide-in panel
   ============================================================ */
.about {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  pointer-events: none;
}
.about.open { visibility: visible; pointer-events: auto; }
.about-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.about.open .about-backdrop { opacity: 1; }
.about-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(560px, 100%);
  background: var(--black);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.about.open .about-panel { transform: translateX(0); }
.about-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 1;
}
.about-close:hover { border-color: var(--red); transform: rotate(90deg); }
.about-scroll {
  overflow-y: auto;
  padding: clamp(56px, 9vw, 92px) clamp(28px, 5vw, 60px) 60px;
}
.about-eyebrow { color: var(--red); margin: 0 0 22px; }
.about-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 0.9;
}
.about-kicker { margin: 0 0 40px; color: var(--ink-dim); font-size: 1.05rem; }
.about-scroll h3 {
  margin: 34px 0 12px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.about-scroll p { margin: 0 0 18px; color: var(--ink); font-size: 1.02rem; line-height: 1.7; }
.about-scroll p.dim { color: var(--ink-dim); }
.about-values {
  list-style: none;
  margin: 30px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 4px;
}
.about-values li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.4rem;
}
.about-values li span { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--red); }

/* ============================================================
   Section guide — visible right rail (desktop) + hamburger
   dropdown (mobile). Built by section-nav.js from the sections'
   data-section-name attributes. Always visible; no edge-activation.
   ============================================================ */

/* --- Desktop right rail --- */
.sideguide {
  position: fixed;
  top: 50%;
  right: clamp(14px, 1.6vw, 26px);
  transform: translateY(-50%);
  z-index: 30;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease);
}
.sideguide:hover { opacity: 1; }
.sideguide-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
}
.sideguide-item {
  display: inline-flex; align-items: center; gap: 11px;
  background: none; border: none; cursor: pointer;
  padding: 7px 0;
  font-family: var(--font-mono);
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.sideguide-item:hover { color: var(--ink); }
.sideguide-dot {
  flex: 0 0 auto;
  width: 7px; height: 7px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--ink-faint);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.sideguide-item.is-active { color: var(--ink); }
.sideguide-item.is-active .sideguide-dot {
  background: var(--red); border-color: var(--red);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(226, 72, 79, 0.7);
}

/* --- Mobile hamburger (injected into the header nav) --- */
.snav-burger {
  display: none;
  width: 34px; height: 34px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.snav-burger span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.snav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.snav-burger.open span:nth-child(2) { opacity: 0; }
.snav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile dropdown overlay --- */
.snav-drop {
  display: none;
  position: fixed; inset: 0;
  z-index: 70;
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(6px);
}
.snav-drop.open { display: block; }
.snav-drop-list {
  position: absolute;
  top: 74px; right: var(--pad);
  list-style: none; margin: 0; padding: 8px;
  min-width: 210px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  display: flex; flex-direction: column; gap: 2px;
  animation: snavDropIn 0.22s var(--ease);
}
@keyframes snavDropIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.snav-drop-item {
  display: flex; align-items: center; gap: 13px;
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 15px 14px; border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.snav-drop-item:hover { color: var(--ink); background: rgba(255, 255, 255, 0.04); }
.snav-drop-dot {
  flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%;
  background: transparent; border: 1px solid var(--ink-faint);
}
.snav-drop-item.is-active { color: var(--ink); }
.snav-drop-item.is-active .snav-drop-dot {
  background: var(--red); border-color: var(--red);
  box-shadow: 0 0 8px rgba(226, 72, 79, 0.7);
}

html.snav-lock, html.snav-lock body { overflow: hidden; }

@media (max-width: 767px) {
  .sideguide { display: none; }
  .snav-burger { display: flex; }
  html.snav-lock .hdr { z-index: 80; }   /* keep the burger (as an X) tappable above the overlay */
}
@media (min-width: 768px) {
  .snav-drop { display: none !important; }   /* never show the mobile overlay on desktop */
  /* Reserve room on the right for the always-visible rail so right-aligned/
     right-edge content (section leads, process cards, FAQ toggles) never sits
     under it. Backgrounds stay full-bleed; only the padded content shifts. */
  .hero, .section { padding-right: calc(var(--pad) + 84px); }
}

/* ============================================================
   Chat modal (kept on disk, not wired) — rethemed to all-black
   ============================================================ */
html.chat-modal-open, html.chat-modal-open body { overflow: hidden; }
.chat-modal {
  display: none; position: fixed; inset: 0; z-index: 90;
  align-items: center; justify-content: center; padding: 24px;
}
.chat-modal.open { display: flex; }
.chat-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.chat-modal-dialog {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px;
  max-height: min(640px, calc(100dvh - 48px));
  background: var(--chat-bg);
  border: 1px solid var(--chat-border);
  border-radius: 18px;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.chat-modal-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--chat-surface-alt); border: 1px solid var(--chat-border);
  color: var(--chat-ink); display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.chat-thread { flex: 1; min-height: 0; overflow-y: auto; padding: 44px 14px 8px; display: flex; flex-direction: column; gap: 10px; }
.chat-bubble { max-width: 82%; padding: 10px 14px; border-radius: 16px; font-size: 0.95rem; line-height: 1.42; color: var(--chat-ink); }
.chat-bubble.bot { align-self: flex-start; background: var(--chat-surface); border-bottom-left-radius: 4px; }
.chat-bubble.sent { align-self: flex-end; background: var(--red); color: #fff; border-bottom-right-radius: 4px; }
.chat-bubble.typing { display: flex; gap: 4px; padding: 12px 16px; }
.chat-bubble.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--chat-ink-soft); opacity: 0.6; animation: aiBounce 1.1s infinite ease-in-out; }
.chat-bubble.typing span:nth-child(2){ animation-delay: 0.15s; }
.chat-bubble.typing span:nth-child(3){ animation-delay: 0.3s; }
.chat-options { display: flex; gap: 8px; padding: 4px 14px 12px; overflow-x: auto; scrollbar-width: none; }
.chat-options::-webkit-scrollbar { display: none; }
.chat-chip { flex: 0 0 auto; padding: 9px 16px; border-radius: 999px; background: var(--chat-surface-alt); border: 1px solid var(--chat-border); color: var(--chat-ink); font-size: 0.88rem; font-weight: 600; white-space: nowrap; cursor: pointer; }
.chat-input-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-top: 1px solid var(--chat-border); }
.chat-input { flex: 1; background: var(--chat-surface); border: 1px solid var(--chat-border); border-radius: 999px; padding: 11px 16px; color: var(--chat-ink); font-size: 0.95rem; font-family: inherit; }
.chat-send { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* ============================================================
   Placeholder pages (login / register / portfolio)
   ============================================================ */
.stub {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px var(--pad) 80px;
}
.stub-eyebrow { color: var(--red); margin: 0 0 22px; }
.stub-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3rem, 13vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.stub-title em { color: var(--red); font-style: normal; }
.stub-sub { margin: 0 0 40px; max-width: 46ch; color: var(--ink-dim); font-size: 1.1rem; }
.stub-foot { padding-bottom: 46px; }
.stub-foot .ftr-base { border-top: 1px solid var(--line-soft); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .hero-title .ln:nth-child(2) { margin-left: 0; }
  .sec-lead { text-align: left; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .hdr-nav { gap: 18px; }
  .hdr-nav a:not(.hdr-cta) { display: none; }   /* keep About + Choose now visible; Log in via the footer */
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .ftr-base { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .hero-title .ln > i { transform: none; }
  .fade-up, .rise { opacity: 1; transform: none; }
}

/* ============================================================
   Blog — index + article pages
   ============================================================ */
.blog-page { max-width: var(--max); margin: 0 auto; padding: 140px var(--pad) 90px; }
.blog-head { margin-bottom: clamp(40px, 6vw, 72px); }
.blog-eyebrow { color: var(--red); margin: 0 0 20px; }
.blog-title {
  margin: 0 0 20px;
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.6rem, 9vw, 6rem); line-height: 0.9; letter-spacing: -0.01em;
}
.blog-title em { color: var(--red); font-style: normal; }
.blog-lead { margin: 0; color: var(--ink-dim); font-size: 1.1rem; max-width: 52ch; }

.blog-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-soft); }
.blog-card { border-bottom: 1px solid var(--line-soft); }
.blog-card-link { display: block; padding: clamp(26px, 3.4vw, 42px) 0; transition: opacity 0.25s var(--ease); }
.blog-card-link:hover { opacity: 0.9; }
.blog-card-meta { display: flex; align-items: center; gap: 14px; color: var(--ink-dim); margin-bottom: 14px; }
.blog-card-tag { color: var(--red); }
.blog-card-title {
  margin: 0 0 12px;
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 1; letter-spacing: 0.005em;
  transition: color 0.25s var(--ease);
}
.blog-card-link:hover .blog-card-title { color: var(--red); }
.blog-card-excerpt { margin: 0 0 14px; color: var(--ink-dim); max-width: 62ch; font-size: 1.02rem; }
.blog-card-more { color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.blog-card-more .arw { transition: transform 0.25s var(--ease); }
.blog-card-link:hover .blog-card-more .arw { transform: translateX(4px); }
.blog-more-note { margin: 40px 0 0; color: var(--ink-faint); }

/* article page */
.article { max-width: 720px; }
.article-back { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-dim); margin-bottom: 30px; transition: color 0.25s var(--ease); }
.article-back:hover { color: var(--red); }
.article-meta { display: flex; align-items: center; gap: 14px; color: var(--ink-dim); margin-bottom: 18px; }
.article-tag { color: var(--red); }
.article-title {
  margin: 0 0 32px;
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.2rem, 6.5vw, 4.4rem); line-height: 0.94; letter-spacing: -0.005em;
}
.article-body { color: var(--ink); font-size: 1.08rem; line-height: 1.75; }
.article-body p { margin: 0 0 22px; }
.article-body b { color: var(--ink); font-weight: 600; }
.article-body h2 {
  margin: 40px 0 16px;
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.4rem, 3.4vw, 2rem); line-height: 1.05; color: var(--ink);
}
.article-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.article-foot {
  margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line-soft);
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
