/* ---- Brand typeface (Inter, self-hosted subsets) -------------------------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/inter-800.woff2') format('woff2');
}

/* ============================================================================
   Verrou — shared marketing design system
   Single source of truth for the marketing site's look & feel. Link this from
   any page (<link rel="stylesheet" href="styles.css">) and see ../brand/components.html
   for a live reference of every component below.

   Mirrors the tokens/components originally inlined in index.html and the
   in-house report theme (verrou_theme.py), so pages built on it match the
   existing site and the scanner reports.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  --navy: #0e1b2c;
  --navy-light: #1b3050;
  --accent: #185FA5;
  --accent-dark: #0C447C;
  --accent-soft: #85B7EB;
  --ink: #1a2433;
  --gray: #5b6b7f;
  --line: #e3e9f1;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;

  /* status tones — shared with the report theme */
  --good: #1f9d57;
  --warn: #c9860a;
  --bad: #cf3b3b;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 32px rgba(14, 27, 44, .08);
  --shadow-lg: 0 18px 48px rgba(14, 27, 44, .12);
  --maxw: 1080px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---- Reset & base -------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--accent); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- Navigation ---------------------------------------------------------- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  backdrop-filter: none;
  border-bottom: 1px solid #24344a;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; letter-spacing: .04em; color: #fff; text-decoration: none; }.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: #a9b8cc; text-decoration: none; font-size: .92rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.dropdown { position: relative; }
/* dropdown stays a light card floating below the navy bar, so its links stay dark */
.dropdown-menu { display: none; position: absolute; top: 100%; left: -10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px; min-width: 300px; box-shadow: var(--shadow-lg); }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 9px 12px; border-radius: 7px; white-space: nowrap; color: var(--ink); }
.dropdown-menu a:hover { background: var(--bg-soft); color: var(--navy); }

/* mobile menu toggle — hidden on desktop */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: #fff; }
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 4px; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px 20px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  /* the open mobile panel is a light card, so its links revert to dark */
  .nav-links a { color: var(--ink); }
  .nav-links a:hover { color: var(--navy); }
  .nav-links > a, .dropdown > a { padding: 10px 0; }
  .dropdown-menu { position: static; display: block; border: 0; box-shadow: none; padding: 0 0 0 14px; min-width: 0; }
}

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-block; padding: 11px 24px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff !important; font-weight: 600; font-size: .92rem;
  text-decoration: none; border: none; cursor: pointer; transition: background .15s, transform .15s;
}
.btn:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: #fff !important; border: 1.5px solid #33507a; }
.btn-outline:hover { background: #16273f; border-color: var(--accent-soft); }
.btn-secondary { background: var(--bg-soft); color: var(--navy) !important; border: 1px solid var(--line); }
.btn-secondary:hover { background: #eaf1f9; }
.btn-ghost { background: transparent; color: var(--accent) !important; padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--accent-dark); }
.btn-lg { padding: 14px 30px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }

/* ---- Hero ---------------------------------------------------------------- */
.hero { padding: 110px 0 90px; text-align: center; background: var(--navy); }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-soft); margin-bottom: 20px;
  padding: 6px 14px; border: 1px solid #33507a; border-radius: 100px; background: #16273f;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.15; font-weight: 800; color: #fff; max-width: 780px; margin: 0 auto 22px; letter-spacing: -.02em; }
.hero p { font-size: 1.15rem; color: #a9b8cc; max-width: 760px; margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 820px) { .hero p br { display: none; } }

/* ---- Interior page header (lighter than the home hero) ------------------- */
.page-header { padding: 64px 0 40px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.page-header .eyebrow { color: var(--accent); background: #eaf1f9; border-color: #d5e3f2; }
.page-header h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin-bottom: 14px; }
.page-header p { color: var(--gray); font-size: 1.1rem; max-width: 680px; }

/* breadcrumb */
.breadcrumb { font-size: .82rem; color: var(--gray); margin-bottom: 18px; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--line); margin: 0 6px; }

/* ---- Sections ------------------------------------------------------------ */
section { padding: 90px 0; }.section-label { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 750; color: var(--navy); letter-spacing: -.015em; margin-bottom: 14px; }
.section-sub { color: var(--gray); max-width: 640px; font-size: 1.05rem; }
.bg-soft { background: var(--bg-soft); }
.bg-navy { background: var(--navy); color: #fff; }/* ---- Cards & grids ------------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; background: #fff; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card .icon { width: 44px; height: 44px; border-radius: 10px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 10px; font-weight: 700; line-height: 1.3; }
.card h2 { font-size: 1.08rem; color: var(--navy); margin-bottom: 10px; font-weight: 700; line-height: 1.3; }
.card p { font-size: .93rem; color: var(--gray); }
a.card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
a.card .learn { display: inline-block; margin-top: auto; padding-top: 14px; color: var(--accent); font-weight: 600; font-size: .9rem; }

/* ---- Process steps ------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.step { position: relative; padding: 28px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step-num { font-size: .8rem; font-weight: 700; color: var(--accent); letter-spacing: .1em; margin-bottom: 12px; }
.step h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.step p { font-size: .9rem; color: var(--gray); }

/* ---- Stat / metric row --------------------------------------------------- */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
.stat { text-align: center; padding: 24px 16px; }
.stat .num { font-size: 2.4rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1; }
.bg-navy .stat .num { color: #fff; }
.stat .label { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); margin-top: 10px; }
.bg-navy .stat .label { color: var(--accent-soft); }

/* ---- Logo strip ("trusted by") ------------------------------------------- */
.logo-strip { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; }
.logo-strip .logo-item { font-weight: 700; font-size: 1.1rem; color: #9aa8ba; letter-spacing: .02em; filter: grayscale(1); }

/* ---- Pricing cards ------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; background: #fff; }
.price-card.featured { border: 2px solid var(--accent); box-shadow: var(--shadow); position: relative; }
.price-card.featured .ribbon { position: absolute; top: -12px; left: 28px; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.price-card h3 { font-size: 1.15rem; color: var(--navy); font-weight: 750; margin-bottom: 6px; }
.price-card .price { font-size: 2rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin: 10px 0 4px; }.price-card .price-desc { color: var(--gray); font-size: .92rem; margin-bottom: 20px; }
.price-card ul { list-style: none; margin: 0 0 26px; display: grid; gap: 10px; }
.price-card li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--ink); }
.price-card li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f9d57' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.price-card .btn { margin-top: auto; text-align: center; }

/* ---- Testimonial / quote ------------------------------------------------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.quote { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; background: #fff; }
.quote blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.6; margin-bottom: 20px; }
.quote blockquote::before { content: "\201C"; color: var(--accent); font-size: 2.4rem; line-height: 0; vertical-align: -.4em; margin-right: 4px; }
.quote .author { display: flex; align-items: center; gap: 12px; }
.quote .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.quote .who { font-size: .88rem; }
.quote .who strong { display: block; color: var(--navy); }
.quote .who span { color: var(--gray); }

/* ---- FAQ accordion ------------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; position: relative; font-weight: 650; color: var(--navy); font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 18px; font-size: 1.5rem; font-weight: 400; color: var(--accent); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 24px; color: var(--gray); }

/* ---- Table --------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.data th, table.data td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.data th { background: var(--bg-soft); color: var(--navy); font-weight: 650; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
table.data tr:last-child td { border-bottom: none; }

/* ---- Badges / pills ------------------------------------------------------ */
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge.good { background: #e6f5ec; color: var(--good); }
.badge.warn { background: #fbf1dd; color: var(--warn); }
.badge.bad { background: #fbe6e6; color: var(--bad); }
.badge.info { background: #e7f0fa; color: var(--accent); }
.badge.alt { background: #eee9f7; color: #6b46c1; }

/* ---- Callout / note ------------------------------------------------------ */
.callout { border-left: 4px solid var(--accent); background: var(--bg-soft); padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink); font-size: .95rem; }
.callout.warn { border-color: var(--warn); background: #fdf7ec; }

/* ---- CTA banner ---------------------------------------------------------- */
.cta-banner { background: var(--navy); text-align: center; padding: 70px 0; }
.cta-banner h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: #fff; font-weight: 750; margin-bottom: 14px; letter-spacing: -.015em; }
.cta-banner p { color: #a9b8cc; max-width: 560px; margin: 0 auto 28px; }

/* ---- Prose (legal, blog & long-form) ------------------------------------- */
.prose { max-width: 740px; }
.prose h2 { font-size: 1.4rem; color: var(--navy); font-weight: 750; margin: 40px 0 14px; letter-spacing: -.01em; }.prose p { color: var(--ink); margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: var(--ink); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); }
/* ---- Contact form -------------------------------------------------------- */
.contact-form { max-width: 560px; display: grid; gap: 16px; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: #fff; color: var(--ink); font-size: .95rem; font-family: inherit;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(24, 95, 165, .18);
}
.contact-form .btn { justify-self: start; }.contact-alt { margin-top: 22px; font-size: .9rem; color: var(--gray); }@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---- Footer -------------------------------------------------------------- */
/* Trust bar — slim cross-link strip (mirrors rouage.ai's bar that links back to verrou) */
.trust { background: #eaf1fa; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust .container { padding: 14px 24px; font-size: .9rem; letter-spacing: .02em; text-align: center; color: #38495e; }
.trust a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.trust a:hover { color: var(--accent-dark); }

code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .92em; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 4px; padding: 1px 5px; }

/* service pages: why-it-matters + datasheet aside (75 / 25) */
.why-grid { display: grid; grid-template-columns: 3fr 1fr; gap: 40px; align-items: start; }
.datasheet-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 24px 22px; }
.datasheet-card .ds-label { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.datasheet-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 8px; }
.datasheet-card p { font-size: .85rem; color: var(--gray); line-height: 1.5; margin-bottom: 18px; }
.datasheet-card .btn { display: block; text-align: center; padding: 11px 14px; }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; gap: 28px; } }

footer.site { background: var(--navy); color: #cdd8e6; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-brand p { color: #8ea0b6; font-size: .9rem; margin-top: 14px; max-width: 260px; }
/* 18px glyph, 13px padding each side = a 44x44 touch target. The negative
   left margin and reduced top margin cancel the padding so the icon sits
   exactly where it did visually — the target grows, the design does not. */
.footer-brand .social { display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; padding: 13px;
  margin: 5px 0 0 -13px; color: #8ea0b6; transition: color .15s; }
.footer-brand .social:hover { color: #fff; }
.footer-col h2 { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #6f849e; margin-bottom: 14px; }
.footer-col a { display: block; color: #cdd8e6; text-decoration: none; font-size: .9rem; margin-bottom: 9px; }
.footer-col a:hover { color: #fff; }
/* footer values strip: causes we stand with + green hosting */
.footer-extra { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px 28px; margin-top: 44px; padding-top: 26px; border-top: 1px solid #24344a; font-size: .85rem; }
.fx-label { text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; font-weight: 700; color: #5b6b7f; margin-right: 4px; }
.fx-stand { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.fx-stand a { color: #a9b8cc; text-decoration: none; font-weight: 600; }
.fx-stand a:hover { color: #fff; }
.fx-green { display: inline-flex; align-items: center; gap: 9px; color: #7fcea0; }
.fx-green a { color: #7fcea0; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.fx-green a:hover { color: #a7e3bf; }
/* privacy stance — every claim here is verified in code and config */
.fx-privacy { display: flex; align-items: center; gap: 9px; margin-top: 14px; font-size: .85rem; color: var(--accent-soft); }
.fx-privacy b { color: #cdd8e6; font-weight: 600; }

.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 22px; font-size: .82rem; color: #7e91a8; }.footer-bottom .pron { color: #85B7EB; font-style: normal; white-space: nowrap; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }/* ---- Placeholder marker (swap for real content) -------------------------- */
.ph { background: #fff7e6; border: 1px dashed #d9a441; border-radius: 4px; padding: 0 5px; color: #7a5b12; font-style: normal; white-space: nowrap; }
.ph-block { display: block; background: #fff7e6; border: 1px dashed #d9a441; border-radius: var(--radius-sm); padding: 14px 16px; color: #7a5b12; font-size: .9rem; margin: 8px 0; }.mt-2 { margin-top: 24px; } .mt-3 { margin-top: 36px; } .mt-4 { margin-top: 48px; }
.center { text-align: center; }
.muted { color: var(--gray); }
.max-720 { max-width: 720px; }.wide-sub { max-width: none; }

/* ---- utilities: former inline style attributes ---- */
/* These replace inline style="" attributes, which no hash or nonce can ever
   authorise under CSP — only 'unsafe-inline' can, which is exactly what we
   removed. Keep new one-off styling here or in a component rule; putting it
   back on the element re-opens style-src for the whole site.

   The class is DOUBLED on purpose. An inline style beats every selector, so
   these declarations used to win unconditionally. A single class is 0-1-0 and
   loses to component rules like `.card p` (0-1-1) — which silently changed
   font-size and colour on about.html and trust.html when this was first
   written. Doubling makes it 0-2-0, restoring the precedence the inline
   attribute had, without resorting to !important. */
.logo-link.logo-link{display:inline-flex;align-items:center;text-decoration:none}
.logo-word.logo-word{font-weight:800;font-size:1.35rem;letter-spacing:.01em;color:#fff}
.logo-dot.logo-dot{color:var(--accent-soft);font-size:1.4em}
.foot-word.foot-word{font-weight:700;font-size:1.3rem;letter-spacing:.04em;color:#fff;text-decoration:none}
.avatar-lg.avatar-lg{width:88px;height:88px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 18px;white-space:normal;font-size:.72rem}
.avatar-photo{width:88px;height:88px;border-radius:50%;object-fit:cover;display:block;margin:0 auto 18px}
.eyebrow-accent.eyebrow-accent{color:var(--accent);font-weight:600;font-size:.9rem;margin-bottom:14px}
.mt-10.mt-10{margin-top:10px}
.visually-hidden.visually-hidden{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.mw-none.mw-none{max-width:none}
.c-accent-soft.c-accent-soft{color:var(--accent-soft)}
.c-muted.c-muted{color:#7B8794}
.va-nudge.va-nudge{vertical-align:-2px}
.mb-32.mb-32{margin-bottom:32px}
.lede-strong.lede-strong{font-size:1.1rem;color:var(--navy);font-weight:700}
.fs-90.fs-90{font-size:.9rem}
.ai-center.ai-center{align-items:center}
.fs-88.fs-88{font-size:.88rem}

.form-error{background:#FFE9E9;color:#7A1F2B;border-radius:8px;padding:14px 18px;margin-bottom:26px;font-size:15px}
