/* ============================================
   SECTION BACKDROPS — each section gets a quiet, distinct texture
   so the page reads as chapters, not one infinite navy slab.
   All textures use only navy/gold/silver/line tokens — no new colors.
   Pseudo-elements (::before) sit behind content; sections are already
   position:relative and content lives inside .container with z-index implied.
   ============================================ */

/* shared scaffold for backdrops */
.bg-rules,
.bg-dots,
.bg-hatch,
.bg-ticks,
.bg-radial,
.bg-orbits,
.bg-blueprint {
  position: relative;
  isolation: isolate;
}
.bg-rules > *,
.bg-dots > *,
.bg-hatch > *,
.bg-ticks > *,
.bg-radial > *,
.bg-orbits > *,
.bg-blueprint > * {
  position: relative;
  z-index: 1;
}
.bg-rules::before,
.bg-dots::before,
.bg-hatch::before,
.bg-ticks::before,
.bg-radial::before,
.bg-orbits::before,
.bg-blueprint::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* MANIFESTO — oversized italic glyph behind the layout. Editorial,
   confident, very different from any line-pattern. Sits low-opacity
   on the right so it reads as a watermark, not décor. */
.bg-rules::before {
  content: "§";
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(420px, 55vw, 880px);
  line-height: 0.8;
  color: transparent;
  background: var(--gold-shine);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  inset: auto -8% auto auto;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}
[data-metal="silver-led"] .bg-rules::before,
[data-metal="silver"] .bg-rules::before {
  background: var(--silver-shine);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
}
[data-theme="cream"] .bg-rules::before {
  opacity: 0.08;
}

/* LIVE OPS — no backdrop. The dashboard panel is the visual. */
.bg-dots::before { content: none; display: none; }

/* SERVICES — no backdrop. The split list/detail layout already has structure. */
.bg-hatch::before { content: none; display: none; }

/* PROCESS — no backdrop. The 4-up grid is its own pattern. */
.bg-ticks::before { content: none; display: none; }

/* VIGNETTES — soft offset radials, like spotlight cones across a stage. */
.bg-radial::before {
  background:
    radial-gradient(circle 500px at 12% 30%, rgba(201, 162, 74, 0.10), transparent 60%),
    radial-gradient(circle 600px at 85% 75%, rgba(174, 183, 197, 0.07), transparent 65%),
    radial-gradient(circle 400px at 55% 50%, rgba(201, 162, 74, 0.04), transparent 70%);
}
[data-metal="silver-led"] .bg-radial::before,
[data-metal="silver"] .bg-radial::before {
  background:
    radial-gradient(circle 500px at 12% 30%, rgba(174, 183, 197, 0.10), transparent 60%),
    radial-gradient(circle 600px at 85% 75%, rgba(201, 162, 74, 0.05), transparent 65%),
    radial-gradient(circle 400px at 55% 50%, rgba(174, 183, 197, 0.05), transparent 70%);
}

/* PRICING — single soft top-down spotlight on the center tier.
   Very subtle, no rings, no patterns. Just a quiet beam that
   reinforces the "Most clients" tier without competing with it. */
.bg-orbits::before {
  background:
    radial-gradient(ellipse 28% 70% at 50% 0%, rgba(201, 162, 74, 0.10), transparent 70%),
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(201, 162, 74, 0.05), transparent 80%);
}
[data-metal="silver-led"] .bg-orbits::before,
[data-metal="silver"] .bg-orbits::before {
  background:
    radial-gradient(ellipse 28% 70% at 50% 0%, rgba(174, 183, 197, 0.10), transparent 70%),
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(174, 183, 197, 0.05), transparent 80%);
}

/* Cream-mode dampening — the textures were tuned for dark navy.
   On cream, gold rules look heavy; pull them way back. */
[data-theme="cream"] .bg-dots::before,
[data-theme="cream"] .bg-hatch::before,
[data-theme="cream"] .bg-ticks::before,
[data-theme="cream"] .bg-orbits::before {
  opacity: 0.5;
}
[data-theme="cream"] .bg-radial::before {
  opacity: 0.6;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  margin-bottom: 36px;
  animation: fadeUp .9s ease both;
}
.hero-headline {
  margin-bottom: 32px;
  max-width: 16ch;
  text-wrap: pretty;
  animation: fadeUp 1s ease .1s both;
}
.hero-sub {
  max-width: 56ch;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--fg-dim);
  margin-bottom: 44px;
  animation: fadeUp 1s ease .2s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease .3s both;
}
.hero-foot {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  animation: fadeUp 1s ease .5s both;
}
.hero-foot-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-foot-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 500;
}
.hero-foot-label {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .hero-foot { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.scroll-cue {
  position: absolute;
  bottom: 24px; left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-line {
  display: inline-block;
  width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 30%;
  background: var(--gold-300);
  animation: slide-line 2.5s ease-in-out infinite;
}
@keyframes slide-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

.hero-mascot {
  position: absolute;
  right: -120px; top: 50%;
  transform: translateY(-50%);
  width: 720px; height: 720px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.hero-mascot img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60%;
  filter: drop-shadow(0 20px 60px rgba(201, 162, 74, 0.25));
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.mascot-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.mascot-ring::before {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold-300);
  border-radius: 50%;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px var(--gold-300);
}
.mascot-ring.r2 {
  inset: 60px;
  animation: rotate 22s linear infinite reverse;
  border-style: dashed;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (max-width: 1100px) {
  .hero-mascot { opacity: 0.18; right: -200px; width: 600px; height: 600px; }
}

/* ============================================
   HERO SIGNATURE — couture monogram beside the headline (right side).
   ============================================ */
.hero-headline-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 80px);
  margin-bottom: 32px;
  animation: fadeUp 1s ease .1s both;
}
.hero-headline-row .hero-headline {
  margin-bottom: 0;
  animation: none;
  flex: 1 1 auto;
  min-width: 0;
}
.hero-signature {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
  padding-left: clamp(20px, 2.5vw, 40px);
  border-left: 1px solid var(--line);
  pointer-events: none;
  user-select: none;
}
.hero-signature-mark {
  font-family: "Pinyon Script", "Cormorant Garamond", cursive;
  font-size: clamp(96px, 11vw, 168px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  padding: 0.08em 0.12em 0.18em;
  background: var(--gold-shine);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 24px rgba(201, 162, 74, 0.3));
  animation: goldShimmer 8s ease-in-out infinite;
  position: relative;
  overflow: visible;
}
.hero-signature-mark::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
  opacity: 0.55;
}
.hero-signature-cap {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-dim);
  line-height: 1.6;
  white-space: nowrap;
}
[data-metal="silver-led"] .hero-signature-mark,
[data-metal="silver"] .hero-signature-mark {
  background: var(--silver-shine);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 8px 24px rgba(174, 183, 197, 0.3));
}
@media (max-width: 1024px) {
  .hero-headline-row { gap: 24px; }
  .hero-signature-mark { font-size: clamp(72px, 9vw, 110px); }
}
@media (max-width: 760px) {
  .hero-headline-row { flex-direction: column; gap: 8px; }
  .hero-signature {
    flex-direction: row;
    align-items: center;
    border-left: 0;
    padding-left: 0;
    gap: 16px;
  }
  .hero-signature-mark { font-size: 84px; }
}
.manifesto-title {
  margin: 24px 0 64px;
  max-width: 18ch;
  text-wrap: pretty;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
}
.manifesto-col { display: flex; flex-direction: column; gap: 28px; }
.manifesto-lede {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.4;
  text-wrap: pretty;
}
.manifesto-lede em { font-style: italic; color: var(--accent); }
.manifesto-list { list-style: none; }
.manifesto-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 6px;
}
.manifesto-list li:first-child { border-top: 1px solid var(--line); }
.strike {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(201, 162, 74, 0.55);
  text-transform: uppercase;
}
.replace {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.3;
}

/* ============================================
   LIVE OPS
   ============================================ */
.ops-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.ops-head .display-lg { margin-top: 16px; text-wrap: pretty; }
.ops-lede {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 42ch;
}
.ops-lede em { color: var(--accent); font-style: italic; }
@media (max-width: 900px) { .ops-head { grid-template-columns: 1fr; gap: 24px; } }

.ops-panel {
  position: relative;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 90px -40px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.04);
}
.ops-chrome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.chrome-dots span:first-child { background: #c9a24a; }
.chrome-dots span:nth-child(2) { background: rgba(201,162,74,.4); }
.chrome-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: center;
}
.chrome-time { opacity: .6; }
.chrome-tabs { display: flex; gap: 4px; }
.chrome-tab {
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all .2s;
}
.chrome-tab:hover { color: var(--fg); }
.chrome-tab.active {
  color: var(--gold-200);
  border-color: var(--line-strong);
  background: rgba(201,162,74,.08);
}

.ops-body { padding: 8px 0; min-height: 380px; }

.ops-list { display: flex; flex-direction: column; }
.ops-row {
  display: grid;
  grid-template-columns: 90px 1.4fr 2fr 130px 180px;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 13.5px;
  animation: fadeUp .5s ease both;
}
.ops-row.threats-row { grid-template-columns: 80px 2.5fr 1.2fr 120px; }
.ops-row.ops-head-row {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: rgba(0,0,0,.18);
  padding-top: 10px; padding-bottom: 10px;
}
.ops-row .mono { font-family: var(--font-mono); font-size: 12px; }
.ops-row .dim { color: var(--fg-dim); }
.ops-row strong { font-weight: 500; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pill-live { background: rgba(201, 162, 74, 0.12); color: var(--gold-200); border: 1px solid var(--line-strong); }
.pill-ok { color: var(--fg-dim); border: 1px solid var(--line); }

.sev {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.sev-high { background: rgba(220, 100, 80, .15); color: #f08c7a; border: 1px solid rgba(220, 100, 80, .35); }
.sev-med  { background: rgba(201, 162, 74, .15); color: var(--gold-200); border: 1px solid var(--line-strong); }
.sev-low  { background: rgba(255,255,255,.05); color: var(--fg-dim); border: 1px solid var(--line); }

.ops-foot {
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.fleet-card {
  background: var(--bg);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: fadeUp .5s ease both;
}
.fleet-head { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.fleet-eps { font-size: 32px; line-height: 1; font-family: var(--font-display); }
.fleet-eps-label { font-family: var(--font-sans); font-size: 12px; color: var(--fg-dim); margin-left: 4px; }
.fleet-note { font-size: 12px; }
.fleet-bar { height: 3px; background: rgba(201,162,74,.1); border-radius: 2px; overflow: hidden; margin-top: 4px; }
.fleet-bar-fill { height: 100%; background: var(--gold-shine-vert); border-radius: 2px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-dot.ok { background: #6dbf91; box-shadow: 0 0 12px #6dbf91; }
.status-dot.warn { background: var(--gold-300); box-shadow: 0 0 12px var(--gold-300); }
@media (max-width: 760px) { .fleet-grid { grid-template-columns: 1fr; } }

.ops-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line-strong);
}
.ops-stat {
  background: var(--bg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ops-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}
.ops-stat-num small { font-size: 0.5em; }
.ops-stat-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
@media (max-width: 760px) {
  .ops-stats { grid-template-columns: repeat(2, 1fr); }
  .ops-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 16px; }
  .ops-row.ops-head-row { display: none; }
}

/* ============================================
   SECTION HEADERS (shared)
   ============================================ */
.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .display-lg, .section-head .display-md { margin-top: 16px; text-wrap: pretty; }
.section-lede {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 42ch;
}
@media (max-width: 900px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }

/* ============================================
   SERVICES — two-pane split, fixed footprint
   ============================================ */
.services-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

/* Left: list of all 9 services, always fully visible */
.svc-list {
  list-style: none;
  border-right: 1px solid var(--line);
}
.svc-list li + li .svc-item {
  border-top: 1px solid var(--line);
}
.svc-item {
  width: 100%;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  gap: 20px;
  align-items: center;
  padding: 18px 28px 18px 4px;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: background .25s cubic-bezier(.4,0,.2,1), padding .25s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.svc-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.svc-item:hover {
  background: linear-gradient(90deg, rgba(201,162,74,.04), rgba(201,162,74,0) 80%);
}
.svc-item.active {
  background: linear-gradient(90deg, rgba(201,162,74,.08), rgba(201,162,74,0) 80%);
  padding-left: 16px;
}
.svc-item.active::before {
  transform: scaleY(1);
}
.svc-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  transition: color .25s ease;
}
.svc-item.active .svc-num { color: var(--accent); }
.svc-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  transition: color .25s ease;
  text-wrap: balance;
}
.svc-item:hover .svc-title,
.svc-item.active .svc-title { color: var(--accent); }
.svc-arrow {
  font-size: 16px;
  color: var(--accent);
  text-align: right;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease, transform .25s ease;
}
.svc-item.active .svc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Right: detail panel — fixed footprint, cards stack via opacity */
.svc-panel {
  position: relative;
  padding: 36px 0 36px 48px;
  min-height: 360px;
}
.svc-card {
  position: absolute;
  inset: 36px 0 36px 48px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s cubic-bezier(.4,0,.2,1), transform .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: .05s;
}
.svc-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.18em;
}
.svc-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--accent);
  text-wrap: balance;
  margin: 0;
}
.svc-card-sum {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 48ch;
  margin: 0;
}
.svc-card-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.svc-card-list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg-dim);
}
.svc-card-list .bullet { color: var(--accent); font-size: 8px; line-height: 22px; }

/* Tablet — narrower split */
@media (max-width: 1024px) {
  .services-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }
  .svc-panel { padding-left: 32px; }
  .svc-card { inset: 32px 0 32px 32px; }
  .svc-card-list { grid-template-columns: 1fr; gap: 8px; }
}

/* Mobile — stack: list on top, panel below; fixed-height panel */
@media (max-width: 720px) {
  .services-split {
    grid-template-columns: 1fr;
  }
  .svc-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .svc-list li + li .svc-item { border-top: 0; }
  .svc-list li .svc-item {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  .svc-list li:nth-child(3n) .svc-item { border-right: 0; }
  .svc-list li:nth-child(-n+3) .svc-item { border-top: 0; }
  .svc-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 12px;
    text-align: left;
  }
  .svc-item.active { padding-left: 12px; }
  .svc-arrow { display: none; }
  .svc-title { font-size: 14px; line-height: 1.25; }
  .svc-panel {
    padding: 24px 0 24px 0;
    min-height: 320px;
  }
  .svc-card { inset: 24px 0 24px 0; gap: 16px; }
  .svc-card-list { grid-template-columns: 1fr; }
}

/* ============================================
   PROCESS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.step {
  background: var(--bg);
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background .3s;
}
.step:hover { background: rgba(201, 162, 74, 0.04); }
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
}
.step-rule {
  width: 32px;
  height: 1px;
  background: var(--line-strong);
}
.step-title { font-weight: 400; }
.step-d {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ============================================
   INDUSTRIES
   ============================================ */
.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.chip {
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 14px;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  transition: all .25s ease;
  cursor: default;
}
.chip:hover {
  border-color: var(--accent);
  background: rgba(201, 162, 74, 0.08);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================
   PRICING
   ============================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  position: relative;
  padding: 36px 32px 36px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all .3s;
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
}
.tier:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.tier.popular {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.08), rgba(201, 162, 74, 0.01));
  box-shadow: 0 30px 60px -30px rgba(201, 162, 74, 0.3);
}
.tier-badge {
  position: absolute;
  top: -12px; left: 32px;
  padding: 6px 12px;
  background: var(--gold-shine);
  background-size: 200% 200%;
  color: var(--navy-950);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  animation: goldShimmer 6s ease-in-out infinite;
}
.tier-name { font-weight: 400; }
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.tier-currency { font-family: var(--font-display); font-size: 32px; color: var(--accent); }
.tier-amount { font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--fg); }
.tier-tag { font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); letter-spacing: 0.08em; }
.tier-blurb { color: var(--fg-dim); font-size: 14.5px; line-height: 1.55; }
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.tier-features li { display: flex; gap: 12px; font-size: 14px; line-height: 1.5; }
.tier-features .check { color: var(--accent); font-size: 8px; line-height: 22px; }
.tier .btn { align-self: stretch; justify-content: center; margin-top: 8px; }

.pricing-foot {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

/* ============================================
   FOUNDER
   ============================================ */
.founder { background: rgba(0,0,0,.18); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.founder-mark img {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(201,162,74,.3));
}
.founder-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  font-style: italic;
  font-weight: 400;
  text-wrap: pretty;
  position: relative;
  max-width: 60ch;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0;
  vertical-align: -0.2em;
  margin-right: 4px;
}
.founder { padding: clamp(64px, 9vw, 110px) 0; }
.founder-by { margin-top: -12px; }
.founder-name { font-family: var(--font-display); font-size: 22px; }
.founder-role { font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, var(--bg), var(--bg) 60%, rgba(201,162,74,.06));
}
.cta-rays {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(201, 162, 74, 0.18), transparent 70%),
    conic-gradient(from 220deg at 50% 130%, transparent 0deg, rgba(201,162,74,.08) 30deg, transparent 60deg, rgba(201,162,74,.06) 90deg, transparent 120deg);
  pointer-events: none;
}
.final-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.final-headline {
  margin: 12px 0 8px;
  text-wrap: pretty;
}
.final-sub {
  max-width: 56ch;
  font-size: 18px;
  color: var(--fg-dim);
  line-height: 1.55;
  margin-bottom: 16px;
}
.final-inner .hero-actions { justify-content: center; }
.cta-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  text-align: left;
}
.cta-meta div div { font-size: 15px; margin-top: 4px; }
@media (max-width: 760px) { .cta-meta { grid-template-columns: 1fr; gap: 16px; } }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--navy-950);
}
[data-theme="cream"] .footer { background: #ece4cf; }
[data-theme="black"] .footer { background: #050811; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img { height: 48px; width: auto; }
.footer-tag { margin-top: 4px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols div { display: flex; flex-direction: column; gap: 8px; }
.footer-cols .eyebrow-dim { margin-bottom: 8px; }
.footer-cols a { font-size: 14px; color: var(--fg-dim); transition: color .2s; }
.footer-cols a:hover { color: var(--accent); }
.footer-bar {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* Skip style/layout for below-fold sections until near viewport */
.manifesto,
.services,
.process,
.pricing,
.founder,
.final-cta,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
