/* NET1Plus LLC — site styles
   Tokens and measurements transcribed from design/*.dc.html (August 2026 revision).

   The design files ship 100% inline styles with a single 760px breakpoint. This
   sheet keeps the design's values but restores the production hardening the
   prototypes have no notion of: skip link, focus-visible rings, the 1080px
   tablet reflow, collage aspect handling, and min-width:0 on grid children. */

:root {
  --accent: #1670B3;
  --accent-hover: #0F5A94;
  --accent-soft: rgba(22, 112, 179, 0.08);
  --accent-on-dark: #6FB1E0;
  --magenta: #A6238E;

  --ink: #14181C;
  --body: #5B6672;
  --muted: #8792A0;

  --page: #ffffff;
  --card: #ffffff;
  --border: #E7EBEF;
  --border-strong: #D7DDE3;
  --chip: #F1F4F7;
  --row-hover: #F7FAFC;

  /* Dark surfaces: the contact section, the idea card, the dark page bands.
     --ink doubles as the input/well background inside --dark-card panels. */
  --dark-card: #1C2127;
  --dark-border: #2B323B;
  --dark-dim: #3E4650;
  --on-dark: #A6B0BC;
  --on-dark-2: #C8D0D9;
  --on-dark-dim: #8792A0;
  --recaptcha-note: #6B7580;

  --warn: #e8a13c;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --wrap-legal: 860px;
  --pad-x: 36px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--page); }

body {
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; }

/* Long compound service names must never force horizontal scroll on narrow phones */
h1, h2, h3, p, .menu-name, .era-detail, .service-body { overflow-wrap: break-word; }

/* Visible focus for keyboard users — accessibility statement commits to this */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* On the dark contact panel the accent ring is too low-contrast to see */
.contact-card :focus-visible,
.dp-panel :focus-visible { outline-color: var(--accent-on-dark); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus { left: 0; color: #ffffff; }

/* ---------- layout ---------- */

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.page { background: var(--page); }

/* ---------- header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  border-bottom: 1px solid var(--border);
}
.logo { display: block; }
.logo img { width: 240px; height: 60px; object-fit: contain; object-position: left center; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.site-nav a { text-decoration: none; }
.nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--accent); }

/* ---------- buttons ---------- */

.btn-nav {
  background: var(--accent);
  color: #ffffff;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.btn-nav:hover { background: var(--accent-hover); color: #ffffff; }

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  color: #ffffff;
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}
.btn-primary:hover { background: var(--accent-hover); color: #ffffff; }

.btn-secondary {
  display: inline-block;
  text-decoration: none;
  border: 1.5px solid var(--border-strong);
  color: var(--ink);
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}
.btn-secondary:hover { background: var(--accent-soft); color: var(--ink); }

/* ---------- type ---------- */

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow-muted {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-on-dark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
}

h1, h2, h3 { color: var(--ink); }

.h1 {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 1020px;
  text-wrap: pretty;
}
.h1 em { color: var(--accent); font-style: normal; }

.h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.01em; margin: 0; }

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
  text-wrap: pretty;
}

/* ---------- hero ---------- */

.hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 56px var(--pad-x) 0;
  text-align: center;
}
.hero .lede { margin: 28px auto 0; max-width: 780px; }
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ---------- collage ---------- */

.collage-section { max-width: var(--wrap); margin: 44px auto 0; padding: 0 var(--pad-x); }
.collage-rel { position: relative; }
.collage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 14px;
  height: 380px;
}
.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.collage-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ink);
  color: #ffffff;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 13.5px;
  font-weight: 600;
  pointer-events: none;
}

/* ---------- services ---------- */

.services { max-width: var(--wrap); margin: 0 auto; padding: 72px var(--pad-x) 28px; }
.services-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.services-aside {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services-aside p { font-size: 16px; line-height: 1.55; color: var(--body); margin: 0; }
.services-aside a { font-weight: 600; font-size: 15px; text-decoration: none; }
.services-list { display: flex; flex-direction: column; }

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 1.2fr;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.service-row:hover { background: var(--row-hover); }
.service-num { font-size: 13px; font-weight: 700; color: var(--accent); }
.service-row h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin: 0; }
.service-body { display: flex; flex-direction: column; gap: 12px; }
.service-body p { font-size: 14.5px; line-height: 1.55; color: var(--body); margin: 0; }
.service-body a { font-weight: 600; font-size: 14px; text-decoration: none; }
.services-end { border-top: 1px solid var(--border); }

.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--body);
  background: var(--chip);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 10px;
}

/* ---------- why ---------- */

.why {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 40px;
}
.why-inner { max-width: var(--wrap); margin: 0 auto; padding: 72px var(--pad-x); }
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: start;
}
.why-col { display: flex; flex-direction: column; gap: 20px; }
.why-col h2 { font-size: 40px; line-height: 1.12; font-weight: 800; letter-spacing: -0.01em; margin: 0; text-wrap: pretty; }
.why-col p { font-size: 16.5px; line-height: 1.65; color: var(--body); margin: 0; }
.why-note { font-size: 14.5px !important; line-height: 1.6 !important; color: var(--muted) !important; font-style: italic; }

.idea-card {
  background: var(--ink);
  border-radius: 12px;
  padding: 30px 32px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.idea-card h3 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  color: #ffffff;
  text-wrap: pretty;
}
.idea-card p { font-size: 15px; line-height: 1.65; color: var(--on-dark); margin: 0; }
.idea-card a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--accent-on-dark);
  align-self: flex-start;
  padding-bottom: 2px;
}
.idea-card a:hover { color: #ffffff; border-bottom-color: var(--magenta); }

/* timeline */
.timeline-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
}
.timeline-card > .eyebrow-muted { margin-bottom: 18px; display: block; }
.timeline { display: flex; flex-direction: column; }
.era { display: grid; grid-template-columns: 92px 14px 1fr; gap: 12px; align-items: stretch; }
.era-year {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0 14px;
  text-align: right;
}
.era-rail { display: flex; flex-direction: column; align-items: center; }
.era-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex: none;
}
.era-dot.today { background: var(--magenta); }
.era-line { width: 2px; flex: 1; background: var(--border); }
.era-body { padding: 5px 0 16px; }
.era-head { font-size: 14.5px; line-height: 1.45; font-weight: 700; color: var(--ink); }
.era-detail { font-size: 13px; line-height: 1.55; color: var(--body); margin-top: 3px; }

/* values */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 32px;
}
.value { display: flex; flex-direction: column; gap: 8px; }
.value-title { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; color: var(--accent); }
.value-desc { font-size: 14.5px; line-height: 1.55; color: var(--body); }

/* ---------- steps ---------- */

.steps-section { max-width: var(--wrap); margin: 0 auto; padding: 72px var(--pad-x); }
.steps-section > .eyebrow { display: block; margin-bottom: 12px; }
.steps-section h2 { margin: 0 0 48px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 32px;
  border-right: 1px solid var(--border);
}
.step-num { font-size: 52px; font-weight: 800; letter-spacing: -0.02em; color: var(--accent); line-height: 1; }
.step-title { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.step-desc { font-size: 15px; line-height: 1.6; color: var(--body); }

/* ---------- pricing band ---------- */

.pricing-section { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x) 72px; }
.pricing-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.pricing-box h2 { font-size: 36px; line-height: 1.15; }
.pricing-box p { font-size: 17px; line-height: 1.65; color: var(--body); margin: 0; text-wrap: pretty; }

/* ---------- contact ---------- */

.contact { background: var(--ink); }
.contact-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 72px var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.contact-intro { display: flex; flex-direction: column; gap: 18px; }
.contact-intro h2 {
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  color: #ffffff;
  text-wrap: pretty;
}
.contact-intro p { font-size: 16.5px; line-height: 1.65; color: var(--on-dark); margin: 0; max-width: 480px; }
.contact-confidence { font-size: 14px !important; line-height: 1.6 !important; color: var(--on-dark-dim) !important; font-style: italic; }

.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Native select popups, scrollbars and autofill follow the panel, not the OS */
  color-scheme: dark;
}
.field-pair { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-dark);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: #ffffff;
  font-family: var(--sans);
}
.field textarea { resize: vertical; }

.call-times { display: flex; flex-direction: column; gap: 10px; }
.call-times-label { font-size: 13px; font-weight: 600; color: var(--on-dark); }
.call-times-label span { font-weight: 400; color: var(--on-dark-dim); }
.call-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px; }
.call-grid select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: #ffffff;
  font-family: var(--sans);
}

/* ---------- custom date picker ----------
   Native <input type="date"> cannot disable arbitrary dates, so weekends and
   holidays are rendered as disabled cells in this calendar instead. The design
   file reverted to a native picker with an after-the-fact warning; this is the
   kept behavior, restyled for the dark form panel. */

.datepicker { position: relative; }

.dp-trigger {
  width: 100%;
  text-align: left;
  background: var(--ink);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--sans);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dp-trigger:hover { border-color: var(--dark-dim); }
.dp-trigger[aria-expanded="true"] { border-color: var(--accent); }
.dp-trigger::after {
  content: "";
  width: 13px;
  height: 13px;
  flex: none;
  border: 1.5px solid var(--on-dark-dim);
  border-radius: 3px;
  box-shadow: inset 0 3px 0 -1.5px var(--on-dark-dim);
}
.dp-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dp-value.is-empty { color: var(--on-dark-dim); }

.dp-panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  width: 272px;
  max-width: calc(100vw - 80px);
  background: var(--ink);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}
.dp-panel[hidden] { display: none; }

.dp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.dp-month {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--sans);
}
.dp-nav {
  background: transparent;
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  color: #ffffff;
  width: 28px;
  height: 28px;
  line-height: 1;
  font-size: 15px;
  cursor: pointer;
  flex: none;
  font-family: var(--sans);
}
.dp-nav:hover:not(:disabled) { background: var(--dark-border); }
.dp-nav:disabled { color: var(--dark-dim); cursor: default; border-color: #232A31; }

.dp-dow, .dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-dow { margin-bottom: 4px; }
.dp-dow span {
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  padding: 4px 0;
}

.dp-day {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 13px;
  height: 32px;
  cursor: pointer;
  padding: 0;
}
.dp-day:hover:not(:disabled) { background: var(--dark-border); }
.dp-day:disabled {
  color: var(--dark-dim);
  cursor: default;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.dp-day.is-selected { background: var(--accent); color: #ffffff; font-weight: 700; }
.dp-day.is-selected:hover { background: var(--accent); }
.dp-blank { height: 32px; }

.dp-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--dark-border);
}
.dp-hint { font-size: 11px; line-height: 1.4; color: var(--on-dark-dim); }
.dp-clear {
  background: transparent;
  border: 0;
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  flex: none;
}
.dp-clear:hover { background: var(--dark-border); color: #ffffff; }

.date-warning { font-size: 13px; color: var(--warn); }
.call-note { font-size: 12px; color: var(--on-dark-dim); }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.recaptcha-note { font-size: 11.5px; line-height: 1.5; color: var(--recaptcha-note); }
.recaptcha-note a { color: var(--on-dark-dim); }
.recaptcha-note a:hover { color: var(--accent-on-dark); }

.form-error {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--warn);
  margin: 0;
}

.btn-submit {
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--sans);
  cursor: pointer;
  align-self: flex-start;
}
.btn-submit:hover { background: #ffffff; color: var(--ink); }
.btn-submit[disabled] { opacity: 0.6; cursor: default; }

.thanks-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.thanks-card .thanks-title { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; color: #ffffff; }
.thanks-card p { font-size: 15px; line-height: 1.6; color: var(--on-dark); margin: 0; }

/* Google's badge is hidden; the disclosure line above satisfies their terms */
.grecaptcha-badge { visibility: hidden; }

/* ---------- footer ---------- */

.site-footer { background: var(--card); border-top: 1px solid var(--border); }
.footer-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 48px var(--pad-x) 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-name { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col > .eyebrow-muted { font-size: 12px; margin-bottom: 4px; }
.footer-col a { color: var(--body); text-decoration: none; }
.footer-col a:hover { color: var(--accent); }
.footer-col div:not(.eyebrow-muted) { color: var(--body); }

.footer-bar { border-top: 1px solid var(--border); }
.footer-bar-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

/* ---------- service pages: shared hero ---------- */

.svc-hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 56px var(--pad-x) 0;
  text-align: center;
}
.svc-hero > .eyebrow { display: block; margin-bottom: 18px; }
.svc-hero h1 {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 1020px;
  text-wrap: pretty;
}
.svc-hero h1 em { color: var(--accent); font-style: normal; }
.svc-hero .lede { margin: 28px auto 0; max-width: 780px; }
.svc-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ---------- infrastructure page ---------- */

.menu-section { max-width: var(--wrap); margin: 48px auto 0; padding: 0 var(--pad-x); }
.menu-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px 48px;
}
.menu-card > .eyebrow { display: block; margin-bottom: 8px; }
.menu-card h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 28px; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.menu-item {
  display: flex;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid var(--chip);
  padding-bottom: 14px;
}
.menu-num { font-size: 13px; font-weight: 700; color: var(--accent); flex: none; }
.menu-name { font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.5; }

.engage-section { max-width: var(--wrap); margin: 48px auto 0; padding: 0 var(--pad-x); }
.engage-section h2 { margin: 0 0 14px; }
.section-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 40px;
  max-width: 660px;
}
.engage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.engage-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.engage-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.engage-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.engage-num { font-size: 13px; font-weight: 600; color: var(--muted); }
.engage-card h3 { font-size: 22px; line-height: 1.25; font-weight: 800; letter-spacing: -0.01em; margin: 0; }
.engage-card p { font-size: 15.5px; line-height: 1.7; color: var(--body); margin: 0; }
.engage-fit { font-size: 14px; line-height: 1.6; color: var(--muted); font-style: italic; margin-top: auto; }

.projects-section { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad-x); }
.projects-box {
  background: var(--ink);
  border-radius: 12px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.projects-intro { display: flex; flex-direction: column; gap: 12px; }
.projects-intro h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  color: #ffffff;
  text-wrap: pretty;
}
.projects-intro p { font-size: 16px; line-height: 1.7; color: var(--on-dark); margin: 0; }
.projects-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.project-item { display: flex; gap: 12px; align-items: baseline; }
.project-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  position: relative;
  top: -2px;
}
.project-name { font-size: 15.5px; line-height: 1.55; color: var(--on-dark-2); }

.platforms {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.platforms-inner { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad-x); }
.platforms-inner h2 { margin: 0 0 14px; }
.platform-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.platform-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.platform-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 0; }
/* Platform chips are 12px radius here, not the 20px pill the homepage uses */
.platform-card .tag { border-radius: 12px; }

/* ---------- shared closing CTA band ---------- */

.cta-band { background: var(--ink); }
.cta-band-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta-band h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  color: #ffffff;
  text-wrap: pretty;
}
.cta-band p { font-size: 17px; line-height: 1.6; color: var(--on-dark); margin: 0; max-width: 520px; }
.cta-band .btn-primary { margin-top: 10px; }
.cta-band .btn-primary:hover { background: #ffffff; color: var(--ink); }

/* The AI page closes with a narrower, one-step-smaller version of the band */
.cta-band--tight .cta-band-inner { max-width: 712px; padding: 72px var(--pad-x); }
.cta-band--tight h2 { font-size: 36px; }
.cta-band--tight p { font-size: 16px; max-width: none; text-wrap: balance; }

/* ---------- AI-Directed Engineering page ---------- */

.ai-hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 56px var(--pad-x);
  text-align: center;
}
.ai-hero > .eyebrow { display: block; margin-bottom: 18px; }
.ai-hero h1 {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.ai-hero h1 em { color: var(--accent); font-style: normal; }
.ai-hero .lede { max-width: 780px; margin: 0 auto 40px; }
.ai-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Hairline grids: a 1px gap over a border-coloured backing draws the rules */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stat { background: var(--card); padding: 32px 16px; }
.stat-num { font-size: 38px; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 14px; color: var(--body); margin-top: 6px; }

.ai-section { padding: 72px var(--pad-x); }
.ai-section-bordered { border-top: 1px solid var(--border); }
.ai-inner { max-width: var(--wrap); margin: 0 auto; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head > .eyebrow { display: block; margin-bottom: 12px; }
.section-head h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 16px; }
.section-head p { font-size: 17px; line-height: 1.55; color: var(--body); margin: 0; text-wrap: balance; }

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

.n-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.n-card:hover { box-shadow: 0 8px 28px rgba(20, 24, 28, 0.08); transform: translateY(-2px); }
.n-card-title { font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.n-card-text { font-size: 14.5px; line-height: 1.55; color: var(--body); }

.proc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.proc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.proc-num { font-size: 52px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: var(--accent); }
.proc-meta { font-size: 12px; color: var(--muted); white-space: nowrap; }
.proc-title { font-weight: 700; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 8px; }
.proc-desc { font-size: 15px; line-height: 1.6; color: var(--body); }

.module-box {
  background: var(--ink);
  border-radius: 12px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  margin-top: 32px;
}
.module-left { display: flex; flex-direction: column; gap: 10px; }
.module-left h2 { font-size: 36px; line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; margin: 0; color: #ffffff; }
.module-price { font-size: 52px; font-weight: 800; letter-spacing: -0.02em; color: #ffffff; margin-top: 8px; }
.module-facts { display: flex; flex-direction: column; gap: 16px; }
.module-fact { display: flex; gap: 14px; align-items: baseline; }
.module-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-on-dark);
  flex: none;
  position: relative;
  top: -2px;
}
.module-fact-text { font-size: 16px; line-height: 1.6; color: var(--on-dark-2); }
.module-fact-text strong { color: #ffffff; }

.scaffold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.scaffold { background: var(--card); padding: 28px; }
.scaffold-num { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.scaffold-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.scaffold-desc { font-size: 14px; line-height: 1.5; color: var(--body); }
.scaffold-note { text-align: center; font-size: 14.5px; color: var(--body); }
.scaffold-note strong { font-weight: 700; color: var(--ink); }

.offer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.offer-card:hover { box-shadow: 0 8px 28px rgba(20, 24, 28, 0.08); transform: translateY(-2px); }
.offer-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.offer-title { font-weight: 700; font-size: 19px; margin-bottom: 10px; }
.offer-desc { font-size: 14.5px; line-height: 1.55; color: var(--body); margin-bottom: 16px; }
.offer-price { margin-top: auto; font-weight: 700; color: var(--accent); }

/* ---------- legal pages ---------- */

.legal-page {
  background: var(--page);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap-legal);
  width: 100%;
  margin: 0 auto;
  padding: 22px var(--pad-x);
}
.legal-wordmark {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.legal-wordmark:hover { color: var(--ink); }
.legal-back { font-size: 14px; font-weight: 600; text-decoration: none; }
.legal-main {
  max-width: var(--wrap-legal);
  width: 100%;
  margin: 0 auto;
  padding: 32px var(--pad-x) 72px;
  flex: 1;
}
.legal-main > .eyebrow { margin-bottom: 10px; display: block; }
.legal-main h1 { font-size: 38px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 8px; }
.legal-date { font-size: 14px; color: var(--muted); margin: 0 0 36px; }
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
}
.legal-body h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 8px; }
.legal-body p { margin: 0; }
.legal-footer { border-top: 1px solid var(--border); background: var(--card); }
.legal-footer-inner {
  max-width: var(--wrap-legal);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.legal-footer-links { display: flex; gap: 20px; }
.legal-footer-links a { color: var(--muted); text-decoration: none; }
.legal-footer-links a:hover { color: var(--accent); }

/* ---------- 404 ---------- */

.notfound {
  max-width: var(--wrap-legal);
  width: 100%;
  margin: 0 auto;
  padding: 96px var(--pad-x) 120px;
  text-align: center;
  flex: 1;
}
.notfound .code {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.notfound h1 { font-size: 46px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 16px; text-wrap: pretty; }
.notfound p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
  margin: 0 auto 32px;
  max-width: 520px;
}

/* ---------- collage: scale height with width, stack only on phones ----------
   The source photos are 4:3. Stacking them full-width against a fixed short
   height letterboxes them badly on tablets, so the three-across layout is kept
   down to phone widths and only the row height shrinks. */

@media (max-width: 1024px) {
  .collage { height: 320px; }
}
@media (max-width: 760px) {
  .collage { height: 270px; gap: 10px; }
  .collage-badge { top: 12px; right: 12px; padding: 10px 14px; font-size: 12.5px; }
}
@media (max-width: 560px) {
  .collage { grid-template-columns: 1fr; height: auto; gap: 12px; }
  .collage img { height: auto; aspect-ratio: 3 / 2; max-height: 300px; }
  /* Once stacked, an overlaid badge sits squarely on the first photo's subject,
     so it drops below the collage instead. */
  .collage-badge {
    position: static;
    display: block;
    width: fit-content;
    margin: 14px auto 0;
    text-align: center;
  }
}

/* ---------- tablet / small laptop ----------
   Between 761px and 1080px the desktop services layout (320px sticky column +
   a three-column row) squeezes the service title into ~200px. Give the list the
   full width and put the number beside the title with the copy beneath. */

@media (min-width: 761px) and (max-width: 1080px) {
  .services-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-aside { position: static; }
  .service-row { grid-template-columns: 48px 1fr; gap: 10px 18px; }
  .service-num { grid-column: 1; grid-row: 1; }
  .service-row h3 { grid-column: 2; grid-row: 1; }
  .service-body { grid-column: 2; grid-row: 2; }
}

/* ---------- AI page grids ----------
   The v2 AI page design ships no media queries at all — its 4-up and 3-up
   grids would overflow every phone. These are the missing steps, cut at the
   same breakpoints the rest of the site uses. */

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .grid-3, .scaffold-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- responsive: single breakpoint at 760px ---------- */

@media (max-width: 760px) {
  .services-grid,
  .service-row,
  .why-grid,
  .engage-grid,
  .projects-box,
  .platform-grid,
  .pricing-box,
  .contact-grid,
  .module-box { grid-template-columns: 1fr; }

  .values,
  .steps,
  .footer-grid,
  .field-pair,
  .call-grid,
  .menu-grid,
  .projects-list,
  .stat-band { grid-template-columns: 1fr 1fr; }

  .h1,
  .svc-hero h1,
  .ai-hero h1 { font-size: 40px; }
  .h2,
  .why-col h2,
  .contact-intro h2,
  .pricing-box h2,
  .projects-intro h2,
  .cta-band h2,
  .cta-band--tight h2,
  .module-left h2,
  .menu-card h2,
  .section-head h2,
  .notfound h1 { font-size: 30px; }
  .legal-main h1 { font-size: 32px; }

  /* Let 1fr tracks shrink past their content's min-content width on narrow
     phones; without this, long compound names force horizontal scroll. */
  .services-grid > *, .service-row > *, .why-grid > *,
  .engage-grid > *, .projects-box > *, .platform-grid > *, .pricing-box > *,
  .contact-grid > *, .module-box > *, .grid-4 > *, .grid-3 > *,
  .scaffold-grid > *, .stat-band > *, .proc-head > *,
  .values > *, .steps > *, .footer-grid > *,
  .field-pair > *, .call-grid > *, .menu-grid > *, .menu-item > *,
  .projects-list > *, .era > *, .idea-card > *, .timeline-card > * { min-width: 0; }

  /* Column gaps become vertical gaps once stacked; 56-64px is too airy there. */
  .services-grid, .why-grid, .contact-grid { gap: 32px; }
  .pricing-box, .projects-box, .module-box { gap: 24px; }

  .nav-links { display: none; }
  .step { border-right: none; padding-right: 0; }
  .pricing-box { padding: 36px 28px; }
  .module-box { padding: 36px 28px; }
  .projects-box { padding: 36px 28px; }
  .menu-card { padding: 32px 28px; }
  .services-aside { position: static; }
  .footer-bar-inner { justify-content: flex-start; }

  .ai-section { padding: 48px var(--pad-x); }
  .section-head { margin-bottom: 36px; }
  .ai-hero { padding-bottom: 0; }
  .ai-hero-cta { margin-bottom: 40px; }
  .cta-band-inner,
  .cta-band--tight .cta-band-inner { padding: 48px var(--pad-x); }

  /* Header must stay on one line: the logo and the CTA are the whole row once
     the nav links are hidden, so give the CTA room rather than let it wrap. */
  .site-header { padding-left: 20px; padding-right: 20px; }
  .logo img { width: 180px; height: 45px; }
  .btn-nav { white-space: nowrap; }
}

@media (max-width: 560px) {
  /* Two-up leaves ~140px per control, which truncates both "Select a date"
     and "Time of Day (ET)". One per row instead. */
  .call-grid { grid-template-columns: 1fr; }
  .dp-panel { width: 100%; min-width: 262px; }

  .grid-4, .grid-3, .scaffold-grid, .menu-grid { grid-template-columns: 1fr; }
  /* A 52px numeral and its "Prepare · 6 hrs" label stop fitting side by side */
  .proc-head { flex-direction: column; align-items: flex-start; gap: 2px; }
}

@media (max-width: 420px) {
  .logo img { width: 150px; height: 38px; }
  .stat-band { grid-template-columns: 1fr; }
}
