/* =========================================================
   ORIOS LANDING v2 — Editorial / distinctive
   Big idea: "The HR OS that thinks like a teammate"
   Aesthetic: warm cream + slate ink, oversized editorial type,
   off-grid asymmetric blocks, sticker labels, real product
   peeks not generic icon grids.
   ========================================================= */

:root {
  /* Brand */
  --accent: #e85d04;
  --accent-2: #ffa824;
  --accent-deep: #b34800;
  --accent-soft: rgba(232,93,4,0.12);
  --accent-glow: rgba(232,93,4,0.4);

  /* Editorial palette - cool off-white, distinct from beige HR sites */
  --paper: #eef0ec;          /* cool pale sage-grey */
  --paper-2: #e2e5df;        /* deeper sage-grey */
  --paper-3: #d6dad2;
  --ink: #14181d;            /* near-black */
  --ink-2: #2a2f38;
  --ink-3: #585e68;
  --ink-4: #8a8f97;
  --line: #c9cdc4;
  --line-2: #b8bdb2;

  /* Slate (matches Orios app) */
  --slate-950: #050608;
  --slate-900: #0a0e13;
  --slate-800: #131923;
  --slate-700: #1e2a3a;

  /* Accent palette - secondary colors */
  --plum: #5b3a8c;
  --teal: #0d6b6a;
  --moss: #4d6b3e;
  --terracotta: #c8593c;
  --gold: #c9971a;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Headline display: a serif-tinged sans for editorial feel */
.display {
  font-family: 'Fraunces', 'Manrope', serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 0.96;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
.display em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "SOFT" 90, "WONK" 1;
  color: var(--accent-deep);
}

h1, h2, h3, h4, h5 { margin: 0; color: var(--ink); }
h1 { font-size: clamp(56px, 9vw, 132px); }
h2 { font-size: clamp(40px, 6vw, 84px); }
h3 { font-size: clamp(22px, 2.2vw, 32px); font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: -0.022em; }
h4 { font-size: 18px; font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: -0.015em; }

p { margin: 0; color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 40px; }

.brand-mark {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker .sq {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}
.kicker.dark { color: rgba(255,255,255,0.55); }

/* Sticker label — the visual signature for callouts */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px 4px;
  border-radius: 4px;
  transform: rotate(-1.5deg);
  box-shadow: 2px 2px 0 var(--accent);
}
.sticker.accent { background: var(--accent); color: #fff; box-shadow: 2px 2px 0 var(--ink); }
.sticker.outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); box-shadow: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  position: relative;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 0 -3px var(--ink); }
.btn-primary .arr {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-right: -12px;
  transition: background 0.18s;
}
.btn-primary:hover .arr { background: var(--ink); color: var(--accent); }
.btn-primary .arr svg { width: 12px; height: 12px; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* Orange-accent ghost — used for the nav "Sign in" so it reads as the
   subordinate-but-on-brand action next to the primary "Book a demo". */
.btn-accent-ghost {
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-color: rgba(232, 93, 4, 0.45);
}
.btn-accent-ghost:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 -3px var(--ink);
}

/* Solid orange — primary CTA on neutral surfaces. Mirrors .btn-primary's
   shape (with the inset arrow circle) but flipped: orange body with a
   dark arrow circle. */
.btn-accent-solid {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent-solid:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 -3px var(--ink);
}
.btn-accent-solid .arr {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-right: -12px;
  transition: background 0.18s, color 0.18s;
}
.btn-accent-solid:hover .arr { background: #fff; color: var(--accent-deep); }
.btn-accent-solid .arr svg { width: 12px; height: 12px; }

.btn-on-dark { background: var(--paper); color: var(--ink); }
.btn-on-dark:hover { background: var(--accent); color: #fff; }

.btn-on-dark-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-on-dark-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

.btn-sm { height: 42px; font-size: 14px; padding: 0 18px; }
/* Extra right padding for buttons with an inset .arr circle so the circle
   doesn't visually touch the right edge. Placed after .btn-sm so it
   wins on equal specificity for the .btn-sm variant. */
.btn-accent-solid { padding-right: 28px; }
.btn-accent-solid.btn-sm { padding-right: 22px; }
.btn-primary { padding-right: 28px; }
.btn-primary.btn-sm { padding-right: 22px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }

/* =====================  NAV  ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; gap: 36px; height: 76px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.16em;
  color: var(--ink);
}
.nav-logo .glyph {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  position: relative;
}
.nav-logo .glyph::after {
  content: ''; position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px dashed var(--ink);
  opacity: 0.3;
}
.nav-links { display: flex; gap: 4px; flex: 1; margin-left: 8px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 14px;
  font-size: 14.5px; font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}
.nav-link:hover { background: var(--paper-2); color: var(--ink); }
.nav-link:focus-visible { background: var(--paper-2); color: var(--ink); box-shadow: 0 0 0 2px var(--accent-soft); }
.nav-link svg { width: 12px; height: 12px; opacity: 0.5; transition: transform 0.18s ease; }
.nav-cta { display: flex; gap: 10px; align-items: center; padding-right: 8px; }

/* ---------- Dropdown mega-menus ---------- */
.nav-link-wrap { position: relative; }
.nav-link-wrap > .nav-link { user-select: none; }
.nav-link-wrap:hover > .nav-link,
.nav-link-wrap:focus-within > .nav-link {
  background: var(--paper-2);
  color: var(--ink);
}
.nav-link-wrap:hover > .nav-link svg,
.nav-link-wrap:focus-within > .nav-link svg {
  transform: rotate(180deg);
  opacity: 0.85;
}

.nav-dd {
  position: absolute;
  top: calc(100% + 4px);
  left: -8px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 6px 6px 0 var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.2s;
  z-index: 90;
  pointer-events: none;
}
.nav-dd-wide { min-width: 580px; }
.nav-link-wrap:hover .nav-dd,
.nav-link-wrap:focus-within .nav-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}

/* Invisible bridge so the cursor can travel from nav-link to dropdown
   without the dropdown closing. */
.nav-dd::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0; height: 10px;
}

.nav-dd-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 6px 14px;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.nav-dd-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
}
.nav-dd-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.3;
}

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

.nav-dd-item {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s ease;
  align-items: flex-start;
}
.nav-dd-item:hover { background: var(--paper-2); }
.nav-dd-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-3);
  flex-shrink: 0;
  padding-top: 3px;
  letter-spacing: 0.06em;
}
.nav-dd-glyph {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.nav-dd-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nav-dd-label {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}
.nav-dd-role {
  font-weight: 400;
  font-size: 11.5px;
  color: var(--ink-3);
}
.nav-dd-desc {
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.4;
}
.nav-dd-pill {
  background: var(--accent);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.nav-dd-foot {
  margin-top: 10px;
  padding: 12px 12px 4px;
  border-top: 1px dashed var(--line);
}
.nav-dd-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-dd-link:hover { color: var(--accent); }
.nav-dd-link span { transition: transform 0.18s ease; }
.nav-dd-link:hover span { transform: translateX(3px); }

/* =====================  HERO  ===================== */
.hero {
  position: relative;
  padding: 30px 0 0;
  overflow: hidden;
}

/* Editorial big-headline section */
.hero-headline {
  padding: 30px 0 60px;
  position: relative;
}
.hero-headline .container {
  position: relative;
}
.hero-h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-size: clamp(60px, 11vw, 168px);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  color: var(--ink);
  margin: 0;
  position: relative;
}
.hero-h1 .line { display: block; }
/* Keep "teammate" + the "not a tool" pill on one line across browsers.
   Chrome/Safari shape Fraunces with slightly different glyph widths, which
   pushed the pill onto its own line in Chrome at typical desktop widths. */
.hero-h1 .line:nth-child(3) { white-space: nowrap; }
.hero-h1 .ital { font-style: italic; font-weight: 400; color: var(--accent-deep); font-variation-settings: "SOFT" 100, "WONK" 1; }
.hero-h1 .ital .underline { background: linear-gradient(transparent 65%, var(--accent-2) 65%); padding: 0 4px; }
.hero-h1 .pill-inline {
  display: inline-flex; align-items: center; gap: 8px;
  vertical-align: middle;
  height: 0.75em;
  padding: 0 0.4em;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.6em;
  letter-spacing: -0.02em;
  font-variation-settings: normal;
  margin: 0 0.05em;
  transform: rotate(-2deg) translateY(-0.04em);
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1.5px solid var(--ink);
  align-items: start;
}
.hero-meta .lede {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 480px;
}
.hero-meta .actions {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.hero-meta .meta-bits {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  align-items: center;
}
.hero-meta .meta-bits .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-meta .center-stat {
  text-align: center;
  padding: 0 24px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.hero-meta .center-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-deep);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.hero-meta .center-stat .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

/* Hero stage — asymmetric mock collage */
.hero-stage {
  margin-top: 44px;
  position: relative;
  background: var(--paper-2);
  border-radius: 28px;
  padding: 48px 40px 40px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
}

/* texture - subtle dots */
.hero-stage::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(20,24,29,0.08) 1px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: 0 0;
  pointer-events: none;
  mask: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}

.stage-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* Big "Today" panel — main hero artifact */
.today-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: 22px;
  padding: 28px 30px;
  display: flex; flex-direction: column;
  position: relative;
  border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
}
.today-panel .head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
  margin-bottom: 18px;
}
.today-panel .head .day-num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  font-style: italic;
  font-style: italic;
  line-height: 1;
  color: var(--accent);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.today-panel .head .day-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  line-height: 1.6;
}
.today-panel .head h3 { color: var(--paper); font-size: 24px; font-family: 'Manrope', sans-serif; font-weight: 700; }
.today-panel .head .sub { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 4px; }

.today-list { display: grid; gap: 8px; flex: 1; }
.today-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.today-item:last-child { border: 0; }
.today-item .marker {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.today-item .marker.done { background: var(--accent); color: #fff; }
.today-item .marker.ai { background: var(--plum); color: #fff; }
.today-item .marker.ai svg { width: 10px; height: 10px; }
.today-item .who { color: var(--paper); font-weight: 600; }
.today-item .what { color: rgba(255,255,255,0.6); display: block; font-size: 12px; margin-top: 2px; }
.today-item .badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.today-item .badge.act { background: var(--accent); color: #fff; }
.today-item .badge.ai-drafted { background: rgba(91,58,140,0.4); color: #d8c4ff; }
.today-item .badge.ok { background: rgba(77,107,62,0.4); color: #c5e6a8; }

.today-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.18);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.today-foot .ic-ai {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.today-foot .ic-ai svg { width: 12px; height: 12px; color: #fff; }
.today-foot strong { color: var(--accent-2); font-weight: 600; }

/* Right column — stack of cards */
.stage-right { display: flex; flex-direction: column; gap: 18px; }

.snap-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 22px;
  position: relative;
}
.snap-card.tilt-r { transform: rotate(1.2deg); }
.snap-card.tilt-l { transform: rotate(-1.5deg); }

.snap-card .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
  display: flex; align-items: center; justify-content: space-between;
}
.snap-card .label .badge-soon {
  background: var(--ink); color: var(--paper);
  padding: 2px 7px; border-radius: 999px; font-size: 9px; letter-spacing: 0.12em;
}

/* Headcount card */
.snap-card .big-num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.snap-card .big-num .delta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--moss);
  margin-left: 8px;
  vertical-align: middle;
}
.snap-card .row-faces {
  display: flex; gap: -6px; margin-top: 14px;
}
.snap-card .row-faces .face {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  margin-left: -6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.snap-card .row-faces .face:first-child { margin-left: 0; }
.snap-card .row-faces .more {
  background: var(--ink); color: var(--paper);
  font-size: 10px;
  margin-left: -6px;
}
.snap-card .row-foot {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-3);
}

/* AI card */
.ai-snap {
  background: linear-gradient(155deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
}
.ai-snap::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.ai-snap .label { color: rgba(255,255,255,0.7); }
.ai-snap .ai-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}
.ai-snap .ai-msg {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  position: relative; z-index: 2;
}
.ai-snap .ai-msg .name { background: rgba(0,0,0,0.2); padding: 0 6px; border-radius: 4px; font-style: normal; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 18px; }
.ai-snap .ai-actions {
  margin-top: 14px;
  display: flex; gap: 8px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.ai-snap .ai-actions .chip {
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 12px; font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Annotation - hand-drawn arrow with label */
.annotation {
  position: absolute;
  z-index: 5;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  color: var(--accent-deep);
  font-size: 22px;
  line-height: 1;
  pointer-events: none;
}
.annotation .arrow-svg {
  position: absolute;
  width: 60px; height: 50px;
  stroke: var(--accent-deep);
  stroke-width: 2;
  fill: none;
}

/* Logo strip */
.logo-strip {
  margin-top: 44px;
  padding: 28px 0;
  border-top: 1.5px dashed var(--ink);
  border-bottom: 1.5px dashed var(--ink);
}
.logo-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.logo-strip .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  max-width: 140px;
  line-height: 1.4;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.logo-row .biz {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
}
.logo-row .biz .mark {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
}

/* =====================  WHY / EVERYTHING ===================== */
.section { padding: 130px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.96;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.section-head h2 em { font-style: italic; color: var(--accent-deep); font-variation-settings: "SOFT" 100, "WONK" 1; }
.section-head .right p {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.5;
}
.section-head .kicker { margin-bottom: 22px; }

/* =====================  PLATFORM MOSAIC  ===================== */
.platform {
  background: var(--paper);
  position: relative;
}

/* Asymmetric module mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 18px;
}
.tile {
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}

.tile-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
}
.tile-title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  margin-bottom: 10px;
}
.tile-title em { font-style: italic; color: var(--accent-deep); }
.tile-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: auto;
}
.tile-foot {
  margin-top: 18px;
  display: flex; gap: 6px; flex-wrap: wrap;
  align-items: center;
}
.tile-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--paper);
  border: 1px solid var(--ink);
  color: var(--ink);
  text-transform: uppercase;
}
.tile-tag.ai { background: var(--ink); color: var(--accent-2); border-color: var(--ink); }
.tile-tag.soon { background: var(--accent); color: #fff; border-color: var(--accent-deep); }

/* Tile spans */
.tile.s4 { grid-column: span 4; }
.tile.s5 { grid-column: span 5; }
.tile.s6 { grid-column: span 6; }
.tile.s7 { grid-column: span 7; }
.tile.s8 { grid-column: span 8; }
.tile.s12 { grid-column: span 12; }

/* Tile color variants */
.tile.dark { background: var(--ink); color: var(--paper); }
.tile.dark .tile-title { color: var(--paper); }
.tile.dark .tile-title em { color: var(--accent-2); }
.tile.dark .tile-desc { color: rgba(255,255,255,0.7); }
.tile.dark .tile-num { color: rgba(255,255,255,0.4); }
.tile.dark .tile-tag { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }

.tile.cream { background: var(--paper-3); }
.tile.warm { background: linear-gradient(155deg, #f3c388, #e8a360); border-color: var(--ink); }
.tile.plum { background: var(--plum); color: #fff; border-color: var(--ink); }
.tile.plum .tile-title, .tile.plum .tile-title em { color: #fff; }
.tile.plum .tile-desc { color: rgba(255,255,255,0.75); }
.tile.plum .tile-num { color: rgba(255,255,255,0.5); }
.tile.teal { background: var(--teal); color: #fff; border-color: var(--ink); }
.tile.teal .tile-title, .tile.teal .tile-title em { color: #fff; }
.tile.teal .tile-desc { color: rgba(255,255,255,0.78); }
.tile.teal .tile-num { color: rgba(255,255,255,0.5); }
.tile.terra { background: var(--terracotta); color: #fff; border-color: var(--ink); }
.tile.terra .tile-title, .tile.terra .tile-title em { color: #fff; }
.tile.terra .tile-desc { color: rgba(255,255,255,0.78); }
.tile.terra .tile-num { color: rgba(255,255,255,0.5); }

/* Tile inline visual — replaces plain icons with crafted drawings */
.tile-vis {
  margin-top: 20px;
  height: 110px;
  border-radius: 14px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.tile.dark .tile-vis { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.tile.plum .tile-vis, .tile.teal .tile-vis, .tile.terra .tile-vis { background: rgba(0,0,0,0.18); border-color: rgba(255,255,255,0.15); }

/* Bespoke mini visuals (each tile gets one) */
.vis-orgchart {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  height: 100%;
}
.vis-orgchart .lvl1 { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); border: 1.5px solid var(--ink); }
.vis-orgchart .lvl2 { display: flex; gap: 30px; }
.vis-orgchart .lvl2 div { width: 22px; height: 22px; border-radius: 50%; background: var(--ink); }
.vis-orgchart .lines {
  position: absolute; inset: 0;
  background: linear-gradient(var(--ink),var(--ink)) center 50%/1px 24px no-repeat,
              linear-gradient(var(--ink),var(--ink)) 50% 64%/40px 1px no-repeat;
  z-index: 0;
  opacity: 0.4;
}

.vis-cal {
  height: 100%; padding: 10px;
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}
.vis-cal div { background: rgba(255,255,255,0.6); border-radius: 3px; }
.vis-cal div:nth-child(11), .vis-cal div:nth-child(12) { background: var(--accent); }
.vis-cal div:nth-child(20) { background: var(--plum); }
.vis-cal div:nth-child(7), .vis-cal div:nth-child(14), .vis-cal div:nth-child(21) { opacity: 0.3; }
.tile.dark .vis-cal div { background: rgba(255,255,255,0.1); }
.tile.dark .vis-cal div:nth-child(11), .tile.dark .vis-cal div:nth-child(12) { background: var(--accent); }

.vis-bars {
  display: flex; align-items: flex-end; justify-content: space-around;
  padding: 14px;
  height: 100%; gap: 6px;
}
.vis-bars div {
  flex: 1;
  background: var(--ink);
  border-radius: 4px 4px 0 0;
}
.vis-bars div:nth-child(1) { height: 30%; }
.vis-bars div:nth-child(2) { height: 60%; background: var(--accent); }
.vis-bars div:nth-child(3) { height: 45%; }
.vis-bars div:nth-child(4) { height: 80%; background: var(--accent); }
.vis-bars div:nth-child(5) { height: 55%; }
.vis-bars div:nth-child(6) { height: 90%; background: var(--accent-deep); }
.vis-bars div:nth-child(7) { height: 70%; }

.vis-doc {
  height: 100%; padding: 14px;
  display: flex; flex-direction: column; gap: 5px; justify-content: center;
}
.vis-doc div { height: 6px; background: var(--ink); border-radius: 2px; }
.vis-doc div:nth-child(1) { width: 70%; }
.vis-doc div:nth-child(2) { width: 90%; opacity: 0.5; }
.vis-doc div:nth-child(3) { width: 60%; opacity: 0.5; }
.vis-doc div:nth-child(4) { width: 100%; opacity: 0.5; }
.vis-doc .stamp {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 6px;
  transform: rotate(-4deg);
  letter-spacing: 0.04em;
}

.vis-pipeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px; padding: 8px; height: 100%;
}
.vis-pipeline > div {
  background: rgba(255,255,255,0.6);
  border-radius: 4px;
  padding: 4px;
  display: flex; flex-direction: column; gap: 3px;
}
.vis-pipeline > div span { height: 10px; background: var(--ink); border-radius: 2px; opacity: 0.6; }
.vis-pipeline > div span:first-child { background: var(--accent); opacity: 1; }
.tile.dark .vis-pipeline > div { background: rgba(255,255,255,0.06); }

.vis-board {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 5px; padding: 8px; height: 100%;
}
.vis-board > div {
  background: rgba(255,255,255,0.55);
  border-radius: 4px;
  padding: 6px;
  display: flex; flex-direction: column; gap: 3px;
}
.vis-board > div > span { height: 4px; background: var(--ink); border-radius: 1px; opacity: 0.4; }
.vis-board > div > span:first-child { height: 10px; background: var(--accent); opacity: 1; border-radius: 3px; }

.vis-payslip {
  height: 100%;
  background: var(--paper);
  padding: 14px 16px;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}
.vis-payslip .pr {
  display: flex; justify-content: space-between;
  color: var(--ink);
}
.vis-payslip .pr.tot {
  border-top: 1.5px solid var(--ink);
  margin-top: 4px;
  padding-top: 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--accent-deep);
}
.vis-payslip .pr span:last-child { font-weight: 600; }

.vis-pulse {
  display: flex; align-items: center; justify-content: center;
  height: 100%; padding: 10px;
}
.vis-pulse svg { width: 100%; height: 100%; }

/* =====================  AI AGENTS - cast  ===================== */
.agents-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.agents-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 0%, rgba(232,93,4,0.18), transparent 60%),
              radial-gradient(ellipse 50% 60% at 0% 100%, rgba(91,58,140,0.18), transparent 60%);
  pointer-events: none;
}
.agents-section .section-head h2 { color: var(--paper); }
.agents-section .section-head h2 em { color: var(--accent-2); }
.agents-section .section-head .right p { color: rgba(255,255,255,0.65); }

.agents-section .container { position: relative; z-index: 2; }

.agents-roster {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px dashed rgba(255,255,255,0.2);
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.agent {
  padding: 32px 22px;
  border-right: 1px dashed rgba(255,255,255,0.15);
  display: flex; flex-direction: column;
  position: relative;
}
.agent:last-child { border-right: 0; }
.agent:hover { background: rgba(255,255,255,0.03); }

/* Agent portrait — geometric face badge */
.portrait {
  width: 72px; height: 72px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.1);
}
.portrait::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.2);
}
.portrait .glyph {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.portrait.p1 { background: linear-gradient(155deg, var(--accent), var(--accent-deep)); }
.portrait.p2 { background: linear-gradient(155deg, var(--plum), #3c2562); }
.portrait.p3 { background: linear-gradient(155deg, var(--teal), #084948); }
.portrait.p4 { background: linear-gradient(155deg, var(--terracotta), #8a3a26); }
.portrait.p5 { background: linear-gradient(155deg, var(--gold), #8c6810); }
.portrait.p6 { background: linear-gradient(155deg, var(--moss), #2f4523); }

.agent .agent-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--paper);
  margin-bottom: 4px;
}
.agent .agent-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.agent .agent-q {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  font-variation-settings: "SOFT" 80;
  flex: 1;
}
.agent .agent-q::before { content: '"'; color: var(--accent-2); }
.agent .agent-q::after { content: '"'; color: var(--accent-2); }
.agent .agent-skill {
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
}
.agent .agent-skill .ic-tiny {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 6px 2px;
  vertical-align: middle;
}

/* Agent showcase: chat */
.agent-showcase {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.agent-showcase h2 { color: var(--paper); font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.03em; line-height: 0.98; font-variation-settings: "SOFT" 50, "WONK" 1; }
.agent-showcase h2 em { font-style: italic; color: var(--accent-2); font-variation-settings: "SOFT" 100, "WONK" 1; }
.agent-showcase p {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-top: 18px;
  line-height: 1.55;
}
.prompt-list { margin-top: 28px; display: grid; gap: 14px; }
.prompt-list .prompt {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  font-variation-settings: "SOFT" 80;
  transition: all 0.18s;
}
.prompt-list .prompt:hover { border-color: var(--accent); background: rgba(232,93,4,0.06); }
.prompt-list .prompt .ic {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
}

/* Console-y chat */
.terminal {
  background: #0a0e13;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,93,4,0.18);
}
.terminal .term-h {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 8px;
}
.terminal .term-h .dt { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.terminal .term-h .dt.r { background: #ff5f57; }
.terminal .term-h .dt.y { background: #febc2e; }
.terminal .term-h .dt.g { background: #28c840; }
.terminal .term-h .ttl {
  margin-left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.terminal .term-h .live {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--moss);
  display: flex; align-items: center; gap: 6px;
}
.terminal .term-h .live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #6acf3b;
  box-shadow: 0 0 0 3px rgba(106,207,59,0.2);
}
.terminal .body { padding: 22px; font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.9); }
.terminal .body .prompt-line {
  display: flex; gap: 8px; margin-bottom: 10px;
  color: var(--accent-2);
}
.terminal .body .prompt-line .arrow { color: var(--accent); font-weight: 700; }
.terminal .body .response {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  margin: 12px 0;
  line-height: 1.55;
}
.terminal .body .response strong { color: var(--accent-2); font-weight: 600; }
.terminal .body .draft-block {
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--accent);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 12px 0;
  font-variation-settings: "SOFT" 80;
}
.terminal .body .draft-block .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.terminal .body .draft-block .sig {
  margin-top: 12px;
  font-style: normal;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}
.terminal .body .actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.terminal .body .actions button {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.terminal .body .actions button.go { background: var(--accent); border-color: var(--accent); }
.terminal .body .cursor {
  display: inline-block;
  width: 9px; height: 16px;
  background: var(--accent);
  vertical-align: middle;
  animation: blink 1s steps(2) infinite;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

/* =====================  PROOF / DEEP-DIVE  ===================== */
.proof-section { background: var(--paper-2); }

.proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 130px;
}
.proof-row:last-child { margin-bottom: 0; }
.proof-row.flip { direction: rtl; }
.proof-row.flip > * { direction: ltr; }

.proof-copy h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.proof-copy h3 em { font-style: italic; color: var(--accent-deep); font-variation-settings: "SOFT" 100, "WONK" 1; }
.proof-copy .lead {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: var(--ink-2);
  margin-top: 22px;
  line-height: 1.5;
  max-width: 480px;
}

.proof-bullets {
  margin-top: 32px;
  display: grid; gap: 20px;
}
.proof-b {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.proof-b .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 38px;
  line-height: 0.9;
  font-weight: 700;
  color: var(--accent-deep);
  font-variation-settings: "SOFT" 100, "WONK" 1;
  width: 60px;
}
.proof-b .bd h4 { font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.proof-b .bd p { font-size: 14.5px; color: var(--ink-3); line-height: 1.5; }

/* Proof visuals */
.proof-vis {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 12px 12px 0 var(--ink);
  min-height: 480px;
}
.proof-vis.dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 12px 12px 0 var(--accent);
}

/* Time off visual */
.timeoff-vis { display: flex; flex-direction: column; gap: 18px; height: 100%; }
.timeoff-vis .vh {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.timeoff-vis .vh .month {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.timeoff-vis .vh .nav-arrows {
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-3);
  font-size: 12px;
}
.balance-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.balance-strip .bal {
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 12px;
  background: var(--paper-2);
}
.balance-strip .bal .lb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.balance-strip .bal .nm {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 4px;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.balance-strip .bal .nm .of { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--ink-3); font-weight: 500; }
.balance-strip .bal .bar {
  height: 4px; background: var(--line);
  border-radius: 4px; margin-top: 10px; overflow: hidden;
}
.balance-strip .bal .bar > div { height: 100%; background: var(--accent); }
.balance-strip .bal .bar > div.teal { background: var(--teal); }
.balance-strip .bal .bar > div.plum { background: var(--plum); }

/* mini calendar */
.mini-cal {
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 16px;
  background: var(--paper-2);
}
.mini-cal .head {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-align: center;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}
.mini-cal .grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.mini-cal .d {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  color: var(--ink);
}
.mini-cal .d.dim { color: var(--ink-4); }
.mini-cal .d.range { background: var(--accent-soft); color: var(--accent-deep); font-weight: 700; }
.mini-cal .d.start, .mini-cal .d.end { background: var(--accent); color: #fff; font-weight: 700; }
.mini-cal .d.holiday { background: rgba(91,58,140,0.18); color: var(--plum); }

/* AI chip */
.ai-suggest-chip {
  margin-top: 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; gap: 14px; align-items: flex-start;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.45;
}
.ai-suggest-chip .badge {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}
.ai-suggest-chip strong { color: var(--accent-2); }

/* Recruit visual: a real candidate card with annotations */
.candidate-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  border: 1.5px solid var(--ink);
  padding: 24px;
  position: relative;
}
.proof-vis.dark .candidate-card { box-shadow: 6px 6px 0 var(--accent-2); }
.candidate-card .top {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.candidate-card .pic {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(155deg, #f4a460, #cd853f);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid var(--ink);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.candidate-card .who h4 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.candidate-card .who .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}
.candidate-card .score-pill {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  padding: 8px 14px;
  text-align: center;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.candidate-card .score-pill .num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.candidate-card .score-pill .lb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

.candidate-card .ai-summary {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  font-variation-settings: "SOFT" 80;
}
.candidate-card .ai-summary .lb {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 6px;
}
.candidate-card .stages {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 14px;
}
.candidate-card .stages .stg {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 4px;
  background: var(--paper-2);
  border-radius: 6px;
  color: var(--ink-3);
}
.candidate-card .stages .stg.done { background: var(--ink); color: var(--paper); }
.candidate-card .stages .stg.now { background: var(--accent); color: #fff; }

/* Payslip — distinctive deliverable */
.payslip-vis {
  position: relative;
}
.payslip {
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  border: 1.5px solid var(--ink);
  padding: 28px 32px;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
}
.payslip .stamp-soon {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--accent);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  transform: rotate(-2deg);
}
.payslip .ph {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--ink);
}
.payslip .ph .who {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.payslip .ph .meta { font-size: 11px; color: var(--ink-3); margin-top: 4px; letter-spacing: 0.06em; }
.payslip .ph .period {
  text-align: right;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.payslip .pl {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 12px;
  color: var(--ink-2);
  border-bottom: 1px dotted var(--line);
}
.payslip .pl span:last-child { font-weight: 600; color: var(--ink); }
.payslip .pl.minus span:last-child { color: var(--terracotta); }
.payslip .pl.tot {
  border-bottom: 0;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1.5px solid var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 800;
}
.payslip .pl.tot span:last-child { color: var(--accent-deep); font-size: 22px; }

.payslip-ai {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  display: flex; gap: 14px;
}
.payslip-ai .b {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  align-self: flex-start;
  white-space: nowrap;
}
.payslip-ai strong { color: var(--accent-2); }

/* =====================  WORKFLOW  ===================== */
.workflow-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.workflow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 100%, rgba(232,93,4,0.18), transparent 60%);
  pointer-events: none;
}
.workflow-section .container { position: relative; z-index: 2; }
.workflow-section .section-head h2 { color: var(--paper); }
.workflow-section .section-head h2 em { color: var(--accent-2); }
.workflow-section .section-head .right p { color: rgba(255,255,255,0.6); }

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow-step {
  padding: 36px 28px 36px 0;
  border-right: 1px dashed rgba(255,255,255,0.15);
  position: relative;
}
.flow-step:last-child { border: 0; }
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px; top: 36px;
  background: var(--accent);
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.flow-step .step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--accent);
  font-variation-settings: "SOFT" 100, "WONK" 1;
  margin-bottom: 18px;
}
.flow-step h3 { color: var(--paper); margin-bottom: 8px; font-size: 22px; }
.flow-step p { color: rgba(255,255,255,0.65); font-size: 14.5px; line-height: 1.55; }

/* =====================  TESTIMONIALS  ===================== */
.testimonials { background: var(--paper); }
.t-stack {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}
.t-card {
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column;
}
.t-card.feature {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--accent);
  grid-row: span 1;
}
.t-card .qm {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 80px;
  line-height: 0.4;
  color: var(--accent);
  margin-bottom: 16px;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.t-card.feature .qm { color: var(--accent-2); }
.t-card .quote {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  flex: 1;
}
.t-card.feature .quote { color: var(--paper); font-size: 32px; line-height: 1.2; }
.t-card .who {
  margin-top: 28px;
  display: flex; gap: 14px; align-items: center;
}
.t-card .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.t-card.feature .av { border-color: var(--accent-2); }
.t-card .nm {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.t-card .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 3px;
}
.t-card.feature .role { color: rgba(255,255,255,0.55); }
.t-card .stat-bar {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1.5px dashed rgba(255,255,255,0.18);
  display: flex; gap: 28px;
}
.t-card .stat-bar .k {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-style: italic;
  color: var(--accent-2);
  font-weight: 700;
  line-height: 1;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.t-card .stat-bar .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* =====================  PRICING  ===================== */
.pricing { background: var(--paper-2); }

.price-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pcard {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.pcard.feat {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--accent);
}
.pcard .ribbon {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--accent);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transform: rotate(-2deg);
}
.pcard .tier {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.pcard.feat .tier { color: var(--paper); }
.pcard .desc { font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--ink-3); margin-top: 6px; min-height: 44px; }
.pcard.feat .desc { color: rgba(255,255,255,0.65); }
.pcard .amt {
  margin: 22px 0;
  display: flex; align-items: baseline; gap: 6px;
  border-bottom: 1.5px dashed var(--line-2);
  padding-bottom: 22px;
}
.pcard.feat .amt { border-color: rgba(255,255,255,0.15); }
.pcard .amt .price {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.pcard.feat .amt .price { color: var(--paper); }
.pcard .amt .price .cur { font-size: 28px; vertical-align: super; }
.pcard .amt .per { font-size: 13px; color: var(--ink-3); }
.pcard.feat .amt .per { color: rgba(255,255,255,0.55); }

.pcard ul { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 11px; flex: 1; }
.pcard li {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--ink-2);
}
.pcard.feat li { color: rgba(255,255,255,0.85); }
.pcard li::before {
  content: '+';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

/* =====================  FAQ  ===================== */
.faq { background: var(--paper); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-q {
  border-top: 1.5px solid var(--ink);
  padding: 24px 0;
}
.faq-q:last-child { border-bottom: 1.5px solid var(--ink); }
.faq-q summary {
  list-style: none;
  cursor: pointer;
  display: flex; gap: 24px; align-items: flex-start; justify-content: space-between;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.faq-q summary::-webkit-details-marker { display: none; }
.faq-q summary::after {
  content: '+';
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
  background: var(--paper);
  transition: all 0.18s;
}
.faq-q[open] summary::after { content: '–'; background: var(--ink); color: var(--paper); }
.faq-q .ans {
  margin-top: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 720px;
}

/* =====================  CTA  ===================== */
.cta {
  background: var(--paper);
  padding: 80px 0 130px;
}
.cta-inner {
  background: var(--ink);
  color: var(--paper);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(232,93,4,0.32), transparent 60%),
              radial-gradient(ellipse 40% 60% at 0% 0%, rgba(91,58,140,0.16), transparent 60%);
}
.cta-inner > * { position: relative; z-index: 2; }
.cta-inner h2 {
  color: var(--paper);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.96;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.cta-inner h2 em { font-style: italic; color: var(--accent-2); font-variation-settings: "SOFT" 100, "WONK" 1; }
.cta-inner p {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  margin: 24px auto 0;
  max-width: 520px;
}
.cta-inner .actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-inner .signature {
  margin-top: 36px;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--accent-2);
}

/* =====================  FOOTER  ===================== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 80px 0 40px;
}
.ft-top {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.ft-top p {
  margin-top: 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}
.ft-top h5 {
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.ft-top ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ft-top a,
.ft-top .ft-link-button {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: color 0.18s;
  /* button-as-link reset */
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-weight: inherit;
}
.ft-top a:hover,
.ft-top .ft-link-button:hover { color: var(--accent-2); }

.ft-mark {
  margin-top: 60px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.06);
  text-align: center;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.ft-mark .accent { color: rgba(232,93,4,0.5); }

.ft-bot {
  margin-top: 40px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.ft-social { display: flex; gap: 8px; }
.ft-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
}
.ft-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.ft-social svg { width: 14px; height: 14px; }

/* Responsive */
/* =====================================================================
   /platform/[slug] — module pages
   Calmer twin of the landing splash. Same palette, less volume:
   smaller type, no hard offset shadows, single reading column hero.
   ===================================================================== */
.mod-page { padding-bottom: 0; }

.mod-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.mod-crumbs {
  display: flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.mod-crumbs a { color: var(--ink-3); text-decoration: none; }
.mod-crumbs a:hover { color: var(--accent-deep); }
.mod-crumbs .mod-crumb-current { color: var(--ink); font-weight: 600; }
.mod-crumbs span[aria-hidden] { color: var(--line-2); }

.mod-hero-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.mod-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-deep);
  letter-spacing: 0.06em;
}
.mod-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.mod-soon {
  background: var(--accent);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.mod-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 900px;
  margin: 0 0 18px;
}
.mod-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.mod-intro {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 0 28px;
}

.mod-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Features ---------- */
.mod-features { padding: 56px 0; }
.mod-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.mod-feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 24px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.mod-feature:hover {
  border-color: var(--ink-3);
  transform: translateY(-2px);
}
.mod-feature h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.mod-feature p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}

/* ---------- Paired agents ---------- */
.mod-agents {
  padding: 40px 0;
  border-top: 1px dashed var(--line);
}
.mod-section-kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 16px;
}
.mod-agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.mod-agent {
  display: flex; gap: 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  align-items: center;
}
.mod-agent-glyph {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(155deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.mod-agent-name {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}
.mod-agent-role { color: var(--ink-3); font-weight: 400; font-size: 12px; }
.mod-agent-note {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.45;
  margin-top: 2px;
}

/* ---------- FAQs ---------- */
.mod-faqs {
  padding: 40px 0;
  border-top: 1px dashed var(--line);
}
.mod-faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 800px; }
.mod-faq {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 4px;
}
.mod-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  position: relative;
}
.mod-faq summary::-webkit-details-marker { display: none; }
.mod-faq summary::after {
  content: '+';
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  color: var(--ink-3);
  font-weight: 400;
  transition: transform 0.18s ease;
}
.mod-faq[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--accent-deep); }
.mod-faq p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 70ch;
}

/* ---------- CTA strip ---------- */
.mod-cta {
  padding: 48px 0 64px;
  border-top: 1px dashed var(--line);
}
.mod-cta-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mod-cta-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.mod-cta-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
}
.mod-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Prev / Next strip ---------- */
.mod-pn {
  border-top: 1px solid var(--line);
  padding: 24px 0 56px;
}
.mod-pn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mod-pn-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
  min-height: 76px;
}
.mod-pn-card:hover { border-color: var(--ink-3); transform: translateY(-2px); }
.mod-pn-empty { background: transparent; border-color: transparent; cursor: default; }
.mod-pn-empty:hover { transform: none; border-color: transparent; }
.mod-pn-next { text-align: right; align-items: flex-end; }
.mod-pn-dir {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.mod-pn-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent-deep);
  letter-spacing: 0.06em;
}
.mod-pn-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Responsive — collapse to single column on tablets/phones. */
@media (max-width: 900px) {
  .mod-features-grid { grid-template-columns: 1fr; }
  .mod-pn-row { grid-template-columns: 1fr; }
  .mod-pn-next { text-align: left; align-items: flex-start; }
  .mod-cta-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta .center-stat { border: 0; padding: 0; text-align: left; }
  .hero-meta .actions { align-items: flex-start; }
  .stage-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .mosaic { grid-template-columns: repeat(6, 1fr); }
  .tile.s4 { grid-column: span 3; }
  .tile.s5, .tile.s7 { grid-column: span 6; }
  .tile.s6, .tile.s8 { grid-column: span 6; }
  .tile.s12 { grid-column: span 6; }
  .agents-roster { grid-template-columns: repeat(2, 1fr); }
  .agent { border-bottom: 1px dashed rgba(255,255,255,0.15); border-right: 1px dashed rgba(255,255,255,0.15); }
  .agent:nth-child(2n) { border-right: 0; }
  .agent-showcase, .proof-row { grid-template-columns: 1fr; gap: 40px; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow-step { border-right: 0; border-bottom: 1px dashed rgba(255,255,255,0.15); }
  .flow-step:not(:last-child)::after { display: none; }
  .t-stack, .price-list { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .logo-strip-inner { grid-template-columns: 1fr; }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero-h1 .line:nth-child(3) { white-space: normal; }
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .mosaic { grid-template-columns: 1fr; gap: 14px; }
  .tile { padding: 22px; }
  .tile.s4, .tile.s5, .tile.s6, .tile.s7, .tile.s8, .tile.s12 { grid-column: 1; }
  .agents-roster { grid-template-columns: 1fr; }
  .agent { border-right: 0; }
  .cta-inner { padding: 60px 28px; }
}
