@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=JetBrains+Mono:wght@300;400;500&display=swap");

:root {
  --bg: #0a0908;
  --bg-soft: #11100e;
  --ink: #e9e4da;
  --muted: #c6c2ba;
  --quiet: #908b82;
  --line: rgba(251, 146, 60, 0.28);
  --line-soft: rgba(255, 255, 255, 0.1);
  --dark: #0a0908;
  --dark-2: #14110f;
  --lime: #fb923c;
  --lime-soft: #fdba74;
  --matrix: #b8ff5a;
  --matrix-soft: rgba(184, 255, 90, 0.18);
  --white: #e7e1d6;
  --panel: #16130f;
  --panel-2: #1d1813;
  --radius: 12px;
  --gutter: 28px;
  --container-max: 1120px;
  --content-max: 1120px;
  --container: min(var(--container-max), calc(100vw - (var(--gutter) * 2)));
  --inset: max(var(--gutter), calc((100vw - var(--content-max)) / 2));
  --section-y: 88px;
  --section-y-tight: 56px;
  /* Type scale — fixed UI steps, fluid editorial ramp (~1.25 modular) */
  --fs-micro: 11px;   /* mono overline / eyebrow */
  --fs-label: 12px;   /* mono label / tag */
  --fs-nav: 13px;     /* nav, buttons, card actions */
  --fs-body: 15px;    /* secondary / card copy */
  --fs-copy: 16px;    /* base prose */
  --fs-lead: clamp(17px, 15px + 0.5vw, 20px);
  --fs-card-title: clamp(19px, 16px + 0.7vw, 23px);
  --fs-h3: clamp(21px, 18px + 0.7vw, 25px);
  --fs-h2: clamp(28px, 22px + 1.7vw, 38px);
  --fs-h1: clamp(34px, 25px + 2.6vw, 52px);
  --fs-display: clamp(40px, 28px + 3.4vw, 60px);
  /* line-height + tracking — bold Plus Jakarta headings want more leading, gentler tracking */
  --lh-tight: 1.12;
  --lh-snug: 1.28;
  --lh-copy: 1.65;
  --tracking-tight: -0.01em;
  --tracking-snug: -0.005em;
  --tracking-wide: 0.04em;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --head: "Plus Jakarta Sans", "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --shell: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04) 40%, rgba(255, 255, 255, 0.02));
  --inset-shadow: rgba(0, 0, 0, 0.8) 0 0 2px 0 inset, rgba(255, 255, 255, 0.06) 0 1px 0 0 inset, rgba(0, 0, 0, 0.6) 0 -1px 0 0 inset;
  --float-shadow: rgba(0, 0, 0, 0.5) 0 4px 12px 0;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-size: var(--fs-copy);
  font-weight: 400;
  line-height: var(--lh-copy);
  text-rendering: optimizeLegibility;
}

body,
input,
textarea,
select {
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.icon {
  width: 18px;
  height: 18px;
  flex: none;
  vertical-align: middle;
  color: currentColor;
}

.icon--lg {
  width: 22px;
  height: 22px;
}

.icon--accent {
  color: var(--lime);
}

.icon--muted {
  color: var(--quiet);
}

.brand-logo {
  display: block;
  height: 19px;
  width: auto;
}

.footer-brand .brand-logo {
  height: 22px;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--lime);
  color: #0a0908;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: var(--fs-body);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 12px var(--inset);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(251, 146, 60, 0.28);
  border-radius: 8px;
  background: rgba(251, 146, 60, 0.08);
  box-shadow: var(--inset-shadow);
}

.brand-mark img {
  width: 16px;
  height: auto;
}

.brand-word {
  color: var(--white);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: var(--fs-nav);
  font-weight: 300;
  letter-spacing: 0;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--quiet);
  padding: 0 8px;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.site-nav a:not(.nav-cta)[aria-current="page"] {
  border-color: rgba(251, 146, 60, 0.24);
  background: rgba(251, 146, 60, 0.08);
  color: var(--lime);
}

.site-nav a:hover {
  color: var(--lime);
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(251, 146, 60, 0.32);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  padding: 0 14px;
  box-shadow: var(--inset-shadow);
  transition: border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.nav-cta:hover {
  border-color: rgba(251, 146, 60, 0.72);
  background: var(--panel);
  color: var(--lime);
  transform: translateY(-1px);
}

.nav-cta[aria-current="page"] {
  border-color: rgba(251, 146, 60, 0.72);
  background: var(--lime);
  color: #0a0908;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(251, 146, 60, 0.32);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--inset-shadow);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  background:
    radial-gradient(circle at 50% 18%, rgba(184, 255, 90, 0.09), transparent 30vw),
    var(--bg);
  color: var(--white);
  padding: var(--section-y-tight) var(--gutter) 28px;
}

.webgl-field,
.hero-field-fallback {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: min(var(--container-max), 100%);
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.webgl-field {
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 500ms ease;
}

html[data-webgl-ready="true"] .webgl-field {
  opacity: 0.88;
}

.hero-field-fallback {
  opacity: 0.58;
  background:
    radial-gradient(circle at center, rgba(184, 255, 90, 0.2), transparent 1.4px) 0 0 / 28px 28px,
    radial-gradient(circle at center, rgba(184, 255, 90, 0.1), transparent 1px) 14px 14px / 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 42%, black 0 32%, rgba(0, 0, 0, 0.42) 48%, transparent 72%);
}

html[data-webgl-ready="true"] .hero-field-fallback {
  opacity: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--bg), transparent 22%, transparent 78%, var(--bg)),
    linear-gradient(180deg, transparent, rgba(10, 9, 8, 0.72));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--container);
  margin: 0 auto;
  align-items: center;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
}

.hero-copy {
  position: relative;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: var(--fs-micro);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: currentColor;
}

.eyebrow.accent,
.section-dark .eyebrow,
.service-detail-hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--head);
  line-height: var(--lh-tight);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

h1 {
  margin-bottom: 28px;
  max-width: 900px;
  font-size: var(--fs-h1);
}

h2 {
  margin-bottom: 22px;
  font-size: var(--fs-h2);
}

h3 {
  margin-bottom: 14px;
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-snug);
}

.hero p,
.page-hero p,
.section-header p,
.lead {
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: var(--fs-lead);
  line-height: 1.45;
}

.hero p {
  max-width: 660px;
  color: var(--muted);
}

.hero-actions,
.center-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-family: var(--mono);
  font-size: var(--fs-nav);
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-accent {
  border-color: rgba(251, 146, 60, 0.72);
  background: var(--lime);
  color: #0a0908;
}

.button-dark {
  border-color: rgba(251, 146, 60, 0.32);
  background: var(--panel);
  color: var(--muted);
  box-shadow: var(--inset-shadow);
}

.button-light {
  border-color: rgba(251, 146, 60, 0.72);
  background: var(--lime);
  color: #0a0908;
}

.button-ghost,
.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--muted);
  box-shadow: var(--inset-shadow);
}

.button-ghost-light {
  background: var(--panel);
}

.button-ghost:hover,
.button-ghost-light:hover {
  border-color: rgba(251, 146, 60, 0.5);
  background: var(--panel);
  color: var(--lime);
}

.payment-board {
  position: relative;
  border: 1px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--shell) border-box;
  box-shadow: var(--inset-shadow), var(--float-shadow);
  overflow: hidden;
}

.payment-board::before {
  content: none;
}

.payment-board > * {
  position: relative;
}

.board-header,
.board-row,
.board-metrics {
  padding: 16px;
}

.board-header {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line-soft);
}

.board-header span,
.board-row span,
.board-row em,
.board-metrics span {
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.board-header span,
.board-row span,
.board-metrics span {
  color: var(--quiet);
}

.board-header strong {
  color: var(--lime);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.18;
}

.board-row {
  display: grid;
  align-items: center;
  grid-template-columns: 0.62fr 1fr auto;
  gap: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.board-row strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}

.board-row em {
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.14);
  color: var(--lime);
  padding: 5px 8px;
}

.board-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.board-metrics div {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #0d0b0a;
  box-shadow: rgba(0, 0, 0, 0.8) 0 2px 6px 0 inset, rgba(255, 255, 255, 0.03) 0 -1px 0 0 inset;
  padding: 11px;
}

.board-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.hero-offerings {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--container);
  margin: 38px auto 0;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  border: 1px solid transparent;
  border-radius: 24px;
  background: var(--shell) border-box;
  box-shadow: var(--inset-shadow), var(--float-shadow);
  overflow: hidden;
}

.hero-offerings a {
  display: grid;
  min-height: 116px;
  align-content: space-between;
  background: var(--panel);
  padding: 18px;
  text-decoration: none;
  transition: background 180ms ease;
}

.hero-offerings a:hover {
  background: var(--panel-2);
}

.hero-offerings span,
.hero-offerings em,
.price-pill,
.method-number,
.issue-row span,
.footer-label {
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
}

.hero-offerings span,
.hero-offerings em {
  color: var(--quiet);
}

.hero-offerings strong {
  font-weight: 400;
  font-size: var(--fs-card-title);
  line-height: 1;
}

.audience-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #0d0b0a;
  padding: 8px var(--inset);
  scrollbar-width: none;
}

.audience-strip::-webkit-scrollbar {
  display: none;
}

.audience-strip span {
  flex: 0 0 auto;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.section-muted,
.section-dark {
  width: 100%;
  max-width: none;
  padding-right: var(--inset);
  padding-left: var(--inset);
}

.section-muted {
  background: var(--bg-soft);
}

.section-dark {
  background: var(--bg);
  color: var(--white);
}

.two-column {
  display: grid;
  gap: 76px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.78fr);
}

.text-stack {
  display: grid;
  gap: 18px;
  align-content: start;
  color: var(--muted);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.text-stack p {
  margin-bottom: 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-header.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header.centered .eyebrow {
  justify-content: center;
}

.method-grid {
  display: grid;
  gap: 0;
  border: 1px solid transparent;
  border-radius: 24px;
  background: var(--shell) border-box;
  box-shadow: var(--inset-shadow), var(--float-shadow);
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.method-tile {
  min-height: 236px;
  border-right: 1px solid var(--line-soft);
  background: var(--panel);
  padding: 24px 22px;
}

.method-tile:last-child {
  border-right: 0;
}

.method-number {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251, 146, 60, 0.32);
  border-radius: 8px;
  background: rgba(251, 146, 60, 0.12);
  color: var(--lime);
  box-shadow: rgba(0, 0, 0, 0.8) 0 1px 2px 0, rgba(255, 255, 255, 0.08) 0 1px 0 0 inset;
}

.method-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.method-tile h3 {
  margin-top: 0;
}

.service-card > .icon,
.contact-grid article > .icon,
.booking-flow article > .icon {
  margin-bottom: 16px;
}

.method-tile p,
.service-card p,
.detail-grid p,
.detail-grid li,
.contact-grid p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.section-dark .service-card {
  border-color: transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--shell) border-box;
}

.section-dark .service-card p {
  color: var(--muted);
}

.center-actions {
  justify-content: center;
  margin-top: 36px;
}

.issue-list {
  border-top: 1px solid var(--line-soft);
}

.issue-row {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: 68px minmax(0, 1fr);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
}

.issue-row p {
  margin-bottom: 0;
  color: var(--white);
  font-size: var(--fs-card-title);
  line-height: 1.14;
}

.issue-row span {
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: grid;
  min-height: 340px;
  align-content: space-between;
  border: 1px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--shell) border-box;
  padding: 24px;
  box-shadow: rgba(0, 0, 0, 0.8) 0 2px 6px 0 inset, rgba(255, 255, 255, 0.03) 0 -1px 0 0 inset;
  transition: border-color 150ms ease, transform 150ms ease, background 150ms ease;
}

.service-card[id] {
  scroll-margin-top: 96px;
}

.service-card:hover {
  background:
    linear-gradient(var(--panel-2), var(--panel-2)) padding-box,
    var(--shell) border-box;
  transform: translateY(-2px);
}

.service-card h2,
.service-card h3 {
  margin-top: 28px;
  font-size: var(--fs-card-title);
  line-height: 1.05;
}

.feature-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  color: var(--muted);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.48;
  padding-left: 20px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--lime);
}

.service-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-pill {
  border: 1px solid rgba(251, 146, 60, 0.28);
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.12);
  color: var(--lime);
  padding: 7px 9px;
}

.card-actions {
  justify-content: space-between;
  margin-top: 34px;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 300;
}

.card-actions a {
  text-decoration: none;
}

.card-actions a:last-child {
  border-radius: 999px;
  border: 1px solid rgba(251, 146, 60, 0.28);
  background: rgba(251, 146, 60, 0.12);
  color: var(--lime);
  padding: 7px 10px;
}

.section-dark .card-actions a:last-child {
  background: rgba(251, 146, 60, 0.12);
  color: var(--lime);
}

.service-grid-light .service-card {
  min-height: 380px;
}

.booking-card {
  min-height: 560px;
}

.booking-card-actions {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.booking-card-actions .button {
  width: 100%;
}

.page-hero {
  position: relative;
  width: 100%;
  background:
    radial-gradient(circle at 15% 20%, rgba(251, 146, 60, 0.08), transparent 32vw),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 45%),
    var(--bg);
  color: var(--white);
  border-bottom: 1px solid var(--line-soft);
  padding: 104px var(--inset);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: var(--inset);
  bottom: 0;
  left: var(--inset);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 146, 60, 0.5), transparent);
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
}

.service-detail-hero {
  min-height: 460px;
}

.service-switcher {
  display: grid;
  width: var(--container);
  margin: 32px auto 0;
  border: 1px solid transparent;
  border-radius: 18px;
  background: var(--shell) border-box;
  box-shadow: var(--inset-shadow), var(--float-shadow);
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  overflow: hidden;
}

.service-switcher a {
  display: grid;
  min-height: 122px;
  align-content: space-between;
  border-right: 1px solid var(--line-soft);
  background: var(--panel);
  padding: 17px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.service-switcher a:last-child {
  border-right: 0;
}

.service-switcher a:hover {
  background: var(--panel-2);
}

.service-switcher a[aria-current="page"] {
  background:
    linear-gradient(rgba(251, 146, 60, 0.16), rgba(251, 146, 60, 0.08)),
    var(--panel);
}

.service-switcher span,
.service-switcher em {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: var(--fs-micro);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-switcher strong {
  color: var(--white);
  font-family: var(--sans);
  font-size: var(--fs-card-title);
  font-weight: 300;
  line-height: 1;
}

.service-switcher a[aria-current="page"] span,
.service-switcher a[aria-current="page"] em {
  color: var(--lime-soft);
}

.teardown-console {
  display: grid;
  align-items: stretch;
  gap: 8px;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
}

.console-copy {
  display: grid;
  align-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--shell) border-box;
  padding: 32px;
  box-shadow: var(--inset-shadow);
}

.console-copy p,
.value-grid p,
.booking-flow p,
.brief-copy p,
.brief-card li {
  color: var(--muted);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.console-grid {
  display: grid;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--shell) border-box;
  box-shadow: var(--inset-shadow), var(--float-shadow);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.console-grid article {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--panel);
  padding: 18px;
}

.console-grid article:nth-child(2n) {
  border-right: 0;
}

.console-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.console-grid span,
.booking-flow span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-weight: 300;
}

.console-grid strong {
  color: var(--white);
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 300;
  line-height: 0.96;
}

.console-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--fs-label);
  line-height: 1.48;
}

.value-grid,
.booking-flow {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid article,
.booking-flow article,
.brief-card {
  border: 1px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--shell) border-box;
  padding: 24px;
  box-shadow: var(--inset-shadow);
}

.value-grid article,
.booking-flow article {
  display: grid;
  min-height: 260px;
  align-content: space-between;
}

.value-grid h3,
.booking-flow h3 {
  margin-top: 34px;
  font-size: 28px;
}

.booking-flow {
  padding-bottom: 0;
}

.booking-flow + .section {
  padding-top: 44px;
}

.booking-console {
  display: grid;
  align-items: start;
  gap: 8px;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr) minmax(260px, 0.44fr);
}

.booking-console-copy,
.intake-form,
.booking-summary {
  border: 1px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--shell) border-box;
  box-shadow: var(--inset-shadow), var(--float-shadow);
}

.booking-console-copy,
.booking-summary {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
}

.booking-console-copy p,
.booking-summary p,
.intake-form label,
.intake-form input,
.intake-form textarea {
  color: var(--muted);
  font-size: var(--fs-body);
}

.intake-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.intake-form fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.intake-form legend {
  margin-bottom: 14px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-weight: 300;
  text-transform: uppercase;
}

.service-choice-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-choice {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 128px;
  align-content: space-between;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: #0d0b0a;
  padding: 16px;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
}

.service-choice input {
  position: absolute;
  inset: 12px 12px auto auto;
  width: 16px;
  height: 16px;
  accent-color: var(--lime);
}

.service-choice span,
.service-choice em,
.booking-summary dt {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: var(--fs-micro);
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
}

.service-choice strong {
  max-width: calc(100% - 24px);
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.12;
}

.service-choice:has(input:checked) {
  border-color: rgba(251, 146, 60, 0.72);
  background: rgba(251, 146, 60, 0.1);
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intake-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-weight: 300;
  text-transform: uppercase;
}

.intake-form input,
.intake-form textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #0d0b0a;
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.45;
  padding: 12px;
  resize: vertical;
}

.intake-form input::placeholder,
.intake-form textarea::placeholder {
  color: color-mix(in srgb, var(--quiet) 72%, transparent);
}

.intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}

.intake-actions .button[hidden] {
  display: none;
}

.booking-summary {
  position: sticky;
  top: 92px;
}

.booking-summary h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.booking-summary dl {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--line-soft);
  overflow: hidden;
}

.booking-summary dl div {
  display: grid;
  gap: 6px;
  background: #0d0b0a;
  padding: 14px;
}

.booking-summary dd {
  margin: 0;
  color: var(--white);
  font-size: var(--fs-body);
}

.contact-brief {
  display: grid;
  align-items: stretch;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
}

.brief-copy {
  display: grid;
  align-content: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 32px 0;
}

.brief-copy p {
  max-width: 680px;
}

.brief-card {
  align-content: start;
}

.brief-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.brief-card li {
  position: relative;
  padding-left: 22px;
}

.brief-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--lime);
}

.stage-list {
  display: grid;
  border-top: 1px solid var(--line-soft);
}

.stage-detail {
  display: grid;
  gap: 72px;
  grid-template-columns: 100px minmax(0, 1fr);
  border-bottom: 1px solid var(--line-soft);
  padding: 54px 0;
}

.stage-detail > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 300;
}

.stage-detail div {
  max-width: 840px;
}

.stage-detail p:not(.lead) {
  max-width: 720px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.detail-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid article,
.contact-grid article {
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  padding: 32px;
}

.detail-grid article:nth-child(odd):not(.wide) {
  border-right: 1px solid var(--line-soft);
}

.detail-grid article.wide {
  grid-column: 1 / -1;
}

.detail-grid ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-grid li {
  position: relative;
  padding-left: 24px;
}

.detail-grid li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--lime);
}

.contact-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid article {
  border-right: 1px solid var(--line-soft);
}

.contact-grid article:last-child {
  border-right: 0;
}

.contact-grid h2 {
  margin-top: 28px;
  font-size: 34px;
  overflow-wrap: anywhere;
}

.panel-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-grid article {
  display: grid;
  min-height: 292px;
  align-content: space-between;
  border: 1px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--shell) border-box;
  padding: 24px;
  box-shadow: var(--inset-shadow);
}

.panel-grid-tight article {
  min-height: 260px;
}

.panel-grid h3 {
  margin-top: 34px;
  font-size: 28px;
}

.panel-grid p,
.panel-grid li {
  color: var(--muted);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.panel-grid ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.panel-grid li {
  position: relative;
  padding-left: 22px;
}

.panel-grid li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--lime);
}

.comparison-table,
.decision-list {
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--shell) border-box;
  box-shadow: var(--inset-shadow), var(--float-shadow);
  overflow: hidden;
}

.comparison-table {
  overflow-x: auto;
}

.comparison-row {
  display: grid;
  gap: 1px;
  min-width: calc(180px * var(--comparison-count) + 170px);
  grid-template-columns: minmax(170px, 0.55fr) repeat(var(--comparison-count), minmax(180px, 1fr));
  border-bottom: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > * {
  margin: 0;
  background: var(--panel);
  padding: 18px;
}

.comparison-row span,
.comparison-row strong,
.decision-row span,
.decision-row strong {
  color: var(--lime);
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-weight: 300;
  text-transform: uppercase;
}

.comparison-row p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.55;
}

.comparison-row p::before {
  content: none;
}

.comparison-head > * {
  background: #0d0b0a;
}

.decision-row {
  display: grid;
  align-items: center;
  gap: 1px;
  grid-template-columns: 72px minmax(0, 1fr) minmax(180px, 0.36fr);
  border-bottom: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.decision-row:last-child {
  border-bottom: 0;
}

.decision-row > * {
  min-height: 82px;
  margin: 0;
  background: var(--panel);
  padding: 20px;
}

.decision-row p {
  color: var(--white);
  font-family: var(--sans);
  font-size: var(--fs-lead);
  line-height: 1.2;
}

.cta-band {
  display: grid;
  width: 100%;
  margin: 0;
  align-items: center;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  background: var(--bg);
  color: var(--white);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 72px var(--inset);
}

.cta-band h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: 54px;
}

.cta-band p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  background: var(--bg);
  color: var(--white);
  padding: 64px var(--inset) 28px;
}

.footer-top {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr minmax(260px, 420px);
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 34px;
}

.footer-brand .brand-mark {
  width: 28px;
  height: 28px;
}

.footer-top p,
.footer-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr 1.3fr;
  padding: 34px 0;
}

.footer-grid > div {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-grid a,
.footer-bottom a {
  color: inherit;
}

.footer-label {
  margin-bottom: 8px;
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 11px;
}

.reveal {
  transform: translateY(14px);
  opacity: 0.001;
  transition: transform 500ms ease, opacity 500ms ease;
}

.reveal[data-visible="true"] {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1040px) {
  :root {
    --section-y: 72px;
  }

  .hero-inner,
  .two-column,
  .teardown-console,
  .booking-console,
  .contact-brief,
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

  .hero-inner {
    width: var(--container);
    max-width: 760px;
  }

  .payment-board {
    display: none;
  }

  .page-hero {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .method-grid,
  .service-grid,
  .value-grid,
  .booking-flow,
  .panel-grid,
  .panel-grid-two,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-tile:nth-child(2) {
    border-right: 0;
  }

  .method-tile:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .contact-grid article:nth-child(2) {
    border-right: 0;
  }

  .contact-grid article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    border: 1px solid rgba(251, 146, 60, 0.28);
    border-radius: 12px;
    background: var(--panel);
    padding: 14px;
    box-shadow: var(--inset-shadow), var(--float-shadow);
  }

  .site-nav[data-open] {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
    align-items: center;
    padding: 10px;
  }

  .nav-cta {
    justify-content: center;
  }

  html[data-menu-open] {
    overflow: hidden;
  }

  .method-grid,
  .service-grid,
  .service-switcher,
  .console-grid,
  .value-grid,
  .booking-flow,
  .panel-grid,
  .panel-grid-two,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0;
    min-width: 0;
  }

  .comparison-row > * {
    padding: 16px;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row span {
    border-bottom: 1px solid var(--line-soft);
    background: #0d0b0a;
  }

  .comparison-row p::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 8px;
    color: var(--lime);
    font-family: var(--mono);
    font-size: var(--fs-label);
    font-weight: 300;
    text-transform: uppercase;
  }

  .comparison-row p + p {
    border-top: 1px solid var(--line-soft);
  }

  .decision-row {
    grid-template-columns: 1fr;
  }

  .decision-row > * {
    min-height: auto;
    padding: 16px;
  }

  .console-grid article,
  .console-grid article:nth-child(2n) {
    border-right: 0;
  }

  .console-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .console-grid article:last-child {
    border-bottom: 0;
  }

  .service-switcher a {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .service-switcher a:last-child {
    border-bottom: 0;
  }

  .hero-offerings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-choice-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .intake-actions .button {
    width: 100%;
  }

  .method-tile,
  .method-tile:nth-child(2) {
    border-right: 0;
  }

  .method-tile:nth-child(3) {
    border-bottom: 1px solid var(--line-soft);
  }

  .contact-grid article {
    border-right: 0;
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 16px;
    --container: min(var(--container-max), calc(100vw - (var(--gutter) * 2)));
    --section-y: 58px;
    --section-y-tight: 40px;
  }

  .site-header {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .brand {
    font-size: 14px;
  }

  .brand-word {
    font-size: 13px;
  }

  .hero {
    padding: var(--section-y-tight) var(--gutter) 22px;
  }

  .payment-board {
    display: none;
  }

  .page-hero {
    padding: 64px var(--inset);
  }

  .hero p,
  .page-hero p,
  .section-header p,
  .lead {
    font-size: var(--fs-lead);
  }

  .board-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .board-row em {
    width: max-content;
  }

  .board-metrics,
  .method-grid,
  .service-grid,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid article:nth-child(odd):not(.wide) {
    border-right: 0;
  }

  .hero-offerings {
    gap: 1px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-offerings a {
    min-height: 104px;
    padding: 10px 9px;
  }

  .hero-offerings strong {
    font-size: 13px;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero-offerings span,
  .hero-offerings em {
    font-size: 9px;
  }

  .service-card {
    min-height: 286px;
  }

  .stage-detail {
    grid-template-columns: 1fr;
  }

  .stage-detail > span {
    width: max-content;
    border-radius: 8px;
    background: var(--lime);
    color: #0a0908;
    padding: 7px 9px;
  }

  .issue-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
  }

  .issue-row p {
    font-size: 21px;
  }

  .footer-bottom {
    display: grid;
  }
}
