/* ═══════════════════════════════════════════════════════════════
   LEXARA SATELLITE — shared.css
   Core styles · Paleta navy/gold · Responsive · WCAG AA
   Per-satellite accent colors overridable via body[data-site]
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy: #0B1628;
  --navy-mid: #162040;
  --navy-soft: #1E2D4A;
  --gold: #C5A44B;
  --gold-light: #E2CC8A;
  --gold-pale: #F5EDD4;
  --cream: #FAF8F3;
  --white: #FFFFFF;
  --text: #0B1628;
  --muted: #6B7A8D;
  --faint: #9AA5B4;
  --border-gold: rgba(197, 164, 75, 0.2);
  --border: #E8E4DA;
  --danger: #C0392B;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --max-w: 1180px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --radius: 6px;
  --shadow-sm: 0 2px 8px rgba(11, 22, 40, 0.06);
  --shadow-md: 0 8px 28px rgba(11, 22, 40, 0.10);
  --shadow-lg: 0 20px 60px rgba(11, 22, 40, 0.15);

  --t-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-med: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-mid); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.01em; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 3vw, 2rem); }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--cream); }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark .eyebrow { color: var(--gold-light); }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.site-nav.scrolled {
  background: rgba(250, 248, 243, 0.95);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem clamp(1.25rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav-brand .nav-brand-accent { color: var(--gold); font-style: italic; margin-left: 0.2em; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width var(--t-med);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: background var(--t-fast);
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  color: var(--navy);
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-med);
  }
  .nav-links.mobile-open { max-height: 420px; }
  .nav-links a { padding: 0.8rem 0; border-bottom: 1px solid var(--border-gold); }
  .nav-links a:last-child { border-bottom: none; }
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(197, 164, 75, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(30, 45, 74, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 820px; }
.hero h1 { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--gold);
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* ── Cards ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-fast);
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--navy);
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ── Numbered feature ── */
.feature-num {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-gold);
}
.feature-num:last-child { border-bottom: none; }
.feature-num-digit {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  min-width: 2rem;
}
.feature-num h4 { margin-bottom: 0.25rem; }
.feature-num p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ── Credential block (E-E-A-T) ── */
.credential {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 3px solid var(--gold);
  max-width: 760px;
}
.credential .eyebrow { color: var(--gold-light); }
.credential h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.75rem; }
.credential p { color: var(--cream); opacity: 0.85; font-size: 0.98rem; }
.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.credential-badge {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(226, 204, 138, 0.3);
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border-gold);
  padding: 1.1rem 0;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  transition: transform var(--t-med);
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
  color: var(--muted);
  font-size: 0.97rem;
}
.faq-answer p { padding-top: 0.75rem; margin: 0; }

/* ── Footer ── */
footer.site-footer {
  background: var(--navy);
  color: var(--faint);
  padding: 3rem 0 2rem;
  font-size: 0.88rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
  display: grid;
  gap: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}
.footer-brand .footer-brand-accent { color: var(--gold); font-style: italic; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a { color: var(--gold-light); }
.footer-links a:hover { color: var(--white); }
.footer-disclaimer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 204, 138, 0.15);
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.6;
}

/* ── Cookie banner + Customize panel ── */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  max-width: 560px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: 3px;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transform: translateY(calc(100% + 1.5rem));
  transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  line-height: 1.55;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner p { margin: 0 0 1rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.cookie-btn {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 2px;
  border: 1px solid rgba(226, 204, 138, 0.3);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: all var(--t-fast);
}
.cookie-btn:hover { border-color: var(--gold); color: var(--white); }
.cookie-btn-accept { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.cookie-btn-accept:hover { background: var(--gold-light); color: var(--navy); }

.cookie-prefs {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(11, 22, 40, 0.7);
  z-index: 110;
  padding: 1.5rem;
}
.cookie-prefs.show { display: flex; }
.cookie-prefs-panel {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  border-top: 3px solid var(--gold);
}
.cookie-prefs-panel h3 { margin-top: 0; }
.cookie-pref-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.cookie-pref-info h4 { margin: 0 0 0.3rem; }
.cookie-pref-info p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--t-fast);
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--t-fast);
}
.toggle-switch input:checked + .toggle-slider { background: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { background: var(--faint); cursor: not-allowed; }
.cookie-prefs-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

/* ── Chatbot ── */
.chatbot-bubble {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: none;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-fast);
}
.chatbot-bubble:hover { transform: scale(1.05); background: var(--gold); color: var(--navy); }
.chatbot-bubble svg { width: 24px; height: 24px; }

.chatbot-window {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(360px, calc(100vw - 2.5rem));
  max-height: min(600px, calc(100vh - 3rem));
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  z-index: 70;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.chatbot-window.open { display: flex; }
.chatbot-header {
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.chatbot-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chatbot-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-header-text h4 { margin: 0; color: var(--white); font-size: 0.95rem; font-family: var(--font-body); }
.chatbot-header-text p { margin: 0; font-size: 0.75rem; color: var(--gold-light); }
.chatbot-close {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--cream);
}
.chat-msg {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 3px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.chat-msg-bot {
  background: var(--white);
  border: 1px solid var(--border);
  align-self: flex-start;
}
.chat-msg-user {
  background: var(--navy);
  color: var(--white);
  align-self: flex-end;
}
.chat-msg-typing {
  align-self: flex-start;
  padding: 0.8rem 1rem;
  display: flex;
  gap: 4px;
}
.chat-msg-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing 1.3s infinite ease-in-out;
}
.chat-msg-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-msg-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.chat-cta { background: var(--white); border: 1px solid var(--gold); }
.chat-cta-inner { display: flex; flex-direction: column; gap: 0.5rem; }
.chat-cta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.chat-cta-btn {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.55rem 1rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none !important;
  display: inline-block;
  text-align: center;
}
.chatbot-disclaimer {
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--cream);
  border-top: 1px solid var(--border);
  text-align: center;
}
.chatbot-input-area {
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.chatbot-input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.chatbot-input:focus { outline: none; border-color: var(--gold); }
.chatbot-send {
  background: var(--navy);
  color: var(--gold);
  border: none;
  border-radius: 2px;
  padding: 0 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--t-fast);
}
.chatbot-send:hover { background: var(--gold); color: var(--navy); }
.chatbot-send:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Blog ── */
.blog-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: border-color var(--t-fast), transform var(--t-med);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.post-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.post-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.post-tag {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}
.post-card h2 { font-size: 1.3rem; margin: 0; }
.post-card p { color: var(--muted); font-size: 0.93rem; margin: 0; }
.post-card .read-more {
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Article (single post layout) ── */
.article-hero { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); }
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem) 4rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.article-body h2 { margin-top: 2.5rem; }
.article-body h3 { margin-top: 2rem; }
.article-body p { color: var(--text); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.article-body ul, .article-body ol { padding-left: 1.25rem; margin: 1rem 0; }
.article-body li { margin-bottom: 0.5rem; }
.article-body code {
  background: var(--gold-pale);
  padding: 0.1em 0.35em;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.88em;
}
.article-body a { color: var(--navy-mid); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }

/* ── Per-satellite accent overrides (sutil) ── */
/* auditll144.com — auditor / forensic / checkmark motif */
body[data-site="audit"] .eyebrow { letter-spacing: 0.22em; }
body[data-site="audit"] .card { border-left: 1px solid var(--border); border-top-width: 1px; border-top-color: var(--border); padding-left: 1.5rem; position: relative; }
body[data-site="audit"] .card::before { content: "✓"; position: absolute; top: 1rem; right: 1rem; color: var(--gold); font-weight: 700; }

/* euaiactnyc.com — NYC skyline geometric */
body[data-site="nyc"] .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top,
    var(--navy) 0%, var(--navy) 40%, transparent 40%,
    transparent 45%, var(--navy) 45%, var(--navy) 65%, transparent 65%,
    transparent 70%, var(--navy) 70%, var(--navy) 85%, transparent 85%);
  opacity: 0.04;
  pointer-events: none;
  clip-path: polygon(0 100%, 8% 70%, 12% 75%, 18% 50%, 24% 60%, 30% 30%, 38% 45%, 44% 20%, 52% 40%, 60% 25%, 68% 55%, 74% 35%, 82% 50%, 88% 30%, 94% 55%, 100% 40%, 100% 100%);
}

/* euaiactus.com — US federal, institutional */
body[data-site="us"] .container { font-feature-settings: "tnum" on; }
body[data-site="us"] h1, body[data-site="us"] h2 { font-weight: 400; }

/* aiactregistration.com — form / steps / progress motif */
body[data-site="registration"] .feature-num-digit {
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}

/* ── Accessibility ── */
.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;
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── Self-hosted web fonts (latin subset) ── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/cormorant.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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/cormorant-italic.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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/dmsans.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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
