/* =========================================================================
   NewBuild Telecom Consulting — Snapshot Request
   Editorial restraint. Navy + electric blue. Set in Inter & JetBrains Mono.
   ========================================================================= */

:root {
  /* Brand */
  --navy:           #1B2646;        /* primary dark, from deck */
  --navy-deep:      #0F1B36;
  --navy-soft:      #2B3760;
  --blue:           #089CFC;        /* electric accent, from deck */
  --blue-hi:        #3DB4FF;
  --blue-glow:      rgba(8, 156, 252, 0.18);

  /* Paper */
  --paper:          #FBF8F0;        /* base background */
  --paper-warm:     #F6F2E8;        /* cards / panels */
  --paper-deep:     #ECE5D0;        /* hover surface */

  /* Ink */
  --ink:            #0F1B36;
  --ink-soft:       #3A4566;
  --ink-mute:       #6B7280;
  --ink-light:      #B6BDCB;        /* on dark, secondary text */

  /* Rules */
  --rule:           #D8D2BD;
  --rule-soft:      #E6E0CC;
  --rule-dark:      rgba(255, 255, 255, 0.08);

  --error:          #C7402E;

  --max:            1240px;
  --gutter:         48px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Type primitives ------------------------------------------- */

.mono,
.mono-label {
  font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.mono-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
}
.mono-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--blue);
  flex: 0 0 auto;
}
.mono-label--plain::before { display: none; }

/* ---------- Header ---------------------------------------------------- */

.deck-top {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.deck-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 92% 38%, var(--blue-glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.deck-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  background-position: -1px -1px;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

.deck-top > * { position: relative; z-index: 1; }

.deck-strap {
  border-bottom: 1px solid var(--rule-dark);
  padding: 22px 0;
}
.deck-strap .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
}
.brand-logo {
  height: 28px;
  width: auto;
}
.brand-mark {
  display: none; /* fallback if image fails */
}

.strap-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: right;
  line-height: 1.7;
}
.strap-meta .dim { color: rgba(255,255,255,0.4); }
.strap-meta .accent { color: var(--blue-hi); }

/* ---------- Hero ------------------------------------------------------ */

.hero {
  padding: 88px 0 112px;
}
.hero-eyebrow { margin-bottom: 28px; }

.hero h1 {
  font-size: clamp(48px, 7.8vw, 116px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.96;
  max-width: 12ch;
  margin: 0 0 28px;
}
.hero h1 .accent {
  color: var(--blue-hi);
}
.hero-sub {
  font-size: clamp(17px, 1.45vw, 20px);
  color: var(--ink-light);
  max-width: 56ch;
  line-height: 1.55;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--rule-dark);
}
.hero-fact {
  padding: 24px 28px 8px 0;
  border-right: 1px solid var(--rule-dark);
}
.hero-fact:last-child { border-right: none; }
.hero-fact .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.hero-fact .v {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero-fact .v .blue { color: var(--blue-hi); }

/* footer marker like a slide page count */
.deck-footmark {
  border-top: 1px solid var(--rule-dark);
  padding: 20px 0 24px;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---------- Form body ------------------------------------------------- */

main.work {
  padding: 0 0 120px;
  background: var(--paper);
}

.snapshot-form {
  display: flex;
  flex-direction: column;
}

.form-block {
  border-top: 1px solid var(--rule);
  padding: 80px 0;
}
.form-block:first-child { border-top: none; padding-top: 96px; }

.block-head {
  display: grid;
  grid-template-columns: 88px 1fr;
  column-gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

.block-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--blue);
  font-weight: 500;
  padding-top: 14px;
  position: relative;
}
.block-num::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--blue);
  margin-top: 16px;
}

.block-head h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 14px;
  max-width: 18ch;
}
.block-head .lede {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
  max-width: 58ch;
}

.block-body {
  margin-left: 120px;
}

/* ---------- Step 01: count + recap ----------------------------------- */

.count-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px dashed var(--rule);
  margin-bottom: 40px;
}

.field.qty {
  position: relative;
}
.qty-stepper {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: stretch;
  border: 1.5px solid var(--ink);
  background: white;
  height: 88px;
}
.qty-btn {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--ink);
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.12s ease;
  user-select: none;
  padding: 0;
  line-height: 1;
}
.qty-btn:hover { background: var(--blue); }
.qty-btn:active { background: var(--blue-hi); }
.qty-btn:disabled {
  background: var(--ink-mute);
  cursor: not-allowed;
  opacity: 0.5;
}
.field.qty input {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  /* hide native spinners */
  -moz-appearance: textfield;
  appearance: textfield;
}
.field.qty input::-webkit-outer-spin-button,
.field.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.field.qty input:focus { outline: none; }
.field.qty .qty-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.field.qty .qty-label::after {
  content: '— TAP +/− TO CHANGE';
  color: var(--blue);
  font-weight: 500;
}
.field.qty .qty-cap {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 14px;
  text-align: center;
}
.field.qty .qty-cap strong { color: var(--ink); font-weight: 600; }

.recap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.recap {
  border: 1px solid var(--rule);
  background: var(--paper-warm);
  padding: 22px 24px 24px;
  position: relative;
}
.recap::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 28px;
  background: var(--blue);
}
.recap .mono-label {
  margin-bottom: 16px;
}
.recap .mono-label::before { display: none; }
.recap-price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 2px;
}
.recap-price .unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0;
}
.recap-name {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.recap-delivery {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.recap-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.credit-note {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--blue);
  background: rgba(8, 156, 252, 0.05);
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.credit-note .mono-label {
  margin-right: 8px;
  margin-bottom: 0;
  color: var(--blue);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  vertical-align: 1px;
}
.credit-note .mono-label::before { display: none; }

/* ---------- Step 02: site blocks ------------------------------------- */

.sites-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-block {
  background: white;
  border: 1px solid var(--rule);
  border-top: none;
  padding: 0;
  transition: border-color 0.15s ease;
}
.site-block:first-child {
  border-top: 1px solid var(--rule);
}
.site-block:has(input[type="radio"]:checked) {
  /* highlight not necessary at block level; toggle handles it */
}

.site-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
}
.site-head .site-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.site-head .site-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ink);
  font-weight: 700;
}
.site-head .site-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
}
.site-head .site-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.site-body {
  padding: 28px 28px 32px;
}

.service-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.service-toggle label {
  cursor: pointer;
  position: relative;
  display: block;
}
.service-toggle input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.service-toggle-content {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  transition: all 0.15s ease;
}
.service-toggle-content::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--ink-mute);
  border-radius: 50%;
  flex: 0 0 auto;
  margin-right: 4px;
  margin-top: 4px;
}
.service-toggle label:hover .service-toggle-content {
  border-color: var(--navy-soft);
  background: white;
}
.service-toggle input:checked + .service-toggle-content {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 1px var(--blue);
}
.service-toggle input:checked + .service-toggle-content::before {
  border-color: var(--blue);
  background:
    radial-gradient(circle at center, var(--blue) 0 40%, white 42%);
}
.service-toggle-content .svc-text {
  flex: 1;
}
.service-toggle-content .svc-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.service-toggle-content .svc-detail {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.service-toggle input:checked + .service-toggle-content .svc-detail {
  color: var(--blue);
}
.service-toggle-content .svc-price {
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* fields */
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}
.field-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.field-optional, .field-required {
  margin-left: 6px;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.field-optional { color: var(--ink-mute); opacity: 0.7; }
.field-required { color: var(--blue); }

.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 16px;
  padding: 11px 0;
  border: none;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.15s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-mute);
  opacity: 0.6;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--blue);
}
.field textarea { resize: vertical; min-height: 64px; padding-top: 12px; }
.field input.error, .field textarea.error {
  border-bottom-color: var(--error);
  background: rgba(199, 64, 46, 0.04);
}

/* contact block uses a denser field grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  row-gap: 28px;
}

/* ---------- Order summary -------------------------------------------- */

.ticket-wrap {
  margin-top: 24px;
  border: 1px solid var(--rule);
  background: white;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
}

.ticket-left {
  padding: 36px 40px 36px;
  border-right: 1px dashed var(--rule);
}
.ticket-left .mono-label { margin-bottom: 18px; }

.ticket-doc {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  column-gap: 16px;
  row-gap: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.ticket-doc .ticket-line {
  display: contents;
}
.ticket-doc .ticket-qty {
  color: var(--ink-mute);
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
}
.ticket-doc .ticket-name {
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
  font-weight: 500;
}
.ticket-doc .ticket-amt {
  padding: 10px 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px dashed var(--rule);
}
.ticket-doc .ticket-line:last-child .ticket-qty,
.ticket-doc .ticket-line:last-child .ticket-name,
.ticket-doc .ticket-line:last-child .ticket-amt {
  border-bottom: none;
}

.ticket-total {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-top: 1.5px solid var(--ink);
  padding-top: 18px;
}
.ticket-total .t-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.ticket-total .t-val {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.ticket-delivery {
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.ticket-right {
  padding: 36px 40px;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.ticket-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 100% 20%, var(--blue-glow), transparent 65%);
  pointer-events: none;
}
.ticket-right > * { position: relative; }

.ticket-right .mono-label {
  color: var(--blue-hi);
  margin-bottom: 14px;
}
.ticket-right .mono-label::before { background: var(--blue-hi); }

.ticket-right h3 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.btn-primary {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--navy);
  background: white;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn-primary .btn-amt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.btn-primary .btn-arrow {
  font-size: 18px;
  margin-left: -4px;
}
.btn-primary:hover {
  background: var(--blue);
  color: white;
}
.btn-primary:active { transform: translateY(1px); }
.btn-primary:disabled {
  background: rgba(255,255,255,0.6);
  color: var(--ink-mute);
  cursor: not-allowed;
}

.ticket-fineprint {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}
.ticket-fineprint strong { color: white; font-weight: 600; }

/* error banner */
.error-banner {
  margin: 16px 0 0;
  border: 1px solid var(--error);
  border-left: 4px solid var(--error);
  background: rgba(199, 64, 46, 0.06);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--error);
  font-weight: 500;
}

/* ---------- Footer --------------------------------------------------- */

.site-footer {
  background: var(--navy);
  color: white;
  padding: 56px 0 40px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}
.site-footer > * { position: relative; }
.site-footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule-dark);
}
.site-footer .brand-logo { height: 26px; }
.site-footer .foot-tag {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 36ch;
}
.foot-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  font-weight: 500;
}
.foot-col a, .foot-col div { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; line-height: 1.9; }
.foot-col a:hover { color: var(--blue-hi); }

.foot-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* =========================================================================
   PRACTICE STRIP — what we do, scope split, service ladder
   ========================================================================= */

.practice-strip {
  background: var(--paper);
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--rule);
}

.practice-head { max-width: 920px; margin-bottom: 64px; }
.practice-eyebrow { margin-bottom: 24px; }
.mono-label--mute { color: var(--ink-mute); }
.mono-label--mute::before { background: var(--ink-mute); }

.practice-h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 24px;
  color: var(--ink);
}
.practice-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 68ch;
}
.practice-sub strong { color: var(--ink); font-weight: 700; }

.scope-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
.scope-col {
  padding: 28px 32px 32px 0;
  border-right: 1px solid var(--rule);
}
.scope-col:last-child { border-right: none; padding-left: 32px; padding-right: 0; }
.scope-split.scope-single { grid-template-columns: 1fr; }
.scope-split.scope-single .scope-col { padding: 28px 0 32px; border-right: none; }
.scope-split.scope-single .scope-list {
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
}
.scope-head { margin-bottom: 18px; }
.scope-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.scope-list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 0;
  border-top: 1px dashed var(--rule);
  display: flex;
  align-items: center;
  gap: 14px;
}
.scope-list li:first-child { border-top: none; }
.scope-do li::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  background: var(--blue);
  flex: 0 0 auto;
}
.scope-dont li {
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: var(--ink-mute);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.scope-dont li::before {
  content: '';
  display: block;
  width: 8px; height: 1.5px;
  background: var(--ink-mute);
  flex: 0 0 auto;
}

/* SERVICE LADDER --------------------------------------------------------- */

.ladder { }
.ladder-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 12px;
  margin-bottom: 0;
}
.ladder-here {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}
.ladder-rows {
  list-style: none;
}
.ladder-row {
  display: grid;
  grid-template-columns: 48px 1fr 160px 140px 140px;
  align-items: center;
  gap: 24px;
  padding: 22px 0 22px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.ladder-row.is-here {
  background:
    linear-gradient(90deg, rgba(8, 156, 252, 0.06), rgba(8, 156, 252, 0));
  padding-left: 16px;
  margin-left: -16px;
  margin-right: -16px;
  padding-right: 16px;
}
.ladder-row.is-here::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--blue);
}
.lr-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.ladder-row.is-here .lr-num { color: var(--blue); }
.lr-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
}
.lr-desc {
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.5;
  max-width: 60ch;
}
.lr-price {
  font-size: 20px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-align: right;
}
.lr-price .unit {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0;
  display: block;
  margin-top: 2px;
}
.lr-delivery {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-align: right;
}
.ladder-row.is-here .lr-delivery { color: var(--blue); }
.lr-flag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-align: right;
  color: var(--ink-mute);
  padding: 5px 0;
}
.lr-flag-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: color 0.12s ease;
}
.lr-flag-link .lr-flag { color: var(--blue); font-weight: 700; }
.lr-flag-link:hover .lr-flag { color: var(--ink); }
.ladder-row.is-here .lr-flag {
  color: var(--blue);
  font-weight: 700;
}

.ladder-foot {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--rule);
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 88ch;
}

/* INTAKE BANNER (transition into form) --------------------------------- */
.intake-banner {
  padding: 80px 0 12px;
  max-width: 720px;
}
.intake-banner .mono-label {
  color: var(--blue);
  margin-bottom: 18px;
}
.intake-banner .mono-label::before { display: none; }
.intake-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.intake-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 60ch;
}
.intake-sub a { color: var(--blue); text-decoration: none; border-bottom: 1px solid currentColor; }

/* =========================================================================
   INDEX PAGE — landing
   ========================================================================= */

/* TOP NAV (above hero on landing) -------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(27, 38, 70, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-dark);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.site-nav .brand-logo { height: 24px; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.nav-links a:hover { color: white; }
.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 10px 18px;
  letter-spacing: 0.18em !important;
}
.nav-cta:hover { background: var(--blue-hi); }

/* LANDING HERO ---------------------------------------------------------- */
.land-hero { padding: 104px 0 72px; }
.land-hero h1 {
  font-size: clamp(56px, 9vw, 144px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  max-width: 14ch;
  margin-bottom: 36px;
}
.land-hero h1 .accent { color: var(--blue-hi); }
.land-hero .hero-sub {
  font-size: clamp(18px, 1.55vw, 22px);
  max-width: 56ch;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.btn-cta {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  padding: 18px 26px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-cta-primary { background: var(--blue); color: white; }
.btn-cta-primary:hover { background: var(--blue-hi); }
.btn-cta-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-cta-ghost:hover { border-color: white; background: rgba(255,255,255,0.05); }
.btn-cta .arrow { font-family: 'JetBrains Mono', monospace; font-size: 16px; }

/* SECTION SHELL ------------------------------------------------------- */
.section {
  padding: 120px 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.section.section-dark {
  background: var(--navy);
  color: white;
  border-top: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}
.section.section-dark::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, var(--blue-glow), transparent 65%);
  pointer-events: none;
}
.section.section-dark > * { position: relative; z-index: 1; }

.sec-head {
  display: grid;
  grid-template-columns: 88px 1fr;
  column-gap: 32px;
  align-items: start;
  margin-bottom: 64px;
  max-width: 1100px;
}
.sec-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--blue);
  font-weight: 500;
  padding-top: 14px;
  position: relative;
}
.sec-num::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--blue);
  margin-top: 16px;
}
.section-dark .sec-num { color: var(--blue-hi); }
.section-dark .sec-num::after { background: var(--blue-hi); }

.sec-head h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 18px;
  max-width: 18ch;
}
.sec-head h2 .accent { color: var(--blue); }
.section-dark .sec-head h2 .accent { color: var(--blue-hi); }
.section-dark .sec-head h2 { max-width: 22ch; }
.sec-head .lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 64ch;
}
.section-dark .sec-head .lede { color: var(--ink-light); }

.sec-body { margin-left: 120px; }
.sec-body--full { margin-left: 0; }

/* PRACTICE — image + prose + facts ------------------------------------ */
.practice-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
.practice-photo image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
}
.practice-fact-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px dashed var(--rule);
  align-items: baseline;
}
.practice-fact-row:first-child { border-top: 1.5px solid var(--ink); padding-top: 24px; }
.practice-fact-row:last-child { border-bottom: 1.5px solid var(--ink); }
.practice-fact-row .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.practice-fact-row .v {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.prose-stack { display: flex; flex-direction: column; gap: 20px; }
.prose-stack p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}
.prose-stack p strong { color: var(--ink); font-weight: 700; }
.section-dark .prose-stack p { color: var(--ink-light); }
.section-dark .prose-stack p strong { color: white; }

/* Big statement -------------------------------------------------------- */
.big-statement {
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.0;
  max-width: 22ch;
  margin: 0 0 56px;
}
.big-statement .accent { color: var(--blue-hi); }

/* CALLOUT card -------------------------------------------------------- */
.callout {
  border: 1px solid var(--blue);
  background: rgba(8, 156, 252, 0.06);
  padding: 28px 32px;
  font-size: 17px;
  line-height: 1.55;
  color: white;
  position: relative;
}
.callout::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--blue);
}
.callout .mono-label { display: flex; margin-bottom: 18px !important; }
.callout-body {
  display: block;
  font-size: 17px;
  line-height: 1.6;
  color: inherit;
}
.callout-body strong { font-weight: 700; }
.callout strong { color: white; font-weight: 700; }
.callout.callout-light {
  background: white;
  color: var(--ink);
}
.callout.callout-light strong { color: var(--ink); }

/* DIVERSITY THEATER --------------------------------------------------- */
.div-rows { }
.div-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.div-row:last-child { border-bottom: 1px solid var(--rule); }
.div-row .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  line-height: 1.6;
}
.div-row .v { font-size: 17px; line-height: 1.55; color: var(--ink); }
.div-row .v strong { font-weight: 700; }

.pull-quote {
  margin-top: 56px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid var(--blue);
  padding-left: 28px;
  max-width: 26ch;
}
.section-dark .pull-quote { color: white; }

/* TIMING CHART -------------------------------------------------------- */
.timing-chart {
  margin-top: 56px;
  border: 1px solid var(--rule);
  padding: 28px 32px 28px;
  background: white;
}
.timing-chart .mono-label { margin-bottom: 24px; color: var(--ink-mute); }
.timing-chart .mono-label::before { background: var(--ink-mute); }

.tc-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 14px;
  align-items: end;
  height: 180px;
}
.tc-cell {
  background: linear-gradient(180deg, var(--blue) 0%, var(--navy) 100%);
  height: var(--fill, 18%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
}
.tc-cell:nth-child(1) { --fill: 14%; background: var(--paper-deep); color: var(--ink); }
.tc-cell:nth-child(2) { --fill: 28%; }
.tc-cell:nth-child(3) { --fill: 48%; }
.tc-cell:nth-child(4) { --fill: 75%; }
.tc-cell:nth-child(5) { --fill: 100%; }
.tc-cell.tc-flag-here::after {
  content: 'WE ENGAGE HERE';
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--blue);
  font-weight: 700;
  white-space: nowrap;
}
.tc-axis {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.tc-axis .l { color: var(--blue); font-weight: 600; }
.tc-axis .r { color: var(--error); font-weight: 600; }

/* METHODOLOGY --------------------------------------------------------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.method-step {
  background: var(--paper);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
}
.method-step .step-num {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--blue);
  line-height: 0.85;
  margin-bottom: 18px;
}
.method-step .step-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.method-step .step-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}
.method-step .step-desc {
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* GROUNDTRUTH --------------------------------------------------------- */
.gt-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: stretch;
}
.gt-layers { margin-top: 28px; border-top: 1.5px solid var(--ink); }
.gt-layer-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 16px 0 12px;
}
.gt-layer-list { list-style: none; }
.gt-layer-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px dashed var(--rule);
  font-size: 15px;
  color: var(--ink);
}
.gt-layer-list li::after {
  content: '●';
  color: var(--blue);
  font-size: 8px;
}
.gt-map-wrap image-slot {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 1px solid var(--rule);
  background: var(--navy);
}

/* SELECTED ENGAGEMENTS / LOGO STRIP ---------------------------------- */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.logo-strip image-slot {
  display: block;
  aspect-ratio: 3 / 2;
  background: var(--paper);
}

/* PHOTOS GRID (3-up imagery row) ------------------------------------- */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}
.photo-row image-slot {
  display: block;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
}

/* CONTACT (dark, landing) -------------------------------------------- */
.contact-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
}
.ci-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px dashed var(--rule-dark);
  align-items: baseline;
}
.ci-row:first-child { border-top: 1.5px solid white; padding-top: 24px; }
.ci-row:last-child { border-bottom: 1.5px solid white; }
.ci-k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ci-v {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: white;
}
.ci-v a {
  color: var(--blue-hi);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.path-steps { list-style: none; display: flex; flex-direction: column; gap: 0; }
.path-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--rule-dark);
  align-items: baseline;
}
.path-step:first-child { border-top: none; padding-top: 0; }
.path-step .pn {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--blue-hi);
}
.path-step .pt {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 6px;
}
.path-step .pm {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ====================================================================
   LEGAL PAGES (privacy / terms)
   ==================================================================== */
.legal {
  padding: 80px 0 120px;
  background: var(--paper);
}
.legal-head {
  max-width: 760px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1.5px solid var(--ink);
}
.legal-head .mono-label { margin-bottom: 20px; }
.legal-head h1 {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: 20px;
}
.legal-head .lede { color: var(--ink-soft); font-size: 17px; line-height: 1.55; max-width: 60ch; }
.legal-body { max-width: 720px; }
.legal-body h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 40px 0 14px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}
.legal-body ul { padding-left: 22px; margin-bottom: 14px; }
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-body a { color: var(--blue); text-decoration: none; border-bottom: 1px solid currentColor; }

/* ====================================================================
   LOGIN PAGES
   ==================================================================== */
.login-page { min-height: 100vh; display: flex; flex-direction: column; }
.login-shell {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--paper);
}
.login-aside {
  background: var(--navy);
  color: white;
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.login-aside::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.login-aside::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 92% 38%, var(--blue-glow), transparent 70%);
  pointer-events: none;
}
.login-aside > * { position: relative; z-index: 1; }

.login-aside .brand-logo { height: 26px; margin-bottom: 64px; }
.login-aside h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 18px;
}
.login-aside h1 .accent { color: var(--blue-hi); }
.login-aside p { color: var(--ink-light); max-width: 38ch; line-height: 1.55; font-size: 16px; }
.login-aside .login-foot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 56px;
}

.login-form-wrap {
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  width: 100%;
}
.login-form-wrap .mono-label { margin-bottom: 22px; }
.login-form-wrap h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 10px;
}
.login-form-wrap .lede {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.login-form { display: flex; flex-direction: column; gap: 28px; }
.login-form .field input {
  font-size: 17px;
  padding: 12px 0;
}
.login-form .login-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--ink-mute);
}
.login-form .login-meta label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.login-form .login-meta a { color: var(--blue); text-decoration: none; border-bottom: 1px solid currentColor; }
.login-form button[type="submit"] {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  background: var(--navy);
  color: white;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s ease;
}
.login-form button[type="submit"]:hover { background: var(--blue); }
.login-form button[type="submit"] .arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
}
.login-help {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px dashed var(--rule);
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.6;
}
.login-help a { color: var(--blue); text-decoration: none; border-bottom: 1px solid currentColor; }

/* Reset sent confirmation card (inside login form) -------------------- */
.reset-sent-card {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--blue);
  background: rgba(8, 156, 252, 0.04);
  padding: 22px 24px;
  margin-bottom: 24px;
}

/* ====================================================================
   SUCCESS PAGE
   ==================================================================== */
.success-block { padding: 96px 0 120px; }
.success-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.success-mark .check {
  width: 28px; height: 28px;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}
.success-mark .check::before { content: '✓'; font-size: 16px; }
.success-block h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: 24px;
  max-width: 18ch;
}
.success-block h1 .accent { color: var(--blue-hi); }
.success-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 60ch;
  line-height: 1.55;
  color: var(--ink-light);
  margin-bottom: 56px;
}
.confirm-card {
  background: white;
  border: 1px solid var(--rule);
  padding: 28px 32px;
  max-width: 720px;
  color: var(--ink);
}
.confirm-card .mono-label { margin-bottom: 16px; color: var(--blue); }
.confirm-card .mono-label::before { background: var(--blue); }
.confirm-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  padding: 12px 0;
  border-top: 1px dashed var(--rule);
  font-size: 15px;
}
.confirm-row:first-of-type { border-top: 1.5px solid var(--ink); padding-top: 16px; }
.confirm-row .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  align-self: center;
}
.confirm-row .v { font-weight: 600; letter-spacing: -0.005em; }

.next-list {
  list-style: none;
  margin-top: 56px;
  max-width: 880px;
}
.next-list li {
  padding: 24px 0;
  border-top: 1px solid var(--rule-dark);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: baseline;
}
.next-list li:first-child { border-top: 1.5px solid white; }
.next-list li:last-child { border-bottom: 1.5px solid white; }
.next-list .nl-n {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--blue-hi);
}
.next-list .nl-name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 6px;
}
.next-list .nl-desc {
  font-size: 14.5px;
  color: var(--ink-light);
  line-height: 1.55;
}

@media (max-width: 960px) {
  :root { --gutter: 28px; }
  .block-head { grid-template-columns: 1fr; gap: 14px; }
  .block-num::after { display: none; }
  .block-body { margin-left: 0; }
  .count-row { grid-template-columns: 1fr; }
  .recap-grid { grid-template-columns: 1fr; }
  .service-toggle { grid-template-columns: 1fr; }
  .ticket-wrap { grid-template-columns: 1fr; }
  .ticket-left { border-right: none; border-bottom: 1px dashed var(--rule); }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-fact:nth-child(2) { border-right: none; }
  .site-footer .container { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .deck-strap .container { flex-direction: column; align-items: flex-start; gap: 14px; }
  .strap-meta { text-align: left; }
  .hero { padding: 56px 0 80px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-fact { border-right: none; border-bottom: 1px solid var(--rule-dark); padding: 18px 0 16px; }
  .form-block { padding: 56px 0; }
  .form-block:first-child { padding-top: 64px; }
  .site-head { padding: 14px 18px; flex-wrap: wrap; gap: 8px; }
  .site-body { padding: 22px 18px 26px; }
  .ticket-left, .ticket-right { padding: 28px 22px; }
  .ticket-total .t-val { font-size: 36px; }
}




/* ====================================================================
   PEAK-END POLISH — Apple-like halo, refined micro-interactions
   ==================================================================== */

/* Smoother easing on all transitions site-wide */
:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --halo-blue: rgba(8, 156, 252, 0.32);
}

/* Buttons — halo glow on focus, soft lift on hover, satisfying press */
.btn-cta,
.btn-primary,
.call-submit,
.qty-btn,
.login-form button[type="submit"] {
  transition: background-color 0.22s var(--ease-out),
              color 0.22s var(--ease-out),
              transform 0.18s var(--ease-out),
              box-shadow 0.28s var(--ease-out),
              border-color 0.22s var(--ease-out) !important;
  will-change: transform, box-shadow;
}
.btn-cta:hover,
.btn-primary:hover,
.call-submit:hover,
.login-form button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -14px var(--halo-blue),
              0 4px 10px -4px rgba(8, 156, 252, 0.18) !important;
}
.btn-cta:active,
.btn-primary:active,
.call-submit:active,
.login-form button[type="submit"]:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 4px 12px -4px var(--halo-blue) !important;
}

/* Focus halo — accessibility + Apple-like ring */
.btn-cta:focus-visible,
.btn-primary:focus-visible,
.call-submit:focus-visible,
.qty-btn:focus-visible,
.login-form button[type="submit"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 156, 252, 0.35),
              0 0 0 6px rgba(8, 156, 252, 0.12),
              0 14px 32px -14px var(--halo-blue) !important;
}

/* Quantity stepper buttons — press feedback */
.qty-btn { transition: background-color 0.18s var(--ease-out), transform 0.12s var(--ease-out); }
.qty-btn:active { transform: scale(0.94); }

/* Input fields — focus halo glow */
.field input,
.field textarea,
.field select,
.call-field input,
.login-form input {
  transition: border-color 0.22s var(--ease-out),
              box-shadow 0.28s var(--ease-out),
              background-color 0.22s var(--ease-out) !important;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  box-shadow: 0 1px 0 0 var(--blue), 0 6px 18px -8px var(--halo-blue) !important;
}
.call-field input:focus {
  box-shadow: 0 0 0 3px rgba(61, 180, 255, 0.22),
              0 6px 18px -6px rgba(8, 156, 252, 0.45) !important;
}
.login-form input:focus {
  outline: none;
  border-bottom-color: var(--blue);
  box-shadow: 0 1px 0 0 var(--blue), 0 6px 16px -8px var(--halo-blue);
}

/* Quantity input — focus halo */
.qty-stepper:focus-within {
  border-color: var(--blue);
  box-shadow: 0 6px 22px -8px var(--halo-blue);
}

/* Anchor link hover — subtle slide-in underline (the small moment) */
.nav-links a:not(.nav-cta) {
  position: relative;
  transition: color 0.22s var(--ease-out);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--blue-hi);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

/* Service phase ladder rows — gentle hover lift */
.ladder-row {
  transition: background-color 0.22s var(--ease-out),
              transform 0.22s var(--ease-out);
}
.ladder-row:not(.is-here):hover {
  background: linear-gradient(90deg, rgba(8, 156, 252, 0.04), rgba(8, 156, 252, 0));
}
.lr-flag-link {
  transition: color 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.lr-flag-link:hover { transform: translateX(3px); }

/* Carrier tiles — subtle press */
.carrier-tile {
  transition: background-color 0.32s var(--ease-out),
              color 0.32s var(--ease-out),
              transform 0.22s var(--ease-out);
}
.carrier-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(15, 27, 54, 0.25);
}

/* Service toggle — selected halo */
.service-toggle input:checked + .service-toggle-content {
  box-shadow: 0 0 0 1px var(--blue),
              0 8px 20px -10px var(--halo-blue) !important;
}

/* Success card — gentle entrance */
@keyframes nb-entrance {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.call-sent,
.success-card,
#success-state {
  animation: nb-entrance 0.45s var(--ease-out) both;
}

/* Success checkmark — soft pulse on appear */
@keyframes nb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(8, 156, 252, 0.45); }
  100% { box-shadow: 0 0 0 14px rgba(8, 156, 252, 0); }
}
.success-mark .check {
  animation: nb-pulse 1.6s var(--ease-out) 0.2s 2;
}

/* Differentiator cards — quiet card lift */
.diff-card {
  transition: transform 0.42s var(--ease-out),
              background 0.42s var(--ease-out);
}
.diff-card:hover {
  transform: translateY(-2px);
}

/* Method steps — number gently pulses blue on hover */
.method-step { transition: background-color 0.28s var(--ease-out); }
.method-step:hover { background: var(--paper-warm); }
.method-step .step-num { transition: color 0.32s var(--ease-out), transform 0.32s var(--ease-out); }
.method-step:hover .step-num { transform: translateY(-2px); }

/* Hero — generous breathing space (peak moment) */
.land-hero { padding-bottom: 120px !important; }

/* Footer — generous, never crowded */
.site-footer { padding-top: 72px !important; }

/* Page transitions — fade in on first load */
@keyframes nb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
main, header.deck-top, .section, .practice-strip {
  animation: nb-fade-in 0.5s var(--ease-out) both;
}

/* Reduce motion preference — respect users who don't want animation */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
.call-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(8,156,252,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 44px 44px 36px;
  position: relative;
  overflow: hidden;
}
.call-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-hi) 100%);
}
.call-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(closest-side, rgba(61,180,255,0.18), transparent 70%);
  pointer-events: none;
}
.call-card > * { position: relative; }
.call-h {
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: white;
  margin-bottom: 14px;
}
.call-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 44ch;
  margin-bottom: 32px;
}
.call-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 28px;
}
.call-field { display: flex; flex-direction: column; }
.call-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  font-weight: 600;
}
.call-field input {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  color: white;
  width: 100%;
  transition: all 0.15s ease;
}
.call-field input::placeholder { color: rgba(255,255,255,0.35); }
.call-field input:hover { border-color: rgba(255,255,255,0.32); }
.call-field input:focus {
  outline: none;
  border-color: var(--blue-hi);
  background: rgba(0,0,0,0.32);
  box-shadow: 0 0 0 3px rgba(8,156,252,0.16);
}
.call-field input.error {
  border-color: var(--error);
  background: rgba(199,64,46,0.10);
}
.call-submit {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  background: var(--blue);
  color: white;
  border: none;
  cursor: pointer;
  padding: 20px 28px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: all 0.15s ease;
  box-shadow: 0 8px 24px -8px rgba(8,156,252,0.45);
}
.call-submit:hover {
  background: var(--blue-hi);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(8,156,252,0.6);
}
.call-submit:active { transform: translateY(0); }
.call-submit:disabled {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.5);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.call-submit .arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
}
.call-fine {
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.call-sent {
  padding: 22px 24px;
  border: 1px solid var(--blue-hi);
  background: rgba(8,156,252,0.12);
  color: white;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 12px;
}
.call-sent strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-hi);
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 720px) {
  .call-card { padding: 32px 24px 28px; }
  .call-grid { grid-template-columns: 1fr; }
}


/* TIMING CHART — SVG curve replacement -------------------------------- */
.tc-svg {
  width: 100%;
  height: auto;
  display: block;
  margin: 12px 0 10px;
  overflow: visible;
}
.tc-svg .tc-grid line {
  stroke: var(--rule);
  stroke-width: 1;
}
.tc-svg .tc-axis {
  stroke: var(--ink);
  stroke-width: 1.5;
}
.tc-svg .tc-ylabel text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  fill: var(--ink-mute);
}
.tc-svg .tc-axis-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  fill: var(--ink-mute);
  text-transform: uppercase;
}
.tc-svg .tc-xlabel text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  fill: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}
.tc-svg .tc-xlabel .tc-xlabel-here {
  fill: var(--blue);
  font-weight: 700;
}
.tc-svg .tc-mark circle { fill: var(--navy); stroke: white; stroke-width: 2; }
.tc-svg .tc-mark line { stroke: var(--ink-mute); opacity: 0.4; }
.tc-svg .tc-mark-here circle { fill: var(--blue); stroke: white; stroke-width: 3; }
.tc-svg .tc-mark-here .tc-pulse {
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  opacity: 0.35;
}
.tc-svg .tc-mark-end circle { fill: var(--error); stroke: white; }
.tc-svg .tc-callout text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  fill: var(--blue);
  font-weight: 700;
}
.tc-svg .tc-callout line { stroke: var(--blue); }
.tc-svg .tc-callout-end text { fill: var(--error); }
.tc-legend {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.tc-legend .tc-leg-l { color: var(--blue); font-weight: 700; }
.tc-legend .tc-leg-r { color: var(--error); font-weight: 600; }
@media (max-width: 720px) {
  .tc-legend { flex-direction: column; gap: 6px; }
  .tc-svg .tc-xlabel text { font-size: 8.5px; letter-spacing: 0.1em; }
  .tc-svg .tc-ylabel text { font-size: 8.5px; }
  .tc-svg .tc-axis-title { display: none; }
}


/* BURIED RISKS BLOCK (under Problem section) ------------------------- */
.buried-risks {
  margin-top: 64px;
  padding: 32px 36px 36px;
  border: 1px solid var(--rule);
  background: white;
  position: relative;
}
.buried-risks::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--blue);
}
.risk-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.risk-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 24px 18px 0;
  border-top: 1px dashed var(--rule);
  align-items: baseline;
}
.risk-list li:nth-child(odd) { padding-right: 24px; border-right: 1px dashed var(--rule); }
.risk-list li:nth-child(1), .risk-list li:nth-child(2) { border-top: none; padding-top: 0; }
.risk-list li:nth-child(odd):not(:last-child) { }
.risk-list li:nth-child(even) { padding-left: 24px; }
.risk-n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
}
.risk-list li div {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.risk-list li div strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
@media (max-width: 760px) {
  .risk-list { grid-template-columns: 1fr; }
  .risk-list li { border-right: none !important; padding: 18px 0 !important; }
  .risk-list li:nth-child(2) { border-top: 1px dashed var(--rule); padding-top: 18px !important; }
}

/* DIFFERENTIATORS GRID (What Sets Us Apart) -------------------------- */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}
.diff-grid.diff-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 900px) { .diff-grid.diff-grid-3 { grid-template-columns: 1fr; } }
.diff-card {
  background: var(--navy);
  padding: 36px 36px 40px;
  position: relative;
  overflow: hidden;
}
.diff-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(closest-side, rgba(8,156,252,0.10), transparent 70%);
  pointer-events: none;
}
.diff-card > * { position: relative; }
.diff-num {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--blue-hi);
  margin-bottom: 22px;
}
.diff-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  font-weight: 600;
}
.diff-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: white;
  margin-bottom: 14px;
}
.diff-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 50ch;
}
@media (max-width: 760px) {
  .diff-grid { grid-template-columns: 1fr; }
}


/* PRACTICE FACTS ROW — full-width grid (no more side image) ---------- */
.practice-facts-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.practice-facts-row .practice-fact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 28px 22px 0;
  border-top: none;
  border-bottom: none;
  border-right: 1px dashed var(--rule);
  align-items: flex-start;
}
.practice-facts-row .practice-fact-row:last-child { border-right: none; padding-right: 0; }
.practice-facts-row .practice-fact-row:not(:first-child) { padding-left: 28px; }
.practice-facts-row .k { font-size: 11px; }
.practice-facts-row .v { font-size: 16px; font-weight: 600; }

@media (max-width: 900px) {
  .practice-facts-row { grid-template-columns: 1fr 1fr; }
  .practice-facts-row .practice-fact-row { border-right: none; padding-left: 0 !important; padding-right: 0 !important; border-bottom: 1px dashed var(--rule); }
  .practice-facts-row .practice-fact-row:nth-child(odd)  { padding-right: 16px !important; border-right: 1px dashed var(--rule); }
  .practice-facts-row .practice-fact-row:nth-child(even) { padding-left: 16px !important; }
  .practice-facts-row .practice-fact-row:last-child { border-bottom: none; }
  .practice-facts-row .practice-fact-row:nth-last-child(2) { border-bottom: none; }
}

/* CARRIER RELATIONSHIPS STRIP --------------------------------------- */
.carrier-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.carrier-tile {
  background: var(--paper-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  min-height: 120px;
  transition: background 0.15s ease, color 0.15s ease;
}
.carrier-tile:hover {
  background: var(--navy);
  color: white;
}
.carrier-foot {
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 3px solid var(--blue);
  background: rgba(8,156,252,0.05);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 80ch;
}
@media (max-width: 900px) { .carrier-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .carrier-strip { grid-template-columns: 1fr; }
  .carrier-tile { min-height: 84px; padding: 22px; font-size: 18px; }
}




/* GROUNDTRUTH CATALOG — clean editorial grid ------------------------ */
.gt-catalog { }
.gt-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.gt-cat {
  padding: 28px 28px 32px 0;
  border-right: 1px dashed var(--rule);
}
.gt-cat:last-child { border-right: none; padding-right: 0; }
.gt-cat:not(:first-child) { padding-left: 28px; }
.gt-cat-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  font-weight: 700;
}
.gt-cat-list { list-style: none; }
.gt-cat-list li {
  padding: 9px 0;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  border-top: 1px dashed var(--rule);
}
.gt-cat-list li:first-child { border-top: none; padding-top: 0; }
.gt-cat-list li.more {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 6px;
  padding-top: 12px;
}

.gt-catalog-foot {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

@media (max-width: 1000px) {
  .gt-cat-grid { grid-template-columns: 1fr 1fr; }
  .gt-cat { border-right: 1px dashed var(--rule); padding-left: 28px !important; padding-right: 28px !important; }
  .gt-cat:nth-child(even) { border-right: none; padding-right: 0 !important; }
  .gt-cat:nth-child(1), .gt-cat:nth-child(2) { border-bottom: 1px dashed var(--rule); }
}
@media (max-width: 600px) {
  .gt-cat-grid { grid-template-columns: 1fr; }
  .gt-cat { border-right: none !important; border-bottom: 1px dashed var(--rule); padding-left: 0 !important; padding-right: 0 !important; }
  .gt-cat:last-child { border-bottom: none; }
  .gt-catalog-foot { justify-content: flex-start; flex-wrap: wrap; }
}


/* ====================================================================
   MOBILE — comprehensive responsive pass
   ==================================================================== */

@media (max-width: 1000px) {
  .method-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .method-grid { grid-template-columns: 1fr; }
  .method-step { padding: 24px 20px 28px; }
  .method-step .step-num { font-size: 56px; margin-bottom: 14px; }
}

@media (max-width: 820px) {
  .ladder-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .ladder-row {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto auto;
    row-gap: 8px;
    column-gap: 16px;
    padding: 22px 0;
  }
  .ladder-row.is-here { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
  .lr-num { grid-column: 1; grid-row: 1 / span 4; align-self: start; }
  .lr-body { grid-column: 2; grid-row: 1; }
  .lr-price { grid-column: 2; grid-row: 2; text-align: left; font-size: 18px; }
  .lr-price .unit { display: inline; margin-top: 0; margin-left: 6px; }
  .lr-delivery { grid-column: 2; grid-row: 3; text-align: left; }
  .lr-flag, .lr-flag-link { grid-column: 2; grid-row: 4; text-align: left; padding-top: 6px; }
}

@media (max-width: 720px) {
  .div-row { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; }
  .div-row .k { font-size: 11px; }
  .div-row .v { font-size: 16px; }
  .div-row .k br { display: none; }
}

@media (max-width: 900px) {
  .login-shell { grid-template-columns: 1fr; }
  .login-aside { padding: 48px 32px; min-height: auto; }
  .login-aside h1 { font-size: clamp(32px, 6vw, 48px); }
  .login-aside .brand-logo { margin-bottom: 32px; height: 22px; }
  .login-form-wrap { padding: 56px 32px; max-width: none; }
}
@media (max-width: 480px) {
  .login-aside { padding: 40px 22px; }
  .login-form-wrap { padding: 40px 22px; }
}

@media (max-width: 720px) {
  .land-hero { padding: 64px 0 80px !important; }
  .land-hero h1 {
    font-size: clamp(40px, 11vw, 64px);
    max-width: none;
    margin-bottom: 24px;
  }
  .land-hero .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn-cta { width: 100%; justify-content: space-between; }

  .hero { padding: 48px 0 64px; }
  .hero-headline, .hero h1 {
    font-size: clamp(36px, 10vw, 56px) !important;
    line-height: 1 !important;
  }
  .hero-sub { font-size: 15px; }
  .hero-facts { grid-template-columns: 1fr !important; }
  .hero-fact {
    border-right: none !important;
    border-bottom: 1px solid var(--rule-dark);
    padding: 18px 0 16px !important;
  }
  .hero-fact:last-child { border-bottom: none; }
}

@media (max-width: 720px) {
  .site-nav .container { gap: 16px; padding-top: 14px; padding-bottom: 14px; }
  .site-nav .brand-logo { height: 20px; }
  .nav-links {
    gap: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-right: 4px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a:not(.nav-cta) {
    font-size: 10.5px;
    letter-spacing: 0.18em;
    flex: 0 0 auto;
  }
  .nav-cta {
    padding: 9px 14px !important;
    font-size: 10.5px !important;
    flex: 0 0 auto;
  }

  .sec-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }
  .sec-num { padding-top: 0; font-size: 12px; }
  .sec-num::after { display: none; }
  .sec-num br { display: none; }
  .sec-head h2 { font-size: clamp(28px, 7vw, 40px); max-width: none; }
  .sec-head .lede { font-size: 15px; }
  .sec-body { margin-left: 0; }
  .section { padding: 64px 0; }

  .big-statement {
    font-size: clamp(28px, 8vw, 48px);
    max-width: none;
    margin-bottom: 32px;
  }

  .practice-grid { grid-template-columns: 1fr !important; gap: 32px !important; }

  .ticket-wrap { grid-template-columns: 1fr !important; }
  .ticket-left { border-right: none !important; border-bottom: 1px dashed var(--rule); padding: 28px 24px !important; }
  .ticket-right { padding: 28px 24px !important; }
  .ticket-total .t-val { font-size: 32px; }
  .btn-primary { font-size: 15px !important; padding: 18px 22px !important; }

  .form-block { padding: 48px 0; }
  .form-block:first-child { padding-top: 56px; }
  .field-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .contact-grid { grid-template-columns: 1fr !important; row-gap: 18px !important; }
  .block-head h2 { font-size: clamp(24px, 7vw, 36px); max-width: none; }
  .block-num { font-size: 12px; padding-top: 0; }
  .block-num::after { display: none; }
  .block-num br { display: none; }

  .count-row { grid-template-columns: 1fr !important; gap: 24px !important; }
  .field.qty { max-width: none; }
  .qty-stepper { height: 72px; grid-template-columns: 52px 1fr 52px; }
  .field.qty input { font-size: 36px; }
  .recap-grid { grid-template-columns: 1fr; }

  .site-head { padding: 14px 18px; flex-wrap: wrap; gap: 8px; }
  .site-head .site-num { font-size: 11px; }
  .site-head .site-tag { font-size: 10px; }
  .site-head .site-meta { font-size: 10px; }
  .site-body { padding: 22px 18px 26px; }
  .service-toggle { grid-template-columns: 1fr !important; gap: 10px; }
  .service-toggle-content { padding: 14px 16px; }

  .callout { padding: 22px 22px; font-size: 15px; }
  .callout-body { font-size: 15px; }

  .pull-quote {
    font-size: clamp(18px, 5vw, 26px);
    margin-top: 32px;
    padding-left: 18px;
  }

  .buried-risks { padding: 22px 22px 26px; margin-top: 40px; }
  .risk-list li { padding: 16px 0 !important; gap: 14px; }
  .risk-n { font-size: 11px; }
  .ladder-foot { font-size: 13px; }
  .intake-banner { padding: 56px 0 8px; }
  .intake-title { font-size: clamp(24px, 7vw, 32px); }
  .intake-sub { font-size: 15px; }

  .scope-split.scope-single .scope-list { grid-template-columns: 1fr !important; column-gap: 0 !important; }
  .scope-col { padding: 22px 0 24px; }
  .scope-list li { font-size: 15px; padding: 11px 0; }

  .site-footer { padding: 48px 0 32px !important; }
  .site-footer .container { grid-template-columns: 1fr; gap: 32px; }
  .foot-col .brand-logo { height: 22px; }
  .foot-tag { font-size: 13px; max-width: none; }
  .foot-col h4 { font-size: 10px; margin-bottom: 10px; }
  .foot-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: left;
    align-items: flex-start;
    padding-top: 18px;
    font-size: 9.5px;
    letter-spacing: 0.18em;
  }

  .timing-chart { padding: 20px 22px 22px; margin-top: 40px; }

  .call-h { font-size: clamp(28px, 8vw, 38px); }
  .call-sub { font-size: 15px; }
  .call-submit { font-size: 15px; padding: 18px 24px; }

  .success-block { padding: 56px 0 80px; }
  .success-block h1 { font-size: clamp(32px, 9vw, 48px); }
  .success-lede { font-size: 15px; margin-bottom: 36px; }
  .confirm-card { padding: 20px 22px; }
  .confirm-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .next-list li { grid-template-columns: 44px 1fr; padding: 18px 0; }
  .next-list .nl-n { font-size: 22px; }
  .next-list .nl-name { font-size: 17px; }

  .practice-strip { padding: 56px 0 48px; }
  .practice-head { margin-bottom: 40px; }
  .practice-h2 { font-size: clamp(28px, 8vw, 40px); }
  .practice-sub { font-size: 15px; }

  .field input, .field textarea, .field select,
  .call-field input, .login-form input {
    font-size: 16px !important;
  }
}

@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 540px) {
  .deck-strap { padding: 16px 0; }
  .deck-strap .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .strap-meta { text-align: left; font-size: 9.5px; }
  .brand-logo { height: 20px; }

  .diff-card { padding: 28px 24px 30px; }
  .diff-num { font-size: 44px; margin-bottom: 16px; }
  .diff-name { font-size: 18px; }
  .diff-desc { font-size: 14px; }
}

@media (max-width: 720px) { :root { --gutter: 20px; } }
@media (max-width: 400px) { :root { --gutter: 16px; } }
