/* ============================================================
   BAY STATE FIELD OPS — site.css
   Design system: Signal
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --bg:           #0D1B2A;
  --bg-deep:      #081320;
  --surface:      #11283C;
  --surface-alt:  #0F2334;
  --surface-line: #1F3A52;
  --ink:          #F4F2E8;
  --ink-dim:      #A8B6C8;
  --ink-mute:     #6C7E94;
  --yellow:       #FFB703;
  --yellow-deep:  #E89E00;
  --yellow-soft:  rgba(255, 183, 3, 0.12);
  --yellow-line:  rgba(255, 183, 3, 0.28);
  --red:          #FF4D2E;
  --green:        #7BC67B;

  --sans: 'Geist', 'Inter', system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, monospace;

  --radius-card: 14px;
  --radius-btn:  10px;
  --radius-sm:   8px;

  --wrap-max: 1080px;
  --wrap-pad: clamp(24px, 6vw, 80px);
  --section-py: clamp(64px, 8vw, 100px);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Wrap ─────────────────────────────────────────────────── */
.wrap {
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--wrap-pad);
}

/* ── Nav ──────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--surface-line);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--wrap-pad);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--ink);
  text-decoration: none;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-brand-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: var(--ink);
}

.nav-brand-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--bg-deep);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--yellow-deep); }

/* ── Footer ───────────────────────────────────────────────── */
.site-foot {
  background: var(--bg-deep);
  border-top: 1px solid var(--surface-line);
}

.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--wrap-pad);
  max-width: var(--wrap-max);
  margin-inline: auto;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-left,
.foot-right {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ── Eyebrow ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--bg-deep);
}

.btn-primary:hover { background: var(--yellow-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--surface-line);
}

.btn-ghost:hover { border-color: var(--ink-dim); }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  padding: 28px;
}

/* ── Yellow accent text ───────────────────────────────────── */
.yellow { color: var(--yellow); }

/* ── Pill label ───────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--yellow);
  background: var(--yellow-soft);
  border: 1px solid var(--yellow-line);
  border-radius: 100px;
  padding: 6px 14px;
  letter-spacing: 0.3px;
  margin-bottom: 32px;
}

/* ── Section padding ──────────────────────────────────────── */
.section {
  padding-block: var(--section-py);
}

.section-sm {
  padding-block: clamp(40px, 5vw, 64px);
}

/* ── Step badge ───────────────────────────────────────────── */
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--yellow-soft);
  border: 1px solid var(--yellow-line);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

/* ── Step duration ────────────────────────────────────────── */
.step-duration {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ── Pain card number badge ───────────────────────────────── */
.pain-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pain-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background: var(--yellow-soft);
  border: 1px solid var(--yellow-line);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--yellow);
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--surface-line);
  margin-block: 24px;
}

/* ── Mono small ───────────────────────────────────────────── */
.mono-sm {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.3px;
}

/* ── Checkmark list ───────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

.cross-list li::before {
  content: '✕';
  color: var(--red);
}

/* ============================================================
   INDEX PAGE
   ============================================================ */

/* Hero */
.hero {
  padding-block: clamp(80px, 10vw, 120px);
  text-align: center;
}

.hero-headline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(52px, 8vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-dim);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
}

/* Spec strip */
.spec-strip {
  background: var(--surface-alt);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-top: 64px;
}

.spec-item {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--surface-line);
}

.spec-item:last-child { border-right: none; }

.spec-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.3px;
}

.spec-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.3;
}

.spec-body {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* Pain section */
.pain-section {
  padding-block: var(--section-py);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.pain-left {
  position: sticky;
  top: 96px;
}

.pain-left h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.pain-left p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.6;
}

.pain-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pain-card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  padding: 28px;
}

.pain-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--ink);
}

.pain-card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
}

/* Process section */
.process-section {
  padding-block: var(--section-py);
}

.section-center {
  text-align: center;
  margin-bottom: 64px;
}

.section-center h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.3;
}

.step-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.65;
}

/* FAQ section */
.faq-section {
  padding-block: var(--section-py);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 96px;
}

.faq-left h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.faq-left p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.6;
}

.faq-list {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-item {
  padding: 28px 32px;
  border-bottom: 1px solid var(--surface-line);
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.65;
}

/* CTA section */
.cta-section {
  padding-block: var(--section-py);
  background: var(--bg-deep);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-left h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-left p {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.65;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.3px;
}

.cta-card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  padding: 32px;
}

.cta-card-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-hero {
  padding-block: clamp(80px, 10vw, 120px);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-hero-left h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.about-hero-left p {
  font-size: 17px;
  color: var(--ink-dim);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}

/* Operator ID card */
.id-card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.id-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--surface-line);
}

.id-card-header-left {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.id-card-header-right {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.3px;
}

.id-card-photo {
  margin: 20px;
  background: var(--bg-deep);
  border: 1px dashed var(--surface-line);
  border-radius: 8px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.id-card-photo span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.id-card-info {
  padding: 0 20px 20px;
}

.id-card-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}

.id-card-role {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.id-card-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--surface-line);
  padding-top: 16px;
}

.id-stat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--surface-line);
}

.id-stat:last-child { border-bottom: none; }

.id-stat-val {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--yellow);
  min-width: 60px;
  flex-shrink: 0;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.id-stat-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1.4;
  padding-top: 1px;
}

/* Story section */
.story-section {
  padding-block: var(--section-py);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.story-left {
  position: sticky;
  top: 96px;
}

.story-left h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.story-beats {
  display: flex;
  flex-direction: column;
}

.story-beat {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--surface-line);
}

.story-beat:first-child { padding-top: 0; }
.story-beat:last-child { border-bottom: none; }

.story-beat-num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--yellow);
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  padding-top: 4px;
}

.story-beat-content {
  flex: 1;
}

.story-beat-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.story-beat p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.65;
}

/* Principles section */
.principles-section {
  padding-block: var(--section-py);
}

.principles-grid {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-top: 56px;
}

.principle-item {
  padding: 36px 32px;
  border-right: 1px solid var(--surface-line);
  border-bottom: 1px solid var(--surface-line);
}

.principle-item:nth-child(2n) { border-right: none; }
.principle-item:nth-child(3),
.principle-item:nth-child(4) { border-bottom: none; }

.principle-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.principle-item h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
}

.principle-item p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.65;
}

/* Fit section */
.fit-section {
  padding-block: var(--section-py);
}

.fit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.fit-card {
  border-radius: var(--radius-card);
  padding: 32px;
}

.fit-card-good {
  background: rgba(123, 198, 123, 0.07);
  border: 1px solid rgba(123, 198, 123, 0.25);
}

.fit-card-bad {
  background: rgba(255, 77, 46, 0.07);
  border: 1px solid rgba(255, 77, 46, 0.22);
}

.fit-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.4;
}

.fit-card .check-list li {
  font-size: 14px;
}

/* ============================================================
   WHY SOFTWARE PAGE
   ============================================================ */

.why-hero {
  padding-block: clamp(80px, 10vw, 120px);
}

.why-hero h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  max-width: 900px;
}

.why-hero p {
  font-size: 19px;
  color: var(--ink-dim);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid var(--yellow);
  padding-left: 20px;
}

.why-list li {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Before/After table */
.table-section {
  padding-block: var(--section-py);
}

.table-section h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.table-section > .wrap > p {
  font-size: 16px;
  color: var(--ink-dim);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.ba-table {
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
}

.ba-table th,
.ba-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--surface-line);
  border-right: 1px solid var(--surface-line);
  vertical-align: top;
}

.ba-table th:last-child,
.ba-table td:last-child { border-right: none; }

.ba-table tr:last-child td { border-bottom: none; }

.ba-table thead tr {
  background: var(--surface-alt);
}

.ba-table th {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.ba-table tbody tr:nth-child(odd) { background: rgba(17, 40, 60, 0.4); }
.ba-table tbody tr:nth-child(even) { background: transparent; }

.ba-table td:first-child {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  width: 130px;
}

.ba-table td:nth-child(2) {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
}

.ba-table td:nth-child(3) {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}

.col-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-red { background: var(--red); }
.dot-yellow { background: var(--yellow); }

/* Outcomes */
.outcomes-section {
  padding-block: var(--section-py);
}

.outcomes-grid {
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-top: 56px;
}

.outcome-item {
  padding: 36px 28px;
  border-right: 1px solid var(--surface-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.outcome-item:last-child { border-right: none; }

.outcome-val {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.03em;
}

.outcome-unit {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 4px;
}

.outcome-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.3;
}

.outcome-note {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.55;
}

.outcomes-disclaimer {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* What you get back */
.getback-section {
  padding-block: var(--section-py);
}

.getback-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.getback-left {
  position: sticky;
  top: 96px;
}

.getback-left h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.getback-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.getback-card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  padding: 28px;
}

.getback-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.getback-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.getback-card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
}

/* Reality check section */
.reality-section {
  padding-block: var(--section-py);
}

.reality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.reality-card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  padding: 32px;
}

.reality-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.reality-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
}

.reality-card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.65;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-hero {
  padding-block: clamp(64px, 8vw, 100px);
}

.contact-hero h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 600px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
  padding-block: var(--section-py);
}

/* Contact sidebar */
.contact-sidebar {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  padding: 28px;
}

.contact-sidebar-divider {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--surface-line);
  margin-bottom: 16px;
  margin-top: 28px;
}

.contact-sidebar-divider:first-child { margin-top: 0; }

.contact-sidebar dl {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

.contact-sidebar dt {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-sidebar dd {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
}

.contact-sidebar dd a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-sidebar ol {
  list-style: decimal;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.contact-sidebar ol li {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
}

.contact-sidebar p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.55;
}

.contact-sidebar p a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact form */
.contact-form-head h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.contact-kicker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Form fields */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--yellow);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-mute);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.field .hint {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.3px;
}

/* Check chips */
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.check-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-dim);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  user-select: none;
}

.check-chip input[type="checkbox"] {
  display: none;
}

.check-chip:has(input:checked) {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--bg-deep);
}

/* Form actions */
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-actions .muted {
  font-size: 13px;
  color: var(--ink-mute);
}

.form-actions .muted a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Form alerts */
.form-success,
.form-error {
  grid-column: 1 / -1;
  display: none;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.5;
}

.form-success {
  background: rgba(123, 198, 123, 0.12);
  border: 1px solid rgba(123, 198, 123, 0.3);
  color: var(--green);
}

.form-error {
  background: rgba(255, 77, 46, 0.1);
  border: 1px solid rgba(255, 77, 46, 0.28);
  color: var(--red);
}

.form-error a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact stats strip */
.contact-stats {
  padding-block: clamp(40px, 5vw, 64px);
}

.stats-strip {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.stats-strip-item {
  padding: 32px 28px;
  border-right: 1px solid var(--surface-line);
}

.stats-strip-item:last-child { border-right: none; }

.stat-val {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat-unit {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.4;
  margin-top: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .nav-links { display: none; }

  .nav-inner { gap: 16px; }

  /* Hero */
  .hero-headline { font-size: clamp(40px, 10vw, 64px); }
  .hero-sub { font-size: 16px; }

  /* Spec strip */
  .spec-strip {
    grid-template-columns: 1fr;
  }
  .spec-item { border-right: none; border-bottom: 1px solid var(--surface-line); }
  .spec-item:last-child { border-bottom: none; }

  /* Pain */
  .pain-grid { grid-template-columns: 1fr; gap: 40px; }
  .pain-left { position: static; }
  .pain-cards { grid-template-columns: 1fr; }

  /* Process */
  .steps-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }

  /* CTA */
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }

  /* About */
  .about-hero-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-left { position: static; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-item { border-right: none; }
  .principle-item:nth-child(3) { border-bottom: 1px solid var(--surface-line); }
  .fit-cards { grid-template-columns: 1fr; }

  /* Why software */
  .why-hero h1 { font-size: clamp(40px, 9vw, 64px); }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .outcome-item { border-bottom: 1px solid var(--surface-line); }
  .outcome-item:nth-child(2) { border-right: none; }
  .outcome-item:nth-child(3) { border-right: 1px solid var(--surface-line); }
  .outcome-item:nth-child(3),
  .outcome-item:nth-child(4) { border-bottom: none; }
  .getback-grid { grid-template-columns: 1fr; gap: 40px; }
  .getback-left { position: static; }
  .getback-cards { grid-template-columns: 1fr; }
  .reality-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form { grid-template-columns: 1fr; }
  .field.full { grid-column: 1; }
  .form-actions { grid-column: 1; }
  .form-success,
  .form-error { grid-column: 1; }
  .stats-strip { grid-template-columns: 1fr; }
  .stats-strip-item { border-right: none; border-bottom: 1px solid var(--surface-line); }
  .stats-strip-item:last-child { border-bottom: none; }

  /* Footer */
  .foot-inner { flex-direction: column; gap: 8px; text-align: center; }

  /* BA table scroll wrapper */
  .ba-table-wrap { overflow-x: auto; }
  .ba-table { font-size: 13px; }
  .ba-table th,
  .ba-table td { padding: 12px 14px; }
}

@media (max-width: 480px) {
  :root { --wrap-pad: 20px; }

  .hero-headline { font-size: clamp(36px, 10vw, 52px); }
  .about-hero-left h1 { font-size: clamp(40px, 10vw, 60px); }
  .why-hero h1 { font-size: clamp(36px, 9vw, 52px); }

  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-item { border-right: none; }
  .outcome-item:nth-child(3) { border-right: none; }
}