:root {
  --bg:          #0A0F1C;
  --bg-2:        #0C1322;
  --surface:     #101A2E;
  --surface-2:   #15223C;
  --border:      rgba(148, 163, 184, 0.14);
  --border-2:    rgba(148, 163, 184, 0.26);
  --text:        #E8EDF7;
  --text-dim:    #9DAAC1;
  --text-faint:  #6A7896;

  --accent:      #4FE3C1;              /* tweakable */
  --accent-ink:  #04140F;             /* text on accent */
  --accent-soft: color-mix(in srgb, var(--accent) 14%, transparent);
  --accent-line: color-mix(in srgb, var(--accent) 32%, transparent);

  --pass: #46D39A;
  --warn: #F5B544;
  --fail: #F4685F;

  --font-head: "IBM Plex Sans", system-ui, sans-serif;  /* tweakable */
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

#root { isolation: isolate; }

/* Background texture layer */
.page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}
.page[data-grid="on"]::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(148,163,184,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148,163,184,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 35%, transparent 80%);
}
.page > * { position: relative; z-index: 1; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 116px 0; }
.section--tight { padding: 84px 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }

.section-head { max-width: 720px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 18px 0 0;
}
.section-head p {
  color: var(--text-dim);
  font-size: 18px;
  margin-top: 18px;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 9px;
  padding: 15px 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .14s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 1px var(--accent-line), 0 14px 34px -16px var(--accent);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 0 0 1px var(--accent-line), 0 18px 40px -14px var(--accent); }
.btn-ghost {
  background: rgba(255,255,255,0.015);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); transform: translateY(-1px); }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.brand-mark {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  overflow: hidden;
}
.brand-mark img { display: block; width: 180%; height: 180%; object-fit: contain; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 17px; letter-spacing: -0.02em; }
.brand-name .sub { color: var(--text-faint); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav .btn { padding: 11px 18px; font-size: 14.5px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ---------- Hero (shared) ---------- */
.hero { padding-top: clamp(48px, 6vh, 72px); padding-bottom: 92px; position: relative; }
.hero::after {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  width: 900px; height: 540px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, var(--accent-soft), transparent 68%);
  pointer-events: none;
  z-index: -1;
  opacity: .8;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 66px);
  letter-spacing: -0.035em;
}
.hero h1 .accent { color: var(--accent); }
.nowrap { white-space: nowrap; }
.hero-sub {
  color: var(--text-dim);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  margin-top: 26px;
  max-width: 560px;
  text-wrap: pretty;
}
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

.trust-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
  flex-wrap: wrap;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.trust-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-faint); }
.trust-strip b { color: var(--text-dim); font-weight: 500; }

/* layout: split */
.hero-split .container { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); gap: 56px; align-items: center; }
/* layout: centered */
.hero-centered { text-align: center; }
.hero-centered .container { display: block; max-width: 920px; }
.hero-centered h1 { margin: 22px auto 0; max-width: 14ch; }
.hero-centered .hero-sub { margin-left: auto; margin-right: auto; max-width: 600px; }
.hero-centered .hero-cta { justify-content: center; }
.hero-centered .trust-strip { justify-content: center; }
.hero-centered .scorecard-wrap { margin: 56px auto 0; max-width: 760px; }
/* layout: editorial */
.hero-editorial .container { display: grid; grid-template-columns: 1fr; gap: 56px; }
.hero-editorial .hero-copy { max-width: 880px; }
.hero-editorial h1 { font-size: clamp(40px, 6vw, 74px); }
.hero-editorial .hero-sub { max-width: 620px; font-size: 22px; }
.hero-editorial .scorecard-wrap { margin-top: 8px; }
.hero-editorial .ed-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end; }

@media (max-width: 1040px) {
  .hero-split .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-editorial .ed-grid { grid-template-columns: 1fr; }
}

/* ---------- Scorecard visual ---------- */
.scorecard-wrap { display: grid; gap: 10px; }
.scorecard-caption {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.scorecard {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02);
}
.sc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.014);
}
.sc-title { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); display: flex; align-items: center; gap: 9px; }
.sc-title .live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.5;} 50%{opacity:1;} }
.sc-dots { display: flex; gap: 6px; }
.sc-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-2); display: inline-block; }
.sc-rows { padding: 8px 0; }
.sc-row {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 20px;
  font-family: var(--font-mono);
  font-size: 13.5px;
}
.sc-row .idx { color: var(--text-faint); font-size: 11px; }
.sc-row .label { color: var(--text); letter-spacing: -0.01em; }
.sc-pill {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 5px;
}
.sc-pill.verified { color: var(--pass); background: color-mix(in srgb, var(--pass) 14%, transparent); }
.sc-pill.improve { color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, transparent); }
.sc-pill.high { color: var(--warn); background: color-mix(in srgb, var(--warn) 14%, transparent); }
.sc-pill.critical { color: var(--fail); background: color-mix(in srgb, var(--fail) 16%, transparent); }
.sc-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.014);
}
.sc-score {
  display: grid;
  grid-template-columns: auto minmax(210px, 1fr);
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}
.sc-score .num { font-family: var(--font-head); font-size: 34px; font-weight: 600; letter-spacing: -0.03em; }
.sc-score .num { white-space: nowrap; }
.sc-score .num .tot { color: var(--text-faint); font-size: 18px; }
.sc-score .findings { font-family: var(--font-mono); font-size: 11.25px; color: var(--fail); letter-spacing: 0.02em; white-space: nowrap; }
.sc-foot .deliver { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); text-align: right; line-height: 1.5; }
.sc-bar { height: 4px; background: var(--surface-2); position: relative; }
.sc-bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 100%; background: linear-gradient(90deg, var(--fail) 0 22%, var(--warn) 22% 65%, var(--accent) 65%); }

@media (max-width: 1150px) and (min-width: 901px) {
  .sc-foot { grid-template-columns: 1fr; gap: 8px; }
  .sc-foot .deliver { text-align: left; }
}

@media (max-width: 520px) {
  .sc-score {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .sc-score .findings { width: max-content; max-width: 100%; }
}

.report-card {
  background:
    radial-gradient(ellipse 90% 85% at 50% 0%, rgba(79,227,193,0.08), transparent 62%),
    linear-gradient(180deg, rgba(16,26,46,0.94), rgba(7,13,25,0.96));
  border-color: rgba(148, 163, 184, 0.28);
  border-radius: 18px;
  box-shadow: 0 40px 88px -42px rgba(0,0,0,0.78), inset 0 0 0 1px rgba(255,255,255,0.025);
}
.report-card .sc-head {
  padding: 18px 26px 15px;
  border-bottom-color: rgba(148, 163, 184, 0.22);
  background: transparent;
}
.report-card .sc-title {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--text);
}
.report-card .sc-title .live {
  width: 9px;
  height: 9px;
}
.report-body {
  display: grid;
  gap: 15px;
  padding: 18px 26px 0;
}
.report-section h3 {
  color: var(--accent);
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}
.report-section p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.48;
  text-wrap: pretty;
}
.finding-list {
  display: grid;
  gap: 0;
}
.finding {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 54px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.13);
}
.finding:first-child { padding-top: 4px; }
.finding:last-child { border-bottom: none; padding-bottom: 0; }
.finding-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.045);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.14);
}
.finding-icon svg { width: 22px; height: 22px; }
.finding-critical .finding-icon { color: var(--fail); }
.finding-high .finding-icon { color: var(--warn); }
.finding-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.finding-copy b {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}
.finding-copy small {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.35;
}
.finding .sc-pill {
  min-width: 78px;
  text-align: center;
  padding: 7px 9px;
  font-size: 10.5px;
  border-radius: 6px;
}
.sequence {
  display: grid;
  grid-template-columns: minmax(74px, 1fr) minmax(36px, 0.8fr) minmax(92px, 1fr) minmax(36px, 0.8fr) minmax(92px, 1fr);
  align-items: start;
  gap: 10px;
  padding-top: 2px;
}
.sequence i {
  height: 1px;
  margin-top: 19px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.seq-step {
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}
.seq-step span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  background: radial-gradient(circle at 50% 35%, rgba(79,227,193,0.18), rgba(16,26,46,0.92) 64%);
  box-shadow: inset 0 0 0 1px var(--accent), 0 0 0 4px rgba(79,227,193,0.08);
}
.seq-step small {
  color: var(--text);
  font-size: 12px;
  line-height: 1.28;
  max-width: 12ch;
}
.report-foot {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px 26px 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--text-dim);
  font-size: 13.5px;
}
.report-foot span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.report-foot svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--accent);
}

@media (max-width: 700px) and (min-width: 561px) {
  .report-card .sc-head { padding: 20px 24px 16px; }
  .report-body { padding: 20px 24px 0; gap: 18px; }
  .finding { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; }
  .finding .sc-pill {
    grid-column: 2;
    justify-self: start;
    min-width: 76px;
    padding: 6px 9px;
  }
  .report-foot { padding: 18px 24px 20px; }
}

@media (max-width: 900px) {
  .scorecard-wrap {
    max-width: 680px;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .scorecard-caption {
    font-size: 10.5px;
    letter-spacing: 0.1em;
  }
  .report-card .sc-head {
    padding: 18px 18px 15px;
  }
  .report-card .sc-title {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .report-body {
    padding: 18px 18px 0;
    gap: 18px;
  }
  .report-section h3 {
    font-size: 16px;
  }
  .report-section p {
    font-size: 14px;
  }
  .finding {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    min-height: 0;
    padding: 12px 0;
  }
  .finding-icon {
    width: 32px;
    height: 32px;
  }
  .finding-icon svg {
    width: 20px;
    height: 20px;
  }
  .finding-copy b {
    font-size: 14px;
  }
  .finding-copy small {
    font-size: 12px;
  }
  .finding .sc-pill {
    grid-column: 2;
    justify-self: start;
    min-width: 74px;
    padding: 5px 8px;
    font-size: 10px;
  }
  .sequence {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sequence i {
    width: 1px;
    height: 18px;
    margin: -2px auto;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
  }
  .seq-step {
    grid-template-columns: 40px 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
  }
  .seq-step span {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  .seq-step small {
    max-width: none;
    font-size: 13px;
  }
  .report-foot {
    padding: 18px;
    font-size: 13px;
  }
  .report-foot span {
    align-items: flex-start;
  }
}

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.pain {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color .2s ease, transform .2s ease;
}
.pain:hover { border-color: var(--border-2); transform: translateY(-3px); }
.pain .pnum { font-family: var(--font-mono); font-size: 18px; color: var(--fail); letter-spacing: 0.1em; }
.pain h3 { font-size: 21px; margin: 16px 0 10px; letter-spacing: -0.02em; }
.pain p { color: var(--text-dim); font-size: 15.5px; line-height: 1.6; }
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; } }

/* ---------- Is Keycloak right ---------- */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.cmp {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  border-top: 2px solid var(--accent-line);
  transition: border-color .2s ease, transform .2s ease;
}
.cmp:hover { border-color: var(--border-2); border-top-color: var(--accent); transform: translateY(-3px); }
.cmp-vs { font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--accent); }
.cmp p { color: var(--text-dim); font-size: 16px; line-height: 1.62; margin-top: 14px; text-wrap: pretty; }
.why-closer {
  margin-top: 36px;
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.6;
  text-wrap: pretty;
  padding-left: 20px;
  border-left: 2px solid var(--accent-line);
}
.why-closer b { color: var(--text); font-weight: 600; }
@media (max-width: 860px) { .compare { grid-template-columns: 1fr; } }

/* ---------- Services ladder ---------- */
.founding {
  display: flex; align-items: center; gap: 18px;
  margin-top: 40px;
  padding: 18px 24px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}
.founding-badge {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent);
  padding: 6px 12px; border-radius: 6px;
}
.founding p { color: var(--text-dim); font-size: 15px; line-height: 1.55; }
.founding p b { color: var(--accent); font-weight: 600; }
.founding-limit { color: var(--text); font-weight: 500; }
@media (max-width: 640px) { .founding { flex-direction: column; align-items: flex-start; gap: 12px; } }

.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; align-items: stretch; }
.svc { padding: 28px 24px 30px; }

/* Tier A — dominant lead card */
.svc--lead {
  display: block;
  padding: 0;
  margin-top: 28px;
  overflow: hidden;
  border-color: var(--accent-line);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, var(--surface)), var(--surface));
  box-shadow: 0 36px 84px -46px var(--accent);
}
.svc--lead:hover { transform: none; border-color: var(--accent); }
.lead-ribbon {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 40px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lead-ribbon svg { width: 14px; height: 14px; flex: 0 0 auto; }
.lead-body {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
}
.lead-main { padding: 42px 40px; }
.lead-side {
  padding: 42px 38px;
  border-left: 1px solid var(--border);
  background: rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
}
.svc--lead .svc-step { color: var(--text-dim); }
.svc--lead h3 { font-size: 31px; margin: 16px 0 6px; }
.svc--lead .svc-price { font-size: 27px; margin: 10px 0 4px; }
.svc--lead .svc-line { font-size: 16px; margin: 8px 0 16px; }
.svc--lead p.desc { font-size: 16px; line-height: 1.62; max-width: 58ch; }
.svc--lead ul { margin: 0 0 24px; }
.svc--lead li { font-size: 15px; }
.svc--lead .svc-foot { margin-top: auto; border-top: none; padding-top: 0; }
.svc--lead .svc-meta { font-size: 12.5px; margin-bottom: 4px; }
.svc--lead .btn-primary { padding: 14px 22px; font-size: 15px; }
@media (max-width: 760px) {
  .lead-body { grid-template-columns: 1fr; }
  .lead-side { border-left: none; border-top: 1px solid var(--border); }
  .lead-main { padding: 34px 28px; }
  .lead-side { padding: 28px; }
  .lead-ribbon { padding: 10px 28px; letter-spacing: 0.08em; }
}

/* Tier B — secondary pair */
.tier-sub {
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-faint);
  margin: 44px 0 20px;
  display: flex; align-items: center; gap: 16px;
}
.tier-sub::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.tier-b { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tier-b .svc { padding: 32px 30px; }
.tier-b .svc p.desc { font-size: 15px; line-height: 1.6; }
.tier-b .svc li { font-size: 14.5px; }
.svc-support {
  margin-top: 26px;
  text-align: center;
  font-size: 15px;
  color: var(--text-dim);
  text-wrap: pretty;
}
.svc-support b { color: var(--text); font-weight: 600; }
@media (max-width: 760px) { .tier-b { grid-template-columns: 1fr; } }
.svc-price { font-family: var(--font-head); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--text); margin: 12px 0 4px; white-space: nowrap; }
.svc-price-note { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.02em; color: var(--accent); margin-left: 10px; white-space: nowrap; }
.svc.featured .svc-price-note { color: var(--accent); }
.svc:hover { border-color: var(--border-2); transform: translateY(-3px); }
.svc.featured {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 7%, var(--surface)), var(--surface));
  box-shadow: 0 30px 70px -44px var(--accent);
}
.svc-tag {
  position: absolute; top: -11px; left: 28px;
  white-space: nowrap;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent);
  padding: 4px 11px; border-radius: 20px;
}
.svc-tag.alt {
  background: var(--surface-2);
  color: var(--text-dim);
  box-shadow: inset 0 0 0 1px var(--border-2);
}
.svc-step { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); letter-spacing: 0.08em; }
.svc h3 { font-size: 21px; margin: 14px 0 2px; }
.svc .svc-line { color: var(--accent); font-weight: 500; font-size: 14.5px; margin: 6px 0 14px; }
.svc.featured .svc-line { color: var(--accent); }
.svc p.desc { color: var(--text-dim); font-size: 14px; line-height: 1.58; }
.svc ul { list-style: none; margin: 18px 0 22px; display: grid; gap: 10px; }
.svc li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-dim); }
.svc li svg { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 3px; color: var(--accent); }
.check { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; color: var(--accent); font-weight: 700; line-height: 1; }
.svc-foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.svc-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); letter-spacing: 0.02em; }
.svc-meta-primary { display: block; color: var(--text-dim); margin-bottom: 7px; }
.svc .btn { padding: 11px 16px; font-size: 13.5px; justify-content: center; }
@media (max-width: 1080px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } .svc.featured { order: -1; } }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.step { padding: 38px 34px; border-right: 1px solid var(--border); position: relative; }
.step:last-child { border-right: none; }
.step .snum { font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: 0.1em; }
.step h3 { font-size: 24px; margin: 18px 0 12px; }
.step p { color: var(--text-dim); font-size: 15.5px; line-height: 1.62; }
@media (max-width: 860px) { .process { grid-template-columns: 1fr; } .step { border-right: none; border-bottom: 1px solid var(--border); } .step:last-child { border-bottom: none; } }

/* ---------- Approach / credibility ---------- */
.approach .container { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr); gap: 64px; align-items: center; }
.approach-copy h2 { font-size: clamp(38px, 5vw, 42px); margin-top: 44px; }
.approach-copy p { color: var(--text-dim); font-size: 18px; margin-top: 38px; text-wrap: pretty; line-height: 1.68; max-width: 58ch; }
.approach-copy p + p { margin-top: 44px; }
.creds { display: grid; gap: 14px; }
.profile-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(0, 1fr);
  min-height: 300px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 120% at 26% 20%, rgba(79,227,193,0.08), transparent 62%),
    linear-gradient(135deg, rgba(21,34,60,0.92), rgba(10,15,28,0.96));
  border: 1px solid var(--border-2);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 26px 70px -48px rgba(0,0,0,0.8);
}
.profile-photo {
  min-height: 300px;
  background: rgba(255,255,255,0.018);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}
.profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 32px;
}
.profile-name-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.profile-copy h3 {
  font-size: 27px;
  letter-spacing: -0.02em;
}
.profile-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .15s ease;
}
.profile-linkedin:hover,
.profile-linkedin:focus-visible { color: var(--accent); }
.profile-linkedin svg { width: 15px; height: 15px; fill: currentColor; }
.profile-copy span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-top: 8px;
}
.profile-copy i {
  width: 58px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0 24px;
}
.profile-copy p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.55;
}
.profile-shield {
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-top: 18px;
}
.cred {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 88%, transparent), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 24px 26px;
  display: flex; gap: 22px; align-items: flex-start;
}
.cred svg { flex: 0 0 auto; width: 34px; height: 34px; color: var(--accent); margin-top: 2px; }
.cred .ct { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
.cred .cv { font-size: 16px; color: var(--text); margin-top: 8px; line-height: 1.5; }
.cred .cv b { font-weight: 600; }
.ghlink {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  font-size: 15px; font-weight: 500;
  color: var(--accent); text-decoration: none;
  padding: 13px 18px;
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px var(--accent-line);
  background: var(--accent-soft);
  transition: background .18s ease, transform .14s ease;
  text-wrap: pretty;
}
.ghlink:hover { background: color-mix(in srgb, var(--accent) 18%, transparent); transform: translateY(-1px); }
.ghlink svg { flex: 0 0 auto; width: 19px; height: 19px; }
.ghlink .arr { transition: transform .18s ease; }
.ghlink:hover .arr { transform: translateX(3px); }
@media (max-width: 1060px) {
  .approach .container { grid-template-columns: 1fr; gap: 44px; }
  .approach-copy h2 { max-width: 13ch; }
}

@media (max-width: 640px) {
  .approach-copy h2 { font-size: clamp(34px, 10vw, 44px); margin-top: 30px; max-width: 12ch; }
  .approach-copy p { font-size: 16px; line-height: 1.65; margin-top: 28px; }
  .approach-copy p + p { margin-top: 34px; }
  .profile-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .profile-photo {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
  }
  .profile-photo img {
    object-position: center;
  }
  .profile-copy {
    padding: 26px 24px 28px;
  }
  .profile-copy h3 {
    font-size: 25px;
  }
  .profile-copy p {
    font-size: 15px;
  }
  .cred {
    padding: 22px 20px;
    gap: 16px;
  }
  .cred svg {
    width: 28px;
    height: 28px;
  }
  .cred .cv {
    font-size: 15px;
  }
}

/* ---------- Lead magnet ---------- */
.magnet { }
.magnet-card {
  background:
    radial-gradient(ellipse 70% 120% at 100% 0%, var(--accent-soft), transparent 60%),
    var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.magnet-card .eyebrow { color: var(--accent); }
.magnet-card h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 16px 0 14px; }
.magnet-card p { color: var(--text-dim); font-size: 17px; max-width: 46ch; }
.magnet-form { display: grid; gap: 12px; }
.magnet-form .row { display: flex; gap: 10px; }
.magnet-form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 9px;
  padding: 15px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.magnet-form input::placeholder { color: var(--text-faint); }
.magnet-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.magnet-form .note { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); letter-spacing: 0.02em; }
.magnet-form .ok { color: var(--pass); font-size: 14px; font-family: var(--font-mono); }
.checklist-peek { display: grid; gap: 9px; }
.checklist-peek .cp {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-mono); font-size: 13px; color: var(--text-dim);
  padding: 11px 14px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--border); border-radius: 8px;
}
.checklist-peek .cp svg { width: 15px; height: 15px; color: var(--accent); flex: 0 0 auto; }
.checklist-peek .cp .check { width: 15px; height: 15px; margin-top: 0; }
.checklist-peek .more { color: var(--text-faint); font-family: var(--font-mono); font-size: 12px; padding-left: 4px; }
@media (max-width: 860px) { .magnet-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 36px; } .checklist-peek { display: none; } }
@media (max-width: 640px) {
  .magnet-form .row { flex-direction: column; }
  .magnet-form input,
  .magnet-form .btn { width: 100%; }
  .magnet-form .btn { justify-content: center; white-space: normal; }
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; margin-top: 48px; border-top: 1px solid var(--border); }
.qa { border-bottom: 1px solid var(--border); }
.qa button {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; text-align: left;
  color: var(--text); font-family: var(--font-head); font-size: 19px; font-weight: 500; letter-spacing: -0.01em;
}
.qa .q-ico { flex: 0 0 auto; width: 22px; height: 22px; color: var(--accent); transition: transform .22s ease; }
.qa[data-open="true"] .q-ico { transform: rotate(45deg); }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.qa[data-open="true"] .ans { max-height: 640px; }
.qa .ans p { color: var(--text-dim); font-size: 16px; padding: 0 40px 28px 4px; line-height: 1.62; }

/* ---------- Final CTA ---------- */
.final { text-align: center; }
.final-card {
  border: 1px solid var(--border-2);
  border-radius: 22px;
  padding: 72px 40px;
  background:
    radial-gradient(ellipse 80% 140% at 50% 0%, var(--accent-soft), transparent 62%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  position: relative;
  overflow: hidden;
}
.final-card .eyebrow { justify-content: center; }
.final-card h2 { font-size: clamp(32px, 4.6vw, 54px); margin: 20px auto 0; max-width: 23ch; }
.final-card p { color: var(--text-dim); font-size: 19px; margin: 20px auto 0; max-width: 63ch; }
.final-card .hero-cta { justify-content: center; margin-top: 36px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 48px 0 56px; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .brand { margin-bottom: 14px; }
.footer-tag { color: var(--text-faint); font-size: 14px; max-width: 34ch; line-height: 1.6; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); font-weight: 500; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; font-size: 14.5px; margin-bottom: 9px; transition: color .15s ease; }
.footer-col a:hover { color: var(--text); }
.footer-base { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-faint); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.03em; }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .sc-title .live { animation: none; }
}
