/* ===========================================================
   Kailix — static rebuild stylesheet
   Design tokens per CONVENTIONS.md (Kailix)

   Headings use Inter 600 to match the original site. The WP
   theme never used a serif; "Roboto Slab" was an artefact of
   the rebuild and has been removed here and from every
   Google Fonts <link>.

   Colour system:
     --brand-blue / --green-accent  decorative only (fail AA as text)
     --brand-ink  / --green-ink     text-safe equivalents
   =========================================================== */

:root {
  /* Brand */
  --brand-blue: #0092ff;          /* decorative: fills, rules, icons */
  --brand-blue-tint: rgba(0, 146, 255, 0.08);
  --brand-ink: #0074cc;           /* text / interactive surfaces (4.8:1 on white) */
  --brand-ink-dark: #005ba6;      /* hover (6.9:1) */
  --dark: #333e63;
  --dark-2: #283742;
  --dark-3: #1c2831;              /* dark button hover */
  --light-bg: #f5faff;
  --warning: #fff6ce;
  --accent-yellow: #ffeaac;
  --marker-yellow: rgb(252 210 3 / 75%);
  --error: #ff3838;
  --accent-red: #ff3838;          /* the signature pill rule */
  --green-accent: #20c997;        /* decorative only — fails AA as text */
  --green-ink: #10795a;           /* text-safe green (5.4:1 on white) */

  /* Text */
  --body-text: #283742;
  --heading-dark: #333e63;
  --muted-text: #697386;
  --muted-text-2: #6b6b6b;
  --footer-text: #bdbdbd;         /* 6.5:1 on --footer-bg */
  --footer-muted: #a3aebb;        /* 5.4:1 on --footer-bg */

  /* Surfaces */
  --white: #ffffff;
  --section-alt: #f5faff;
  --footer-bg: #283742;

  /* Borders */
  --border: #e3e8ee;
  --border-soft: #bdbdbd;
  --hairline: rgba(51, 62, 99, 0.10);

  /* Fonts */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-heading: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --fs-display: clamp(2.125rem, 1.35rem + 3.1vw, 3.25rem);
  --fs-h1: clamp(1.9rem, 1.4rem + 2vw, 2.75rem);
  --fs-h2: clamp(1.6rem, 1.28rem + 1.35vw, 2.25rem);
  --fs-h3: clamp(1.25rem, 1.11rem + 0.6vw, 1.6rem);
  --fs-h4: clamp(1.0625rem, 1rem + 0.3vw, 1.2rem);
  --fs-lead: clamp(1.0625rem, 1rem + 0.35vw, 1.2rem);
  --fs-body: 1.0625rem;
  --fs-sm: 0.9375rem;

  /* Section rhythm */
  --sp-section: clamp(56px, 6vw, 96px);
  --sp-section-sm: clamp(36px, 4vw, 60px);

  /* Layout */
  --container: 1300px;
  --measure: 68ch;
  --gutter: 24px;
  --header-height: 80px;

  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Elevation — navy-tinted, never flat black */
  --shadow-sm: 0 1px 2px rgba(51, 62, 99, 0.06), 0 2px 6px rgba(51, 62, 99, 0.05);
  --shadow-md: 0 2px 6px rgba(51, 62, 99, 0.05), 0 10px 26px rgba(51, 62, 99, 0.09);
  --shadow-lg: 0 4px 12px rgba(51, 62, 99, 0.07), 0 22px 50px rgba(51, 62, 99, 0.13);
  --shadow-brand: 0 6px 18px rgba(0, 116, 204, 0.26);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Keeps the footer at the bottom on short pages (category archives
   hold a single card and were leaving the footer mid-viewport). */
body > main { flex: 1 0 auto; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-ink); text-decoration: none; transition: color 0.15s var(--ease); }
a:hover { color: var(--brand-ink-dark); }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-dark);
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.02em; }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }
h4, h5, h6 { letter-spacing: -0.01em; }

p { margin: 0; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }
:focus-visible {
  outline: 2px solid var(--brand-ink);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Layout container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ===========================================================
   Signature accent rule — the red pill under major headings
   (restored from the original site; three margin variants)
   =========================================================== */
.heading-accent::after {
  content: "";
  display: block;
  width: 5rem;
  height: 7px;
  border-radius: 10px;
  background: var(--accent-red);
}
.heading-accent--center::after { margin: 1.885rem auto; }
.heading-accent--bottom::after { margin: 20px 0 0; }
.heading-accent--top::after { content: none; }
.heading-accent--top::before {
  content: "";
  display: block;
  width: 5rem;
  height: 7px;
  border-radius: 10px;
  background: var(--accent-red);
  margin: 30px 0 -10px;
}
/* the rule supplies the trailing rhythm, so drop the duplicate gap */
.features__heading.heading-accent--center,
.plans-hero__title.heading-accent--center { margin-bottom: 0; }

/* ---------- Marker underline (statement headings) ---------- */
.highlight {
  text-decoration: underline;
  text-underline-offset: -10px;
  text-decoration-thickness: 0.3em;
  text-decoration-skip-ink: none;
  text-decoration-color: var(--marker-yellow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 24px;
  background: var(--brand-ink);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-brand);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
              color 0.2s var(--ease), box-shadow 0.2s var(--ease),
              transform 0.2s var(--ease);
}
.btn:hover {
  background: var(--brand-ink-dark);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 116, 204, 0.32);
}
.btn:active { transform: translateY(0); box-shadow: 0 3px 10px rgba(0, 116, 204, 0.24); }

.btn--dark { background: var(--dark-2); border-color: transparent; box-shadow: 0 6px 18px rgba(40, 55, 66, 0.26); }
.btn--dark:hover { background: var(--dark-3); border-color: transparent; color: #fff; box-shadow: 0 10px 24px rgba(40, 55, 66, 0.32); }

.btn--green { background: var(--green-ink); border-color: transparent; box-shadow: 0 6px 18px rgba(16, 121, 90, 0.26); }
.btn--green:hover { background: #0c5f47; border-color: transparent; color: #fff; box-shadow: 0 10px 24px rgba(16, 121, 90, 0.32); }

.btn--small { font-size: 0.875rem; padding: 10px 18px; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-ink);
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.btn-link:hover { color: var(--brand-ink-dark); gap: 0.65rem; }
.btn-link__icon { transition: transform 0.2s var(--ease); }
.btn-link:hover .btn-link__icon { transform: translateX(3px); }

/* ===========================================================
   Header
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 2px 20px -12px rgba(51, 62, 99, 0.55);
}

.site-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__logo img {
  height: 38px;
  width: auto;
  transition: opacity 0.2s var(--ease);
}
.site-header__logo:hover img { opacity: 0.78; }

/* ---------- Nav ---------- */
.nav { display: flex; align-items: center; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.6vw, 1.75rem);
}

.nav__item { position: relative; }

.nav__link {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark);
  padding: 0.25rem 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-blue);
  transition: width 0.22s var(--ease);
}
.nav__link:hover::after,
.nav__item--active .nav__link::after { width: 100%; }
.nav__link:hover { color: var(--brand-ink); }
.nav__item--active > .nav__link { color: var(--brand-ink); }

.nav__item--has-children > .nav__link::after { display: none; }
.nav__item--has-children > .nav__link { cursor: pointer; }
/* keeps the pointer path alive between trigger and panel */
.nav__item--has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}
.nav__chevron {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.7em;
  transition: transform 0.2s var(--ease);
}
.nav__item--has-children:hover .nav__chevron,
.nav__item--has-children.is-open .nav__chevron { transform: rotate(180deg); }
.nav__item--has-children:hover > .nav__link,
.nav__item--has-children.is-open > .nav__link { color: var(--brand-ink); }

/* Dropdown submenu */
.nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s var(--ease);
  z-index: 200;
}
.nav__item--has-children:hover .nav__submenu,
.nav__item--has-children:focus-within .nav__submenu,
.nav__item--has-children.is-open .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__submenu-link {
  display: block;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav__submenu-link:hover { background: var(--light-bg); color: var(--brand-ink); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav__toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  margin-inline: auto;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================================
   Page header (interior pages)
   =========================================================== */
.page-header {
  background:
    radial-gradient(780px 300px at 82% 0%, rgba(0, 146, 255, 0.10), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
  padding: clamp(44px, 5vw, 76px) 0 clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--hairline);
}
.page-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.page-header__inner--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.page-header--accent {
  background: linear-gradient(180deg, var(--accent-yellow) 0%, #ffdf8e 100%);
  border-bottom-color: rgba(51, 62, 99, 0.16);
}
.page-header__title {
  font-size: var(--fs-h1);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.page-header__inner--split .page-header__title { margin-bottom: 0; max-width: 22ch; }
.page-header__subtitle {
  font-size: var(--fs-lead);
  color: var(--muted-text);
  max-width: var(--measure);
}
.page-header__media { max-width: 300px; width: 100%; }

/* ===========================================================
   Hero (homepage)
   =========================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 440px at 80% 6%, rgba(0, 146, 255, 0.10), transparent 62%),
    linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
  padding: clamp(36px, 4vw, 64px) 0 clamp(56px, 6vw, 88px);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.hero__content { min-width: 0; }
.hero__title {
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--dark);
  margin-bottom: 1.35rem;
  max-width: 15ch;
}
.hero__text {
  color: var(--muted-text);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 36em;
}
.hero .btn { margin-top: 0.5rem; margin-bottom: 1.5rem; }
.hero__howto {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-ink);
  transition: color 0.2s var(--ease);
}
.hero__howto svg { transition: transform 0.2s var(--ease); }
.hero__howto:hover { color: var(--brand-ink-dark); }
.hero__howto:hover svg { transform: scale(1.08); }
.hero__media { display: flex; justify-content: center; }
.hero__media img {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(51, 62, 99, 0.14));
}

/* ===========================================================
   Feature cards (homepage)
   =========================================================== */
.features { background: var(--white); padding: var(--sp-section) 0; }
.features--alt { background: var(--light-bg); }
/* a heading-only band that introduces the block right below it.
   flow-root keeps the accent rule's trailing margin inside the tinted band —
   without it the margin collapsed through and punched a white gap between
   the heading band and the body band below. */
.features--group-heading { padding-bottom: 0; }
.features--group-heading .features__inner { display: flow-root; }
.features--group-heading .features__heading,
.features--group-heading .features__statement { margin-bottom: 0; }

.features__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.features__inner--centered { text-align: center; }

.features__heading {
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.features__heading-sub {
  text-align: center;
  font-size: var(--fs-lead);
  color: var(--muted-text);
  margin-inline: auto;
  max-width: 52ch;
}
.features__statement {
  font-size: clamp(1.3rem, 1.05rem + 1.05vw, 1.75rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--dark);
}
.features__figure { margin-top: clamp(2rem, 3.5vw, 3rem); text-align: center; }
.features__figure img { margin-inline: auto; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

/* Real cards — these were six bare text stacks */
.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.2vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 146, 255, 0.32);
}
/* fixed frame: the source viewBoxes are 94x63–94.49x64.57, so sizing by
   width left the row jittering with no shared baseline */
.feature-card__icon {
  display: flex;
  align-items: flex-end;
  height: 64px;
  margin-bottom: 1.25rem;
}
.feature-card__icon img {
  height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.feature-card__title {
  font-family: var(--font-body);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.feature-card__subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-ink);
  margin-bottom: 0.6rem;
}
.feature-card__text {
  color: var(--muted-text);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===========================================================
   Split sections (homepage shippers)
   =========================================================== */
.split { background: var(--white); padding: var(--sp-section) 0; }
.split--alt { background: var(--light-bg); }
/* body of a group whose heading sits in the band directly above */
.split--group-body { padding-top: clamp(28px, 3vw, 44px); }
.split__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.split--reverse .split__inner { grid-template-columns: 5fr 7fr; }
.split--reverse .split__media { order: -1; }
.split__content { min-width: 0; }
.split__title {
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.split__subtitle {
  font-size: var(--fs-lead);
  color: var(--muted-text);
  margin-bottom: 1rem;
}
.split__text {
  color: var(--muted-text);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 54ch;
}
.split__lead {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.split__text + .split__lead { margin-top: 1.25rem; }
.split__list { margin-top: 1.25rem; }
.split__list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.6rem;
  color: var(--body-text);
  font-size: 1.0625rem;
  line-height: 1.55;
}
.split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-blue-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='%230092ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 12px 12px;
}
.split__media { display: flex; justify-content: center; }
.split__media img { width: 100%; max-width: 560px; height: auto; }

/* ===========================================================
   Tech features (homepage security)
   =========================================================== */
.tech-features { background: var(--white); padding: var(--sp-section) 0; }
.tech-features--group-body { padding-top: clamp(28px, 3vw, 44px); }
.tech-features__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}
.tech-feature {
  background: var(--light-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.2vw, 2rem);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tech-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tech-feature__icon { margin-bottom: 1rem; }
.tech-feature__icon img { width: 44px; height: auto; }
.tech-feature__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.tech-feature__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--body-text);
}
.tech-feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='%230092ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ===========================================================
   Featured in
   =========================================================== */
.featured-in {
  background: var(--light-bg);
  padding: var(--sp-section-sm) 0;
  border-top: 1px solid var(--hairline);
}
.featured-in__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  justify-content: center;
  align-items: stretch;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.featured-in__title {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-text);
  text-align: center;
  margin-bottom: 0.25rem;
}
/* one white chip per logo: two of the three sources are opaque white
   JPEGs, which read as bare rectangles straight on the tinted band */
.featured-in__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  padding: 0.9rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.featured-in__logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.featured-in__logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.25s var(--ease);
}
.featured-in__logo:hover img { opacity: 1; }

/* ===========================================================
   Plans page
   =========================================================== */
.plans-hero {
  background:
    radial-gradient(720px 320px at 50% 0%, rgba(0, 146, 255, 0.22), transparent 65%),
    var(--dark-2);
  padding: clamp(48px, 5.5vw, 80px) 0 clamp(40px, 4.5vw, 64px);
  text-align: center;
}
/* every other banner has an __inner; this one had none, so the copy
   ran edge-to-edge and touched the screen on mobile */
.plans-hero__inner {
  max-width: 60rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.plans-hero__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
}
.plans-hero__text {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
  max-width: 46rem;
  margin-inline: auto;
}
.plans-hero__text p { margin-bottom: 0.3rem; }
.plans-hero :focus-visible { outline-color: #fff; }

.plans-grid {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-section) var(--gutter) clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.75rem);
}
.plan-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 2.6vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand-blue);
}
.plan-card:has(.plan-card__title--green)::before { background: var(--green-accent); }
.plan-card:has(.plan-card__title--dark)::before { background: var(--dark-2); }
.plan-card:has(.plan-card__title--blue)::before { background: var(--brand-blue); }
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 146, 255, 0.28);
}
.plan-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}
.plan-card__title--green { color: var(--green-ink); }
.plan-card__title--dark { color: var(--dark-2); }
.plan-card__title--blue { color: var(--brand-ink); }
.plan-card__subtitle {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--muted-text);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--hairline);
}
.plan-card__list { margin-bottom: 1.75rem; }
.plan-card__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--body-text);
}
.plan-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='%2320c997' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.plan-card__note { text-align: center; font-size: 0.8rem; color: var(--muted-text); margin-top: 1rem; }
/* the three lists are 7/10/6 items long — pin the CTAs to a shared baseline */
.plan-card .btn { margin-top: auto; width: 100%; }

.plans-footnote {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted-text);
}
.plans-note {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.5rem var(--gutter) var(--sp-section-sm);
  text-align: center;
  color: var(--dark-2);
  font-size: 1rem;
  line-height: 1.7;
}
.plans-image {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter) var(--sp-section-sm);
  text-align: center;
}
.plans-image img { max-width: 700px; margin-inline: auto; }

/* ===========================================================
   Quote banner
   =========================================================== */
.quote-banner {
  background: var(--light-bg);
  padding: var(--sp-section-sm) 0;
}
.quote-banner--warning { background: var(--white); }
.quote-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.quote-banner--warning .quote-banner__inner {
  background: linear-gradient(180deg, #fff4f1 0%, #fffaf9 100%);
  border: 1px solid rgba(255, 56, 56, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  max-width: calc(var(--container) - 2 * var(--gutter));
}
.quote-banner__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.quote-banner__text {
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 0.35rem;
}
.quote-banner__sub { font-size: 1rem; color: var(--muted-text-2); margin-top: 0.25rem; line-height: 1.6; }
.quote-banner__sub strong { color: var(--dark); }

/* ===========================================================
   FAQ accordion
   =========================================================== */
.faq { padding: var(--sp-section) 0; background: var(--white); }
.faq__inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.faq__item:hover { box-shadow: var(--shadow-sm); }
.faq__item.is-open {
  border-color: rgba(0, 146, 255, 0.32);
  box-shadow: var(--shadow-sm);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--dark);
  transition: color 0.15s var(--ease);
}
.faq__question:hover { color: var(--brand-ink); }
.faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--brand-blue);
  transition: transform 0.25s var(--ease);
}
.faq__item.is-open .faq__chevron { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq__item.is-open .faq__answer { max-height: 500px; }
.faq__answer-inner {
  padding: 0 1.35rem 1.25rem;
  color: var(--muted-text);
  font-size: 1rem;
  line-height: 1.7;
  max-width: var(--measure);
}

/* ===========================================================
   Contact form
   =========================================================== */
.contact-form-section {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: var(--sp-section-sm);
}
.contact-form {
  max-width: 760px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.form-row--full { grid-template-columns: 1fr; }
.form-field { display: block; min-width: 0; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--body-text);
  background: #fcfdff;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
}
.form-field input:hover,
.form-field textarea:hover { border-color: var(--border-soft); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 146, 255, 0.18);
}
/* keyboard focus must stay a real ring — the bare :focus rule above
   used to beat the global :focus-visible on specificity */
.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--brand-ink);
  outline-offset: 2px;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #98a1b0; }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field--error input,
.form-field--error textarea { border-color: var(--error); }
.form-field--error input:focus,
.form-field--error textarea:focus { box-shadow: 0 0 0 3px rgba(255, 56, 56, 0.16); }
.form-field__error {
  display: none;
  font-size: 0.85rem;
  color: #d32020;
  margin-top: 0.3rem;
}
.form-field--error .form-field__error { display: block; }

.form-consent {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.form-consent input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--brand-ink); flex: 0 0 auto; }
.form-consent label { font-size: 0.9375rem; color: var(--muted-text); font-weight: 400; line-height: 1.6; flex: 1 1 260px; }
.form-consent a { color: var(--brand-ink); text-decoration: underline; }
.form-consent .form-field__error { flex: 1 0 100%; }

.form-honeypot { display: none !important; }

/* ---------- Text bands (contact page) ---------- */
.text-band { padding: var(--sp-section-sm) 0; text-align: center; }
.text-band--tight { padding: clamp(16px, 2vw, 28px) 0 var(--sp-section-sm); }
.section-statement {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--dark);
  margin-bottom: 0.85rem;
  max-width: 22ch;
  margin-inline: auto;
}
.section-subhead {
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-lead {
  max-width: 62ch;
  margin-inline: auto;
  color: var(--muted-text);
  font-size: var(--fs-lead);
  line-height: 1.7;
}

/* ===========================================================
   Contact icon boxes
   =========================================================== */
.icon-boxes {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter) var(--sp-section-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.75rem);
}
.icon-box {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  background: var(--light-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.icon-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.icon-box__icon { flex-shrink: 0; }
.icon-box__icon img { width: 52px; height: auto; }
.icon-box__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.icon-box__text {
  color: var(--muted-text);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===========================================================
   About page
   =========================================================== */
.about-content {
  max-width: calc(var(--measure) + 2 * var(--gutter));
  margin-inline: auto;
  padding: var(--sp-section) var(--gutter);
}
.about-content h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.about-content h4 {
  font-size: var(--fs-h3);
  margin-bottom: 1.5rem;
  color: var(--brand-ink);
  font-weight: 600;
}
.about-content p { margin-bottom: 1.1rem; line-height: 1.75; font-size: 1.0625rem; color: var(--body-text); }
.about-content strong { color: var(--dark); font-weight: 600; }
/* paragraphs that hold nothing but a bold line act as section leads here;
   a bold lead-in followed by prose stays inline with its own sentence */
.about-content .about-lead {
  font-size: 1.125rem;
  letter-spacing: -0.012em;
  margin-top: 1.75rem;
  line-height: 1.5;
}

.testimonials { padding: var(--sp-section) 0; background: var(--light-bg); }
.testimonials__inner {
  max-width: calc(var(--measure) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.testimonials__heading {
  font-size: var(--fs-h3);
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: 2rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial__location {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-ink);
  margin-bottom: 0.6rem;
}
.testimonial__quote {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body-text);
  font-style: italic;
}

/* ===========================================================
   Careers
   =========================================================== */
.careers-content {
  max-width: calc(var(--measure) + 2 * var(--gutter));
  margin-inline: auto;
  padding: var(--sp-section) var(--gutter);
}
.careers-content p { margin-bottom: 1rem; line-height: 1.75; font-size: 1.0625rem; }
.careers-content strong { color: var(--dark); }

.jobs-table { margin-top: 2rem; }
.jobs-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 2px solid var(--border);
}
.jobs-table__header strong {
  color: var(--muted-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.jobs-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.jobs-table__position a { font-weight: 600; color: var(--dark); text-decoration: none; }
.jobs-table__position a:hover { color: var(--brand-ink); }
.jobs-table__location { color: var(--muted-text); font-size: 0.9375rem; }
.jobs-table__action { text-align: right; }

/* Job detail */
.job-detail {
  max-width: calc(var(--measure) + 2 * var(--gutter));
  margin-inline: auto;
  padding: var(--sp-section) var(--gutter);
}
.job-detail__title { font-size: var(--fs-h2); color: var(--dark); margin-bottom: 0.5rem; }
.job-detail__location { font-size: var(--fs-lead); color: var(--muted-text); margin-bottom: 1.5rem; }
.job-detail__desc { margin-bottom: 1.5rem; line-height: 1.75; }
.job-detail__section { margin-bottom: 1.75rem; }
.job-detail__section h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 0.75rem; }
.job-detail__section ul { list-style: disc; padding-left: 1.5rem; }
.job-detail__section ul li { margin-bottom: 0.4rem; line-height: 1.6; }

/* ===========================================================
   Blog index
   =========================================================== */
.blog-header {
  background:
    radial-gradient(780px 300px at 82% 0%, rgba(0, 146, 255, 0.10), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
  padding: clamp(44px, 5vw, 76px) 0 clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--hairline);
}
.blog-header__inner { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.blog-header__title {
  font-size: var(--fs-h1);
  letter-spacing: -0.03em;
  color: var(--dark);
  max-width: 24ch;
}

.blog-list {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-section-sm) var(--gutter) var(--sp-section);
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.blog-card {
  display: grid;
  grid-template-columns: minmax(0, 300px) 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 146, 255, 0.28);
}
.blog-card__image {
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: auto;
  min-height: 210px;
  background: var(--light-bg);
}
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__image + div { padding: clamp(1.35rem, 2.4vw, 1.85rem); min-width: 0; }
.blog-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.8125rem;
  color: var(--muted-text);
}
.blog-card__category {
  display: inline-block;
  padding: 3px 11px;
  background: var(--brand-blue-tint);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-ink);
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.blog-card__category:hover { background: var(--brand-ink); color: #fff; }
.blog-card__title {
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.blog-card__title a { color: var(--dark); text-decoration: none; transition: color 0.2s var(--ease); }
.blog-card__title a:hover { color: var(--brand-ink); }
.blog-card__excerpt {
  color: var(--muted-text);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0.9rem;
  max-width: 64ch;
}
.blog-card__author { font-size: 0.8125rem; color: var(--muted-text); }
.blog-card__read { font-size: 0.8125rem; color: var(--muted-text); }

/* ===========================================================
   Article page
   =========================================================== */
.article-page {
  max-width: calc(var(--measure) + 2 * var(--gutter));
  margin-inline: auto;
  padding: var(--sp-section-sm) var(--gutter) var(--sp-section);
}
.article-header { margin-bottom: 2rem; }
.article-header__category {
  display: inline-block;
  padding: 3px 11px;
  background: var(--brand-blue-tint);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-ink);
  text-decoration: none;
  margin-bottom: 0.85rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.article-header__category:hover { background: var(--brand-ink); color: #fff; }
.article-header__meta { font-size: 0.8125rem; color: var(--muted-text); margin-bottom: 0.6rem; }
.article-header__title {
  font-size: var(--fs-h1);
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
/* sources range 1200x628 to 2560x2560 — cap the frame, not the source */
.article-header__image {
  margin: 1.75rem 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--light-bg);
  box-shadow: var(--shadow-sm);
}
.article-header__image img { width: 100%; height: 100%; object-fit: cover; }

.article-content { line-height: 1.8; font-size: 1.0625rem; max-width: var(--measure); color: var(--body-text); }
.article-content p { margin-bottom: 1.2rem; }
.article-content strong { color: var(--dark); font-weight: 600; }
/* Section titles: 4 of 10 articles use <h5>; the other 6 emit the section
   title as a paragraph that contains nothing but a <strong>. Those carry
   .article-section-title so an inline lead-in ("<strong>Step 1</strong>: …")
   is never torn out of its own sentence. */
.article-content h5,
.article-content .article-section-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin: 2.25rem 0 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hairline);
}
.article-content h5 strong,
.article-content .article-section-title strong { font-weight: 600; color: inherit; }
.article-content > h5:first-child,
.article-content > .article-section-title:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
/* stand-alone emphasised pull-lines (<p><strong><em>…) get a quieter accent */
.article-content .article-pull {
  padding-left: 1rem;
  border-left: 3px solid rgba(0, 146, 255, 0.35);
  color: var(--dark);
  font-weight: 600;
}
.article-content .article-pull strong { font-weight: 600; }
.article-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.article-content ul li { margin-bottom: 0.5rem; }
.article-content a { text-decoration: underline; }

/* Responsive table treatment (one article carries a 5-column table) */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 1.75rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
.table-wrap table { margin-bottom: 0; min-width: 680px; }
.article-content th,
.article-content thead td,
.article-content tbody tr:first-child td {
  background: var(--light-bg);
  color: var(--dark);
  font-weight: 600;
  text-align: left;
  vertical-align: bottom;
  border-bottom: 2px solid var(--border);
}
.article-content table td,
.article-content table th {
  padding: 0.75rem 0.9rem;
  border-right: 1px solid var(--hairline);
  vertical-align: top;
}
.article-content table td:last-child,
.article-content table th:last-child { border-right: 0; }
.article-content tbody tr + tr { border-top: 1px solid var(--hairline); }
.article-content tbody tr:nth-child(odd):not(:first-child) { background: rgba(51, 62, 99, 0.025); }

.article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--brand-blue);
  background: var(--light-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  line-height: 1.7;
}
.article-content blockquote p:last-child { margin-bottom: 0; }
.article-back {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}
.article-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--brand-ink);
  transition: gap 0.2s var(--ease);
}
.article-back a:hover { color: var(--brand-ink-dark); gap: 0.65rem; }

/* ===========================================================
   Category page
   =========================================================== */
.category-list {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-section-sm) var(--gutter) var(--sp-section);
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-content: start;
}
.category-card {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 146, 255, 0.28);
}
.category-card__image {
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: auto;
  min-height: 190px;
  background: var(--light-bg);
}
.category-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.category-card:hover .category-card__image img { transform: scale(1.04); }
.category-card__image + div { padding: clamp(1.35rem, 2.4vw, 1.85rem); min-width: 0; }
.category-card__title {
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.category-card__title a { color: var(--dark); text-decoration: none; transition: color 0.2s var(--ease); }
.category-card__title a:hover { color: var(--brand-ink); }
.category-card__excerpt {
  color: var(--muted-text);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0.9rem;
  max-width: 64ch;
}
.category-card__read { font-size: 0.8125rem; color: var(--muted-text); }

/* ===========================================================
   Legal / Privacy text pages
   =========================================================== */
.legal-content {
  max-width: calc(var(--measure) + 2 * var(--gutter));
  margin-inline: auto;
  padding: var(--sp-section) var(--gutter);
}
.legal-content p { margin-bottom: 1rem; line-height: 1.8; }
.legal-content h3 {
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.legal-content h5 {
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 2.25rem 0 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hairline);
  color: var(--dark);
}
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.legal-content ul li { margin-bottom: 0.4rem; line-height: 1.7; }
.legal-content strong { color: var(--dark); font-weight: 600; }
.legal-content a { color: var(--brand-ink); text-decoration: underline; }
.legal-content__notice {
  display: block;
  padding: 1.15rem 1.5rem;
  background: var(--light-bg);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--brand-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.legal-notice { font-size: 1.0625rem; }
.legal-notice .btn { margin-top: 1rem; }

/* ===========================================================
   CTA section
   =========================================================== */
.cta-section {
  background: var(--light-bg);
  padding: var(--sp-section-sm) 0;
  border-top: 1px solid var(--hairline);
}
.cta-section__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-section__title {
  font-size: clamp(1.4rem, 1.15rem + 1vw, 1.85rem);
  color: var(--dark);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}
.site-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(44px, 5vw, 72px) var(--gutter) clamp(28px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.site-footer__col { min-width: 0; }
.site-footer__brand img { height: 40px; width: auto; }
.site-footer__title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--footer-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.site-footer__links li { margin-bottom: 0.6rem; }
.site-footer__links a {
  color: var(--footer-text);
  font-size: 0.9375rem;
  transition: color 0.15s var(--ease);
}
.site-footer__links a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer__copy { font-size: 0.875rem; color: var(--footer-muted); line-height: 1.6; }
.site-footer__legal { display: flex; gap: 1.5rem; }
.site-footer__legal a { color: var(--footer-text); font-size: 0.875rem; }
.site-footer__legal a:hover { color: #fff; }

/* Focus rings must stay visible on the dark footer */
.site-footer :focus-visible { outline-color: #fff; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr 1fr; }
  .tech-features__inner { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 640px; }
}

@media (max-width: 900px) {
  .nav__menu { gap: 1rem; }
  .nav__link { font-size: 0.875rem; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    padding: 1.5rem var(--gutter) 2rem;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(51, 62, 99, 0.14);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__item { width: 100%; border-bottom: 1px solid var(--hairline); }
  .nav__link { padding: 1rem 0; font-size: 1.0625rem; }
  .nav__link::after { display: none; }
  .nav__item--has-children::after { display: none; }
  .nav__item--has-children .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0.5rem 1.25rem;
    display: none;
    min-width: 0;
  }
  .nav__item--has-children.is-open .nav__submenu { display: block; }
  .nav__submenu-link { padding: 0.75rem 0; border-radius: 0; }

  .site-header__logo img { height: 30px; }

  .hero { padding: 30px 0 50px; }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__title { max-width: none; }
  .hero__media { order: -1; }
  .hero__media img { max-width: 420px; }

  .features__grid { grid-template-columns: 1fr; }
  .split__inner { grid-template-columns: 1fr; gap: 2rem; }
  /* one consistent stack order for all three splits: text, then media */
  .split__content { order: 1; }
  .split--reverse .split__media,
  .split__media { order: 2; }
  .split__media img { max-width: 380px; }
  .split__text { max-width: none; }

  .featured-in__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-in__logo { height: 74px; }

  .plan-card { padding: 1.75rem 1.5rem; }

  .form-row { grid-template-columns: 1fr; }
  .icon-boxes { grid-template-columns: 1fr; }
  .quote-banner__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .quote-banner__text { max-width: 26ch; }

  .blog-card { grid-template-columns: 1fr; }
  .blog-card__image { max-width: none; min-height: 0; aspect-ratio: 16 / 9; }
  .category-card { grid-template-columns: 1fr; }
  .category-card__image { max-width: none; min-height: 0; aspect-ratio: 16 / 9; }

  .jobs-table__header { display: none; }
  .jobs-table__row { grid-template-columns: 1fr; gap: 0.5rem; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }

  .page-header__inner--split .page-header__title { max-width: none; }
  .page-header__media { max-width: 220px; margin-inline: auto; }

  .cta-section__inner { flex-direction: column; text-align: center; }
  .cta-section .heading-accent--bottom::after { margin-inline: auto; }
}

@media (max-width: 480px) {
  .features__grid { grid-template-columns: 1fr; }
  .featured-in__inner { grid-template-columns: minmax(0, 240px); }
  .heading-accent::after,
  .heading-accent--top::before { width: 4rem; height: 6px; }
  .quote-banner__avatar { width: 76px; height: 76px; }
  .table-wrap table { min-width: 560px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
