:root {
  --blue-deepest: #0b1f3d;
  --blue-deep: #122a52;
  --blue: #1b3a6b;
  --blue-soft: #2a4f87;
  --blue-tint: #d4dceb;
  --ivory: #f6f1e8;
  --ivory-soft: #ece4d5;
  --cream: #ede5d3;
  --paper: #fbf8f1;
  --gold: #c5a465;
  --gold-bright: #d9b676;
  --ink: #1a1a1f;
  --ink-soft: #4a4a52;
  --on-dark: #f6f1e8;
  --on-dark-soft: #b9c2d4;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Figtree', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  --text-sm: 0.875rem;
  --text-hero: clamp(2.75rem, 7vw, 6rem);
  --text-2xl: clamp(2rem, 5vw, 4rem);
  --text-xl: clamp(1.5rem, 3vw, 2.25rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

/* ============ NAV ============ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s ease, padding 0.3s ease;
  background: transparent;
}
#site-nav.scrolled {
  background: rgba(11, 31, 61, 0.94);
  backdrop-filter: blur(10px);
  padding: 0.85rem 0;
}
.nav-inner {
  max-width: none;
  margin: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--on-dark);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--on-dark);
}
.brand-mark { display: inline-flex; color: var(--on-dark); }
.brand-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: var(--on-dark);
}
.brand-legal {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.brand-dot {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
/* iˣ wordmark unit — i = Intelligence, x = Exponential
   Floats ABOVE the "t" in Fleet: Flee{t + iˣ overhead}Legal.ai */
.brand-t-anchor {
  position: relative;
  display: inline-block;
  color: inherit;
}
.brand-ix-float {
  position: absolute;
  left: 100%;
  bottom: auto;
  top: -0.18em;
  transform: translate(-0.10em, 0);
  display: inline-flex;
  align-items: flex-start;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.brand-ix-i {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.55em;
  color: currentColor;
  display: inline-block;
  line-height: 1;
}
.brand-ix-x {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 0.38em;
  color: currentColor;
  margin-left: 0.04em;
  transform: translateY(-0.4em);
  display: inline-block;
  line-height: 1;
}
/* Inline body-copy wordmark — used whenever the company is named inside body copy.
   Renders "FleetLegaliˣ.ai" with serif Legal/.ai and the floating iˣ superscript.
   Inherits parent color/size so it works on dark and light backgrounds. */
.brand-inline {
  font-family: var(--serif);
  font-weight: 500;
  white-space: nowrap;
}
.brand-inline .bi-fleet {
  font-family: inherit;
  font-weight: 500;
  color: inherit;
}
.brand-inline .bi-legal {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--gold);
}
.brand-inline .bi-t-anchor {
  position: relative;
  display: inline-block;
  color: inherit;
}
.brand-inline .bi-ix-float {
  position: absolute;
  left: 100%;
  bottom: auto;
  top: -0.18em;
  transform: translate(-0.10em, 0);
  display: inline-flex;
  align-items: flex-start;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.brand-inline .bi-ix-i {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.55em;
  color: currentColor;
  display: inline-block;
  line-height: 1;
}
.brand-inline .bi-ix-x {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 0.38em;
  color: currentColor;
  margin-left: 0.04em;
  transform: translateY(-0.4em);
  display: inline-block;
  line-height: 1;
}
.brand-inline .bi-dot {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-links a {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--on-dark);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--on-dark);
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--blue-deepest);
  border-color: var(--gold);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 6px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--on-dark);
  transition: background 0.2s ease;
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(11, 31, 61, 0.98);
  backdrop-filter: blur(20px);
  padding: 6rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  color: var(--on-dark);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(246, 241, 232, 0.12);
}
.mobile-menu a:hover { color: var(--gold); }

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

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 2rem 6rem;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroRotate 48s infinite;
  will-change: opacity;
}
.hero-slide.slide-1 { background-image: url('pp-hero-1.png');         animation-delay: 0s; }
.hero-slide.slide-2 { background-image: url('pp-cinema-worker.jpg');  animation-delay: 8s; }
.hero-slide.slide-3 { background-image: url('pp-cinema-skyline.jpg'); animation-delay: 16s; }
.hero-slide.slide-4 { background-image: url('pp-cinema-files.jpg');   animation-delay: 24s; }
.hero-slide.slide-5 { background-image: url('pp-cinema-columns.jpg'); animation-delay: 32s; }
.hero-slide.slide-6 { background-image: url('pp-cinema-valley.jpg');  animation-delay: 40s; }

@keyframes heroRotate {
  0%       { opacity: 0; }
  2%       { opacity: 1; }
  16.67%   { opacity: 1; }
  18.67%   { opacity: 0; }
  100%     { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .hero-slide.slide-1 { opacity: 1; }
  .hero-slide.slide-2,
  .hero-slide.slide-3,
  .hero-slide.slide-4,
  .hero-slide.slide-5,
  .hero-slide.slide-6 { opacity: 0; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 61, 0.4) 0%, rgba(11, 31, 61, 0.7) 70%, rgba(11, 31, 61, 0.9) 100%);
  z-index: 1;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--on-dark);
  margin: 0 auto 3rem;
  text-align: center;
}
.hero-mark { color: var(--on-dark); display: inline-flex; }
.hero-brand-caps {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  font-weight: 500;
  text-transform: uppercase;
}
.hero-brand-legal {
  color: var(--gold);
}
.hero-brand-dot {
  color: var(--gold);
  font-style: italic;
}
.hero-brand-t-anchor {
  position: relative;
  display: inline-block;
  color: inherit;
  letter-spacing: inherit;
}
.hero-brand-ix-float {
  position: absolute;
  left: 100%;
  bottom: auto;
  top: -0.22em;
  transform: translate(-0.06em, 0);
  display: inline-flex;
  align-items: flex-start;
  color: inherit;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  pointer-events: none;
}
.hero-brand-ix-i {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.6em;
  letter-spacing: 0;
  color: currentColor;
  display: inline-block;
  line-height: 1;
}
.hero-brand-ix-x {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 0.42em;
  letter-spacing: 0;
  margin-left: 0.04em;
  transform: translateY(-0.5em);
  display: inline-block;
  color: currentColor;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto 0 0;
  padding-left: 2rem;
  padding-top: 3rem;
}
.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 5.5vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 1.25rem 0 1.75rem;
  color: var(--on-dark);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.hero-body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--on-dark-soft);
  max-width: 620px;
  margin-bottom: 1.25rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: center;
}

.hero-ticker {
  position: relative;
  z-index: 3;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(246, 241, 232, 0.55);
  font-weight: 500;
}
.hero-division {
  position: relative;
  z-index: 3;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.55);
}
.gold-italic { color: var(--gold); font-style: italic; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 1.85rem;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--blue-deepest);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--on-dark);
  border-bottom: 1px solid var(--on-dark);
  border-radius: 0;
  padding: 0.5rem 0;
  letter-spacing: 0.12em;
}
.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* ============ SECTIONS ============ */
.section {
  padding: 7rem 2rem;
}
.section.ivory { background: var(--ivory); color: var(--ink); }
.section.cream { background: var(--ivory-soft); color: var(--ink); }
.section.dark { background: var(--blue-deepest); color: var(--on-dark); }

.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container.narrow {
  max-width: 820px;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.eyebrow.blue { color: var(--blue); }
.eyebrow.gold { color: var(--gold); }
.eyebrow.small { font-size: 0.7rem; letter-spacing: 0.24em; margin-bottom: 0.8rem; }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--text-2xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  max-width: 22ch;
}
.section-title.light { color: var(--on-dark); }
.sub-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--text-xl);
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
}

.body-lg {
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  max-width: 70ch;
}
.body-lg.light { color: var(--on-dark-soft); }
p.light { color: var(--on-dark-soft); line-height: 1.7; margin-bottom: 1.2rem; max-width: 70ch; }
h3.light, h4.light { color: var(--on-dark); }

.muted { color: var(--ink-soft); font-style: italic; opacity: 0.8; }

/* ============ NUMBERED LIST ============ */
.numbered-list {
  margin-top: 3rem;
  display: grid;
  gap: 3rem;
}
.numbered-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--blue-tint);
  padding-top: 2rem;
}
.num {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.num-content h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}
.num-content p {
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 65ch;
}

@media (max-width: 720px) {
  .numbered-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .num { font-size: 2rem; }
}

/* ============ CODA + SUB BLOCKS ============ */
.section-coda {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--blue-tint);
}
.coda-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.85rem;
  margin-bottom: 1rem;
}
.section-coda p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 70ch; }
.sub-block {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(246, 241, 232, 0.15);
}
.strong-gold { color: var(--gold-bright); font-weight: 500; font-size: 1.15rem; }

/* ============ PRINCIPLES ============ */
.principle {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blue-tint);
}
.roman {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
}
.light-roman { color: var(--gold); }
.section.dark .principle { border-top-color: rgba(246, 241, 232, 0.15); }
.principle h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.principle p { color: var(--ink-soft); line-height: 1.7; max-width: 65ch; }
@media (max-width: 720px) {
  .principle { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ============ BANNER GOLD ============ */
.banner-gold {
  margin: 4rem 0 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(197, 164, 101, 0.4);
  border-bottom: 1px solid rgba(197, 164, 101, 0.4);
  text-align: center;
}
.eyebrow-banner {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
}

/* ============ DAY BLOCKS ============ */
.day-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.day-block p { color: var(--ink-soft); max-width: 70ch; }

.resp-block {
  margin-top: 2rem;
}
.resp-block h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.resp-block p { color: var(--ink-soft); max-width: 70ch; }

/* ============ GOLD BULLETS ============ */
.gold-bullets {
  list-style: none;
  margin-top: 2.5rem;
  display: grid;
  gap: 1.6rem;
}
.gold-bullets li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 75ch;
}
.gold-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 500;
}
.gold-lead {
  color: var(--ink);
  font-weight: 600;
}

/* ============ PATHS GRID ============ */
.paths-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.path-card {
  background: var(--paper);
  border: 1px solid var(--blue-tint);
  padding: 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 31, 61, 0.08);
}
.path-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 1rem;
}
.path-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.path-card > p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.rates {
  list-style: none;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.5rem;
}
.rates li {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.gold-num {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
}
.card-link {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--blue-tint);
  transition: color 0.2s ease;
}
.card-link:hover { color: var(--gold); }

@media (max-width: 880px) {
  .paths-grid { grid-template-columns: 1fr; }
}

/* ============ SUB-SECTION + DASHED LISTS ============ */
.sub-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blue-tint);
}
.sub-section h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.sub-section p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 70ch; }

.dashed {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.dashed li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.65;
}
.dashed li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.dashed li strong { color: var(--ink); font-weight: 600; }

.callout {
  margin-top: 2.5rem;
  padding: 2rem 2.25rem;
  background: var(--paper);
  border-left: 3px solid var(--gold);
}
.callout p { color: var(--ink-soft); line-height: 1.75; max-width: none; }

/* ============ FORM ============ */
.schedule-form {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
.form-intro { font-size: 1.15rem; margin-bottom: 0.25rem; }
.form-sub { color: var(--ink-soft); margin-bottom: 1rem; }
.schedule-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.schedule-form input,
.schedule-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--blue-tint);
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  transition: border-color 0.2s ease;
  letter-spacing: normal;
  text-transform: none;
}
.schedule-form input:focus,
.schedule-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.schedule-form fieldset {
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.schedule-form legend {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.schedule-form .radio {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-transform: none;
  letter-spacing: normal;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 400;
}
.optional { color: var(--ink-soft); font-style: italic; text-transform: none; letter-spacing: normal; }
.consent { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.5rem; }
.success-msg {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--paper);
  border-left: 3px solid var(--gold);
}

/* ============ MEET THE FLEET ============ */
.fleet-stage {
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--blue-tint);
}
.fleet-stage:first-of-type { margin-top: 4rem; }
.stage-marker {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.stage-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
}
.stage-name {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.agent-card {
  background: var(--paper);
  border: 1px solid var(--blue-tint);
  padding: 2rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.agent-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 31, 61, 0.08);
  border-color: var(--gold);
}
.agent-id {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.agent-initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--ivory);
}
.agent-id h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}
.agent-role {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.agent-job {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.98rem;
}
.agent-cap {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.92rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--blue-tint);
}
.cap-label {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.fleet-coda {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--blue-tint);
  text-align: center;
}
.fleet-coda .body-lg {
  margin: 0 auto;
  max-width: 65ch;
}
@media (max-width: 640px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .agent-card { padding: 1.65rem 1.4rem; }
}

/* ============ FOOTER ============ */
footer {
  background: var(--blue-deepest);
  color: var(--on-dark);
  padding: 5rem 2rem 3rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.footer-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--on-dark-soft);
  font-size: 1.05rem;
}
.footer-division {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.55);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--gold); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(246, 241, 232, 0.15);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.55);
}
.powered-by {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(246, 241, 232, 0.2);
  letter-spacing: 0.14em;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .section { padding: 5rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-content { padding-left: 0; padding-top: 3rem; }
  .hero-center { margin-bottom: 2rem; }
  .hero-center .hero-mark svg { width: 90px; height: 90px; }
  .hero-brand-caps { font-size: 0.7rem; }
  .brand-text { font-size: 1.2rem; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .powered-by { margin-left: 0; padding-left: 0; border-left: none; display: block; margin-top: 0.5rem; }
}

/* ============================================
   SEE THE WORK — Tabbed gallery (desktop) /
   Accordion (mobile)
   ============================================ */
.work-gallery {
  margin-top: 2.5rem;
  border: 1px solid rgba(11, 31, 61, 0.12);
  background: var(--ivory);
  border-radius: 6px;
  overflow: hidden;
}

.work-tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(11, 31, 61, 0.12);
  background: rgba(11, 31, 61, 0.03);
}

.work-tab {
  flex: 1 1 auto;
  min-width: 0;
  padding: 1rem 1.25rem;
  font-family: 'Figtree', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deepest);
  background: transparent;
  border: none;
  border-right: 1px solid rgba(11, 31, 61, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.work-tab:last-child { border-right: none; }
.work-tab:hover { background: rgba(197, 164, 101, 0.08); }
.work-tab.active {
  background: var(--ivory);
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  margin-bottom: -1px;
}

.work-panel {
  display: none;
  padding: 2rem 2rem 2.25rem;
}
.work-panel.active { display: block; }

.work-mobile-label {
  display: none;
}

.work-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.4rem 1.25rem;
  font-family: 'Figtree', sans-serif;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(11, 31, 61, 0.08);
}

.work-meta-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: center;
}

.work-doc {
  background: #fdfaf3;
  border: 1px solid rgba(11, 31, 61, 0.1);
  border-radius: 4px;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 1px 2px rgba(11, 31, 61, 0.04);
}

.work-doc-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(11, 31, 61, 0.1);
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deepest);
  background: rgba(11, 31, 61, 0.04);
}

.work-doc-body {
  padding: 1.75rem 1.75rem 1.5rem;
}

.work-doc-body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 0.85rem;
}

.work-doc-body p.muted {
  font-family: 'Figtree', sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(26, 26, 31, 0.55);
  margin-top: 1.25rem;
  letter-spacing: 0.02em;
}

.work-doc-body strong {
  font-weight: 600;
  color: var(--blue-deepest);
}

.work-doc-subhead {
  font-family: 'Figtree', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.75rem 0 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(11, 31, 61, 0.12);
}

.work-doc-subhead:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.work-doc-list {
  margin: 0 0 0.5rem;
  padding-left: 1.4rem;
}

.work-doc-list li {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 0.65rem;
  padding-left: 0.25rem;
}

.work-doc-list li strong {
  font-weight: 600;
  color: var(--blue-deepest);
}

.work-doc-footer-note {
  font-family: 'Figtree', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(26, 26, 31, 0.6);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 31, 61, 0.1);
}

.work-placeholder {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1rem;
}

.work-placeholder.muted {
  font-family: 'Figtree', sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(26, 26, 31, 0.5);
  margin-top: 1.25rem;
  letter-spacing: 0.02em;
}

.work-placeholder strong {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

.work-disclaimer {
  margin-top: 1.5rem;
  font-family: 'Figtree', sans-serif;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(26, 26, 31, 0.55);
  text-align: center;
}

/* Mobile: tabs become an accordion */
@media (max-width: 720px) {
  .work-tabs { display: none; }

  .work-panel {
    display: block;
    padding: 0;
    border-bottom: 1px solid rgba(11, 31, 61, 0.1);
  }
  .work-panel:last-child { border-bottom: none; }

  .work-mobile-label {
    display: block;
    padding: 1.1rem 1.25rem;
    font-family: 'Figtree', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-deepest);
    cursor: pointer;
    position: relative;
    background: rgba(11, 31, 61, 0.03);
  }
  .work-mobile-label::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
  }
  .work-panel.mobile-open .work-mobile-label::after { content: '−'; }

  .work-meta, .work-doc { display: none; }
  .work-panel.mobile-open .work-meta { display: grid; margin: 1.25rem 1.25rem 1rem; padding-bottom: 1rem; }
  .work-panel.mobile-open .work-doc { display: block; margin: 0 1.25rem 1.5rem; }

  .work-doc-body { padding: 1.25rem; }
}

/* ============================================================
   SISTER DIVISIONS QUIET LINE (small advert above footer)
   ============================================================ */
.sister-line {
  background: #f6f1e8;
  border-top: 1px solid #d9d3c4;
  border-bottom: 1px solid #d9d3c4;
  padding: 1.4rem 0;
}
.sister-line-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  font-family: 'Figtree', sans-serif;
  font-size: 0.92rem;
  color: #5a5a5a;
  line-height: 1.5;
}
.sister-line-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c5a465;
  margin-right: 0.55rem;
}
.sister-line a {
  color: #0b1f3d;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #c5a465;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.sister-line a:hover {
  color: #c5a465;
  border-color: #0b1f3d;
}
.sister-line-meta {
  color: #6a6a6a;
  font-style: italic;
  margin: 0 0.5rem 0 0.35rem;
}
.sister-line-dot {
  color: #c5a465;
  margin: 0 0.45rem;
}
@media (max-width: 720px) {
  .sister-line { padding: 1.2rem 0; }
  .sister-line-inner { font-size: 0.88rem; }
  .sister-line-dot { display: block; margin: 0.3rem 0; }
}


/* ====== DIVISIONS DROPDOWN (shared across all three sites) ====== */
.nav-divisions {
  position: relative;
  display: inline-block;
}
.nav-divisions-toggle {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  font-family: 'Figtree', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  padding: 0.4rem 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: inherit;
  transition: color 0.2s ease;
}
.nav-divisions-toggle:hover { color: #c5a465; }
.nav-caret {
  font-size: 0.7em;
  transition: transform 0.2s ease;
}
.nav-divisions.open .nav-caret { transform: rotate(180deg); }
.nav-divisions.open .nav-divisions-toggle { color: #c5a465; }

.nav-divisions-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid #d9d3c4;
  border-radius: 4px;
  box-shadow: 0 14px 38px rgba(11, 31, 61, 0.15);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 100;
}
.nav-divisions.open .nav-divisions-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Bridge so hover doesn't break crossing the gap */
.nav-divisions::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-divisions-current,
.nav-divisions-item {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 3px;
  text-decoration: none;
  color: #0b1f3d;
  line-height: 1.2;
  transition: background 0.15s ease;
}
.nav-divisions-item:hover {
  background: #f6f1e8;
}
.nav-divisions-current {
  background: #f6f1e8;
  cursor: default;
  opacity: 0.85;
}
.div-name {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b1f3d;
  margin-bottom: 0.15rem;
}
.nav-divisions-item:hover .div-name { color: #c5a465; }
.div-meta {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #6a6a6a;
}
.div-here {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c5a465;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Mobile divisions */
.mobile-divisions-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c5a465;
  margin-top: 1.2rem;
  padding: 0.4rem 0 0.3rem;
  border-top: 1px solid #d9d3c4;
}
.mobile-divisions-current {
  display: block;
  padding: 0.6rem 0;
  color: #0b1f3d;
  font-weight: 600;
  opacity: 0.7;
}
.div-here-mobile {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c5a465;
  font-weight: 500;
  margin-left: 0.4rem;
}
.mobile-divisions-item {
  display: block;
  padding: 0.65rem 0;
  color: #0b1f3d;
  text-decoration: none;
  font-weight: 600;
}
.mobile-div-meta {
  display: inline;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: #6a6a6a;
  margin-left: 0.4rem;
  font-size: 0.9rem;
}

/* Tablet/mobile: hide the desktop dropdown */
@media (max-width: 880px) {
  .nav-divisions { display: none; }
}

/* Override parent nav uppercase inheritance inside dropdown */
.nav-divisions-menu, .nav-divisions-menu * {
  text-transform: none !important;
  letter-spacing: normal !important;
  font-style: normal;
}
.nav-divisions-menu .div-meta {
  font-style: italic;
}
.nav-divisions-menu .div-here {
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}



/* ============================================================
   NAV TUNING — Legal has 6 items + CTA. Allow soft wrap if tight.
   ============================================================ */
.nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 0.5rem;
}
@media (max-width: 1080px) and (min-width: 881px) {
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 0.74rem; }
}

/* Logo lockup: [mark + name] on row 1, tagline on row 2 directly below */
.brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  text-decoration: none;
}
.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-text { line-height: 1; }
.brand-tagline {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
  white-space: nowrap;
  display: block;
}
@media (max-width: 1100px) {
  .brand-tagline { font-size: 0.5rem; letter-spacing: 0.1em; }
}
@media (max-width: 860px) {
  .brand-tagline { display: none; }
}

/* ============ INTEGRATION LADDER ============ */
.ladder {
  margin-top: 2.5rem;
  padding: 2.5rem 2rem 2rem;
  background: var(--paper);
  border: 1px solid var(--line, #d9d3c4);
  border-radius: 4px;
  position: relative;
}
.ladder-helper {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}
.ladder-helper strong { color: var(--blue-deepest); font-weight: 600; }

.ladder-rail {
  position: relative;
  height: 96px;
  margin: 2rem 1.5rem 1.5rem;
}
.ladder-rail::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: var(--line, #d9d3c4);
  transform: translateY(-50%);
}
.ladder-rail::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
  width: var(--fill-pct, 0%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ladder-stop {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  background: transparent;
  border: none;
  font-family: var(--sans);
  padding: 0;
}
.ladder-stop[data-stop="1"] { left: 8%; }
.ladder-stop[data-stop="2"] { left: 50%; }
.ladder-stop[data-stop="3"] { left: 92%; }

.ladder-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line, #d9d3c4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  font-family: var(--sans);
}
.ladder-stop:hover .ladder-dot,
.ladder-stop.active .ladder-dot {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--blue-deepest);
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(197, 164, 101, 0.35);
}
.ladder-stop.passed .ladder-dot {
  border-color: var(--gold);
  background: var(--paper);
  color: var(--gold);
}
.ladder-label {
  position: absolute;
  top: calc(100% + 0.5rem);
  white-space: nowrap;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.3s ease;
}
.ladder-stop.active .ladder-label,
.ladder-stop.passed .ladder-label { color: var(--blue-deepest); }
.ladder-stop.active .ladder-label { font-weight: 600; }
.ladder-label .path-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.ladder-panel {
  margin-top: 4rem;
  padding: 2.4rem 2.2rem;
  background: var(--ivory);
  border: 1px solid var(--line, #d9d3c4);
  border-radius: 4px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.panel-content { display: none; opacity: 0; transition: opacity 0.35s ease; }
.panel-content.active {
  display: block;
  opacity: 1;
  animation: ladderFadeUp 0.4s ease;
}
@keyframes ladderFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.panel-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.panel-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2rem;
  color: var(--blue-deepest);
  line-height: 1.1;
  margin: 0;
}
.panel-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-left: auto;
}
.panel-pitch {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.4rem;
  max-width: 760px;
}
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 1.4rem;
}
.panel-block h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.panel-block h4 .all-nine {
  color: var(--gold);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  font-style: italic;
  font-family: var(--serif);
  font-size: 0.98rem;
}
.panel-block p, .panel-block li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.panel-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.panel-block li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
}
.panel-block li::before {
  content: '»';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.panel-block ul.dept-list li {
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  line-height: 1.45;
}
.panel-block ul.dept-list li strong {
  color: var(--blue-deepest);
  font-weight: 600;
}
.panel-econ {
  border-top: 1px solid var(--line, #d9d3c4);
  padding-top: 1.2rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.econ-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.econ-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.econ-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ladder-detail-link {
  display: inline-block;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease;
}
.ladder-detail-link:hover { color: var(--gold); }

.ladder-callout {
  margin-top: 1.8rem;
  padding: 1.4rem 1.6rem;
  background: var(--blue-deepest);
  color: var(--ivory);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.ladder-callout .icon {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.ladder-callout p {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin: 0;
  flex: 1;
  min-width: 280px;
  line-height: 1.45;
}
.ladder-callout strong { color: var(--gold-bright); font-weight: 500; }

@media (max-width: 768px) {
  .ladder { padding: 1.5rem 1rem 1.25rem; }
  .ladder-rail { margin: 1.5rem 0.5rem 1.25rem; height: 80px; }
  .ladder-label { font-size: 0.6rem; letter-spacing: 0.1em; }
  .ladder-label .path-num { font-size: 0.95rem; }
  .panel-grid { grid-template-columns: 1fr; }
  .panel-title { font-size: 1.5rem; }
  .panel-num { font-size: 1.8rem; }
  .ladder-panel { padding: 1.5rem 1.25rem; margin-top: 3rem; }
  .panel-tag { margin-left: 0; }
}

/* ================================================================
   NEW SECTIONS — spliced from fleetixlegal_preview
   Variable mapping: --navy → --blue-deepest, --navy2 → --blue-deep,
   --ivory2 → --paper, --gold-d → --gold, --mute → --ink-soft,
   --ivory-mute → --on-dark-soft, --line → #d9d3c4
   ================================================================ */

/* ============ STAT STRIP ============ */
.stat-strip {
  background: var(--blue-deepest);
  color: var(--on-dark);
  padding: 42px 32px;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.stat-row {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-row .stat {
  padding: 0 12px;
  border-right: 1px solid rgba(197,164,101,.25);
}
.stat-row .stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  font-weight: 500;
}
.stat-foot {
  max-width: 1180px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  opacity: .7;
}

/* ============ LOGO BAR ============ */
.logo-bar-wrap {
  background: var(--paper);
  padding: 56px 32px;
  border-bottom: 1px solid #d9d3c4;
}
.logo-bar-eyebrow {
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.logo-row {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: center;
  justify-items: center;
}
.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
.logo-card:hover { opacity: .7; }
.logo-img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: grayscale(0%);
}
.logo-zapata {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-zapata .z-mark {
  width: 48px;
  height: 48px;
  background: #13361F;
  color: #C9A030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 30px;
  border-radius: 4px;
}
.logo-zapata .z-text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: #13361F;
  letter-spacing: .01em;
}
.logo-meta {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.t-card {
  background: var(--paper);
  border: 1px solid #d9d3c4;
  border-left: 3px solid var(--gold);
  padding: 28px 26px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}
.t-quote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  color: var(--blue-deepest);
  font-weight: 500;
  margin: 0 0 20px;
  flex: 1;
}
.t-quote::before {
  content: "\201C";
  color: var(--gold);
  font-size: 38px;
  line-height: 0;
  vertical-align: -12px;
  margin-right: 2px;
}
.t-attr {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #d9d3c4;
  padding-top: 14px;
}
.t-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--blue-deepest);
  margin-bottom: 2px;
}
.t-title {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 500;
}
.placeholder-note {
  text-align: center;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 22px;
  font-weight: 600;
}

/* ============ CALCULATORS ============ */
.calc-wrap {
  background: var(--blue-deepest);
  color: var(--on-dark);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  margin: 36px 0;
}
.calc-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--gold);
  margin: 0 0 6px;
}
.calc-sub {
  font-size: 13px;
  color: var(--on-dark-soft);
  margin-bottom: 28px;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.calc-inputs { display: flex; flex-direction: column; gap: 24px; }
.calc-input label {
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  font-weight: 600;
  margin-bottom: 10px;
}
.calc-input .input-row { display: flex; align-items: center; gap: 14px; }
.calc-input input[type=range] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(197,164,101,.25);
  border-radius: 2px;
  outline: none;
}
.calc-input input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--blue-deepest);
  cursor: pointer;
}
.calc-input input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--blue-deepest);
  cursor: pointer;
  border-style: solid;
}
.calc-input .val {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--gold);
  min-width: 120px;
  text-align: right;
}
.calc-input .hint {
  font-size: 11px;
  color: var(--on-dark-soft);
  margin-top: 6px;
  opacity: .7;
}
.calc-output {
  background: rgba(197,164,101,.06);
  border: 1px solid rgba(197,164,101,.3);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.calc-output .out-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(197,164,101,.2);
}
.calc-output .out-row:last-child { border-bottom: none; padding-bottom: 0; }
.calc-output .out-label {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  font-weight: 500;
}
.calc-output .out-val {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--gold);
}
.calc-output .out-val.big { font-size: 38px; color: #E8C572; }
.calc-output .out-val.savings { color: #7FD489; }
.calc-output .out-row.headline {
  background: rgba(197,164,101,.1);
  margin: -4px -8px;
  padding: 14px 8px;
  border-radius: 4px;
  border: none;
}
.calc-foot {
  font-size: 11px;
  color: var(--on-dark-soft);
  opacity: .7;
  margin-top: 14px;
  text-align: right;
  font-style: italic;
}

/* ============ FAQ ============ */
.faq-list { margin-top: 36px; }
.faq-item {
  border-bottom: 1px solid #d9d3c4;
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid #d9d3c4; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--blue-deepest);
  list-style: none;
  padding: 4px 0;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .chev {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] .chev { transform: rotate(45deg); }
.faq-a {
  padding: 14px 0 4px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 780px;
}

/* ============ CONVERT PRACTICE — OVERHEAD CALC ============ */
.convert-intro {
  max-width: 880px;
  margin: 0 auto 36px;
  text-align: center;
}
.convert-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.18;
  color: var(--blue-deepest);
  margin: 0 0 16px;
}
.convert-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}
.roles-grid {
  max-width: 960px;
  margin: 0 auto 28px;
  background: var(--paper);
  border: 1px solid #d9d3c4;
  border-radius: 8px;
  overflow: hidden;
}
.role-row {
  display: grid;
  grid-template-columns: 1.5fr 120px 110px 110px 120px;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid #d9d3c4;
}
.role-row:last-child { border-bottom: none; }
.role-row.head {
  background: var(--blue-deepest);
  color: var(--on-dark);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: none;
}
.role-row.head .role-la,
.role-row.head .role-flx,
.role-row.head .role-save { color: var(--gold); text-align: right; }
.role-name {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
}
.role-row.head .role-name { color: var(--on-dark); }
.role-la {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--blue-deepest);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.role-flx {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--gold);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.role-save {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: #2d6b3a;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.role-count {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}
.role-count button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.role-count button:hover { background: var(--gold); color: var(--on-dark); }
.role-count input {
  width: 38px;
  text-align: center;
  border: 1px solid #d9d3c4;
  background: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue-deepest);
  padding: 3px 0;
  border-radius: 4px;
}
.convert-output {
  background: var(--blue-deepest);
  color: var(--on-dark);
  padding: 36px 40px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.convert-output .conv-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 0 14px;
  border-right: 1px solid rgba(197,164,101,.25);
}
.convert-output .conv-block:last-child { border-right: none; }
.conv-label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  font-weight: 600;
}
.conv-val {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 34px;
  color: var(--gold);
  line-height: 1.1;
}
.conv-val.savings { color: #7FD489; font-size: 42px; }
.conv-sublabel {
  font-size: 12px;
  color: var(--on-dark-soft);
  opacity: .8;
}
.convert-foot {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 18px;
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}

/* ============ TIME NARRATIVE BAND ============ */
.time-band {
  background: linear-gradient(180deg, #0B1F3D 0%, #13294F 100%);
  color: var(--on-dark);
  padding: 84px 32px;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.time-band .container { max-width: 1080px; }
.time-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.15;
  color: var(--on-dark);
  margin: 0 0 24px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.time-headline .gold { color: var(--gold); }
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
}
.time-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(197,164,101,.25);
  padding: 30px 28px;
  border-radius: 6px;
}
.time-card h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--gold);
  margin: 0 0 12px;
}
.time-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-dark-soft);
  margin: 0;
}
.time-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--on-dark-soft);
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.time-body p { margin: 0 0 22px; }
.time-body p:last-child { margin-bottom: 0; }
.time-body strong { color: var(--on-dark); font-weight: 600; }

/* ============ RESPONSIVE — new sections ============ */
@media (max-width: 880px) {
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat-row .stat {
    border-right: none;
    border-bottom: 1px solid rgba(197,164,101,.2);
    padding-bottom: 22px;
  }
  .logo-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 8px;
  }
  .logo-img { height: 40px; }
  .logo-zapata { height: 40px; gap: 6px; }
  .logo-zapata .z-mark { width: 32px; height: 32px; font-size: 20px; }
  .logo-zapata .z-text { font-size: 13px; }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .role-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    text-align: left;
  }
  .role-row .role-name { grid-column: 1 / -1; }
  .role-row .role-la,
  .role-row .role-flx,
  .role-row .role-save { text-align: left; font-size: 15px; }
  .role-row .role-la::before { content: 'California: '; font-family: var(--sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; margin-right: 4px; }
  .role-row .role-flx::before { content: 'FleetixLegal: '; font-family: var(--sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; margin-right: 4px; }
  .role-row .role-save::before { content: 'You save: '; font-family: var(--sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; margin-right: 4px; }
  .role-row.head { display: none; }
  .role-row .role-count { justify-content: flex-start; grid-column: 1 / -1; margin-top: 6px; }
  .convert-output {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }
  .convert-output .conv-block {
    border-right: none;
    border-bottom: 1px solid rgba(197,164,101,.2);
    padding-bottom: 18px;
  }
  .convert-output .conv-block:last-child { border-bottom: none; padding-bottom: 0; }
  .time-grid { grid-template-columns: 1fr; gap: 22px; }
  .time-headline { font-size: 32px; }
  .convert-headline { font-size: 28px; }
}

/* Hero headline rotator */
.hero-rotator {
  transition: opacity 600ms ease;
}
.hero-rotator.is-fading {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero-rotator { transition: none; }
}

/* ============================================================
   CALL-THE-AI STRIP  (below hero)
   ============================================================ */
.ai-call-strip {
  background: var(--ivory);
  border-top: 1px solid rgba(11, 31, 61, 0.08);
  border-bottom: 1px solid rgba(11, 31, 61, 0.08);
  position: relative;
  padding: 3.25rem 0 3.5rem;
  overflow: hidden;
}
.ai-call-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-bright) 50%, var(--gold) 80%, transparent 100%);
}
.ai-call-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ai-call-copy .eyebrow.gold {
  color: var(--gold);
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.ai-call-copy .eyebrow.gold::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d94a4a;
  box-shadow: 0 0 0 0 rgba(217, 74, 74, 0.55);
  animation: ai-call-pulse 2s infinite;
}
.ai-call-headline {
  font-family: var(--serif);
  color: var(--blue-deepest);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}
.ai-call-body {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 34rem;
}
.ai-call-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}
.ai-call-number {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--blue-deepest);
  color: var(--ivory);
  padding: 1.1rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  border: 1px solid rgba(197, 164, 101, 0.35);
  box-shadow: 0 8px 24px rgba(11, 31, 61, 0.18), 0 2px 6px rgba(11, 31, 61, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.ai-call-number:hover,
.ai-call-number:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-deep);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(11, 31, 61, 0.25), 0 3px 8px rgba(11, 31, 61, 0.12);
  color: var(--ivory);
  outline: none;
}
.ai-call-phone-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.ai-call-sub {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-style: italic;
  padding-left: 0.15rem;
}
@keyframes ai-call-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(217, 74, 74, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(217, 74, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 74, 74, 0); }
}
@media (max-width: 820px) {
  .ai-call-strip { padding: 2.5rem 0 2.75rem; }
  .ai-call-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .ai-call-headline { font-size: 1.85rem; }
  .ai-call-body { font-size: 0.98rem; }
  .ai-call-number { font-size: 1.3rem; padding: 0.95rem 1.3rem; }
  .ai-call-action { align-items: stretch; }
  .ai-call-number { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-call-copy .eyebrow.gold::before { animation: none; }
  .ai-call-number { transition: none; }
}

/* ============================================================
   FLOATING "CALL OUR AI" BUTTON  (bottom-right, always visible)
   ============================================================ */
.ai-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--gold);
  color: var(--blue-deepest);
  padding: 0.85rem 1.15rem 0.85rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(11, 31, 61, 0.3), 0 2px 6px rgba(11, 31, 61, 0.15);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 1px solid rgba(11, 31, 61, 0.12);
}
.ai-fab:hover,
.ai-fab:focus-visible {
  transform: translateY(-2px);
  background: var(--gold-bright);
  box-shadow: 0 14px 34px rgba(11, 31, 61, 0.35), 0 3px 8px rgba(11, 31, 61, 0.18);
  outline: none;
  color: var(--blue-deepest);
}
.ai-fab-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d94a4a;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(217, 74, 74, 0.6);
  animation: ai-fab-pulse 1.8s infinite;
}
.ai-fab-brand {
  display: inline-flex;
  align-items: flex-start;
  color: var(--blue-deepest);
  line-height: 1;
  margin-right: 0.15rem;
  padding-right: 0.15rem;
  border-right: 1px solid rgba(11, 31, 61, 0.22);
}
.ai-fab-brand-f {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 0.85;
  color: var(--blue-deepest);
}
.ai-fab-brand-ix {
  display: inline-flex;
  align-items: flex-start;
  margin-left: 0.05em;
  margin-top: -0.15em;
  color: var(--blue-deepest);
}
.ai-fab-brand-i {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 1;
}
.ai-fab-brand-x {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 0.5rem;
  line-height: 1;
  margin-left: 0.02em;
  margin-top: -0.08em;
}
.ai-fab-icon {
  width: 18px;
  height: 18px;
  color: var(--blue-deepest);
  flex-shrink: 0;
}
.ai-fab-label {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 0.82rem;
}
.ai-fab-label-top {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ai-fab-label-bot {
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--blue-deep);
  letter-spacing: 0.01em;
}
@keyframes ai-fab-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(217, 74, 74, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(217, 74, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 74, 74, 0); }
}
@media (max-width: 640px) {
  .ai-fab {
    bottom: 16px;
    right: 16px;
    padding: 0.75rem 1rem 0.75rem 0.9rem;
    gap: 0.55rem;
  }
  .ai-fab-label-top { font-size: 0.78rem; }
  .ai-fab-label-bot { font-size: 0.72rem; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-fab-dot { animation: none; }
  .ai-fab { transition: none; }
}
