/* DrozLegal — editorial legal-tech styling */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --navy-900: #04101F;
  --navy-800: #071A2F;
  --navy-700: #0B2742;
  --navy-600: #133356;
  --navy-500: #1B4870;
  --navy-line: rgba(201, 162, 74, 0.22);

  --gold-700: #8A6520;
  --gold-600: #A77D2B;
  --gold-500: #C9A24A;
  --gold-400: #E4C56A;
  --gold-300: #F2DFA6;

  --cream: #F6F2E8;
  --bone: #FAF7EF;
  --paper: #F9F6EE;
  --ink: #0B2742;
  --ink-soft: rgba(11, 39, 66, 0.72);
  --ink-mute: rgba(11, 39, 66, 0.55);

  --white-mute: rgba(255, 255, 255, 0.72);
  --white-soft: rgba(255, 255, 255, 0.86);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1240px;
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --ease-emph: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(80px, 11vw, 160px) 0; position: relative; }
.section-sm { padding: clamp(56px, 7vw, 96px) 0; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}
.eyebrow.no-rule::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(54px, 8.4vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.025em;
}
.display em { font-style: italic; color: var(--gold-400); font-weight: 500; }

.h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.022em;
}
.h1 em { font-style: italic; font-weight: 500; }

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.018em;
}
.h2 em { font-style: italic; font-weight: 500; }

.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.012em;
}

.h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.003em;
}

.lede {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  color: var(--white-mute);
  font-weight: 400;
  max-width: 56ch;
}
.lede.on-light { color: var(--ink-soft); }

.body { font-size: 16px; line-height: 1.65; color: var(--white-mute); }
.body.on-light { color: var(--ink-soft); }

.mono { font-family: var(--font-mono); }

.gold { color: var(--gold-400); }
.gold-strong { color: var(--gold-500); }
.italic { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn .arr { transition: transform 220ms var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-400) 0%, var(--gold-500) 100%);
  color: var(--navy-900);
  box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 12px 28px -10px rgba(201,162,74,0.55);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-400) 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.55) inset, 0 16px 32px -10px rgba(201,162,74,0.65);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.20);
}
.btn-ghost:hover { border-color: var(--gold-500); color: var(--gold-400); background: rgba(201,162,74,0.05); }
.btn-dark {
  background: var(--navy-700);
  color: #fff;
  border: 1px solid var(--navy-line);
}
.btn-dark:hover { border-color: var(--gold-500); color: var(--gold-400); }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-400); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.02em;
}
.btn-link .arr { transition: transform 200ms var(--ease); }
.btn-link:hover .arr { transform: translateX(4px); }

/* ---------- Rules + ornaments ---------- */
.rule { height: 1px; background: var(--navy-line); border: 0; }
.rule-light { height: 1px; background: rgba(11,39,66,0.15); border: 0; }
.rule-gold { width: 56px; height: 1px; background: var(--gold-500); border: 0; margin: 0; }

.diamond {
  width: 8px; height: 8px; transform: rotate(45deg);
  background: var(--gold-500); display: inline-block;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(4, 16, 31, 0.55);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}
.header.scrolled {
  background: rgba(4, 16, 31, 0.92);
  border-bottom-color: rgba(201, 162, 74, 0.18);
}
.header-row {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 36px; height: 36px;
  background-image: url('/landing/drozlegal-logo.png');
  background-size: 140%;
  background-position: center 26%;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-color: #04101F;
  border: 1px solid rgba(201, 162, 74, 0.5);
  box-shadow: 0 0 0 2px rgba(4, 16, 31, 0.6), 0 6px 18px -8px rgba(201,162,74,0.5);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 1px;
}
.brand-name .b1 { color: #fff; }
.brand-name .b2 { color: var(--gold-500); }

.nav { display: flex; gap: 28px; margin-left: 10px; flex: 1; }
.nav a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  transition: color 160ms var(--ease);
  position: relative;
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--gold-400); }

.nav-end { display: flex; align-items: center; gap: 14px; }
.lang {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang strong { color: var(--gold-400); font-weight: 500; }

@media (max-width: 1080px) {
  .lang { display: none; }
}
@media (max-width: 980px) {
  .nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(96px, 13vw, 160px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(201, 162, 74, 0.16), transparent 50%),
    radial-gradient(circle at 14% 88%, rgba(27, 72, 112, 0.45), transparent 55%),
    var(--navy-900);
  isolation: isolate;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(201, 162, 74, 0.05) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(90deg, transparent calc(16.6% - 0.5px), rgba(201, 162, 74, 0.035) calc(16.6% - 0.5px) calc(16.6% + 0.5px), transparent calc(16.6% + 0.5px)),
    linear-gradient(90deg, transparent calc(83.3% - 0.5px), rgba(201, 162, 74, 0.035) calc(83.3% - 0.5px) calc(83.3% + 0.5px), transparent calc(83.3% + 0.5px));
  opacity: 0.6;
}
.hero-wrap { position: relative; z-index: 4; }
.hero::before { content: none; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-text { max-width: 780px; min-width: 0; }

.hero-meta {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-400);
  flex-wrap: wrap;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-500); }
.hero h1 { margin: 0; }
.hero .lede {
  margin: 0 0 44px;
  max-width: 54ch;
  color: rgba(255,255,255,0.86);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-aside {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-width: 0;
}

/* Gavel card on right */
.gavel-card {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.gavel-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  box-shadow:
    0 50px 100px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(201, 162, 74, 0.18),
    0 0 0 6px rgba(4, 16, 31, 0.4);
}
.gavel-card-halo {
  position: absolute;
  inset: -14%;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 38%, rgba(228, 197, 106, 0.28), transparent 55%),
    radial-gradient(circle at 50% 60%, rgba(27, 72, 112, 0.55), transparent 60%);
  filter: blur(14px);
  pointer-events: none;
  opacity: 0.9;
}
.gavel-card-flash {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 3px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 35%, rgba(255, 235, 180, 0.55), transparent 55%);
  opacity: 0;
  mix-blend-mode: screen;
}
.gavel-card-flash.on {
  animation: gcflash 540ms var(--ease) forwards;
}
@keyframes gcflash {
  0% { opacity: 0; }
  20% { opacity: 1; }
  100% { opacity: 0; }
}
@media (max-width: 1020px) {
  .gavel-card { width: min(420px, 80%); margin: 0 auto; }
}

/* ---------- Hero rotator (PAS stage) ---------- */
.hero-stage {
  position: relative;
  margin: 0 0 36px;
  min-height: 260px;
}
@media (min-width: 1100px) { .hero-stage { min-height: 320px; } }

.stage-counter {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-500);
  margin-bottom: 22px;
}
.stage-counter .sc-num { color: var(--gold-400); font-weight: 500; }
.stage-counter .sc-total { color: rgba(255,255,255,0.42); }
.stage-counter .sc-bar { width: 28px; height: 1px; background: rgba(201,162,74,0.5); }

.hero-rotator {
  position: relative;
  margin: 0;
  display: block;
}
.rot-frame {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease);
}
.rot-frame.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.rot-stop {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.78);
  display: block;
  text-decoration: line-through;
  text-decoration-color: rgba(228, 197, 106, 0.92);
  text-decoration-thickness: 3px;
  text-decoration-skip-ink: none;
  text-underline-offset: 0;
}
.rot-frame.is-active .rot-stop {
  animation: strike-pop 600ms var(--ease-emph);
}
@keyframes strike-pop {
  0%   { text-decoration-color: transparent; transform: translateY(-8px); }
  60%  { text-decoration-color: var(--gold-300); transform: translateY(0); }
  100% { text-decoration-color: var(--gold-400); }
}
.rot-dream {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease-emph) 620ms, transform 600ms var(--ease-emph) 620ms;
}
.rot-dream em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-400);
}
.rot-frame.is-active .rot-dream {
  opacity: 1;
  transform: translateY(0);
}

.hero-stage.strike .rot-stop {
  animation: gavel-shake 320ms var(--ease);
}
@keyframes gavel-shake {
  0% { transform: translateY(-18px) scale(1.02); filter: blur(1.5px); opacity: 0.4; }
  40% { transform: translateY(4px) scale(0.995); filter: blur(0); opacity: 1; }
  60% { transform: translateX(-3px) translateY(0); }
  80% { transform: translateX(2px); }
  100% { transform: translateY(0); }
}

.stage-nav {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.stage-dots {
  display: flex; gap: 10px; align-items: center;
  padding: 0;
}
.sd {
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.22);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 300ms var(--ease), width 300ms var(--ease);
}
.sd:hover { background: rgba(255,255,255,0.45); }
.sd.is-active {
  background: var(--gold-400);
  width: 36px;
  box-shadow: 0 0 12px rgba(228, 197, 106, 0.4);
}

.stage-progress {
  position: relative;
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
  margin-left: 6px;
}
.sp-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  box-shadow: 0 0 8px rgba(228, 197, 106, 0.5);
}

/* Side arrows (hero edges) */
.hero-edge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(4, 16, 31, 0.55);
  border: 1px solid rgba(201, 162, 74, 0.32);
  color: var(--gold-300);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease), color 200ms var(--ease);
}
.hero-edge:hover {
  background: rgba(201, 162, 74, 0.18);
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-50%) scale(1.05);
}
.hero-edge:active { transform: translateY(-50%) scale(0.97); }
.hero-edge.prev { left: clamp(12px, 3vw, 36px); }
.hero-edge.next { right: clamp(12px, 3vw, 36px); }
.hero-edge svg { display: block; }
@media (max-width: 700px) {
  .hero-edge { width: 44px; height: 44px; }
}

/* Highlighted dollar amount within rot-stop */
.rot-amount {
  color: var(--gold-300);
  text-decoration-color: var(--gold-400);
  /* keep on the strike-through */
}

/* ---------- Verdict video frame ---------- */
.verdict {
  position: relative;
  margin: 0;
  width: min(440px, 100%);
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.verdict::before {
  content: '';
  position: absolute;
  inset: -10% -10% 18% -10%;
  background:
    radial-gradient(circle at 30% 30%, rgba(228, 197, 106, 0.18), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(27, 72, 112, 0.55), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.verdict-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #04101F;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 0 0 1px rgba(201, 162, 74, 0.45),
    0 0 0 7px rgba(4, 16, 31, 0.7),
    0 0 0 8px rgba(201, 162, 74, 0.20),
    0 60px 120px -30px rgba(0,0,0,0.8);
}
.verdict-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* lean toward warm gold tones */
  filter: contrast(1.05) saturate(1.05) brightness(0.95);
}
.verdict-frame::after {
  /* inner vignette */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4,16,31,0.35) 0%, transparent 30%, transparent 60%, rgba(4,16,31,0.55) 100%),
    radial-gradient(circle at 50% 50%, transparent 60%, rgba(4,16,31,0.6) 100%);
  pointer-events: none;
  z-index: 2;
}
.verdict-flash {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255, 240, 200, 0.45), transparent 60%);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.verdict-flash.on {
  animation: flash 480ms var(--ease) forwards;
}
@keyframes flash {
  0% { opacity: 0; }
  20% { opacity: 1; }
  100% { opacity: 0; }
}
.verdict-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px 24px;
  pointer-events: none;
}
.vo-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-300);
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.vo-tag {
  align-self: flex-end;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(228, 197, 106, 0.78);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

@media (max-width: 1020px) {
  .verdict { width: min(380px, 80%); margin: 0 auto; }
}

.emblem-corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold-500);
  z-index: 5;
  pointer-events: none;
}
.emblem-corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.emblem-corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.emblem-corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.emblem-corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.emblem-caption {
  position: relative;
  z-index: 1;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.emblem-rule {
  display: inline-block;
  width: 36px; height: 1px;
  background: rgba(201, 162, 74, 0.45);
}

.hero-strip {
  position: relative;
  z-index: 4;
  margin-top: clamp(56px, 8vw, 96px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(201, 162, 74, 0.32);
  border-bottom: 1px solid rgba(201, 162, 74, 0.32);
  background: linear-gradient(180deg, rgba(4,16,31,0.55), rgba(4,16,31,0.78));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-strip .cell {
  padding: 22px 22px;
  border-right: 1px solid var(--navy-line);
  display: flex; flex-direction: column; gap: 6px;
}
.hero-strip .cell:last-child { border-right: 0; }
.hero-strip .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--gold-400);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-strip .lab {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 820px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip .cell:nth-child(2n) { border-right: 0; }
  .hero-strip .cell:nth-child(-n+2) { border-bottom: 1px solid var(--navy-line); }
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--navy-800);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  padding: 28px 0;
}
.trust-row {
  display: flex; align-items: center; gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 12px;
}
.trust-label::after {
  content: ''; width: 28px; height: 1px; background: rgba(201,162,74,0.4);
}
.trust-logos {
  display: flex; align-items: center; gap: clamp(28px, 4vw, 56px); flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.005em;
  display: flex; align-items: center; gap: 8px;
  position: relative;
}
.trust-logo .lt-mark {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  font-family: var(--font-mono); font-size: 10px;
}
.trust-logo.featured { color: var(--gold-400); }
.trust-logo.featured .lt-mark { border-color: var(--gold-500); color: var(--gold-400); background: rgba(201,162,74,0.08); }
.trust-logo .lt-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  padding: 3px 7px;
  border: 1px solid rgba(201, 162, 74, 0.4);
  border-radius: 999px;
  margin-left: 4px;
  line-height: 1;
}

/* ---------- Promise (light section) ---------- */
.promise {
  background: var(--cream);
  color: var(--ink);
  position: relative;
}
.promise::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) { .promise-grid { grid-template-columns: 1fr; gap: 48px; } }

.promise-left { position: sticky; top: 120px; }
.promise-left .eyebrow { color: var(--gold-600); }
.promise-left .eyebrow::before { background: var(--gold-600); }
.promise-left .h1 { color: var(--ink); margin: 22px 0 26px; }
.promise-left .lede { color: var(--ink-soft); max-width: 44ch; }

.promise-list { display: flex; flex-direction: column; gap: 0; }
.promise-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(11, 39, 66, 0.10);
  align-items: start;
}
.promise-item:last-child { border-bottom: 0; }
.promise-item .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-600);
  line-height: 1;
  padding-top: 8px;
}
.promise-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
}
.promise-item p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.55; }

/* ---------- Day-in-the-life (dark, editorial) ---------- */
.day {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.day::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 80%, rgba(201,162,74,0.06), transparent 50%);
  pointer-events: none;
}
.day-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
  margin-bottom: 72px;
}
@media (max-width: 900px) { .day-head { grid-template-columns: 1fr; gap: 24px; } }
.day-head .h2 { margin: 18px 0 0; max-width: 18ch; }
.day-head .lede { margin: 0; }

.day-rows { display: flex; flex-direction: column; }
.day-row {
  display: grid;
  grid-template-columns: 140px 1.2fr 2fr 60px;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--navy-line);
  align-items: start;
  position: relative;
  transition: background 200ms var(--ease);
}
.day-row:last-child { border-bottom: 1px solid var(--navy-line); }
.day-row:hover { background: linear-gradient(90deg, transparent, rgba(201,162,74,0.04), transparent); }
.day-row .time {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--gold-500);
}
.day-row .what {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: #fff;
}
.day-row .what em { font-style: italic; color: var(--gold-400); }
.day-row .who { color: var(--white-mute); font-size: 15px; line-height: 1.6; }
.day-row .who strong { color: #fff; font-weight: 500; }
.day-row .icon {
  width: 36px; height: 36px;
  border: 1px solid var(--navy-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .day-row { grid-template-columns: 1fr; gap: 8px; }
  .day-row .icon { display: none; }
}

/* ---------- Mockup ---------- */
.mockup-wrap {
  background:
    radial-gradient(ellipse at center, rgba(27,72,112,0.4), transparent 60%),
    var(--navy-900);
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.mockup-wrap::before {
  content: ''; position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(180deg, transparent, var(--navy-800));
  pointer-events: none;
}
.mockup-head { text-align: center; margin-bottom: 56px; position: relative; }
.mockup-head .eyebrow { justify-content: center; }
.mockup-head .eyebrow::before { display: none; }
.mockup-head .h2 { margin: 16px auto 16px; max-width: 18ch; }
.mockup-head .lede { margin: 0 auto; }

.mockup {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  background: #FAF7EF;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,162,74,0.3), 0 0 0 6px rgba(201,162,74,0.06);
  overflow: hidden;
  font-size: 13px;
}
.mockup-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: #EFEADD;
  border-bottom: 1px solid rgba(11, 39, 66, 0.10);
}
.mockup-chrome .dots { display: flex; gap: 6px; }
.mockup-chrome .dots i { width: 11px; height: 11px; border-radius: 50%; background: #D8CFB9; }
.mockup-chrome .url {
  flex: 1; text-align: center;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(11,39,66,0.08);
  border-radius: 3px;
  padding: 5px 12px;
  max-width: 320px; margin: 0 auto;
}
.mockup-chrome .url::before { content: '⚖  '; color: var(--gold-600); }
.mockup-body {
  display: grid;
  grid-template-columns: 220px 1fr 320px;
  min-height: 580px;
}
@media (max-width: 980px) {
  .mockup-body { grid-template-columns: 1fr; min-height: 0; }
  .mockup-side, .mockup-aside { display: none; }
}

.mockup-side {
  background: #F1EBDB;
  border-right: 1px solid rgba(11,39,66,0.08);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 24px;
}
.mockup-side .ms-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  color: var(--ink);
}
.mockup-side .ms-brand .ms-mark {
  width: 26px; height: 26px;
  background-image: url('/landing/drozlegal-logo.png');
  background-size: 140%; background-position: center 24%;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid rgba(201,162,74,0.5);
}
.mockup-side .ms-brand b { color: var(--ink); font-weight: 600; }
.mockup-side .ms-brand i { color: var(--gold-600); font-style: normal; font-weight: 600; }

.ms-group { display: flex; flex-direction: column; gap: 4px; }
.ms-group .ms-label {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 8px 8px;
}
.ms-item {
  padding: 8px 10px;
  border-radius: 3px;
  font-size: 13px;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-soft);
}
.ms-item.active { background: rgba(11,39,66,0.92); color: var(--gold-400); }
.ms-item.active .ms-dot { background: var(--gold-400); }
.ms-item .ms-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(11,39,66,0.25);
}
.ms-item .ct { margin-left: auto; font-family: var(--font-mono); font-size: 11px; opacity: 0.7; }

.mockup-main {
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.mm-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.mm-head .crumb {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 8px;
}
.mm-head .title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 26px; line-height: 1.1; color: var(--ink); letter-spacing: -0.01em;
}
.mm-head .title em { color: var(--gold-600); font-style: italic; }
.mm-head .meta {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-mute);
  display: flex; gap: 10px; align-items: center; flex-shrink: 0;
  margin-top: 4px;
}
.mm-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px; border-radius: 999px;
  background: rgba(43,168,124,0.12); color: #1F7B58;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em;
}
.mm-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: #2BA87C; }

.mm-summary {
  background: #fff;
  border: 1px solid rgba(11,39,66,0.10);
  border-radius: 4px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.mm-summary .s-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-600);
}
.mm-summary p {
  margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft);
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: 17px;
}
.mm-summary .quote-mark {
  font-family: var(--font-display);
  color: var(--gold-500); font-size: 28px; line-height: 0;
  vertical-align: -10px;
}

.mm-row-title {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px;
}

.mm-tasks { display: flex; flex-direction: column; }
.mm-task {
  display: grid;
  grid-template-columns: 20px 1fr auto auto;
  gap: 14px; align-items: center;
  padding: 12px 4px;
  border-top: 1px solid rgba(11,39,66,0.08);
  font-size: 13.5px;
}
.mm-task:first-child { border-top: 0; }
.mm-task .chk {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(11,39,66,0.25);
  position: relative;
}
.mm-task.done .chk {
  background: var(--gold-500); border-color: var(--gold-500);
}
.mm-task.done .chk::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 700;
}
.mm-task.done .txt { color: var(--ink-mute); text-decoration: line-through; text-decoration-color: rgba(11,39,66,0.25); }
.mm-task .who {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.mm-task .when {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--ink-mute);
}

.mockup-aside {
  background: #F1EBDB;
  border-left: 1px solid rgba(11,39,66,0.08);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 22px;
}
.ma-card {
  background: #fff;
  border: 1px solid rgba(11,39,66,0.10);
  border-radius: 4px;
  padding: 16px 18px;
}
.ma-card .h {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-600); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.ma-card .h::before {
  content: ''; width: 6px; height: 6px; transform: rotate(45deg);
  background: var(--gold-500);
}
.ma-card .v {
  font-family: var(--font-display); font-size: 28px; color: var(--ink); font-weight: 500;
  letter-spacing: -0.012em; line-height: 1;
}
.ma-card .vsub { font-size: 12.5px; color: var(--ink-mute); margin-top: 6px; }

.ma-list { display: flex; flex-direction: column; gap: 10px; }
.ma-list-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12.5px; color: var(--ink-soft);
  padding: 8px 0;
  border-top: 1px solid rgba(11,39,66,0.08);
}
.ma-list-item:first-child { border-top: 0; padding-top: 2px; }
.ma-list-item .d {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--gold-600); flex-shrink: 0; padding-top: 2px; letter-spacing: 0.06em;
}

/* ---------- Practice areas ---------- */
.practice {
  background: var(--bone);
  color: var(--ink);
}
.practice-head { text-align: center; margin-bottom: 64px; }
.practice-head .eyebrow { color: var(--gold-600); }
.practice-head .eyebrow::before { background: var(--gold-600); }
.practice-head .eyebrow { justify-content: center; }
.practice-head .eyebrow::before { display: none; }
.practice-head .h2 { color: var(--ink); margin: 16px auto 16px; max-width: 22ch; }
.practice-head .lede { margin: 0 auto; color: var(--ink-soft); }

.practice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid rgba(11,39,66,0.15);
  border-left: 1px solid rgba(11,39,66,0.15);
}
@media (max-width: 940px) { .practice-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .practice-grid { grid-template-columns: 1fr; } }

.practice-card {
  border-right: 1px solid rgba(11,39,66,0.15);
  border-bottom: 1px solid rgba(11,39,66,0.15);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--bone);
  transition: background 250ms var(--ease);
  position: relative;
}
.practice-card:hover { background: #F1EBDB; }
.practice-card .pc-num {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em;
  color: var(--gold-600); margin-bottom: 0;
}
.practice-card h3 {
  font-family: var(--font-display); font-size: 28px; font-weight: 500;
  line-height: 1.1; letter-spacing: -0.012em; margin: 4px 0 6px;
}
.practice-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.practice-card .pc-out {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(11,39,66,0.10);
  display: flex; align-items: baseline; gap: 12px;
}
.practice-card .pc-out .v {
  font-family: var(--font-display); font-size: 26px; color: var(--gold-600); font-weight: 500; letter-spacing: -0.01em;
}
.practice-card .pc-out .l {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
}

/* ---------- Quote ---------- */
.quote-section {
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '“';
  position: absolute;
  left: -20px; top: -80px;
  font-family: var(--font-display);
  font-size: 540px;
  line-height: 1;
  color: rgba(201, 162, 74, 0.06);
  pointer-events: none;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative;
}
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; gap: 40px; } }

.quote-mark-big {
  font-family: var(--font-display);
  font-size: 80px; color: var(--gold-500); line-height: 0.6;
  margin-bottom: 20px;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400; font-style: italic;
  line-height: 1.25; letter-spacing: -0.012em;
  color: #fff;
  margin: 0 0 32px;
}
.quote-by {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--navy-line);
}
.quote-portrait {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #C9A24A, #8A6520);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: var(--navy-900);
  border: 2px solid rgba(201,162,74,0.4);
}
.quote-by .name { font-weight: 600; font-size: 15px; }
.quote-by .role { color: var(--white-mute); font-size: 13px; margin-top: 2px; }

.quote-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
}
.qs-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--navy-line);
  display: flex; flex-direction: column; gap: 8px;
}
.qs-cell:nth-child(2n) { border-right: 0; }
.qs-cell:nth-child(-n+2) { border-bottom: 1px solid var(--navy-line); }
.qs-cell .v {
  font-family: var(--font-display); font-weight: 500;
  font-size: 48px; letter-spacing: -0.022em;
  color: var(--gold-400); line-height: 1;
}
.qs-cell .v sup { font-size: 22px; vertical-align: top; margin-left: 2px; }
.qs-cell .l {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--white-mute);
}
.qs-cell .d { font-size: 13px; color: var(--white-mute); line-height: 1.5; }

/* ---------- Safeguards ---------- */
.safe {
  background: var(--navy-900);
  position: relative;
}
.safe-head { text-align: center; margin-bottom: 64px; }
.safe-head .eyebrow { justify-content: center; }
.safe-head .eyebrow::before { display: none; }
.safe-head .h2 { margin: 16px auto 16px; max-width: 24ch; }
.safe-head .lede { margin: 0 auto; }

.safe-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 900px) { .safe-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .safe-grid { grid-template-columns: 1fr; } }

.safe-card {
  padding: 32px 24px;
  border-right: 1px solid var(--navy-line);
  display: flex; flex-direction: column; gap: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.safe-card:last-child { border-right: 0; }
@media (max-width: 900px) {
  .safe-card { border-right: 1px solid var(--navy-line); border-bottom: 1px solid var(--navy-line); }
  .safe-card:nth-child(2n) { border-right: 0; }
  .safe-card:nth-last-child(-n+2) { border-bottom: 0; }
}
.safe-card .ic {
  width: 36px; height: 36px;
  border: 1px solid var(--navy-line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.safe-card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.012em; margin: 0;
}
.safe-card p { margin: 0; color: var(--white-mute); font-size: 14px; line-height: 1.55; }

.safe-marks {
  margin-top: 36px;
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; align-items: center;
}
.safe-mark {
  padding: 10px 16px;
  border: 1px solid var(--navy-line);
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-500);
  display: inline-flex; align-items: center; gap: 8px;
}
.safe-mark::before {
  content: ''; width: 6px; height: 6px; transform: rotate(45deg); background: var(--gold-500);
}

/* ---------- Pricing teaser ---------- */
.start {
  background: var(--cream);
  color: var(--ink);
  position: relative;
}
.start::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.start-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch;
}
@media (max-width: 940px) { .start-grid { grid-template-columns: 1fr; } }

.start-left .h2 { color: var(--ink); margin: 16px 0 18px; max-width: 16ch; }
.start-left .lede { color: var(--ink-soft); max-width: 42ch; margin: 0 0 28px; }

.start-steps {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(11,39,66,0.15);
  margin-top: 12px;
}
.start-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(11,39,66,0.10);
  align-items: baseline;
}
.start-step .stnum {
  font-family: var(--font-display); font-style: italic;
  font-size: 26px; color: var(--gold-600); line-height: 1;
}
.start-step h4 {
  font-family: var(--font-display); font-weight: 500; font-style: normal;
  font-size: 22px; line-height: 1.15; color: var(--ink); margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.start-step p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

.start-card {
  background: var(--navy-900);
  color: #fff;
  border-radius: 4px;
  padding: 40px;
  border: 1px solid rgba(201,162,74,0.25);
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.4);
}
.start-card::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: var(--gold-500);
}
.start-card .sc-eyebrow {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-500); margin-bottom: 10px;
}
.start-card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 36px; line-height: 1.05; letter-spacing: -0.018em; margin: 0 0 12px;
}
.start-card h3 em { font-style: italic; color: var(--gold-400); }
.start-card p { color: var(--white-mute); font-size: 15px; line-height: 1.55; margin: 0 0 24px; }

.start-card .scopes {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  margin-bottom: 24px;
}
.scope {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.88);
}
.scope::before {
  content: '✓'; color: var(--gold-400); font-weight: 700;
  flex-shrink: 0; padding-top: 1px;
}
.start-card .sc-meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55); text-transform: uppercase; margin-top: 18px;
  display: flex; align-items: center; gap: 10px;
}
.start-card .sc-meta::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #6FD3A8; }

/* ---------- Hero microtrust + nav CTA ---------- */
.hero-microtrust {
  margin-top: 24px;
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.hero-microtrust .hmt-item {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-microtrust .hmt-dot {
  width: 5px; height: 5px;
  background: var(--gold-400);
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}

.nav-signin {
  font-size: 13px; color: rgba(255,255,255,0.78);
  padding: 8px 4px;
}
.nav-signin:hover { color: var(--gold-400); }
.nav-cta {
  padding: 11px 18px !important;
  font-size: 13px !important;
}

/* ---------- Promise trust marks ---------- */
.promise-trust {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.pt-mark {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  border: 1px solid rgba(167, 125, 43, 0.4);
  background: rgba(255,255,255,0.45);
  padding: 6px 11px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.pt-mark::before {
  content: '';
  width: 5px; height: 5px; transform: rotate(45deg);
  background: var(--gold-600);
  display: inline-block;
}

/* ---------- Pricing section (richer) ---------- */
.start-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.start-head .eyebrow { color: var(--gold-600); justify-content: center; }
.start-head .eyebrow::before { display: none; }
.start-head .h1 { color: var(--ink); margin: 16px 0 18px; }
.start-head .lede { color: var(--ink-soft); margin: 0 auto 30px; }

.price-toggle {
  display: inline-flex;
  background: rgba(11, 39, 66, 0.06);
  border: 1px solid rgba(11, 39, 66, 0.12);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
  align-items: center;
}
.pt-opt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--ink-mute);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.pt-opt.is-active {
  background: var(--navy-700);
  color: var(--gold-400);
}
.pt-opt .pt-save {
  font-size: 9.5px;
  letter-spacing: 0.12em;
  background: var(--gold-400);
  color: var(--navy-900);
  padding: 2px 7px;
  border-radius: 999px;
}
.pt-opt.is-active .pt-save { background: var(--gold-400); color: var(--navy-900); }

.price-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
}

.price-card {
  background: #FFFFFF;
  border: 1px solid rgba(11, 39, 66, 0.12);
  border-radius: 4px;
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
  color: var(--ink);
}
.price-card-feature {
  background: var(--navy-900);
  color: #fff;
  border-color: rgba(201, 162, 74, 0.35);
  box-shadow: 0 40px 80px -30px rgba(11, 39, 66, 0.35);
}
.price-card-feature::before {
  content: '';
  position: absolute; top: 0; left: 28px; right: 28px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.pc-flag {
  position: absolute; top: -10px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px -8px rgba(201, 162, 74, 0.6);
}
.pc-top { display: flex; flex-direction: column; gap: 6px; }
.pc-eyebrow {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.price-card-feature .pc-eyebrow { color: var(--gold-400); }
.pc-tag {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 32ch;
}
.price-card-feature .pc-tag { color: rgba(255,255,255,0.72); }

.pc-price {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(11, 39, 66, 0.10);
  border-bottom: 1px solid rgba(11, 39, 66, 0.10);
}
.price-card-feature .pc-price {
  border-color: rgba(201, 162, 74, 0.18);
}
.pc-amt {
  display: inline-flex; align-items: flex-start;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.price-card-feature .pc-amt { color: #fff; }
.pc-cur { font-size: 28px; padding-top: 6px; opacity: 0.7; }
.pc-num {
  font-size: 64px;
  transition: transform 200ms var(--ease), color 200ms var(--ease);
}
.pc-period {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
}
.price-card-feature .pc-period { color: rgba(255,255,255,0.6); }

.pc-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14.5px;
}
.pc-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--ink-soft);
}
.pc-list li::before {
  content: '✓';
  color: var(--gold-600);
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 1px;
}
.price-card-feature .pc-list li { color: rgba(255,255,255,0.86); }
.price-card-feature .pc-list li::before { color: var(--gold-400); }

.pc-cta {
  margin-top: auto;
  justify-content: center;
}
.pc-fine {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.price-card-feature .pc-fine { color: rgba(255,255,255,0.55); }

/* ---------- Pricing FAQ ---------- */
.price-faq {
  margin-top: 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(11, 39, 66, 0.12);
}
@media (max-width: 800px) { .price-faq { grid-template-columns: 1fr; gap: 24px; } }
.pf-item { display: flex; flex-direction: column; gap: 6px; }
.pf-q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.008em;
}
.pf-a {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 44ch;
}

/* ---------- Final CTA band ---------- */
.final-cta {
  position: relative;
  padding: clamp(88px, 12vw, 160px) 0;
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(201, 162, 74, 0.18), transparent 50%),
    radial-gradient(circle at 82% 80%, rgba(27, 72, 112, 0.45), transparent 55%);
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,74,0.4), transparent);
}
.fc-row {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 72px; align-items: center;
}
@media (max-width: 980px) {
  .fc-row { grid-template-columns: 1fr; gap: 48px; }
}
.fc-left .eyebrow { color: var(--gold-400); }
.fc-left .eyebrow::before { display: none; }
.fc-left .h1 { margin: 18px 0 22px; max-width: 16ch; }
.fc-left .lede { margin: 0 0 28px; max-width: 44ch; }
.fc-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.fc-quote {
  margin: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: 4px;
  padding: 44px 32px 32px;
  position: relative;
}
.fc-quote::before {
  content: '\201C';
  position: absolute;
  top: -38px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--gold-500);
  background: var(--navy-900);
  padding: 0 12px;
  pointer-events: none;
}
.fc-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.005em;
}
.fc-quote figcaption {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 162, 74, 0.2);
  display: flex; align-items: center; gap: 14px;
}
.fcq-port {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 500;
  color: var(--navy-900);
  border: 2px solid rgba(201, 162, 74, 0.4);
}
.fcq-name { color: #fff; font-weight: 600; font-size: 14px; }
.fcq-role { color: var(--white-mute); font-size: 12.5px; margin-top: 2px; }

.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--navy-line);
  padding: 64px 0 32px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.footer-brand .brand-name { font-size: 26px; }
.footer-brand .tagline {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-500);
}
.footer-brand p { color: var(--white-mute); font-size: 14px; line-height: 1.55; margin: 0; }

.footer-col h5 {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-500); margin: 0 0 18px; font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.7); font-size: 13.5px; transition: color 160ms var(--ease);
}
.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding-top: 24px; border-top: 1px solid var(--navy-line);
  flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .fb-left { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom .fb-developed { color: rgba(255,255,255,0.65); }
.footer-bottom .fb-developed strong { color: var(--gold-400); font-weight: 500; letter-spacing: 0.14em; }
.footer-bottom .right { display: flex; gap: 24px; align-items: center; }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-emph), transform 700ms var(--ease-emph);
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}

/* Selection */
::selection { background: var(--gold-500); color: var(--navy-900); }

/* Scrollbar (subtle) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: rgba(201, 162, 74, 0.2); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201, 162, 74, 0.4); }


/* ============================================
   SUBPAGE SHARED PATTERNS
   ============================================ */

/* Page hero — used across all subpages */
.page-hero {
  position: relative;
  padding: clamp(96px, 12vw, 160px) 0 clamp(56px, 7vw, 96px);
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 162, 74, 0.13), transparent 50%),
    radial-gradient(circle at 14% 92%, rgba(27, 72, 112, 0.42), transparent 55%),
    var(--navy-900);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(201, 162, 74, 0.05) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(90deg, transparent calc(16.6% - 0.5px), rgba(201, 162, 74, 0.035) calc(16.6% - 0.5px) calc(16.6% + 0.5px), transparent calc(16.6% + 0.5px)),
    linear-gradient(90deg, transparent calc(83.3% - 0.5px), rgba(201, 162, 74, 0.035) calc(83.3% - 0.5px) calc(83.3% + 0.5px), transparent calc(83.3% + 0.5px));
  opacity: 0.5;
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero .crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.page-hero .crumb a { color: rgba(255,255,255,0.55); transition: color 160ms var(--ease); }
.page-hero .crumb a:hover { color: var(--gold-400); }
.page-hero .crumb-sep { color: rgba(255,255,255,0.25); }
.page-hero .crumb-here { color: var(--gold-400); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 18ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold-400); font-weight: 500; }
.page-hero .lede {
  margin: 0;
  max-width: 64ch;
  font-size: clamp(17px, 1.4vw, 21px);
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}
.page-hero-meta {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 162, 74, 0.22);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.page-hero-meta .hmt-item { display: inline-flex; align-items: center; gap: 8px; }
.page-hero-meta .hmt-dot {
  width: 5px; height: 5px; transform: rotate(45deg); background: var(--gold-400);
}

/* Section heading */
.sec-head {
  max-width: 760px;
  margin: 0 0 56px;
}
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow { color: var(--gold-500); }
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 18px 0 16px;
  color: var(--ink);
}
.sec-head.on-dark h2 { color: #fff; }
.sec-head h2 em { font-style: italic; color: var(--gold-500); }
.sec-head.on-dark h2 em { color: var(--gold-400); }
.sec-head .lede {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 64ch;
}
.sec-head.on-dark .lede { color: rgba(255,255,255,0.78); }
.sec-head.center .lede { margin: 0 auto; }

/* Feature grid (3-col cards) */
.f-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(11, 39, 66, 0.14);
  border-left: 1px solid rgba(11, 39, 66, 0.14);
}
.f-grid.on-dark {
  border-color: rgba(201, 162, 74, 0.18);
}
@media (max-width: 940px) { .f-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .f-grid { grid-template-columns: 1fr; } }
.f-card {
  border-right: 1px solid rgba(11, 39, 66, 0.14);
  border-bottom: 1px solid rgba(11, 39, 66, 0.14);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 12px;
  background: transparent;
  position: relative;
  transition: background 200ms var(--ease);
}
.f-grid.on-dark .f-card {
  border-color: rgba(201, 162, 74, 0.18);
}
.f-card:hover { background: rgba(11, 39, 66, 0.03); }
.f-grid.on-dark .f-card:hover { background: rgba(255,255,255,0.025); }
.f-card .fc-num {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.18em; color: var(--gold-600);
}
.f-grid.on-dark .f-card .fc-num { color: var(--gold-500); }
.f-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin: 4px 0 4px;
  color: var(--ink);
}
.f-grid.on-dark .f-card h3 { color: #fff; }
.f-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px; line-height: 1.55;
}
.f-grid.on-dark .f-card p { color: rgba(255,255,255,0.78); }
.f-card .fc-meta {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.f-grid.on-dark .f-card .fc-meta { color: rgba(255,255,255,0.5); }
.f-card a {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 13px; color: var(--gold-600);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 200ms var(--ease);
}
.f-grid.on-dark .f-card a { color: var(--gold-400); }
.f-card a:hover { gap: 10px; }
.f-card a::after { content: '→'; }

/* Section variations */
.sec-bone { background: var(--bone); color: var(--ink); }
.sec-cream { background: var(--cream); color: var(--ink); }
.sec-navy { background: var(--navy-900); color: #fff; position: relative; }
.sec-navy::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 80%, rgba(201,162,74,0.06), transparent 50%);
  pointer-events: none;
}
.sec-navy > .wrap { position: relative; }

/* Big stat bar */
.stat-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(201, 162, 74, 0.28);
  border-bottom: 1px solid rgba(201, 162, 74, 0.28);
  background: rgba(4, 16, 31, 0.45);
}
.stat-bar.on-light {
  background: transparent;
  border-color: rgba(11, 39, 66, 0.15);
}
.stat-cell {
  padding: 28px 24px;
  border-right: 1px solid rgba(201, 162, 74, 0.18);
  display: flex; flex-direction: column; gap: 8px;
}
.stat-bar.on-light .stat-cell { border-right-color: rgba(11, 39, 66, 0.12); }
.stat-cell:last-child { border-right: 0; }
.stat-cell .v {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gold-400);
}
.stat-bar.on-light .stat-cell .v { color: var(--gold-600); }
.stat-cell .l {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.stat-bar.on-light .stat-cell .l { color: var(--ink-mute); }
@media (max-width: 900px) {
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2n) { border-right: 0; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(201, 162, 74, 0.18); }
  .stat-bar.on-light .stat-cell:nth-child(-n+2) { border-bottom-color: rgba(11, 39, 66, 0.12); }
}

/* Two-column split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) { .split { grid-template-columns: 1fr; gap: 48px; } }
.split.reverse { grid-template-columns: 1.3fr 1fr; }
@media (max-width: 980px) { .split.reverse { grid-template-columns: 1fr; } }

/* Step list (1, 2, 3) */
.steps {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(11, 39, 66, 0.12);
}
.steps.on-dark { border-top-color: rgba(201, 162, 74, 0.2); }
.step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(11, 39, 66, 0.10);
  align-items: start;
}
.steps.on-dark .step { border-bottom-color: rgba(201, 162, 74, 0.15); }
.step .st-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-600);
  line-height: 1;
  padding-top: 4px;
}
.steps.on-dark .step .st-num { color: var(--gold-400); }
.step h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.steps.on-dark .step h4 { color: #fff; }
.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px; line-height: 1.55;
}
.steps.on-dark .step p { color: rgba(255,255,255,0.78); }

/* Capability list (bulleted) */
.cap-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px 28px;
}
@media (max-width: 720px) { .cap-list { grid-template-columns: 1fr; } }
.cap-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11, 39, 66, 0.07);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.cap-list.on-dark li {
  color: rgba(255,255,255,0.82);
  border-bottom-color: rgba(201, 162, 74, 0.10);
}
.cap-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 7px;
  width: 5px; height: 5px;
  transform: rotate(45deg);
  background: var(--gold-500);
}

/* ============================================
   DASHBOARD MOCKUPS (shared)
   ============================================ */
.dash {
  background: #FAF7EF;
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,162,74,0.3), 0 0 0 6px rgba(201,162,74,0.06);
  font-size: 13px;
  position: relative;
}
.dash-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: #EFEADD;
  border-bottom: 1px solid rgba(11, 39, 66, 0.10);
}
.dash-chrome .dots { display: flex; gap: 6px; }
.dash-chrome .dots i { width: 11px; height: 11px; border-radius: 50%; background: #D8CFB9; }
.dash-chrome .url {
  flex: 1; text-align: center;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(11,39,66,0.08);
  border-radius: 3px;
  padding: 5px 12px;
  max-width: 380px; margin: 0 auto;
}
.dash-chrome .url::before { content: '⚖  '; color: var(--gold-600); }
.dash-body { padding: 26px 30px; }

/* Card patterns for dashboards */
.dash-card {
  background: #fff;
  border: 1px solid rgba(11, 39, 66, 0.10);
  border-radius: 4px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.dash-card .dc-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-600);
}
.dash-card .dc-head::before {
  content: ''; width: 6px; height: 6px; transform: rotate(45deg); background: var(--gold-500);
}
.dash-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(11, 39, 66, 0.08);
  font-size: 13.5px;
}
.dash-row:first-of-type { border-top: 0; }
.dash-row .dr-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.dr-tag-ok { background: rgba(43,168,124,0.12); color: #1F7B58; }
.dr-tag-pending { background: rgba(201,162,74,0.15); color: var(--gold-700); }
.dr-tag-needs { background: rgba(218,79,79,0.10); color: #B83A3A; }
.dr-tag-info { background: rgba(27,72,112,0.08); color: var(--navy-700); }
.dash-row .dr-when {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-mute);
  margin-left: auto; flex-shrink: 0;
}
.dash-row .dr-text strong { color: var(--ink); font-weight: 500; }
.dash-row .dr-text {
  flex: 1;
  color: var(--ink-soft);
  font-size: 13.5px; line-height: 1.5;
}

/* Compact KPI row */
.kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 22px;
}
@media (max-width: 720px) { .kpi-row { grid-template-columns: 1fr 1fr; } }
.kpi {
  background: #fff;
  border: 1px solid rgba(11, 39, 66, 0.10);
  border-radius: 4px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.kpi .k-label {
  font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
}
.kpi .k-value {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; letter-spacing: -0.015em;
  color: var(--ink); line-height: 1;
}
.kpi .k-value .k-unit {
  font-size: 14px;
  opacity: 0.6;
  margin-left: 3px;
}
.kpi .k-sub {
  font-size: 11.5px; color: var(--ink-mute);
}

/* Single-column dashboard variant */
.dash-cols {
  display: grid; gap: 16px;
  grid-template-columns: 1.4fr 1fr;
}
@media (max-width: 820px) { .dash-cols { grid-template-columns: 1fr; } }

/* Roadmap split — current vs future */
.roadmap-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(201, 162, 74, 0.25);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 880px) { .roadmap-split { grid-template-columns: 1fr; } }
.rs-side {
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.rs-side.now {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
  border-right: 1px solid rgba(201, 162, 74, 0.18);
}
@media (max-width: 880px) {
  .rs-side.now { border-right: 0; border-bottom: 1px solid rgba(201, 162, 74, 0.18); }
}
.rs-side.next {
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.06), transparent);
}
.rs-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.rs-tag.now { color: rgba(255,255,255,0.6); }
.rs-tag.now::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: #6FD3A8;
}
.rs-tag.next { color: var(--gold-400); }
.rs-tag.next::before {
  content: ''; width: 8px; height: 8px; transform: rotate(45deg); background: var(--gold-400);
}
.rs-side h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1; letter-spacing: -0.015em;
  margin: 0;
  color: #fff;
}
.rs-side ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.rs-side ul li {
  padding: 12px 0;
  border-top: 1px solid rgba(201, 162, 74, 0.15);
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  display: flex; align-items: flex-start; gap: 10px;
}
.rs-side ul li::before {
  content: ''; flex-shrink: 0; margin-top: 7px;
  width: 4px; height: 4px; transform: rotate(45deg); background: var(--gold-500);
}

/* CTA band */
.cta-band {
  background: var(--navy-900);
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 16% 30%, rgba(201, 162, 74, 0.18), transparent 50%),
    radial-gradient(circle at 84% 80%, rgba(27, 72, 112, 0.45), transparent 55%);
  pointer-events: none;
}
.cta-band::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,74,0.4), transparent);
}
.cta-band .wrap { position: relative; }
.cta-band .cb-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .cta-band .cb-row { grid-template-columns: 1fr; gap: 32px; } }
.cb-row h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
  max-width: 18ch;
  color: #fff;
}
.cb-row h2 em { font-style: italic; color: var(--gold-400); }
.cb-row p {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.78);
  font-size: 16px; line-height: 1.6;
  max-width: 44ch;
}
.cb-right {
  display: flex; flex-direction: column; gap: 18px;
  align-items: flex-end;
}
@media (max-width: 900px) { .cb-right { align-items: flex-start; } }
.cb-right .cb-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cb-right .cb-trust {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cb-trust .ti { display: inline-flex; align-items: center; gap: 8px; }
.cb-trust .ti::before {
  content: ''; width: 5px; height: 5px; transform: rotate(45deg); background: var(--gold-500);
}

/* Form pipeline diagram */
.pipeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 8px;
}
@media (max-width: 820px) { .pipeline { grid-template-columns: 1fr 1fr; } }
.pipe-step {
  position: relative;
  padding: 24px 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201, 162, 74, 0.18);
  display: flex; flex-direction: column; gap: 8px;
}
.pipe-step + .pipe-step { border-left: 0; }
@media (max-width: 820px) {
  .pipe-step + .pipe-step { border-left: 1px solid rgba(201, 162, 74, 0.18); border-top: 0; }
  .pipe-step:nth-child(3) { border-top: 1px solid rgba(201, 162, 74, 0.18); }
}
.pipe-step .ps-num {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em;
  color: var(--gold-400);
}
.pipe-step h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 18px; letter-spacing: -0.01em;
  margin: 0; color: #fff;
}
.pipe-step p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}


.lang-toggle { text-decoration: none; cursor: pointer; transition: border-color 200ms var(--ease), color 200ms var(--ease); }
.lang-toggle:hover { border-color: var(--gold-400); color: var(--gold-300); }
.lang-toggle strong { color: var(--gold-400); font-weight: 500; }


/* ============================================
   APPLICATION UI (inside the product)
   ============================================ */
.app {
  background: #F5F1E8;
  color: var(--ink);
  min-height: 100vh;
  font-size: 14px;
}
.app body, body.app-body { background: #F5F1E8; }

/* ---------- Login screen ---------- */
.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--navy-900);
}
@media (max-width: 880px) { .login-shell { grid-template-columns: 1fr; } }
.login-aside {
  position: relative;
  padding: 56px 64px;
  display: flex; flex-direction: column; gap: 36px;
  background:
    radial-gradient(circle at 70% 22%, rgba(201,162,74,0.18), transparent 50%),
    radial-gradient(circle at 14% 88%, rgba(27,72,112,0.45), transparent 55%),
    var(--navy-900);
  color: #fff;
  overflow: hidden;
}
@media (max-width: 880px) { .login-aside { display: none; } }
.login-aside .brand-name { font-size: 26px; }
.login-aside .login-hero {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
}
.login-aside .login-hero em { font-style: italic; color: var(--gold-400); font-weight: 500; }
.login-aside p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.55; max-width: 44ch; margin: 0; }
.login-aside .login-marks {
  margin-top: auto;
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.login-aside .login-marks span { display: inline-flex; align-items: center; gap: 8px; }
.login-aside .login-marks span::before {
  content: ''; width: 5px; height: 5px; transform: rotate(45deg); background: var(--gold-500);
}
.login-form-wrap {
  display: flex; align-items: center; justify-content: center;
  background: #F5F1E8;
  padding: 56px 36px;
}
.login-form {
  width: 100%; max-width: 420px;
  display: flex; flex-direction: column; gap: 22px;
}
.login-form .lf-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-600);
}
.login-form h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 38px; line-height: 1.05; letter-spacing: -0.018em;
  margin: 0; color: var(--ink);
}
.login-form .lf-sub {
  color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin: 0;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.field input {
  font-family: var(--font-sans); font-size: 14.5px;
  padding: 12px 14px; border-radius: 3px;
  border: 1px solid rgba(11, 39, 66, 0.18);
  background: #fff;
  color: var(--ink);
  transition: border-color 200ms var(--ease);
}
.field input:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.18);
}
.lf-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.lf-row a { color: var(--gold-600); font-weight: 500; }
.lf-row a:hover { text-decoration: underline; }
.login-form .btn-primary { justify-content: center; }
.lf-divider {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.lf-divider::before, .lf-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(11, 39, 66, 0.14);
}
.lf-sso {
  display: flex; flex-direction: column; gap: 10px;
}
.lf-sso button {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 39, 66, 0.18);
  background: #fff; color: var(--ink);
  border-radius: 3px; font-size: 14px; font-weight: 500;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.lf-sso button:hover { border-color: var(--gold-500); background: rgba(201, 162, 74, 0.06); }
.lf-foot {
  font-size: 12.5px; color: var(--ink-mute); text-align: center;
}
.lf-foot a { color: var(--gold-600); font-weight: 500; }

/* ---------- App shell ---------- */
.app-shell {
  display: grid;
  grid-template-columns: 232px 1fr;
  min-height: 100vh;
  background: #F5F1E8;
}
@media (max-width: 980px) { .app-shell { grid-template-columns: 60px 1fr; } }
.app-side {
  background: var(--navy-900);
  color: #fff;
  display: flex; flex-direction: column;
  padding: 18px 14px 18px;
  border-right: 1px solid rgba(201, 162, 74, 0.15);
}
.app-side .as-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px 22px;
  border-bottom: 1px solid rgba(201, 162, 74, 0.15);
  margin-bottom: 18px;
}
.app-side .as-brand .brand-mark { width: 30px; height: 30px; }
.app-side .as-brand .brand-name { font-size: 19px; }
.as-section { margin-bottom: 22px; }
.as-label {
  font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); padding: 4px 10px 8px;
}
.as-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 10px;
  border-radius: 3px;
  font-size: 13.5px; color: rgba(255,255,255,0.78);
  transition: background 160ms var(--ease), color 160ms var(--ease);
  cursor: pointer;
}
.as-item .as-ic {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.as-item:hover { background: rgba(255,255,255,0.04); color: #fff; }
.as-item:hover .as-ic { color: var(--gold-400); }
.as-item.active {
  background: rgba(201, 162, 74, 0.10);
  color: var(--gold-300);
}
.as-item.active .as-ic { color: var(--gold-400); }
.as-item .ct {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 10.5px;
  background: rgba(201, 162, 74, 0.18); color: var(--gold-300);
  padding: 2px 7px; border-radius: 999px;
}
.as-foot { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(201, 162, 74, 0.15); }
.as-user {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; cursor: pointer;
  border-radius: 3px;
}
.as-user:hover { background: rgba(255,255,255,0.04); }
.as-user .as-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px;
  color: var(--navy-900); font-weight: 500;
}
.as-user .as-name { font-size: 13px; color: #fff; font-weight: 500; }
.as-user .as-role { font-size: 11px; color: rgba(255,255,255,0.55); }

/* App top bar */
.app-top {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 28px;
  background: #fff;
  border-bottom: 1px solid rgba(11, 39, 66, 0.08);
}
.app-top .greet {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.012em;
  color: var(--ink);
}
.app-top .greet em { font-style: italic; color: var(--gold-600); }
.app-top .meta {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--ink-mute);
  text-transform: uppercase;
}
.app-top .top-spacer { flex: 1; }
.app-search {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: #F5F1E8;
  border: 1px solid rgba(11, 39, 66, 0.10);
  border-radius: 999px;
  font-size: 13px; color: var(--ink-mute);
  min-width: 280px;
}
.app-search kbd {
  font-family: var(--font-mono); font-size: 10px;
  padding: 2px 6px; border-radius: 3px;
  background: rgba(11,39,66,0.06); color: var(--ink-mute);
  margin-left: auto;
}
.app-top .icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid rgba(11, 39, 66, 0.10);
  cursor: pointer;
  position: relative;
}
.app-top .icon-btn:hover { color: var(--gold-600); border-color: var(--gold-500); }
.app-top .icon-btn .dot {
  position: absolute; top: 7px; right: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500);
}

/* Main content */
.app-main { padding: 24px 28px 56px; overflow-x: hidden; }
.page-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; letter-spacing: -0.018em; color: var(--ink);
  margin: 0 0 4px;
}
.page-title em { font-style: italic; color: var(--gold-600); }
.page-sub { color: var(--ink-soft); font-size: 14px; margin: 0 0 22px; }
.page-context {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.page-context .pc-live {
  display: inline-flex; align-items: center; gap: 8px;
  color: #1F7B58;
}
.page-context .pc-live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #2BA87C;
  animation: pulse 2s infinite ease-out;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,168,124,0.6); }
  100% { box-shadow: 0 0 0 8px rgba(43,168,124,0); }
}

/* KPI tiles — bigger version for app */
.kpi-row.lg { grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
@media (max-width: 980px) { .kpi-row.lg { grid-template-columns: 1fr 1fr; } }
.kpi.lg { padding: 18px 20px; gap: 8px; }
.kpi.lg .k-value { font-size: 36px; }
.kpi.lg .k-trend {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.06em; color: #1F7B58;
}
.kpi.lg .k-trend.down { color: #B83A3A; }
.kpi.lg .k-trend::before {
  content: '▲ ';
}
.kpi.lg .k-trend.down::before { content: '▼ '; }

/* Two-column content */
.app-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
}
@media (max-width: 1180px) { .app-cols { grid-template-columns: 1fr; } }

/* Section card in app */
.panel {
  background: #fff;
  border: 1px solid rgba(11, 39, 66, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 18px;
}
.panel-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(11, 39, 66, 0.08);
}
.panel-head h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 19px; letter-spacing: -0.01em;
  margin: 0; color: var(--ink);
}
.panel-head .count {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.panel-head .head-actions {
  margin-left: auto;
  display: flex; gap: 8px;
}
.panel-head .ha-btn {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(11, 39, 66, 0.12);
  border-radius: 3px;
  background: transparent; color: var(--ink-soft);
  cursor: pointer; transition: all 160ms var(--ease);
}
.panel-head .ha-btn:hover { border-color: var(--gold-500); color: var(--gold-600); }
.panel-head .ha-btn.primary {
  background: var(--navy-700); color: var(--gold-400);
  border-color: var(--navy-700);
}
.panel-body { padding: 0; }
.panel-body.padded { padding: 16px 20px; }

/* Item rows inside panels */
.item-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px; align-items: center;
  padding: 12px 20px;
  border-top: 1px solid rgba(11, 39, 66, 0.06);
  transition: background 160ms var(--ease);
  cursor: pointer;
}
.item-row:first-of-type { border-top: 0; }
.item-row:hover { background: rgba(201, 162, 74, 0.04); }
.item-row .ir-tag {
  font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px;
  flex-shrink: 0; line-height: 1;
}
.ir-tag-ok { background: rgba(43,168,124,0.12); color: #1F7B58; }
.ir-tag-pending { background: rgba(201,162,74,0.16); color: var(--gold-700); }
.ir-tag-needs { background: rgba(184,58,58,0.10); color: #B83A3A; }
.ir-tag-info { background: rgba(27,72,112,0.08); color: var(--navy-700); }
.item-row .ir-text { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.item-row .ir-text strong { color: var(--ink); font-weight: 500; }
.item-row .ir-text .ir-matter {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-mute); display: block; margin-top: 2px;
  letter-spacing: 0.04em;
}
.item-row .ir-when {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--ink-mute); white-space: nowrap;
}
.item-row .ir-actions {
  display: flex; gap: 6px;
}
.ir-mini {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 9px;
  border: 1px solid rgba(11, 39, 66, 0.12);
  border-radius: 3px;
  background: transparent; color: var(--ink-soft);
  cursor: pointer; transition: all 160ms var(--ease);
}
.ir-mini.primary {
  background: var(--gold-400); color: var(--navy-900);
  border-color: var(--gold-400); font-weight: 600;
}
.ir-mini:hover { border-color: var(--gold-500); color: var(--gold-700); }
.ir-mini.primary:hover { background: var(--gold-300); border-color: var(--gold-300); color: var(--navy-900); }

/* Right rail mini panels */
.rail-card {
  background: #fff;
  border: 1px solid rgba(11, 39, 66, 0.08);
  border-radius: 4px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.rail-card .rc-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.rail-card h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; letter-spacing: -0.008em;
  margin: 0; color: var(--ink);
}
.rail-card .rc-meta {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-mute); letter-spacing: 0.06em;
}
.rail-card .rc-big {
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; letter-spacing: -0.015em; line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.rail-card .rc-big .unit { font-size: 14px; opacity: 0.7; }
.rail-card .rc-sub {
  font-size: 12.5px; color: var(--ink-mute);
}
.rail-list { display: flex; flex-direction: column; }
.rail-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0;
  border-top: 1px solid rgba(11, 39, 66, 0.06);
  font-size: 13px; color: var(--ink-soft); line-height: 1.5;
}
.rail-item:first-child { border-top: 0; padding-top: 2px; }
.rail-item .ri-d {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--gold-700); flex-shrink: 0; padding-top: 2px;
  letter-spacing: 0.06em;
}
.rail-item strong { color: var(--ink); font-weight: 500; }

/* Matter detail */
.matter-head {
  background: #fff;
  border-bottom: 1px solid rgba(11, 39, 66, 0.08);
  padding: 22px 28px;
}
.matter-head .crumb {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 10px;
}
.matter-head .crumb a { color: var(--ink-soft); }
.matter-head .crumb a:hover { color: var(--gold-600); }
.matter-head h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; letter-spacing: -0.018em; margin: 0 0 10px;
  color: var(--ink);
}
.matter-head h1 em { font-style: italic; color: var(--gold-600); }
.matter-head .mh-meta {
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--ink-mute);
}
.matter-head .mh-meta .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px; border-radius: 999px;
  background: rgba(43,168,124,0.12); color: #1F7B58;
}
.matter-head .mh-meta .pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #2BA87C;
}

.tabs {
  display: flex; gap: 4px;
  padding: 0 28px;
  background: #fff;
  border-bottom: 1px solid rgba(11, 39, 66, 0.08);
}
.tabs .tab {
  padding: 12px 16px;
  font-size: 13.5px; color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  cursor: pointer; font-weight: 500;
  transition: all 160ms var(--ease);
}
.tabs .tab:hover { color: var(--ink); }
.tabs .tab.active {
  color: var(--gold-700);
  border-bottom-color: var(--gold-500);
}
.tabs .tab .ct {
  font-family: var(--font-mono); font-size: 10.5px;
  margin-left: 6px; color: var(--ink-mute);
}

/* AI summary card */
.ai-summary {
  background: linear-gradient(180deg, #FAF7EF, #FFFFFF);
  border: 1px solid rgba(201, 162, 74, 0.30);
  border-radius: 4px;
  padding: 22px 24px;
  margin-bottom: 18px;
  position: relative;
}
.ai-summary .ais-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: 12px;
}
.ai-summary .ais-head::before {
  content: ''; width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold-500);
}
.ai-summary .ais-head .ais-fresh {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-mute);
}
.ai-summary .ais-head .ais-fresh::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #2BA87C;
}
.ai-summary p {
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; line-height: 1.5;
  color: var(--ink); margin: 0;
  letter-spacing: -0.005em;
}
.ai-summary p em { color: var(--gold-700); }
.ai-summary .ais-actions {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(201, 162, 74, 0.2);
  display: flex; gap: 8px; flex-wrap: wrap;
}

/* Trust reconciliation */
.recon-table {
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(11, 39, 66, 0.08);
  overflow: hidden;
}
.recon-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px; align-items: center;
  padding: 14px 20px;
  border-top: 1px solid rgba(11, 39, 66, 0.06);
}
.recon-row:first-of-type { border-top: 0; }
.recon-row .rr-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.10em; color: var(--ink-mute);
  flex-shrink: 0; min-width: 110px;
}
.recon-row .rr-name { font-size: 13.5px; color: var(--ink); font-weight: 500; }
.recon-row .rr-name .rr-sub { font-weight: 400; color: var(--ink-soft); font-size: 12.5px; }
.recon-row .rr-amt {
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; letter-spacing: -0.01em;
  color: var(--ink); text-align: right; min-width: 140px;
}
.recon-row.total {
  background: #F5F1E8;
  border-top: 2px solid var(--gold-500);
}
.recon-row.total .rr-amt {
  color: var(--gold-700); font-size: 19px;
}
.recon-row.total .rr-name { font-size: 14.5px; }
