:root {
  --bg: #f7f7f4;
  --ink: #111316;
  --muted: #626a73;
  --faint: #8a929b;
  --line: rgba(17, 19, 22, 0.1);
  --line-strong: rgba(17, 19, 22, 0.16);
  --panel: #ffffff;
  --panel-soft: #f0f1ee;
  --black: #050608;
  --black-2: #0e1115;
  --blue: #0a66ff;
  --blue-dark: #074dbd;
  --teal: #11a6a6;
  --success: #13a06f;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-card: rgba(15, 23, 42, 0.09) 0 24px 80px -36px,
    rgba(15, 23, 42, 0.06) 0 1px 0;
  --shadow-panel: rgba(0, 0, 0, 0.34) 0 34px 90px -42px;
  --container: 1160px;
  --font-sans: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 244, 0.96) 38rem),
    radial-gradient(circle at 20% -8%, rgba(10, 102, 255, 0.08), transparent 30rem),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  font-feature-settings: 'liga' 1;
}

body::selection {
  background: rgba(10, 102, 255, 0.18);
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: break-word;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 247, 244, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(17, 19, 22, 0.08);
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 242px;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--black);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.04em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #3f464d;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 17px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: rgba(17, 19, 22, 0.2) 0 20px 46px -24px;
}

.button-primary:hover {
  background: #000;
}

.button-secondary,
.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  box-shadow: rgba(15, 23, 42, 0.04) 0 1px 2px;
}

.button-secondary:hover,
.button-ghost:hover {
  background: #fff;
  border-color: var(--line-strong);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-menu {
  display: none;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 560;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu.is-open {
  display: block;
}

.hero-section {
  padding: 96px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 54px;
  align-items: center;
}

.hero-grid > *,
.split-grid > *,
.pricing-shell > *,
.contact-shell > * {
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.066em;
  font-weight: 700;
}

.hero-lead {
  max-width: 650px;
  margin-top: 26px;
  color: #4c555f;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.022em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #4c555f;
  font-size: 13px;
  font-weight: 520;
  box-shadow: rgba(15, 23, 42, 0.04) 0 1px 2px;
}

.operator-panel {
  border-radius: 34px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--black);
  color: #f8fafc;
  box-shadow: var(--shadow-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-topline,
.metric-strip,
.queue-item,
.owner-note {
  position: relative;
  z-index: 1;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 6px 18px;
  color: rgba(248, 250, 252, 0.7);
  font-family: var(--font-mono);
  font-size: 12px;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.system-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(19, 160, 111, 0.14);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.metric-strip div {
  min-height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-label {
  display: block;
  min-height: 36px;
  color: rgba(248, 250, 252, 0.52);
  font-size: 12px;
  line-height: 1.35;
}

.metric-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.queue-list {
  display: grid;
  gap: 10px;
}

.queue-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 17px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.queue-item.hot {
  background: linear-gradient(135deg, rgba(10, 102, 255, 0.18), rgba(17, 166, 166, 0.09));
  border-color: rgba(70, 146, 255, 0.34);
}

.queue-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(248, 250, 252, 0.52);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.queue-item h3 {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.queue-item p {
  margin-top: 6px;
  color: rgba(248, 250, 252, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.queue-pill {
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.queue-pill.muted {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 252, 0.72);
}

.owner-note {
  margin-top: 12px;
  padding: 18px;
  border-radius: 24px;
  background: #f8fafc;
  color: var(--ink);
}

.owner-note span {
  color: var(--blue-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-note p {
  margin-top: 8px;
  color: #39414a;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.statement-band {
  padding: 0 0 30px;
}

.statement-inner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.statement-inner p {
  max-width: 940px;
  color: #252a30;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.05em;
  font-weight: 650;
}

.content-section {
  padding: 94px 0;
}

.section-shell {
  display: grid;
  gap: 38px;
}

.section-heading {
  max-width: 760px;
}

.section-heading.compact {
  max-width: 560px;
}

.section-heading h2,
.pricing-copy h2,
.contact-shell h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.058em;
  font-weight: 700;
}

.section-heading p:not(.eyebrow),
.pricing-copy p,
.contact-shell p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.016em;
}

.artifact-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.artifact-card,
.process-step,
.price-card,
.contact-card,
.fit-list article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.artifact-card {
  min-height: 288px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.artifact-number,
.process-step span,
.price-label,
.contact-label {
  color: var(--blue-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artifact-card h3,
.process-step h3,
.fit-list span {
  margin-top: auto;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.artifact-card p,
.process-step p,
.fit-list p,
.price-card p,
.contact-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.split-section {
  background: #eceeea;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 50px;
  align-items: start;
}

.fit-list {
  display: grid;
  gap: 12px;
}

.fit-list article {
  padding: 22px;
}

.fit-list span {
  display: block;
  margin-top: 0;
  font-size: 22px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  min-height: 260px;
  padding: 22px;
}

.process-step h3 {
  margin-top: 72px;
  font-size: 22px;
}

.pricing-section {
  background: var(--black);
  color: #f8fafc;
}

.pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: start;
}

.pricing-copy h2,
.pricing-copy p:not(.eyebrow) {
  color: #f8fafc;
}

.pricing-copy p:not(.eyebrow) {
  color: rgba(248, 250, 252, 0.62);
}

.pricing-section .eyebrow {
  color: #8fc7ff;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.price-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.price-card.featured {
  background: #f8fafc;
  color: var(--ink);
}

.price-card strong {
  display: block;
  margin-top: 20px;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-card:not(.featured) strong,
.price-card:not(.featured) h3 {
  color: #f8fafc;
}

.price-card:not(.featured) p,
.price-card:not(.featured) li {
  color: rgba(248, 250, 252, 0.62);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: var(--muted);
  font-size: 14px;
}

.price-card li::before {
  content: '—';
  margin-right: 8px;
  color: var(--blue);
}

.contact-section {
  padding-bottom: 84px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.58fr);
  gap: 36px;
  align-items: stretch;
  padding: 34px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: var(--panel-soft);
  box-shadow: none;
}

.contact-card strong {
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.contact-card .button {
  width: fit-content;
  margin-top: 8px;
}

.site-footer {
  padding: 30px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.footer-inner p {
  margin-top: 6px;
  font-size: 14px;
}

.footer-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .brand-lockup {
    min-width: 0;
  }

  .hero-section {
    padding: 64px 0 48px;
  }

  .hero-grid,
  .split-grid,
  .pricing-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .operator-panel {
    max-width: 620px;
  }

  .artifact-grid,
  .process-grid,
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .header-inner {
    height: 66px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 10.9vw, 48px);
    line-height: 1;
    letter-spacing: -0.048em;
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .operator-panel {
    border-radius: 26px;
    padding: 12px;
  }

  .metric-strip,
  .artifact-grid,
  .process-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .metric-strip div {
    min-height: 82px;
  }

  .metric-label {
    min-height: 0;
  }

  .queue-item {
    grid-template-columns: 1fr;
  }

  .statement-inner p {
    font-size: 25px;
  }

  .content-section {
    padding: 66px 0;
  }

  .artifact-card,
  .process-step {
    min-height: auto;
  }

  .artifact-card h3,
  .process-step h3 {
    margin-top: 54px;
  }

  .contact-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .footer-inner {
    display: grid;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}
