/* ============================================================
   Jury Intel — Mayer Consulting
   Palette: white / #147aa0 (teal) / #fff0af (cream)
   ============================================================ */

:root {
  --teal: #147aa0;
  --teal-deep: #0f627f;
  --teal-ink: #0b4d65;
  --cream: #fff0af;
  --cream-soft: #fff7d1;
  --white: #ffffff;
  --soft: #f3f7f9;
  --soft-2: #eaf2f6;
  --ink: #15212a;
  --ink-soft: #3d4b55;
  --rule: #d9e3e8;
  --rule-strong: #b9c8d0;

  --serif: "Playfair Display", "Bodoni 72", "Didot", "Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --gutter: 24px;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow-tile: 0 1px 2px rgba(11, 77, 101, 0.06), 0 10px 30px rgba(11, 77, 101, 0.08);
  --shadow-tile-hover: 0 2px 4px rgba(11, 77, 101, 0.08), 0 18px 40px rgba(11, 77, 101, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ===================== GRID PRIMITIVES ===================== */
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.cell-2 { grid-column: span 2; }
.cell-3 { grid-column: span 3; }
.cell-4 { grid-column: span 4; }
.cell-5 { grid-column: span 5; }
.cell-6 { grid-column: span 6; }
.cell-7 { grid-column: span 7; }
.cell-8 { grid-column: span 8; }
.cell-9 { grid-column: span 9; }
.cell-12 { grid-column: span 12; }
.row-2 { grid-row: span 2; }

/* ===================== TILE SYSTEM ===================== */
.tile {
  padding: 32px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--rule);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tile-white { background: var(--white); border: 1px solid var(--rule); color: var(--ink); }
.tile-cream { background: var(--cream); border: 1px solid #f1de7e; color: var(--ink); }
.tile-teal { background: var(--teal); border: 1px solid var(--teal-deep); color: var(--white); }
.tile-teal-deep { background: var(--teal-deep); border: 1px solid var(--teal-ink); color: var(--white); }
.tile-outlined-light { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.35); color: var(--white); }
.tile-soft { background: var(--soft); border: 1px solid var(--rule); color: var(--ink); }
.tile-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-tile-hover); }

.tile h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
  line-height: 1.18;
}
.tile p { margin: 0; line-height: 1.6; }
.tile-teal p, .tile-teal-deep p { color: rgba(255,255,255,0.92); }
.tile-cream p { color: var(--ink-soft); }

.chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--ink);
  color: var(--cream);
  margin-bottom: 14px;
}
.chip-cream { background: var(--cream); color: var(--ink); }
.chip-teal  { background: var(--teal); color: var(--white); }
.chip-outline-light { background: transparent; color: var(--cream); border: 1px solid rgba(255,240,175,0.6); }

/* Display numeral watermark */
.numeral {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(90px, 13vw, 200px);
  line-height: 0.82;
  position: absolute;
  right: -6px;
  top: -22px;
  pointer-events: none;
  opacity: 0.12;
  color: currentColor;
  user-select: none;
}
.numeral-bottom-left {
  right: auto;
  top: auto;
  left: -10px;
  bottom: -34px;
  opacity: 0.10;
}

/* Crescent accent (reuses the Mayer brand-mark shape) */
.crescent {
  position: absolute;
  pointer-events: none;
  width: 160px;
  height: auto;
  opacity: 0.5;
  z-index: 0;
}
.crescent-tr { top: -22px; right: -28px; transform: rotate(20deg); }
.crescent-tl { top: -24px; left: -32px; transform: rotate(-18deg); }
.crescent-br { bottom: -30px; right: -28px; transform: rotate(196deg); }
.crescent-bl { bottom: -28px; left: -32px; transform: rotate(-200deg); }
.crescent-hero-bg {
  width: 520px;
  top: 60px;
  left: -120px;
  opacity: 0.18;
  transform: rotate(-12deg);
}
.crescent-soft { opacity: 0.32; }
.crescent-faint { opacity: 0.18; }
.tile > .crescent { z-index: 0; }
.tile > * { position: relative; z-index: 1; }
.tile > .numeral { z-index: 0; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================== HEADER ===================== */
.site-header {
  background: var(--teal);
  color: var(--white);
  padding: 18px 0;
  position: relative;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: flex-end;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.brand-mark {
  position: absolute;
  top: -10px;
  left: 4px;
  width: 200px;
  height: 22px;
  pointer-events: none;
}
.swoosh { width: 100%; height: 100%; }
.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  font-family: var(--serif);
  font-weight: 700;
}
.brand-mayer { font-size: 34px; letter-spacing: 0.5px; }
.brand-consulting { font-size: 34px; letter-spacing: 0.5px; display: inline-flex; align-items: baseline; gap: 8px; }
.brand-est { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 12px; letter-spacing: 0.5px; position: relative; top: -2px; opacity: 0.95; }
.brand-words-dark { color: var(--ink); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.site-nav a:hover { text-decoration: none; border-color: var(--cream); }
.site-nav .nav-cta {
  background: var(--cream);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--radius);
  border-bottom: none;
}
.site-nav .nav-cta:hover { background: #ffe98a; border-bottom: none; }

.nav-toggle { display: none; background: none; border: 0; width: 36px; height: 32px; padding: 6px 4px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--white); margin: 5px 0; border-radius: 1px; }

/* ===================== HERO ===================== */
.hero {
  background:
    radial-gradient(ellipse at 80% -20%, rgba(255,240,175,0.10), transparent 55%),
    radial-gradient(ellipse at -10% 120%, rgba(255,240,175,0.10), transparent 55%),
    var(--teal);
  color: var(--white);
  padding: 24px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.06));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-left { position: relative; }

.page-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  padding: 9px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.page-badge-on-teal { background: var(--cream); }

.hero-eyebrow {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  margin: 0 0 6px 0;
  opacity: 0.85;
}

/* Path toggle with sliding active indicator */
.path-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  padding: 6px;
  gap: 0;
  margin: 22px 0 28px;
  position: relative;
  width: 100%;
  max-width: 540px;
}
.path-toggle::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: calc(50% - 6px);
  background: var(--cream);
  border-radius: 6px;
  transform: translateX(calc(var(--toggle-idx, 0) * 100%));
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  z-index: 0;
}
.path-option {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 6px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: color 0.2s ease;
}
.path-option .path-label {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
}
.path-option .path-sub {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0.85;
}
.path-option.is-active { color: var(--ink); }
.path-option.is-active .path-sub { color: var(--ink-soft); opacity: 1; }
.path-option:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }

/* Hero panes */
.hero-panes { position: relative; min-height: 220px; }
.hero-pane { display: none; }
.hero-pane.is-active { display: block; animation: fadeUp 0.35s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.hero-headline {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 26px;
  opacity: 0.95;
  max-width: 600px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero right column — credibility bento */
.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}
.hero-bento .tile { padding: 22px; }
.hero-bento .hb-1 { grid-column: 1 / -1; }
.hb-stat-big {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0;
}
.hb-stat-mid {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  margin: 0;
}
.hb-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 8px 0 6px;
}
.hb-desc {
  font-size: 13.5px;
  line-height: 1.45;
  opacity: 0.85;
  margin: 0;
}
.hb-glyph { margin: 4px 0 10px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-yellow { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-yellow:hover { background: #ffe98a; border-color: #ffe98a; }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-ghost-dark { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-ghost-dark:hover { background: var(--teal); color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-deep); border-color: var(--teal-deep); }

/* ===================== SECTIONS ===================== */
.section { padding: 96px 0; position: relative; }
.section-white { background: var(--white); }
.section-soft { background: var(--soft); }
.section-yellow { background: var(--cream); }
.section-teal { background: var(--teal); color: var(--white); }
.section-teal a { color: var(--cream); }

.section-header { margin-bottom: 48px; max-width: 760px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-teal .section-eyebrow { color: var(--cream); }
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.3px;
  margin: 0 0 18px;
}
.section-title-light { color: var(--white); }
.section-deck { font-size: 18px; color: var(--ink-soft); margin: 0; max-width: 640px; }
.section-teal .section-deck { color: rgba(255,255,255,0.85); }

/* ===================== BIFURCATION SECTION (What We Do / How We Do It) ===================== */
.bifurcation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.bif-tile { padding: 44px 36px; min-height: 280px; display: flex; flex-direction: column; }
.bif-tile h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  margin: 6px 0 14px;
}
.bif-tile p { font-size: 16.5px; line-height: 1.6; flex-grow: 1; }
.bif-tile .bif-link {
  margin-top: 18px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bif-tile .bif-link::after { content: "→"; transition: transform 0.2s ease; }
.bif-tile .bif-link:hover::after { transform: translateX(3px); }
.bif-tile.tile-cream .bif-link { color: var(--teal-ink); }
.bif-tile.tile-teal .bif-link { color: var(--cream); }

/* Stat ribbon */
.stat-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell {
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid var(--rule);
  position: relative;
}
.stat-cell:last-child { border-right: 0; }
.stat-value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
  font-weight: 600;
}

/* Long-form support panel under the bifurcation */
.model-panel {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 56px;
  align-items: start;
}
.model-quote {
  background: var(--teal);
  color: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  position: relative;
}
.model-quote p { margin: 0; }
.model-body p { font-size: 16.5px; line-height: 1.7; margin: 0 0 14px; }
.model-body p:last-child { margin-bottom: 0; }
.model-body .lede { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--ink); }

/* ===================== DELIVERABLES BENTO ===================== */
.deliverables-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
}
.deliverables-bento .tile { display: flex; flex-direction: column; justify-content: space-between; }
.deliv-feature { grid-column: span 2; grid-row: span 2; padding: 40px; }
.deliv-feature h3 { font-size: 28px; line-height: 1.15; margin-bottom: 14px; }
.deliv-feature p { font-size: 16px; }
.deliv-wide { grid-column: span 2; }
.deliv-tag {
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
}
.tile-teal .deliv-tag, .tile-teal-deep .deliv-tag { color: var(--cream); }
.tile-cream .deliv-tag { color: var(--teal-ink); }

/* ===================== METHODOLOGY TRIPTYCH ===================== */
.method-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.method-tile {
  padding: 40px 32px 36px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.method-tile.tile-white { background: var(--white); border: 1px solid var(--rule); }
.method-tile.tile-teal { background: var(--teal); color: var(--white); }
.method-tile h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  margin: 16px 0 14px;
  line-height: 1.15;
}
.method-tile p { font-size: 16px; line-height: 1.6; margin: 0; }
.method-tile.tile-teal p { color: rgba(255,255,255,0.92); }
.method-tile .numeral { color: var(--teal); opacity: 0.10; }
.method-tile.tile-teal .numeral { color: var(--cream); opacity: 0.18; }

/* ===================== ABOUT KATHERINE ===================== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.identity-card {
  background: var(--teal);
  color: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: sticky;
  top: 24px;
  overflow: hidden;
}
.identity-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  margin: 0 0 6px;
}
.identity-creds-line {
  font-style: italic;
  font-size: 14px;
  opacity: 0.85;
  margin: 0 0 4px;
}
.identity-title {
  font-style: italic;
  font-size: 14px;
  opacity: 0.85;
  margin: 0 0 26px;
}
.cred-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cred-chip {
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.cred-chip strong { display: block; font-size: 13px; margin-bottom: 2px; }
.cred-chip.is-cream { background: var(--cream); color: var(--ink); }
.cred-chip.is-deep  { background: var(--teal-deep); color: var(--white); }
.cred-chip.is-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }

.about-body { font-size: 16.5px; line-height: 1.7; }
.about-body p { margin: 0 0 16px; }

.year-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0 0;
  position: relative;
}
.year-ribbon::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 28px;
  height: 1px;
  border-top: 1px dashed var(--rule-strong);
  z-index: 0;
}
.year-marker {
  position: relative;
  z-index: 1;
  text-align: center;
}
.year-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--teal);
  margin: 22px auto 14px;
}
.year-num { font-family: var(--serif); font-weight: 700; font-size: 24px; color: var(--teal); }
.year-text { font-size: 13.5px; color: var(--ink-soft); line-height: 1.4; margin-top: 4px; }

/* ===================== PROCESS TIMELINE ===================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  counter-reset: stepcount;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 8%;
  right: 8%;
  border-top: 1.5px dashed var(--rule-strong);
  z-index: 0;
}
.step-tile {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 26px 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.step-tile h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 8px;
  line-height: 1.2;
}
.step-tile p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--cream);
  color: var(--teal);
  box-shadow: 0 0 0 6px var(--soft);
}
.step-tile:nth-child(even) .step-num {
  background: var(--teal);
  color: var(--cream);
}
.step-tile.is-highlight {
  border-color: var(--teal);
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}
.step-tile.is-highlight::after {
  content: "Same-day";
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--cream);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ===================== BETA ===================== */
.beta-wrap { max-width: 1080px; margin: 0 auto; }
.beta-head { text-align: center; margin-bottom: 44px; max-width: 760px; margin-left: auto; margin-right: auto; }
.beta-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  margin: 0 0 18px;
  opacity: 0.95;
}
.beta-intro p { max-width: 760px; margin: 0 auto 14px; text-align: center; opacity: 0.95; }

.beta-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 48px 0 18px;
}
.beta-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.feature-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 22px 20px;
  border-radius: var(--radius);
  color: var(--white);
}
.feature-pill h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 8px;
  line-height: 1.25;
  color: var(--cream);
}
.feature-pill p { margin: 0; font-size: 13.5px; line-height: 1.5; opacity: 0.9; }

.beta-who {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.who-tile {
  background: var(--cream);
  color: var(--ink);
  padding: 22px 22px;
  border-radius: var(--radius);
  font-size: 14.5px;
  line-height: 1.5;
}
.who-tile strong { display: block; font-family: var(--serif); font-size: 17px; margin-bottom: 6px; }

.beta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.beta-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 26px 22px;
  border-radius: var(--radius);
  position: relative;
}
.beta-step .step-num {
  background: var(--cream);
  color: var(--teal);
  box-shadow: 0 0 0 6px var(--teal-deep);
}
.beta-step h4 { font-family: var(--serif); font-size: 18px; margin: 0 0 6px; color: var(--cream); }
.beta-step p { margin: 0; font-size: 14px; line-height: 1.5; opacity: 0.9; }

.beta-apply-card {
  margin-top: 48px;
  background: var(--cream);
  color: var(--ink);
  padding: 36px 32px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.beta-apply-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 12px;
}
.beta-apply-card p { max-width: 520px; margin: 0 auto 20px; font-size: 15.5px; color: var(--ink-soft); }
.beta-fineprint { font-size: 13px; font-style: italic; margin-top: 14px !important; opacity: 0.7; }

/* ===================== SECURITY PRINCIPLES ===================== */
.principles-intro { max-width: 720px; margin: 0 0 36px; font-size: 17px; color: var(--ink-soft); }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.principle-tile {
  padding: 26px 22px;
  border-radius: var(--radius);
  min-height: 170px;
  position: relative;
  overflow: hidden;
}
.principle-tile.is-cream { background: var(--cream); color: var(--ink); }
.principle-tile.is-teal { background: var(--teal); color: var(--white); }
.principle-tile.is-outline { background: transparent; border: 1.5px solid var(--rule-strong); color: var(--ink); }
.principle-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.7;
}
.principle-tile.is-teal .principle-num { color: var(--cream); opacity: 1; }
.principle-tile h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 6px;
  line-height: 1.15;
}
.principle-tile p { font-size: 13.5px; line-height: 1.5; margin: 0; }
.principle-tile.is-teal p { color: rgba(255,255,255,0.92); }
.principle-tile.is-outline p { color: var(--ink-soft); }
.principle-tile.is-cream p { color: var(--ink-soft); }

.compliance-note {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  max-width: 720px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ===================== FAQ ===================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  max-width: 1080px;
  margin: 0 auto;
}
.faq-col { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item summary {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  color: var(--ink);
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 400;
  position: absolute;
  right: 6px;
  top: -4px;
  font-size: 28px;
  color: var(--teal);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 12px 0 4px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }

/* ===================== CONTACT ===================== */
.contact-section { padding-bottom: 96px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}
.contact-copy h2 { margin-top: 6px; }
.contact-copy > p { font-size: 17px; line-height: 1.7; max-width: 460px; }
.contact-meta {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}
.contact-meta li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.contact-meta li span {
  display: block;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}
.contact-meta a { color: var(--white); }
.contact-meta li:not(:has(a)) { color: rgba(255,255,255,0.92); font-size: 15.5px; }

.contact-form {
  background: var(--white);
  color: var(--ink);
  padding: 32px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  position: relative;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--ink-soft);
}
.contact-form label.full { grid-column: 1 / -1; }
.contact-form label > span { margin-bottom: 6px; }
.contact-form label em { font-style: italic; font-weight: 400; opacity: 0.7; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 11px 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20,122,160,0.18);
}
.contact-form button[type="submit"] {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 8px;
}
.contact-form .hp { display: none !important; }
.form-foot {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--rule);
  color: var(--ink);
  padding-top: 56px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand { position: relative; }
.footer-brand .brand-mark { position: relative; width: 200px; height: 22px; margin-bottom: -4px; top: 6px; left: 4px; display: block; }
.footer-blurb { margin-top: 16px; font-size: 14px; color: var(--ink-soft); line-height: 1.6; max-width: 340px; }
.footer-col h4 {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.footer-col a { color: var(--ink); }
.footer-legal { font-size: 13px; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.55; }
.footer-base { background: var(--teal); color: var(--white); padding: 14px 0; font-size: 13px; }
.footer-base .container { display: flex; justify-content: space-between; align-items: center; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1080px) {
  .deliverables-bento { grid-template-columns: repeat(2, 1fr); }
  .deliv-feature { grid-column: span 2; grid-row: auto; }
  .deliv-wide { grid-column: span 2; }
  .beta-features { grid-template-columns: repeat(3, 1fr); }
  .principles-grid { grid-template-columns: repeat(3, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .process-timeline::before { display: none; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-bento { max-width: 540px; }
  .bifurcation-grid { grid-template-columns: 1fr; }
  .stat-ribbon { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: 0; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .model-panel { grid-template-columns: 1fr; gap: 28px; }
  .method-triptych { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .identity-card { position: static; }
  .beta-who, .beta-steps { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--teal-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    z-index: 30;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .site-nav .nav-cta { margin-top: 8px; text-align: center; }
  .nav-toggle { display: block; }

  .section { padding: 64px 0; }
  .hero { padding: 16px 0 64px; }
  .hero-headline { font-size: 36px; }
  .path-toggle { max-width: 100%; }
  .path-option { padding: 11px 14px; }
  .path-option .path-label { font-size: 17px; }
  .path-option .path-sub { font-size: 11.5px; }

  .deliverables-bento { grid-template-columns: 1fr; }
  .deliv-feature, .deliv-wide { grid-column: span 1; }
  .deliv-feature { grid-row: auto; }
  .beta-features { grid-template-columns: 1fr 1fr; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .year-ribbon { grid-template-columns: 1fr; }
  .year-ribbon::before { display: none; }
  .year-dot { margin-top: 8px; }
  .stat-ribbon { grid-template-columns: 1fr; }
  .stat-cell { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stat-cell:last-child { border-bottom: 0; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-base .container { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 420px) {
  .brand-mayer, .brand-consulting { font-size: 28px; }
  .brand-mark { width: 170px; }
  .hero-headline { font-size: 30px; }
  .hero-sub { font-size: 16.5px; }
  .beta-features, .principles-grid { grid-template-columns: 1fr; }
}
