/* ===================================================
   AI Consensus — Landing Page Design System
   Precision Intelligence aesthetic
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink:    #0B0F1A;
  --paper:  #F4F1EA;
  --navy:   #1A2F4E;
  --accent: #C8392B;
  --gold:   #B8922A;
  --steel:  #4A5568;
  --rule:   #D4CFC6;
  --white:  #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ===================================================
   TYPOGRAPHY
   =================================================== */

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* ===================================================
   BUTTONS
   =================================================== */

.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms ease;
}

.btn-primary:hover { background: #1e2535; }

.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms ease;
}

.btn-accent:hover { background: #b5302a; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms ease;
}

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

/* ===================================================
   NAVIGATION
   =================================================== */

.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--ink);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.l-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-nav__brand {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
}

.l-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.l-nav__links a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 200ms;
}

.l-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.l-nav__links a:hover { color: var(--white); }
.l-nav__links a:hover::after { transform: scaleX(1); }

.l-nav__cta {
  background: var(--accent);
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  text-decoration: none;
  transition: background 200ms;
  white-space: nowrap;
}

.l-nav__cta:hover { background: #b5302a; }

.l-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.l-nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--paper);
  transition: all 200ms;
}

.l-nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.l-nav__mobile-overlay.open { display: flex; }

.l-nav__mobile-overlay a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.l-nav__mobile-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 900px) {
  .l-nav__links, .l-nav__cta { display: none; }
  .l-nav__hamburger { display: flex; }
}

/* ===================================================
   HERO
   =================================================== */

.l-hero {
  background: var(--paper);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.l-hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: center;
}

.l-hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 600ms ease forwards;
  animation-delay: 100ms;
}

.l-hero__sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--steel);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 600ms ease forwards;
  animation-delay: 200ms;
}

.l-hero__ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 600ms ease forwards;
  animation-delay: 300ms;
}

.l-hero__ctas .btn-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color 200ms, border-color 200ms;
}

.l-hero__ctas .btn-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.l-hero__social-proof {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--steel);
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 600ms ease forwards;
  animation-delay: 400ms;
  letter-spacing: 0.05em;
}

/* Live Council Widget */
.l-council {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 600ms ease forwards;
  animation-delay: 300ms;
}

.l-council__header {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.l-council__header::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.l-council__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.l-council__row:last-of-type { border-bottom: none; }

.l-council__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.ind-green  { background: #22c55e; }
.ind-amber  { background: #f59e0b; }
.ind-red    { background: #ef4444; }

.l-council__model {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  min-width: 80px;
  flex-shrink: 0;
}

.l-council__position {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}

.l-council__confidence {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.l-council__confidence-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.l-council__confidence-label span {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

.l-council__bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  position: relative;
}

.l-council__bar-fill {
  height: 100%;
  background: var(--gold);
  width: 87%;
}

@media (max-width: 900px) {
  .l-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .l-hero__headline { font-size: 40px; }
}

/* ===================================================
   TRUST BAR
   =================================================== */

.l-trust {
  background: var(--navy);
  padding: 20px 0;
  overflow: hidden;
}

.l-trust__text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  gap: 60px;
}

/* ===================================================
   SECTION SHARED STYLES
   =================================================== */

.l-section {
  padding: 100px 0;
}

.l-section--dark {
  background: var(--ink);
  color: var(--paper);
}

.l-section--navy {
  background: var(--navy);
  color: var(--white);
}

.l-section__heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 32px;
}

.l-section__body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--steel);
  max-width: 640px;
  margin-bottom: 56px;
}

.l-section--dark .l-section__body,
.l-section--navy .l-section__body {
  color: rgba(255,255,255,0.6);
}

/* Intersection Observer fade-in */
.reveal {
  opacity: 0.2;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   PROBLEM SECTION
   =================================================== */

.l-problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.l-problem__card {
  border-top: 3px solid var(--accent);
  padding: 28px 0 0;
}

.l-problem__card h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.l-problem__card p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--steel);
}

@media (max-width: 768px) {
  .l-problem__cards { grid-template-columns: 1fr; }
}

/* ===================================================
   HOW IT WORKS
   =================================================== */

.l-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.l-phases::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.l-phase {
  padding: 0 32px;
  position: relative;
}

.l-phase:first-child { padding-left: 0; }
.l-phase:last-child { padding-right: 0; }

.l-phase + .l-phase {
  border-left: 1px solid rgba(255,255,255,0.08);
}

.l-phase__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
}

.l-phase__name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.l-phase__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.l-phase__desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 768px) {
  .l-phases {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .l-phases::before { display: none; }
  .l-phase { padding: 0; }
  .l-phase + .l-phase { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 40px; }
}

/* ===================================================
   CAPABILITIES GRID
   =================================================== */

.l-caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  margin-top: 56px;
}

.l-cap {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.l-cap h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.l-cap p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--steel);
}

@media (max-width: 900px) {
  .l-caps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .l-caps { grid-template-columns: 1fr; }
}

/* ===================================================
   USE CASES
   =================================================== */

.l-usecase {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 60px;
  align-items: start;
}

.l-usecase:first-child { border-top: none; padding-top: 0; }

.l-usecase__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 4px;
}

.l-usecase__body h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.l-usecase__body p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .l-usecase {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ===================================================
   PRICING
   =================================================== */

.l-pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
  margin-top: 56px;
}

.l-pricing-col {
  border-right: 1px solid var(--rule);
  padding: 36px 28px;
}

.l-pricing-col:last-child { border-right: none; }

.l-pricing-col--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.l-pricing-col__tier {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.l-pricing-col__price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.l-pricing-col--featured .l-pricing-col__price { color: var(--white); }

.l-pricing-col__sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--steel);
  margin-bottom: 28px;
}

.l-pricing-col--featured .l-pricing-col__sub { color: rgba(255,255,255,0.45); }

.l-pricing-col__rule {
  width: 100%;
  height: 1px;
  background: var(--rule);
  margin-bottom: 24px;
}

.l-pricing-col--featured .l-pricing-col__rule { background: rgba(255,255,255,0.12); }

.l-pricing-col__features {
  list-style: none;
  margin-bottom: 32px;
}

.l-pricing-col__features li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--steel);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.l-pricing-col--featured .l-pricing-col__features li {
  color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.05);
}

.l-pricing-col__features li .feat-label { font-size: 11px; color: var(--steel); }
.l-pricing-col--featured .l-pricing-col__features li .feat-label { color: rgba(255,255,255,0.4); }

.l-pricing-col__features .check { color: var(--gold); font-weight: 600; }
.l-pricing-col__features .dash { color: var(--rule); }

.l-pricing-cta {
  display: block;
  text-align: center;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 20px;
  text-decoration: none;
  transition: all 200ms;
  border-radius: 0;
}

.l-pricing-cta--outline {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.l-pricing-cta--outline:hover { background: var(--ink); color: var(--paper); }

.l-pricing-cta--dark {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid transparent;
}

.l-pricing-cta--dark:hover { background: rgba(244,241,234,0.85); }

.l-pricing-cta--accent {
  background: var(--accent);
  color: var(--white);
  border: 1px solid transparent;
}

.l-pricing-cta--accent:hover { background: #b5302a; }

.l-pricing-cta--disabled {
  background: #e2e8f0;
  color: #94a3b8;
  border: 1px dashed #cbd5e1;
  cursor: not-allowed;
  pointer-events: none;
}

.l-pricing-cta--waitlist {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(244,241,234,0.45);
}

.l-pricing-cta--waitlist:hover {
  background: rgba(244,241,234,0.12);
}

.l-pricing-coming-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.45);
  text-align: center;
  margin-bottom: 6px;
}

.l-pricing-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--steel);
  margin-top: 20px;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .l-pricing-table {
    grid-template-columns: 1fr;
    border: none;
  }
  .l-pricing-col {
    border: 1px solid var(--rule);
    border-bottom: none;
  }
  .l-pricing-col:last-child { border-bottom: 1px solid var(--rule); }
  .l-pricing-col--featured { border-color: var(--ink); }
}

/* ===================================================
   PILOT REQUEST
   =================================================== */

.l-pilot {
  background: var(--ink);
  padding: 80px 0;
}

.l-pilot__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: start;
}

.l-pilot__heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.l-pilot__body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
}

.l-pilot__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.l-pilot__field {
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  padding: 14px 0;
  outline: none;
  transition: border-color 200ms;
  box-shadow: none;
}

.l-pilot__field::placeholder { color: rgba(255,255,255,0.3); }

.l-pilot__field:focus { border-bottom-color: var(--gold); }

.l-pilot__field--textarea {
  resize: none;
  min-height: 80px;
  margin-top: 4px;
}

.l-pilot__submit {
  margin-top: 28px;
  background: var(--accent);
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  width: 100%;
  transition: background 200ms;
}

.l-pilot__submit:hover { background: #b5302a; }

.l-pilot__confirm {
  display: none;
  margin-top: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .l-pilot__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ===================================================
   FOOTER
   =================================================== */

.l-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0;
}

.l-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.l-footer__brand {
  font-family: 'IBM Plex Mono', monospace;
}

.l-footer__brand-name {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--paper);
  text-transform: uppercase;
  display: block;
}

.l-footer__brand-url {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  display: block;
}

.l-footer__links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.l-footer__links a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 200ms;
}

.l-footer__links a:hover { color: var(--paper); }

.l-footer__copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .l-footer .container { flex-direction: column; text-align: center; }
  .l-footer__links { justify-content: center; }
}

/* ===================================================
   MODIFIERS
   =================================================== */

.l-section__heading--white { color: var(--white); }

/* ===================================================
   ANIMATION
   =================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   FAQ SECTION (on landing page)
   =================================================== */

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-item p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--steel);
  max-width: 780px;
  margin: 0;
}
