/* =====================================================
   Automaton, Inc. — main stylesheet
   Palette + type per Automaton Logo Media Kit (Final)
   ===================================================== */

:root {
  --deep: #0F79A7;
  --deep-700: #0C617F;
  --aqua: #1DB5D0;
  --navy: #07364B;
  --navy-900: #052A3B;
  --ink: #111827;
  --slate: #4B5563;
  --muted: #6B7280;
  --ivory: #F9FAFB;
  --line: #E5E7EB;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(7, 54, 75, 0.06), 0 1px 3px rgba(7, 54, 75, 0.08);
  --shadow-md: 0 6px 18px rgba(7, 54, 75, 0.10);
  --shadow-lg: 0 16px 40px rgba(7, 54, 75, 0.16);
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--deep); text-decoration: none; }
a:hover { color: var(--deep-700); }

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

/* ---------- typography helpers ---------- */
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-700); /* AA on white/ivory; aqua variant is scoped to dark sections */
  margin: 0 0 10px;
}

/* Anchor targets clear the sticky header */
[id] { scroll-margin-top: 96px; }
.section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 14px;
}
.section-lede {
  font-size: 17px;
  color: var(--slate);
  max-width: 720px;
  margin: 0 0 40px;
}
.section { padding: 88px 0; }
.section--ivory { background: var(--ivory); }
.section--navy { background: var(--navy); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.btn--primary { background: var(--deep); color: var(--white); }
.btn--primary:hover { background: var(--deep-700); color: var(--white); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { border-color: var(--aqua); color: var(--aqua); }
.btn--onlight { background: var(--white); color: var(--navy); }
.btn--onlight:hover { color: var(--deep); box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.site-header__logo img { display: block; width: 268px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--deep); border-bottom-color: var(--aqua); }
.site-nav .btn { padding: 12px 22px; font-size: 14px; }
.site-nav .btn:hover { border-bottom-color: transparent; }
.site-nav a.btn--primary { color: var(--white); }
.site-nav a.btn--primary:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 70%);
  color: var(--white);
  overflow: hidden;
}
.hero__gears {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.hero__inner {
  position: relative;
  padding: 110px 0 96px;
  max-width: 780px;
}
.hero .eyebrow { color: var(--aqua); }
.hero__title {
  font-size: clamp(34px, 5.2vw, 54px);
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.hero__title em { font-style: normal; color: var(--aqua); }
.hero__sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 0 36px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- platform strip ---------- */
.platform-strip { background: var(--ivory); border-bottom: 1px solid var(--line); }
.platform-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
  padding: 26px 0;
}
.platform-strip__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 10px;
}
.chip {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  box-shadow: var(--shadow-sm);
}

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--deep), var(--aqua));
  opacity: 0;
  transition: opacity .2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(29, 181, 208, 0.12);
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }
.card__title { font-size: 18px; font-weight: 600; color: var(--navy); margin: 0 0 10px; }
.card__text { font-size: 15px; color: var(--slate); margin: 0; }

/* ---------- platform cards ---------- */
.platform-card { display: flex; flex-direction: column; }
.platform-card__name { font-size: 20px; font-weight: 600; color: var(--navy); margin: 0 0 4px; }
.platform-card__kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-700);
  margin: 0 0 14px;
}
.platform-card__text { font-size: 15px; color: var(--slate); margin: 0 0 18px; flex: 1; }
.platform-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--deep-700);
  background: rgba(15, 121, 167, 0.08);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ---------- automation section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li {
  position: relative;
  padding: 16px 18px 16px 52px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  color: var(--ink);
}
.checklist li strong { color: var(--navy); font-weight: 600; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 18px; top: 20px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--aqua);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center / 100% no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center / 100% no-repeat;
}

/* ---------- BI / dashboard section ---------- */
.section--navy .eyebrow { color: var(--aqua); }
.section--navy .section-title { color: var(--white); }
.section--navy .section-lede { color: rgba(255, 255, 255, 0.82); }

.dash-mock {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.dash-mock__bar { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.dash-mock__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.dash-mock__title {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.dash-mock__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
.kpi {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
}
.kpi__label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0 0 6px; }
.kpi__value { font-size: 22px; font-weight: 600; color: var(--white); margin: 0; }
.kpi__value span { font-size: 12px; font-weight: 500; color: var(--aqua); margin-left: 6px; }
.dash-mock__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.dash-mock__col { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--aqua), var(--deep)); opacity: 0.85; }

.feature-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 18px; }
.feature-list li { padding-left: 34px; position: relative; color: rgba(255,255,255,0.85); font-size: 15.5px; }
.feature-list li strong { color: var(--white); font-weight: 600; display: block; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--aqua);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center / 100% no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center / 100% no-repeat;
}

/* ---------- approach ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px 24px 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.step__title { font-size: 16.5px; font-weight: 600; color: var(--navy); margin: 0 0 8px; }
.step__text { font-size: 14.5px; color: var(--slate); margin: 0; }

/* ---------- about ---------- */
.about-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-panel h3 { font-size: 22px; font-weight: 600; color: var(--navy); margin: 0 0 14px; }
.about-panel p { font-size: 15.5px; color: var(--slate); margin: 0 0 16px; }
.about-panel p:last-child { margin-bottom: 0; }
.principles { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.principles li {
  font-size: 14.5px;
  color: var(--ink);
  background: var(--ivory);
  border-left: 3px solid var(--aqua);
  border-radius: 0 10px 10px 0;
  padding: 13px 16px;
}
.principles li strong { color: var(--navy); }

/* ---------- contact ---------- */
.contact { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 80%); color: var(--white); }
.contact .eyebrow { color: var(--aqua); }
.contact__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; padding: 88px 0; }
.contact .section-title { color: var(--white); }
.contact__lede { color: rgba(255,255,255,0.82); font-size: 16.5px; margin: 0 0 32px; max-width: 520px; }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 16px 20px;
}
.contact-card__icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(29, 181, 208, 0.18);
  color: var(--aqua);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card__label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0 0 2px; }
.contact-card__value { font-size: 15.5px; font-weight: 500; color: var(--white); margin: 0; }
.contact-card__value a { color: var(--white); }
.contact-card__value a:hover { color: var(--aqua); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.75); padding: 56px 0 34px; }
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer__logo img { display: block; width: 250px; height: auto; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer__nav a { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.75); }
.site-footer__nav a:hover { color: var(--aqua); }
.site-footer__bottom { text-align: center; padding-top: 28px; }
.site-footer__serviceline {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 8px;
}
.site-footer__tagline { font-size: 14px; font-style: italic; color: var(--aqua); margin: 0 0 18px; }
.site-footer__legal { font-size: 12.5px; color: rgba(255,255,255,0.62); margin: 0; }
.site-footer__legal a { color: rgba(255,255,255,0.72); }
.site-footer__legal a:hover { color: var(--aqua); }

/* ---------- reveal on scroll (hidden state only when JS is running) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .contact__inner, .about-panel { grid-template-columns: 1fr; }
  .hero__gears { width: 400px; right: -140px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__inner { padding: 78px 0 68px; }
  .about-panel { padding: 30px 24px; }
  .site-header__logo img { width: 212px; }

  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 10px 24px 20px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 4px; border-bottom: 1px solid var(--ivory); }
  .site-nav .btn { margin-top: 14px; text-align: center; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- legal page (Privacy & Terms) ---------- */
.legal-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 80%);
  color: var(--white);
  padding: 76px 0 54px;
}
.legal-hero .eyebrow { color: var(--aqua); }
.legal-hero__title {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.legal-hero__lede {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 0 28px;
}
.legal-hero__meta { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.meta-chip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}
.meta-chip b { color: var(--white); font-weight: 600; }
.meta-chip a { color: var(--aqua); }
.meta-chip a:hover { color: var(--white); }

.legal-body { background: var(--white); padding: 64px 0 88px; }
.legal-body__inner { max-width: 820px; }

.legal-disclosures {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 0 0 56px;
  box-shadow: var(--shadow-sm);
}
.legal-disclosures h2 { font-size: 19px; font-weight: 600; color: var(--navy); margin: 0 0 2px; }
.legal-disclosures__sub { font-size: 13.5px; color: var(--muted); margin: 0 0 14px; }
.disclosure-list { list-style: none; margin: 0; padding: 0; }
.disclosure-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 6px 18px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.disclosure-list .k {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-700);
}
.disclosure-list .v { font-size: 15px; color: var(--slate); }
.disclosure-list .v strong { color: var(--navy); }

.legal-signup {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin: 0 0 28px;
  box-shadow: var(--shadow-sm);
}
.legal-signup h2 { font-size: 21px; font-weight: 600; color: var(--navy); margin: 0 0 6px; }
.legal-signup__intro { font-size: 14.5px; color: var(--muted); margin: 0 0 20px; max-width: 640px; }
.signup-form { display: grid; gap: 18px; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-700);
}
.field input[type="tel"] {
  font-family: var(--font);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--ink);
  max-width: 340px;
  width: 100%;
}
.field input[type="tel"]:focus-visible { outline: 2px solid var(--deep); outline-offset: 1px; border-color: var(--deep); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; line-height: 1.6; color: var(--ink); max-width: 640px; cursor: pointer; }
.consent input[type="checkbox"] { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--deep); flex: none; }
.signup-form .btn { justify-self: start; }
.signup-confirm {
  display: none;
  font-size: 14.5px;
  color: var(--deep-700);
  background: rgba(29, 181, 208, 0.10);
  border: 1px solid rgba(29, 181, 208, 0.35);
  border-radius: 10px;
  padding: 13px 16px;
  margin: 0;
}
.signup-confirm.is-shown { display: block; }

.legal-doc { margin: 0 0 64px; }
.legal-doc:last-child { margin-bottom: 0; }
.legal-doc__head {
  padding-bottom: 12px;
  margin: 0 0 26px;
  border-bottom: 3px solid var(--aqua);
}
.legal-doc__head h2 { font-size: 28px; font-weight: 600; color: var(--navy); margin: 0; }
.legal-doc h3 {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 17px;
  font-weight: 600;
  color: var(--deep-700);
  margin: 34px 0 10px;
}
.legal-doc h3 .n { font-size: 13px; font-weight: 600; color: var(--aqua); min-width: 20px; }
.legal-doc p { font-size: 15.5px; color: var(--slate); margin: 0 0 14px; }
.legal-doc ul { margin: 0 0 14px; padding-left: 20px; }
.legal-doc li { font-size: 15.5px; color: var(--slate); margin: 5px 0; padding-left: 4px; }
.legal-doc li::marker { color: var(--aqua); }
.legal-doc strong, .legal-doc b { color: var(--navy); font-weight: 600; }
.legal-highlight {
  border-left: 3px solid var(--aqua);
  background: var(--ivory);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 0 0 16px;
}
.legal-highlight p:last-child { margin-bottom: 0; }
.kw {
  font-family: Consolas, ui-monospace, monospace;
  font-size: 0.88em;
  letter-spacing: 0.02em;
  background: rgba(29, 181, 208, 0.10);
  border: 1px solid rgba(29, 181, 208, 0.35);
  border-radius: 5px;
  padding: 1px 7px;
  color: var(--deep-700);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .disclosure-list li { grid-template-columns: 1fr; gap: 2px; }
  .legal-disclosures { padding: 20px 18px; }
}

/* ---------- WordPress niceties ---------- */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute;
}
.screen-reader-text:focus {
  clip: auto; clip-path: none;
  height: auto; width: auto;
  position: fixed; top: 8px; left: 8px; z-index: 100;
  background: var(--navy); color: var(--white);
  padding: 12px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-md);
}
.feature-list__desc { display: block; }
.wp-page-content { padding: 72px 0; }
.wp-page-content h1 { color: var(--navy); font-size: 34px; font-weight: 600; }
.wp-page-content h2 { color: var(--navy); font-weight: 600; }
