/*
 * #2291: Self-hosted Google Fonts — Roboto + Roboto Mono
 *
 * Previously loaded from fonts.googleapis.com which sent visitor IPs to
 * Google on every page load without consent. These are now served from
 * the site's own domain using the same variable-weight woff2 files that
 * Google Fonts CDN serves.
 *
 * Fonts: Roboto (wght 300-900), Roboto Mono (wght 400-500)
 * Subsets: latin, latin-ext
 */

/* Roboto — latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('/assets/fonts/roboto-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

/* Roboto — latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('/assets/fonts/roboto-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Roboto Mono — latin-ext */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/roboto-mono-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

/* Roboto Mono — latin */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/roboto-mono-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Platform design tokens
   Canonical source of truth for shared visual primitives.
   Mirrors docs/user-interface.md Section 7 and dashboard guardrails.
*/

:root {
  /* Brand palette */
  --navy: #050f1c;
  --navy-light: #111c26;
  --navy-mid: #1a2736;
  --navy-surface: #0c1520;
  --lime: #7acc2e;
  --lime-light: #8fdb45;
  --lime-muted: rgba(122, 204, 46, 0.1);
  --lime-glow: rgba(122, 204, 46, 0.15);
  --teal: #00d4c8;
  --teal-light: #33e0d6;
  --teal-muted: rgba(0, 212, 200, 0.08);
  --purple: #7f00ff;
  --purple-light: #b44dff;
  --purple-muted: rgba(127, 0, 255, 0.08);
  --purple-on-light: #6b14d6;
  --purple-neon: #e100ff;
  --blue: #1976d2;
  --blue-deep: #2a4091;
  --blue-sky: #01aced;
  --cyan: #00ddff;

  /* Neutral palette */
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray50: #f0f2f5;
  --gray100: #e4e7ec;
  --gray200: #c9ced6;
  --gray400: #8b95a5;

  /* Text colors */
  --text: #1a202c;
  --text-light: #4a5568;
  --text-muted: #8b95a5;
  --text-on-dark: #cbd5e0;
  --text-bright: #e2e8f0;

  /* Typography */
  --font-family-sans: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-family-mono: 'Roboto Mono', monospace;

  /* Generic layout */
  --section-pad: 32px;
  --space-section: 32px;
  --container-max: 1100px;

  /* ── Spacing Scale (SYS-02) ─────────────────────────────────
   * 3-tier padding contract — use consistently across all apps:
   *
   *   Compact  (p-3 / 12px)  — nested items, stat cards, chips,
   *                             small widgets, table cells
   *   Standard (p-4 / 16px)  — default cards, sections, form
   *                             groups, list items
   *   Spacious (p-5 / 20px)  — hero panels, featured content,
   *                             modals, page-level containers
   *
   * Section gaps:
   *   Tight    (gap-2 / 8px)  — related items within a card
   *   Normal   (gap-4 / 16px) — sibling cards, form fields
   *   Loose    (gap-6 / 24px) — page sections, major groups
   *
   * Don't use p-6 for cards (too loose) or p-2 for standalone
   * cards (too tight). Reserve p-6+ for page-level wrappers.
   * ────────────────────────────────────────────────────────── */

  /* Dashboard chassis contract (v1) */
  --dashboard-sidebar-width: 260px;
  --dashboard-max-width: 1360px;
  --dashboard-grid-columns: 12;
  --dashboard-grid-gap: 16px;
  --dashboard-container-padding: 24px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 999px;

  /* Semantic aliases for cross-app portability (legacy — prefer mode-aware tokens below) */
  --color-bg-default: var(--white);
  --color-bg-muted: var(--off-white);
  --color-bg-inverse: var(--navy);
  --color-text-default: var(--text);
  --color-text-muted: var(--text-muted);
  --color-text-inverse: var(--text-on-dark);
  --color-border-default: var(--gray100);
  --color-brand-primary: var(--lime);
  --color-brand-secondary: var(--teal);
  --color-brand-accent: var(--purple);
  --color-brand-blue-deep: var(--blue-deep);
  --color-brand-cyan: var(--cyan);
}

/* ═══════════════════════════════════════════════
   MODE-AWARE SEMANTIC TOKENS
   Default: dark mode (current platform state).
   Toggle via data-mode="light" on <html>.
   ═══════════════════════════════════════════════ */

/* ── Dark Mode (default) ── */
[data-mode='dark'] {
  --bg-default: #050f1c;
  --bg-muted: #0c1a2e;
  --bg-surface: #111c26;
  --bg-elevated: #1a2736;
  --bg-sunken: #040b14;
  --bg-inverse: #ffffff;
  --bg-overlay: rgba(0, 0, 0, 0.6);

  --text-default: #e8edf2;
  --text-secondary: #b0c1d1;
  --text-tertiary: #6b7f99;
  --text-disabled: #3d5066;
  --text-inverse: #0d1b2a;
  --text-on-brand: #050f1c;

  --brand-on-bg-lime: #8fdb45;
  --brand-on-bg-teal: #33e0d6;
  --brand-on-bg-purple: #6b14d6;
  --brand-on-bg-blue: #2196f3;

  --interactive-default: #33e0d6;
  --interactive-hover: #66e8e0;
  --interactive-active: #00d4c8;
  --interactive-focus: #33e0d6;
  --interactive-muted: rgba(0, 212, 200, 0.12);

  --cta-bg: #7acc2e;
  --cta-bg-hover: #8fdb45;
  --cta-text: #050f1c;
  --cta-secondary-bg: transparent;
  --cta-secondary-border: #7acc2e;
  --cta-secondary-text: #7acc2e;

  --border-default: #1a2736;
  --border-strong: #263a4f;
  --border-muted: #111c26;
  --border-focus: #33e0d6;
  --border-inverse: #cbd5e1;

  --surface-hover: #111c26;
  --surface-active: #1a2736;
  --surface-selected: rgba(0, 212, 200, 0.08);

  --feedback-success-text: #86efac;
  --feedback-success-bg: rgba(22, 101, 52, 0.2);
  --feedback-success-border: rgba(22, 101, 52, 0.4);
  --feedback-warning-text: #fde047;
  --feedback-warning-bg: rgba(133, 77, 14, 0.2);
  --feedback-warning-border: rgba(133, 77, 14, 0.4);
  --feedback-error-text: #fca5a5;
  --feedback-error-bg: rgba(153, 27, 27, 0.2);
  --feedback-error-border: rgba(153, 27, 27, 0.4);
  --feedback-info-text: #93c5fd;
  --feedback-info-bg: rgba(30, 64, 175, 0.2);
  --feedback-info-border: rgba(30, 64, 175, 0.4);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);

  --surface-lime: rgba(122, 204, 46, 0.08);
  --surface-teal: rgba(0, 212, 200, 0.08);
  --surface-purple: rgba(127, 0, 255, 0.1);
  --surface-blue: rgba(25, 118, 210, 0.1);
}

/* ── Light Mode ── */
[data-mode='light'] {
  --bg-default: #ffffff;
  --bg-muted: #f5f7fa;
  --bg-surface: #ffffff;
  --bg-elevated: #ffffff;
  --bg-sunken: #edf1f5;
  --bg-inverse: #050f1c;
  --bg-overlay: rgba(5, 15, 28, 0.5);

  --text-default: #0d1b2a;
  --text-secondary: #3d5066;
  --text-tertiary: #6b7f99;
  --text-disabled: #9cadc0;
  --text-inverse: #e8edf2;
  --text-on-brand: #ffffff;

  --brand-on-bg-lime: #3d7a1c;
  --brand-on-bg-teal: #0a7b74;
  --brand-on-bg-purple: #6b14d6;
  --brand-on-bg-blue: #2a4091;

  --interactive-default: #0a7b74;
  --interactive-hover: #064e49;
  --interactive-active: #064e49;
  --interactive-focus: #0a7b74;
  --interactive-muted: rgba(0, 212, 200, 0.08);

  --cta-bg: #050f1c;
  --cta-bg-hover: #1a2736;
  --cta-text: #ffffff;
  --cta-secondary-bg: transparent;
  --cta-secondary-border: #050f1c;
  --cta-secondary-text: #050f1c;

  --border-default: #e2e8f0;
  --border-strong: #cbd5e1;
  --border-muted: #f1f5f9;
  --border-focus: #0a7b74;
  --border-inverse: #263a4f;

  --surface-hover: #f5f7fa;
  --surface-active: #edf1f5;
  --surface-selected: #e8fcfa;

  --feedback-success-text: #166534;
  --feedback-success-bg: #dcfce7;
  --feedback-success-border: #86efac;
  --feedback-warning-text: #854d0e;
  --feedback-warning-bg: #fef9c3;
  --feedback-warning-border: #fde047;
  --feedback-error-text: #991b1b;
  --feedback-error-bg: #fee2e2;
  --feedback-error-border: #fca5a5;
  --feedback-info-text: #1e40af;
  --feedback-info-bg: #dbeafe;
  --feedback-info-border: #93c5fd;

  --shadow-sm: 0 1px 2px rgba(5, 15, 28, 0.05);
  --shadow-md: 0 4px 12px rgba(5, 15, 28, 0.08);
  --shadow-lg: 0 8px 24px rgba(5, 15, 28, 0.1);
  --shadow-xl: 0 16px 48px rgba(5, 15, 28, 0.12);

  --surface-lime: #f4fce9;
  --surface-teal: #e8fcfa;
  --surface-purple: #faf0ff;
  --surface-blue: #eff6ff;
}

/* Global keyboard accessibility baseline */
*:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[role='button']:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

/* Shared interaction tokens */
.pangea-nav-hover {
  border: 1px solid transparent;
  transition:
    color 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

.pangea-nav-hover:hover,
.pangea-nav-hover:focus-visible {
  color: #8fdb45;
  border-color: rgba(122, 204, 46, 0.38);
  background-color: rgba(122, 204, 46, 0.08);
}

.pangea-purple-accent {
  color: #cc77ff;
  border-color: rgba(127, 0, 255, 0.35);
  background-color: rgba(127, 0, 255, 0.15);
}

.pangea-purple-accent-hover {
  transition:
    color 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

.pangea-purple-accent-hover:hover,
.pangea-purple-accent-hover:focus-visible {
  color: #ebc4ff;
  border-color: rgba(127, 0, 255, 0.55);
  background-color: rgba(127, 0, 255, 0.25);
}

/* Dashboard chassis utilities */
.dashboard-shell-contract {
  width: 100%;
  max-width: var(--dashboard-max-width);
  margin: 0 auto;
  padding: var(--dashboard-container-padding);
}

.dashboard-grid-contract {
  display: grid;
  grid-template-columns: repeat(var(--dashboard-grid-columns), minmax(0, 1fr));
  gap: var(--dashboard-grid-gap);
}

.dashboard-sidebar-contract {
  width: var(--dashboard-sidebar-width);
  min-width: var(--dashboard-sidebar-width);
  max-width: var(--dashboard-sidebar-width);
}

.dashboard-card-scroll {
  max-height: 480px;
  overflow: auto;
}

/* ============================================
   PANGEA RESEARCH — Original Design System
   Roboto / Navy / Lime / Teal / Purple
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
/* #4157: Respect prefers-reduced-motion — disable smooth scroll for users
   who have requested reduced motion in their OS accessibility settings. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: var(--font-family-sans, 'Roboto', sans-serif);
  color: var(--color-text-default, var(--text));
  background: var(--color-bg-default, var(--white));
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  padding: var(--section-pad) 0;
}
.section-sm {
  padding: 20px 0;
}
.section--dark {
  background: var(--navy);
  color: var(--text-bright);
}
.section--light {
  background: var(--off-white);
}
.section--navy-gradient {
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--text-bright);
}

.label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.label-lime,
.label--lime {
  color: var(--purple-light);
}
.label-teal,
.label--teal {
  color: var(--teal);
}
.label--purple {
  color: var(--purple-light);
}
.label--muted {
  color: var(--gray400);
}
.section--dark .label--lime {
  color: var(--lime);
}

.heading {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.heading--xl {
  font-size: clamp(32px, 5vw, 48px);
}
.heading--lg {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}
.heading--md {
  font-size: clamp(22px, 3vw, 32px);
}
.heading--sm {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  margin-bottom: 10px;
}
.heading--centered {
  text-align: center;
  margin-bottom: 2rem;
}
.heading-navy,
.heading--navy {
  color: var(--navy);
}
.heading-white,
.heading--white {
  color: #fff;
}

.body-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-light);
  max-width: none;
  margin-bottom: 14px;
  text-align: justify;
}
.body-text--narrow {
  max-width: 640px;
}
.body-text--on-dark {
  color: var(--text-on-dark);
}
.body-text--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.accent-line {
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--teal));
  border-radius: 2px;
  margin-bottom: 18px;
}
.accent-line--lime {
  background: var(--lime);
}
.accent-line--teal {
  background: var(--teal);
}
.accent-line--purple {
  background: var(--purple-light);
}

.btn {
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary,
.btn--primary {
  background: linear-gradient(135deg, var(--lime), #6abf22);
  color: var(--navy);
}
.btn-primary:hover,
.btn--primary:hover {
  background: linear-gradient(135deg, var(--lime-light), var(--lime));
  box-shadow: 0 4px 16px rgba(122, 204, 46, 0.3);
  transform: translateY(-1px);
}
.btn-outline,
.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid rgba(0, 212, 200, 0.35);
}
.btn-outline:hover,
.btn--outline:hover {
  border-color: var(--teal);
  background: rgba(0, 212, 200, 0.08);
}
.btn--outline-light {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid rgba(0, 212, 200, 0.35);
}
.btn--outline-light:hover {
  border-color: var(--teal);
  background: var(--teal-muted);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray200);
}
.btn--outline-navy:hover {
  border-color: var(--navy);
  background: rgba(13, 27, 42, 0.04);
}
.btn--ghost {
  background: transparent;
  color: var(--text-light);
  padding: 8px 0;
  border-radius: 0;
}
.btn--ghost:hover {
  color: var(--lime);
}
.btn-arrow::after {
  content: '→';
  transition: transform 0.2s ease;
}
.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #050f1c;
  border-bottom: none;
  padding: 12px 0;
  transition: all 0.3s;
}
.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00dfd6 0%, #7acc2e 38%, #8a63d9 72%, #00dfd6 100%);
  box-shadow: 0 0 10px rgba(0, 212, 200, 0.22);
}
.nav__inner,
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.nav__brand,
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-globe {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-globe::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  position: absolute;
  top: 5px;
  right: 6px;
  box-shadow: 0 0 6px var(--lime);
}
.nav-globe-inner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 212, 200, 0.5);
}
.nav-brand {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__links,
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  flex-wrap: nowrap;
}
.nav__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
.nav__link,
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.55);
  cursor: pointer;
  transition: color 0.2s;
  padding-bottom: 3px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.nav__link:hover,
.nav-link:hover {
  color: #fff;
}
.nav__link--active,
.nav-link.active {
  color: var(--teal);
}
.nav__link--active::after,
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  border-radius: 1px;
}
.nav__link--cta {
  color: var(--navy) !important;
  background: var(--lime);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 4px;
  margin-left: 8px;
}
.nav__link--cta:hover {
  background: var(--lime-light);
}
.nav__link--cta::after {
  display: none;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.nav__toggle[aria-expanded='true'] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded='true'] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1320px) {
  .nav-brand {
    font-size: 14px;
  }
  .nav__links,
  .nav-links {
    gap: 20px;
  }
  .nav__link,
  .nav-link {
    font-size: 11.5px;
    letter-spacing: 0.05em;
  }
  .nav__link--cta {
    display: none;
  }
}
@media (max-width: 1024px) {
  .nav__toggle {
    display: flex;
  }
  .nav__actions {
    display: none;
  }
  .nav__links,
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 12px 18px 18px;
    border-bottom: 1px solid rgba(0, 212, 200, 0.07);
    gap: 4px;
  }
  .nav__links--open,
  .nav-links.open {
    display: flex;
    animation: navSlideDown 0.25s ease;
  }
  /* #4141: Increase vertical padding so mobile nav links meet the 44px
     minimum touch target size. Only applies at ≤1024px (mobile nav). */
  .nav__link,
  .nav-link {
    padding: 12px 12px;
    width: 100%;
  }
  .nav__links .nav__link--cta,
  .nav-links .nav__link--cta {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }
}
@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO */
.hero {
  background: var(--navy);
  min-height: 56vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 66px 0 30px;
}
.hero--compact {
  min-height: 44vh;
}
.hero-circles {
  position: absolute;
  top: clamp(68px, 13vh, 104px);
  right: 4%;
}
.hero-c1 {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 200, 0.06);
  position: absolute;
  top: 0;
  right: 0;
}
.hero-c2 {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(91, 45, 142, 0.07);
  position: absolute;
  top: 50px;
  right: 40px;
}
.hero-c3 {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(122, 204, 46, 0.05);
  position: absolute;
  top: 110px;
  right: 90px;
}
.hero-dot1 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  position: absolute;
  top: 120px;
  right: 0;
  animation: heroPulse 3s ease infinite;
}
.hero-dot2 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  position: absolute;
  top: 0;
  right: 180px;
  animation: heroPulse 3s ease 1s infinite;
}
.hero-dot3 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  position: absolute;
  top: 260px;
  right: 120px;
  animation: heroPulse 3s ease 2s infinite;
}
.hero-dot6 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 9px var(--teal);
  position: absolute;
  top: 42px;
  right: 56px;
  animation: heroPulse 3s ease 1.7s infinite;
}
.hero-circles--left {
  left: 4%;
  right: auto;
  top: clamp(68px, 13vh, 104px);
}
.hero-c1--left {
  width: 360px;
  height: 360px;
  left: 0;
  right: auto;
  border-color: rgba(0, 212, 200, 0.1);
}
.hero-c2--left {
  width: 260px;
  height: 260px;
  left: 40px;
  right: auto;
  top: 50px;
  border-color: rgba(91, 45, 142, 0.1);
}
.hero-c3--left {
  width: 140px;
  height: 140px;
  left: 90px;
  right: auto;
  top: 110px;
  border-color: rgba(122, 204, 46, 0.1);
}
.hero-dot4 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  position: absolute;
  top: 58px;
  left: 52px;
  animation: heroPulse 3s ease 0.5s infinite;
}
.hero-dot5 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  position: absolute;
  top: 212px;
  left: 236px;
  animation: heroPulse 3s ease 1.4s infinite;
}
.hero-dot7 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  position: absolute;
  top: 308px;
  left: 166px;
  animation: heroPulse 3s ease 2.1s infinite;
}
.hero-dot8 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  position: absolute;
  top: 24px;
  left: 230px;
  animation: heroPulse 3s ease 1.1s infinite;
}
.hero-dot9 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 9px var(--lime);
  position: absolute;
  top: 266px;
  left: 312px;
  animation: heroPulse 3s ease 2.5s infinite;
}
@keyframes heroPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero__content,
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}
.hero-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero h1,
.hero__headline {
  font-size: clamp(36px, 6vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--teal), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subheadline,
.hero p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-on-dark);
  max-width: 680px;
  margin: 0 auto 16px;
  text-align: justify;
}
.hero__ctas,
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* PAGE HEADER */
.page-header {
  padding: clamp(62px, 8vw, 84px) 0 clamp(14px, 2.5vw, 22px);
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header__globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 40vw, 480px);
  height: auto;
  opacity: 0.045;
  pointer-events: none;
}
.page-header__circles {
  position: absolute;
  top: 50%;
  right: 2%;
  width: 260px;
  height: 260px;
  transform: translateY(-50%);
  pointer-events: none;
}
.page-header__circles--left {
  position: absolute;
  top: 50%;
  left: 2%;
  width: 230px;
  height: 230px;
  transform: translateY(-50%);
  pointer-events: none;
}
.page-header__c1 {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 200, 0.06);
  position: absolute;
  top: 0;
  right: 0;
}
.page-header__c2 {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(91, 45, 142, 0.07);
  position: absolute;
  top: 40px;
  right: 30px;
}
.page-header__c3 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(122, 204, 46, 0.06);
  position: absolute;
  top: 78px;
  right: 64px;
}
.page-header__dot1 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  position: absolute;
  top: 88px;
  right: 8px;
  animation: heroPulse 3s ease infinite;
}
.page-header__dot2 {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  position: absolute;
  top: 8px;
  right: 118px;
  animation: heroPulse 3s ease 1s infinite;
}
.page-header__dot3 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  position: absolute;
  top: 186px;
  right: 86px;
  animation: heroPulse 3s ease 2s infinite;
}
.page-header__c1--left {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 200, 0.06);
  position: absolute;
  top: 8px;
  left: 0;
}
.page-header__c2--left {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(91, 45, 142, 0.07);
  position: absolute;
  top: 44px;
  left: 22px;
}
.page-header__dot4 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  position: absolute;
  top: 70px;
  left: 8px;
  animation: heroPulse 3s ease 0.5s infinite;
}
.page-header__dot5 {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  position: absolute;
  top: 156px;
  left: 66px;
  animation: heroPulse 3s ease 1.5s infinite;
}
.page-header__dot6 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  position: absolute;
  top: 30px;
  right: 64px;
  animation: heroPulse 3s ease 1.1s infinite;
}
.page-header__dot7 {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  position: absolute;
  top: 186px;
  left: 128px;
  animation: heroPulse 3s ease 1.9s infinite;
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header .label {
  font-size: 13px;
}
.page-header__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-header__subtitle {
  font-size: 17px;
  color: var(--text-on-dark);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .page-header__circles,
  .page-header__circles--left {
    display: none;
  }
}
/* Compact page header for sub-pages */
.page-header--compact {
  padding: clamp(28px, 3.4vw, 40px) 0 clamp(10px, 1.8vw, 16px);
}
.page-header--compact .page-header__title {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 10px;
}
.page-header--compact .page-header__subtitle {
  font-size: 15.5px;
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray100);
  border-radius: 10px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.service-card--lime::before {
  background: var(--lime);
}
.service-card--teal::before {
  background: var(--teal);
}
.service-card--purple::before {
  background: var(--purple-light);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.08);
  border-color: var(--gray200);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.service-card__icon--lime {
  background: var(--lime-muted);
  color: var(--lime);
}
.service-card__icon--teal {
  background: var(--teal-muted);
  color: var(--teal);
}
.service-card__icon--purple {
  background: var(--purple-muted);
  color: var(--purple-light);
}
.service-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-light);
}

/* IFP CARDS */
.ifp-articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .ifp-articles {
    grid-template-columns: 1fr;
  }
}
.ifp-card {
  background: linear-gradient(160deg, rgba(26, 45, 72, 0.95) 0%, rgba(20, 39, 63, 0.96) 100%);
  border: 1px solid rgba(0, 212, 200, 0.14);
  border-radius: 8px;
  padding: 18px 58px 18px 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.ifp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}
.ifp-card::after {
  content: '→';
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(0, 212, 200, 0.12);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}
.home-split__cards .ifp-card:nth-child(3n + 2)::before {
  background: var(--purple-light);
}
.home-split__cards .ifp-card:nth-child(3n)::before {
  background: var(--lime);
}
.ifp-card:hover {
  border-color: rgba(0, 212, 200, 0.32);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.ifp-card:hover::after {
  transform: translateX(2px);
  background: rgba(122, 204, 46, 0.18);
  color: var(--lime);
}
.ifp-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.ifp-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}
.ifp-card__summary {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-on-dark);
}

/* FOUNDER */
.founder-section {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .founder-section {
    grid-template-columns: 1fr;
  }
}
.founder-image {
  width: 100%;
  background: var(--gray50);
  border-radius: 8px;
  border: 1px solid var(--gray100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray400);
  font-size: 13px;
  overflow: hidden;
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* SECTORS */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.sector-item {
  background: var(--off-white);
  border: 1px solid var(--gray100);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.25s ease;
}
.sector-item:hover {
  border-color: var(--teal);
}
.sector-item {
  position: relative;
  overflow: hidden;
}
.section--dark .sector-item,
.section--navy-gradient .sector-item {
  background: var(--navy-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-bright);
}
.section--dark .sector-item::before,
.section--navy-gradient .sector-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}
.section--dark .sector-item:nth-child(2)::before,
.section--navy-gradient .sector-item:nth-child(2)::before {
  background: var(--purple-light);
}
.section--dark .sector-item:nth-child(3)::before,
.section--navy-gradient .sector-item:nth-child(3)::before {
  background: var(--teal);
}
.section--dark .sector-item:nth-child(4)::before,
.section--navy-gradient .sector-item:nth-child(4)::before {
  background: var(--purple-light);
}
.section--dark .sector-item:nth-child(5)::before,
.section--navy-gradient .sector-item:nth-child(5)::before {
  background: var(--teal);
}
.section--dark .sector-item:hover,
.section--navy-gradient .sector-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.sector-item--link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding-right: 10px;
}
.sector-item__arrow {
  opacity: 0.85;
  transform: translateX(0);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal);
}
.sector-item--link:hover .sector-item__arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* CTA BAR — compact inline layout */
.cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-bar__text {
  flex: 1;
  min-width: 240px;
}
.cta-bar__text h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.cta-bar__text p {
  font-size: 14.5px;
  color: var(--text-on-dark);
  margin: 0;
  line-height: 1.6;
}
.cta-bar__action {
  flex-shrink: 0;
}
.cta-bar--light .cta-bar__text h2 {
  color: var(--navy);
}
.cta-bar--light .cta-bar__text p {
  color: var(--text-light);
}
@media (max-width: 600px) {
  .cta-bar {
    flex-direction: column;
    text-align: center;
  }
  .cta-bar__action {
    width: 100%;
  }
  .cta-bar__action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* LAB */
.lab-section {
  text-align: center;
  background: var(--navy);
  color: var(--text-bright);
}
.lab-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-muted);
  color: var(--purple-light);
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.lab-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ARTICLE CARDS */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 600px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}
.article-card {
  background: #fff;
  border: 1px solid var(--gray100);
  border-radius: 8px;
  padding: 20px 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  box-shadow: 0 2px 8px rgba(13, 27, 42, 0.04);
}
.article-card:hover {
  border-color: var(--gray200);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.08);
}
.article-card__date {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.article-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.article-card__summary {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
}
.article-card__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.article-card:hover .article-card__link {
  gap: 10px;
}
.article-card--on-dark {
  background: var(--navy-surface);
  border: 1.5px solid var(--teal);
}
.article-card--on-dark:nth-child(3n + 2) {
  border-color: var(--purple-light);
}
.article-card--on-dark:nth-child(3n) {
  border-color: var(--lime);
}
.article-card--on-dark:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.article-card--on-dark .article-card__date {
  color: var(--text-on-dark);
}
.article-card--on-dark .article-card__title {
  color: #fff;
}
.article-card--on-dark .article-card__summary {
  color: var(--text-on-dark);
}
.article-card:not(.article-card--on-dark) .article-card__link {
  color: var(--purple-light);
}
.research-articles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px) {
  .research-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .research-articles-grid {
    grid-template-columns: 1fr;
  }
}
.research-articles-grid .article-card--compact {
  padding: 14px 14px;
}
.research-articles-grid .article-card--compact .article-card__summary {
  -webkit-line-clamp: 3;
}

/* FORM */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-grid--tight {
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid--tight .form-row {
  gap: 14px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray100);
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease;
}
/* #3719: Suppress browser outline only for pointer/touch focus; keyboard
   focus (:focus-visible) falls through to the global outline rule. */
.form-input:focus:not(:focus-visible) {
  outline: none;
}
.form-input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-muted);
}
textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

/* SERVICE BLOCK — card layout for services page */
.service-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* SERVICE CHECKLIST — clean deliverables list */
.service-checklist {
  list-style: none;
  margin-top: 6px;
  padding: 0;
}
.service-checklist li {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-light);
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--gray50);
}
.service-checklist li:last-child {
  border-bottom: none;
}
.service-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--lime);
  font-weight: 700;
  font-size: 14px;
}
.service-checklist--dark li {
  color: var(--text-on-dark);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.service-checklist--dark li::before {
  color: var(--teal);
}
.service-block__deliverables {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-block__checklist {
  min-width: 0;
}
.service-block__deliverables--with-example {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 250px);
  gap: 14px;
  align-items: start;
}
.service-example-card {
  border: 1.5px solid var(--teal);
  border-radius: 10px;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 1px 4px rgba(13, 27, 42, 0.03);
}
.service-example-card__label {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.service-example-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}
.service-example-card__summary {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-light);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-example-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.service-example-card__cta:hover {
  color: var(--navy);
}
.service-example-card--dark {
  background: linear-gradient(180deg, #132543 0%, #10203a 100%);
  border-color: var(--teal);
  box-shadow: none;
}
.service-example-card--dark .service-example-card__label {
  color: var(--text-on-dark);
}
.service-example-card--dark .service-example-card__title {
  color: #fff;
}
.service-example-card--dark .service-example-card__summary {
  color: var(--text-on-dark);
}
.service-example-card--dark .service-example-card__cta {
  color: var(--teal);
}
.service-example-card--dark .service-example-card__cta:hover {
  color: #fff;
}

/* SERVICES PAGE — reduce artificial whitespace and keep deliverables compact */
.services-section .container {
  max-width: 1220px;
}
.services-section .service-block {
  grid-template-columns: minmax(0, 1fr) minmax(560px, 1.05fr);
  gap: 16px;
}
.services-section .service-block__deliverables {
  gap: 8px;
  min-height: 0;
}
.services-section .service-block__deliverables--with-example {
  grid-template-columns: minmax(320px, 1fr) minmax(250px, 300px);
  gap: 10px;
}
.services-section .service-block__checklist,
.services-section .service-checklist {
  height: auto;
  min-height: 0;
}
.services-section .service-checklist {
  margin-top: 2px;
}
.services-section .service-checklist li {
  padding: 4px 0 4px 22px;
  line-height: 1.35;
}
.services-section .service-checklist li::before {
  top: 4px;
}
.services-section .body-text {
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: left;
}
.services-section .label {
  margin-bottom: 8px;
}
@media (min-width: 1120px) {
  .services-section .service-checklist li {
    white-space: nowrap;
  }
}
@media (max-width: 1180px) {
  .services-section .container {
    max-width: 1100px;
  }
  .services-section .service-block {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
  }
  .services-section .service-block__deliverables--with-example {
    grid-template-columns: minmax(280px, 1fr) minmax(230px, 280px);
  }
}
@media (max-width: 900px) {
  .services-section .service-block {
    grid-template-columns: 1fr;
  }
  .services-section .service-block__deliverables--with-example {
    grid-template-columns: 1fr;
  }
  .services-section .service-checklist li {
    white-space: normal;
  }
}

/* ABOUT VALUES */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}
.about-value {
  padding: 24px 20px;
  background: var(--navy-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}
.about-value__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.about-value__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-on-dark);
}

/* HOMEPAGE LAYOUTS */
.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.home-split__text {
  min-width: 0;
}
.home-split__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-split__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .home-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.lab-card {
  background: var(--navy);
  border: 1px solid var(--navy-mid);
  border-radius: 10px;
  padding: 22px 18px;
}

.research-divider {
  height: 1px;
  background: var(--gray100);
  margin: 28px 0;
}

.article-card--compact {
  padding: 16px 18px;
}
.article-card--compact .article-card__date {
  margin-bottom: 6px;
  font-size: 11px;
}
.article-card--compact .article-card__title {
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 1.3;
}
.article-card--compact .article-card__summary {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card--compact .article-card__link {
  font-size: 12px;
}

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer__inner,
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__brand,
.footer-brand {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer__copy,
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}
.footer__links,
.footer-links {
  display: flex;
  gap: 18px;
}
.footer__link,
.footer-link {
  font-size: 13.5px;
  color: var(--text-on-dark);
  transition: color 0.2s;
  text-decoration: none;
}
.footer__link:hover,
.footer-link:hover {
  color: #fff;
}

/* UTILITIES */
.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.mt-5 {
  margin-top: 48px;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-3 {
  margin-bottom: 24px;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.6s ease both;
}
.fade-d1 {
  animation-delay: 0.1s;
}
.fade-d2 {
  animation-delay: 0.2s;
}
.fade-d3 {
  animation-delay: 0.3s;
}

.gradient-divider {
  height: 3px;
  background: linear-gradient(90deg, #00dfd6 0%, #7acc2e 38%, #8a63d9 72%, #00dfd6 100%);
  margin: 0;
  box-shadow: 0 0 10px rgba(0, 212, 200, 0.22);
}

@media (max-width: 1180px) {
  .service-block__deliverables--with-example {
    grid-template-columns: 1fr;
  }
  .service-example-card {
    max-width: 420px;
  }
}
@media (max-width: 1320px) {
  .hero-circles {
    right: 1.5%;
  }
  .hero-circles--left {
    left: 1.5%;
  }
  .hero-c1,
  .hero-c1--left {
    width: 320px;
    height: 320px;
  }
  .hero-c2,
  .hero-c2--left {
    width: 230px;
    height: 230px;
    top: 46px;
  }
  .hero-c3,
  .hero-c3--left {
    width: 130px;
    height: 130px;
    top: 102px;
  }
  .hero-c2 {
    right: 36px;
  }
  .hero-c3 {
    right: 82px;
  }
  .hero-c2--left {
    left: 36px;
  }
  .hero-c3--left {
    left: 82px;
  }
}
@media (max-width: 768px) {
  .hero-circles {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 72px 0 34px;
  }
  .hero--compact {
    min-height: auto;
  }
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--gray100);
  border-radius: 10px;
  padding: 22px 20px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}
.testimonial-card:nth-child(2)::before {
  background: var(--purple-light);
}
.testimonial-card:nth-child(3)::before {
  background: var(--lime);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.06);
  border-color: var(--gray200);
}
.testimonial-card__quote {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 14px;
  flex: 1;
}
.testimonial-card__attribution {
  border-top: 1px solid var(--gray100);
  padding-top: 10px;
}
.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-card__org {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* CASE STUDIES */
.case-study-block {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 768px) {
  .case-study-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.case-study-block__sidebar {
  position: sticky;
  top: 80px;
}
.case-study-sector {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.case-study-sector--on-dark {
  color: var(--text-on-dark);
}
.case-study-section {
  margin-top: 16px;
}
.case-study-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}
.faq-item {
  border: 1px solid var(--gray100);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}
.faq-item:hover {
  border-color: var(--gray200);
}
.faq-item[open] {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(0, 212, 200, 0.06);
}
.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::marker {
  display: none;
  content: '';
}
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 18px 16px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-light);
}
.faq-answer p {
  margin: 0;
}
.faq-category {
  margin-bottom: 0;
}
.faq-page {
  background: linear-gradient(180deg, #f8fafd 0%, #f6f8fc 100%);
}
.faq-page .faq-category {
  border: 1px solid var(--gray100);
  border-radius: 12px;
  padding: 16px 16px 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 3px 14px rgba(13, 27, 42, 0.04);
}
.faq-page .faq-category:nth-child(even) {
  background: linear-gradient(180deg, #f9fbff 0%, #f3f7ff 100%);
}
.faq-page .faq-list {
  margin-top: 10px;
}
.faq-page .faq-item {
  background: #fff;
}

/* SUBSCRIBE SECTION */
.subscribe-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray100);
  border-bottom: 1px solid var(--gray100);
}
.subscribe-form {
  display: flex;
  justify-content: center;
}

/* STATS SHOWCASE */
.stats-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .stats-showcase {
    grid-template-columns: 1fr;
  }
}
.stats-showcase__item {
  text-align: center;
  padding: 20px 14px;
  background: var(--off-white);
  border: 1px solid var(--gray100);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.stats-showcase__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.06);
  border-color: var(--gray200);
}
.stats-showcase__value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stats-showcase__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stats-showcase__item--link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.stats-showcase__item--link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  opacity: 0.95;
}
.stats-showcase__item--link:nth-child(2)::before {
  background: var(--purple-light);
}
.stats-showcase__item--link:nth-child(3)::before {
  background: var(--teal);
}
.stats-showcase__item--link:nth-child(4)::before {
  background: var(--purple-light);
}
.stats-showcase__item--link::after {
  content: '→';
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(0, 212, 200, 0.12);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}
.stats-showcase__item--link:hover::after {
  transform: translateX(2px);
  background: rgba(122, 204, 46, 0.16);
  color: var(--lime);
}

/* FOOTER LINKS (horizontal row) */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

/* FOOTER LEGAL */
.footer-legal {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.footer-legal__link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal__link:hover {
  color: var(--teal);
}
.footer-legal__button {
  font-size: 12px;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-legal__button:hover {
  color: var(--teal);
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: 1.5px solid rgba(0, 212, 200, 0.2);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(13, 27, 42, 0.2);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--navy-light);
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(0, 212, 200, 0.15);
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* SERVICE CARD LINK */
a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  padding: 8px 16px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  border-radius: 0 0 4px 4px;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* EVENTS CALENDAR & REGISTRATION */
.events-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 768px) {
  .events-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Calendar widget */
.events-calendar {
  background: var(--navy-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px 14px 12px;
  position: sticky;
  top: 80px;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cal-month {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.cal-nav {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
  width: 30px;
  height: 30px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cal-nav:hover {
  border-color: var(--teal);
  color: #fff;
  background: rgba(0, 212, 200, 0.08);
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  grid-template-rows: repeat(5, 1fr);
  height: 196px;
}
.cal-day {
  text-align: center;
  font-size: 13px;
  color: var(--text-on-dark);
  padding: 4px 2px;
  border-radius: 6px;
  position: relative;
  cursor: default;
  min-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
/* #4475: On touch devices, increase calendar cells and nav buttons to meet
   the 44px minimum touch target size. Desktop layout is unchanged. */
@media (hover: none) and (pointer: coarse) {
  .cal-grid {
    height: 228px;
  }
  .cal-day {
    min-height: 44px;
  }
}
.cal-day--blank {
  visibility: hidden;
}
.cal-day--today {
  background: rgba(0, 212, 200, 0.12);
  color: #fff;
  font-weight: 700;
}
.cal-day--has-event {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
}
.cal-day--has-event:hover {
  background: rgba(122, 204, 46, 0.1);
}
.cal-dots {
  display: flex;
  gap: 3px;
  justify-content: center;
}
.cal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}
.cal-dot--lime {
  background: var(--lime);
  box-shadow: 0 0 6px rgba(122, 204, 46, 0.4);
}
.cal-dot--teal {
  background: var(--teal);
  box-shadow: 0 0 6px rgba(0, 212, 200, 0.4);
}
.cal-dot--purple {
  background: var(--purple-light);
  box-shadow: 0 0 6px rgba(91, 45, 142, 0.4);
}
.cal-legend {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Event type badges (shared between grid + detail) */
.event-card__type {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.event-card__type--lime {
  background: var(--lime-muted);
  color: var(--lime);
}
.event-card__type--teal {
  background: var(--teal-muted);
  color: var(--teal);
}
.event-card__type--purple {
  background: var(--purple-muted);
  color: var(--purple-light);
}

/* Compact 2-column event grid */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}
.events-grid::-webkit-scrollbar {
  width: 4px;
}
.events-grid::-webkit-scrollbar-track {
  background: transparent;
}
.events-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
    max-height: none;
  }
}

/* Mini event card */
.event-mini {
  background: var(--navy-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.event-mini:hover {
  border-color: rgba(0, 212, 200, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.event-mini__thumb {
  width: 100%;
  height: 80px;
  overflow: hidden;
}
.event-mini__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-mini__body {
  padding: 10px 12px 12px;
}
.event-mini__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.event-mini__title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-mini__meta {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
.event-mini__price {
  font-size: 10px;
  font-weight: 700;
  color: var(--lime);
  background: var(--lime-muted);
  padding: 2px 7px;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.event-mini__price--free {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
}

/* Event detail view (replaces grid) */
.event-detail__image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
.event-detail__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 4px;
  line-height: 1.3;
}
.event-detail-card__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-on-dark);
  margin: 12px 0;
}
.event-detail-card__info {
  display: grid;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-on-dark);
  margin-bottom: 14px;
}
.event-detail-card__info strong {
  color: #fff;
  font-weight: 600;
}

/* Registration form */
.event-reg-btn {
  margin-top: 0;
}
.event-reg-card {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 16px;
  margin-top: 12px;
}
.event-reg-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.event-reg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .event-reg-row {
    grid-template-columns: 1fr;
  }
}
.event-reg-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 4px;
}
.event-reg-input {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s;
}
/* #3719: Same pattern — suppress outline for mouse/touch, allow for keyboard. */
.event-reg-input:focus:not(:focus-visible) {
  outline: none;
}
.event-reg-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 212, 200, 0.2);
}
.event-reg-input::-moz-placeholder {
  color: var(--text-muted);
}
.event-reg-input::placeholder {
  color: var(--text-muted);
}
.event-reg-success {
  background: rgba(122, 204, 46, 0.1);
  border: 1px solid rgba(122, 204, 46, 0.3);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--lime);
}
.event-reg-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  color: #fca5a5;
  margin-bottom: 12px;
}
.event-reg-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23CBD5E0' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 32px;
  cursor: pointer;
}
.event-reg-select option {
  background: #111c26;
  color: #fff;
}
.event-reg-textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.5;
}

/* Back button & empty state */
.events-back-btn {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.events-back-btn:hover {
  color: var(--lime);
}
.events-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-on-dark);
}
.events-empty__icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.events-empty p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  padding: 12px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray100);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  flex-wrap: wrap;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  margin: 0 8px;
  color: var(--gray200);
  font-weight: 300;
}
.breadcrumb-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-item a:hover {
  color: var(--teal);
}
.breadcrumb-item span[aria-current] {
  color: var(--navy);
  font-weight: 500;
}

/* BUTTON SPINNER (loading state) */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(13, 27, 42, 0.2);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
  vertical-align: -2px;
}
@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}

/* FORM VALIDATION */
.form-required {
  color: var(--teal);
  font-weight: 700;
  margin-left: 3px;
}

/* FOCUS VISIBLE (keyboard accessibility) */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* SCREEN READER ONLY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* SEARCH HIGHLIGHT */
mark {
  background: var(--lime-muted);
  color: inherit;
  padding: 1px 2px;
  border-radius: 2px;
}

/* COOKIE CONSENT BANNER */
/* #3868: padding-bottom accounts for the home indicator on notch devices
   (iPhone X+) when viewport-fit=cover is set. env() gracefully returns 0
   on devices without a safe area. */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 1px solid var(--navy-mid);
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}
.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-on-dark);
}
.cookie-banner__text a {
  color: var(--teal);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 16, 29, 0.72);
  /* #4468: -webkit- prefix required for Safari/iOS backdrop-filter support.
     autoprefixer: ignore next — prevents autoprefixer stripping this prefix. */
  /* autoprefixer: ignore next */
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.cookie-modal[hidden] {
  display: none;
}
.cookie-modal__panel {
  width: min(620px, 100%);
  max-height: min(88vh, 720px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--gray100);
  border-radius: 12px;
  box-shadow: 0 18px 56px rgba(13, 27, 42, 0.3);
}
.cookie-modal__head {
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--gray100);
}
.cookie-modal__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.cookie-modal__desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}
.cookie-modal__body {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-pref {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--gray100);
  border-radius: 10px;
  background: var(--off-white);
}
.cookie-pref__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.cookie-pref__desc {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
}
.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  cursor: pointer;
}
.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch__track {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--gray200);
  transition: background 0.2s;
}
.cookie-switch__knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.cookie-switch input:checked ~ .cookie-switch__track {
  background: var(--teal);
}
.cookie-switch input:checked ~ .cookie-switch__knob {
  transform: translateX(20px);
}
.cookie-switch input:focus-visible ~ .cookie-switch__track {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.cookie-switch--locked {
  opacity: 0.7;
  cursor: default;
}
.cookie-switch--locked .cookie-switch__track {
  background: var(--teal);
}
.cookie-switch--locked .cookie-switch__knob {
  transform: translateX(20px);
}
.cookie-switch--locked.cookie-switch--disabled {
  opacity: 0.4;
}
.cookie-switch--locked.cookie-switch--disabled .cookie-switch__track {
  background: var(--gray200);
}
.cookie-switch--locked.cookie-switch--disabled .cookie-switch__knob {
  transform: none;
}
.cookie-switch--locked.cookie-switch--disabled .cookie-switch__label {
  color: var(--text-light);
}
.cookie-switch__label {
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
  white-space: nowrap;
}
.cookie-modal__actions {
  padding: 12px 20px 18px;
  border-top: 1px solid var(--gray100);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-modal__actions .btn {
  padding: 9px 14px;
  font-size: 12px;
}
.cookie-policy-actions {
  margin: 18px 0 6px;
  display: flex;
  justify-content: flex-start;
}

/* Small button variant */
.btn--sm {
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.btn--outline-light {
  border: 1px solid var(--gray400);
  color: var(--text-on-dark);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.btn--outline-light:hover {
  border-color: var(--white);
  color: var(--white);
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-modal__panel {
    max-height: 92vh;
  }
  .cookie-modal__actions {
    justify-content: center;
  }
}

/* CSP-safe utility and page classes */
.container--narrow-820 {
  max-width: 820px;
}
.container--narrow-860 {
  max-width: 860px;
}
.container--narrow-780 {
  max-width: 780px;
}
.no-scroll {
  overflow: hidden;
}
.is-hidden {
  display: none !important;
}
.visually-hidden-field {
  display: none;
}
.form-input--invalid {
  border-color: #ef4444 !important;
}
.contact-consent-label--invalid {
  color: #991b1b;
}
.contact-consent-label--invalid a {
  color: #b91c1c;
}
.contact-form .form-input:invalid {
  box-shadow: none;
}
.contact-form:not(.contact-form--submitted) .form-input:invalid {
  border-color: var(--gray100);
}
.contact-form.contact-form--submitted .form-input:invalid {
  border-color: #ef4444;
}
.nav-search-icon {
  vertical-align: -2px;
}

.about-values--tight {
  margin-top: 24px;
}
.about-value--light {
  background: var(--off-white);
  border: 1px solid var(--gray100);
}
.about-value__title--navy {
  color: var(--navy);
}
.about-value__text--light {
  color: var(--text-light);
}
.founder-image--on-dark {
  border-color: rgba(255, 255, 255, 0.08);
}
.founder-bio {
  font-size: 14.5px;
}

.search-hero-input-wrap {
  max-width: 520px;
  margin: 20px auto 0;
}
.search-hero-input {
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 8px;
  border: 2px solid var(--gray100);
  width: 100%;
  background: var(--white);
}
.search-results-empty {
  color: var(--text-muted);
  font-style: italic;
}
.search-results-count {
  margin-bottom: 18px;
}

.contact-form-alert {
  border-radius: 8px;
  text-align: center;
}
.contact-form-alert--payment {
  max-width: 780px;
  margin: 1.5rem auto;
}
.contact-form-alert--success {
  background: var(--lime-muted);
  border: 1px solid var(--lime);
  padding: 18px;
  margin-bottom: 22px;
}
.contact-form-alert--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  padding: 16px;
  margin-bottom: 18px;
}
.contact-form-alert__text {
  margin: 0;
}
.contact-form-alert__text--success {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.contact-form-alert__text--error {
  font-size: 14px;
  font-weight: 500;
  color: #991b1b;
}
.contact-submit-btn {
  width: 100%;
  padding: 12px 22px;
  justify-content: center;
}
.contact-form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.6;
}
.contact-consent-group {
  margin-top: 8px;
}
.contact-turnstile-wrap {
  margin: 10px 0 4px;
}
.contact-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-consent-label input {
  margin-top: 3px;
}
.contact-form .form-required {
  color: #0b5f7a;
  font-weight: 800;
}
.contact-consent-label a {
  color: #0c4a6e;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.contact-consent-label a:hover {
  color: #082f49;
}
.contact-consent-label.contact-consent-label--invalid a {
  color: #b91c1c;
}

.research-view-all {
  margin-top: 20px;
}
.research-resources-heading {
  margin-bottom: 8px;
}
.research-resources-text {
  margin-bottom: 0;
}
.research-events-heading {
  margin-bottom: 4px;
}
.research-events-desc {
  margin-bottom: 18px;
}

.event-reg-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.event-reg-group {
  margin-bottom: 12px;
}
.event-reg-consent {
  margin-top: 10px;
}
.event-reg-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-on-dark);
}
.event-reg-consent input {
  margin-top: 3px;
}
.event-reg-consent a {
  color: var(--teal);
}
.event-reg-turnstile {
  margin-top: 10px;
}
.event-reg-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.lab-description {
  max-width: 600px;
  font-size: 14.5px;
}

.not-found-icon {
  font-size: 80px;
  margin-bottom: 16px;
  opacity: 0.15;
}
.not-found-search-wrap {
  max-width: 480px;
  margin: 0 auto 24px;
}
.not-found-search-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 2px solid var(--gray200);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.2s;
}
/* #3719: Suppress outline for pointer focus only; keyboard focus uses global
   :focus-visible rule. outline: none moved off the base state. */
.not-found-search-input:focus:not(:focus-visible) {
  outline: none;
}
.not-found-search-input:focus {
  border-color: var(--teal);
}
.not-found-search-results {
  text-align: left;
  margin-top: 12px;
}
.not-found-search-msg {
  color: var(--text-muted);
  font-size: 14px;
}
.not-found-links-label {
  margin-bottom: 18px;
}
.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.not-found-latest {
  max-width: 600px;
  margin: 0 auto;
}
.not-found-latest-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.not-found-latest-card {
  display: block;
  padding: 16px;
  background: var(--off-white);
  border: 1px solid var(--gray100);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.not-found-latest-card:hover {
  border-color: var(--gray200);
}
.not-found-latest-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.not-found-latest-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.not-found-latest-summary {
  font-size: 14px;
  color: var(--text-light);
}
.not-found-search-item {
  display: block;
  padding: 12px 14px;
  margin-bottom: 8px;
  background: var(--off-white);
  border: 1px solid var(--gray100);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.not-found-search-item:hover {
  border-color: var(--gray200);
}
.not-found-search-item__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.not-found-search-item__summary {
  font-size: 13px;
  color: var(--text-light);
}

/* ── Resources Page ─────────────────────────────────────────────────── */
.resource-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.resource-filter-tab {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 212, 200, 0.25);
  background: transparent;
  color: var(--text-on-dark);
  cursor: pointer;
  transition: all 0.2s;
}
.resource-filter-tab:hover {
  border-color: var(--teal);
  background: rgba(0, 212, 200, 0.08);
}
.resource-filter-tab--active {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
  font-weight: 700;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .resource-grid {
    grid-template-columns: 1fr;
  }
}
.resource-grid__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px 0;
  color: var(--text-on-dark);
  font-size: 15px;
}

.resource-card {
  background: var(--navy-surface);
  border: 1px solid rgba(0, 212, 200, 0.08);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.resource-card:hover {
  border-color: rgba(0, 212, 200, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.resource-card__thumb {
  height: 160px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.resource-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resource-card__icon {
  color: var(--text-on-dark);
  opacity: 0.35;
}
.resource-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.resource-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.resource-card__category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  background: rgba(0, 212, 200, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}
.resource-card__format {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.resource-card__size {
  font-size: 10px;
  color: var(--text-muted);
}
.resource-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.resource-card__desc {
  font-size: 13px;
  color: var(--text-on-dark);
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1;
}
.resource-card__article-link {
  font-size: 12px;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-bottom: 12px;
  display: inline-block;
}
.resource-card__article-link:hover {
  color: var(--teal-light);
}
.resource-card__download {
  font-size: 12px;
  padding: 8px 16px;
  text-align: center;
  justify-content: center;
  margin-top: auto;
}

.resource-subscribe-card {
  background: var(--navy-surface);
  border: 1.5px solid var(--teal);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
}
.resource-subscribe-card .heading--navy {
  color: var(--text-bright);
}
.resource-subscribe-card .body-text {
  color: var(--text-on-dark);
}
.resource-subscribe-card .contact-form-note {
  color: rgba(255, 255, 255, 0.4);
}
.resource-subscribe-form__row {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.resource-subscribe-form__input {
  flex: 1;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--navy-mid);
  color: var(--text-bright);
}
.resource-subscribe-form__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.resource-subscribe-form__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
/* #3719: Same pattern as other form inputs. */
.resource-subscribe-form__input:focus:not(:focus-visible) {
  outline: none;
}
.resource-subscribe-form__input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 212, 200, 0.15);
}
.resource-subscribe-form__btn {
  white-space: nowrap;
}
/* #4469: Prevent Safari iOS auto-zoom on form inputs. iOS zooms in when an
   input has font-size < 16px. Override to 16px at mobile widths only so
   desktop layout is pixel-identical. */
@media (max-width: 768px) {
  .form-input,
  .event-reg-input,
  .resource-subscribe-form__input,
  .not-found-search-input {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .resource-subscribe-form__row {
    flex-direction: column;
  }
}
