/* =====================================================================
   epiqar.com — Stylesheet v1
   Palette: navy / teal / gold
   Fonts:   Playfair Display · DM Sans · DM Mono
   ===================================================================== */

/* ── Root Variables ────────────────────────────────────────────────── */
:root {
  --navy:        #080f1c;
  --navy-2:      #0d1829;
  --panel:       #111c2e;
  --panel-light: #162035;
  --teal:        #00b8c4;
  --teal-dim:    #007d87;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --white:       #f0f4f8;
  --off-white:   #d8e4f0;
  --muted:       #8fa3b8;
  --muted-dark:  #4a6480;
  --accent-line: rgba(0, 184, 196, 0.18);
  --accent-glow: rgba(0, 184, 196, 0.08);

  --nav-height:  72px;
  --container:   1200px;
  --section-pad: 100px;
  --radius:      8px;
  --radius-sm:   4px;
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── Skip Link ─────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--teal);
  color: var(--navy);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── Container ─────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Typography helpers ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

.overline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 14px;
}

/* ── Section header ────────────────────────────────────────────────── */
.section-header { margin-bottom: 56px; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s,
              transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: #00cdd9;
  border-color: #00cdd9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 184, 196, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(240, 244, 248, 0.22);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}

/* =======================================================================
   SITE LOGO — fixed, top-left, independent of nav
   ======================================================================= */
/* Logo left edge matches hero-content left edge:
   hero-content is max-width:1200px centered + padding-left:48px.
   On wide screens calc() aligns them; on narrower screens the
   padding-left fallback keeps them flush. */
.site-logo {
  position: fixed;
  top: 18px;
  left: max(48px, calc((100vw - var(--container)) / 2 + 48px));
  z-index: 110;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0;
  text-decoration: none;
}

.logo-name {
  font-family: 'DM Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #00c6cc 0%, #4a8fff 45%, #cc66cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline-block;
}

.logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 2px;
  -webkit-text-fill-color: initial;
}

/* =======================================================================
   NAV — right-aligned links and CTA
   ======================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 48px;
  transition: background 0.35s ease, border-color 0.35s ease,
              backdrop-filter 0.35s ease;
}

.nav.scrolled {
  background: rgba(8, 15, 28, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--accent-line);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  letter-spacing: 0.1px;
}
.nav-link:hover { color: var(--white); }

/* Nav CTA — distinct from the teal used elsewhere */
.btn-nav-cta {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-weight: 600;
}
.btn-nav-cta:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240, 244, 248, 0.25);
}

/* Footer logo variant — constrain gradient to cyan→blue to match nav at smaller size */
.footer-logo-name {
  font-size: 22px;
  background: linear-gradient(90deg, #00c6cc 0%, #4a8fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  font-weight: 400;
  color: var(--muted-dark);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

/* =======================================================================
   HERO — Video Background
   ======================================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(8, 15, 28, 0.92) 0%,
      rgba(8, 15, 28, 0.70) 30%,
      rgba(8, 15, 28, 0.35) 55%,
      rgba(8, 15, 28, 0.20) 75%,
      rgba(8, 15, 28, 0.45) 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px calc(var(--section-pad) * 0.6) 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 56px;
}

.hero-headline {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(35px, 5.2vw, 71px);
  font-weight: 700;
  font-style: normal;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
  max-width: 55%;
}

.hero-headline em {
  font-style: normal;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.hero-right {
  max-width: 380px;
  padding-bottom: 8px;
  flex-shrink: 0;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(240, 244, 248, 0.80);
  line-height: 1.72;
  margin-bottom: 28px;
}

/* .hero-support removed in v2 — proof handled by trust bar */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Hero Dropdown CTA ────────────────────────────────────────────── */
.hero-dropdown {
  position: relative;
}

.hero-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: transparent;
}

.hero-dropdown-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.hero-dropdown.open .hero-dropdown-chevron {
  transform: rotate(180deg);
}

.hero-dropdown-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--panel);
  border: 1px solid rgba(0, 184, 196, 0.22);
  border-radius: var(--radius);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  z-index: 10;
}

.hero-dropdown.open .hero-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-dropdown-item {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--off-white);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.hero-dropdown-item:hover {
  background: rgba(0, 184, 196, 0.10);
  color: var(--teal);
}

/* =======================================================================
   TRUST BAR
   ======================================================================= */
.trust-bar {
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--accent-line);
  background: var(--navy-2);
  padding: 40px 0;
}

.trust-bar-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted-dark);
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.trust-banner {
  margin-bottom: 32px;
  text-align: center;
}

.trust-banner img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  opacity: 0.88;
  filter: brightness(1.15);
  transition: opacity 0.3s, filter 0.3s;
}

.trust-banner img:hover {
  opacity: 1;
  filter: brightness(1.3);
}

.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--accent-line);
  padding-top: 24px;
}

.trust-stat {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trust-stat-sep {
  width: 3px;
  height: 3px;
  background: var(--teal-dim);
  border-radius: 50%;
  opacity: 0.45;
  flex-shrink: 0;
}

/* =======================================================================
   POSITIONING STATEMENT — morphing character decode
   ======================================================================= */
.positioning {
  padding: 140px 0 120px;
  background: var(--navy);
  overflow: hidden;
}

.positioning-inner {
  max-width: 880px;
  margin: 0 auto;
}

.morph-line {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 22px;
  min-height: 1.5em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.morph-line.morph-active,
.morph-line.morph-done {
  opacity: 1;
}

.morph-lead {
  font-weight: 300;
  color: var(--off-white);
  font-size: clamp(22px, 2.7vw, 34px);
  margin-bottom: 32px;
}

.morph-accent {
  font-weight: 500;
}

.morph-accent.morph-done {
  background: linear-gradient(90deg, #00c6cc 0%, #4a8fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.morph-char {
  display: inline-block;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.morph-char.scramble {
  filter: blur(3px);
  opacity: 0.35;
  color: var(--teal);
}

.morph-char.resolved {
  filter: blur(0);
  opacity: 1;
}

.morph-char.space {
  width: 0.3em;
}

.morph-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: linear-gradient(180deg, #00c6cc, #4a8fff);
  margin-left: 2px;
  vertical-align: baseline;
  animation: morph-blink 0.6s ease-in-out infinite;
  border-radius: 1px;
}

@keyframes morph-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.morph-logo-wrap {
  text-align: center;
  margin-top: 48px;
  padding-top: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.morph-logo-wrap.morph-done {
  opacity: 1;
  transform: translateY(0);
}

.morph-logo-text {
  font-family: 'DM Mono', monospace;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #00c6cc 0%, #4a8fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1;
}

.morph-logo-text .morph-char {
  -webkit-text-fill-color: initial;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.morph-logo-text .morph-char.scramble {
  color: var(--teal);
}

.morph-logo-text .morph-char.resolved {
  color: var(--off-white);
}

/* =======================================================================
   AUDIENCE CARDS
   ======================================================================= */
.audiences {
  padding: var(--section-pad) 0;
  background: var(--navy-2);
  border-top: 1px solid var(--accent-line);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-top: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              border-color 0.25s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  border-color: rgba(0, 184, 196, 0.22);
}

.audience-card-icon {
  width: 38px;
  height: 38px;
  color: var(--teal);
  margin-bottom: 22px;
  opacity: 0.85;
}

.audience-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.audience-card-hook {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.audience-card-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* =======================================================================
   WHY EPIQAR — Four Pillars
   ======================================================================= */
.why-epiqar {
  padding: var(--section-pad) 0;
  background: var(--navy);
  border-top: 1px solid var(--accent-line);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pillar-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(0, 184, 196, 0.1) 60%, transparent 100%);
}

.pillar-number {
  font-family: 'DM Mono', monospace;
  font-size: 52px;
  font-weight: 500;
  color: rgba(0, 184, 196, 0.12);
  line-height: 1;
  margin-bottom: 18px;
  user-select: none;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.pillar-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
  font-weight: 300;
}

/* =======================================================================
   SECTION DIVIDER — teal accent line between major blocks
   ======================================================================= */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 0;
  background: var(--navy);
}

.section-divider span {
  display: block;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 50%, transparent 100%);
  box-shadow: 0 0 12px rgba(0, 184, 196, 0.25), 0 0 40px rgba(0, 184, 196, 0.08);
}

/* =======================================================================
   OR INDEPENDENCE — Platform-agnostic positioning
   ======================================================================= */
.or-independence {
  padding: 64px 0 60px;
  background: var(--navy);
  text-align: center;
}

.or-independence-inner {
  max-width: 700px;
  margin: 0 auto;
}

.or-independence-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.or-independence-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

.or-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.or-chip {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0, 184, 196, 0.22);
  border-radius: 20px;
  padding: 7px 18px;
  background: rgba(0, 184, 196, 0.04);
  transition: border-color 0.3s, background 0.3s;
}

.or-chip:hover {
  border-color: rgba(0, 184, 196, 0.45);
  background: rgba(0, 184, 196, 0.08);
}

.or-independence-aside {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--off-white);
  margin-top: 36px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .or-independence { padding: 48px 0 44px; }
  .or-independence-headline { font-size: 20px; }
  .or-independence-body { font-size: 14px; }
  .or-chip { font-size: 10px; padding: 6px 14px; }
  .or-independence-aside { font-size: 17px; }
}

/* =======================================================================
   BRIDGE — From Archive to Intelligence
   ======================================================================= */
.bridge {
  padding: 120px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--accent-line);
  position: relative;
  overflow: hidden;
}

.bridge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%,
    rgba(0, 184, 196, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.bridge-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bridge-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 28px;
}

.bridge-headline em {
  color: var(--teal);
  font-style: italic;
}

.bridge-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 14px;
}

.bridge-body:last-of-type { margin-bottom: 0; }

.bridge-body strong {
  color: var(--off-white);
  font-weight: 500;
}

/* Arc steps */
.bridge-arc { display: flex; flex-direction: column; gap: 0; }

.bridge-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}

.bridge-connector {
  width: 1px;
  height: 14px;
  background: linear-gradient(180deg, var(--teal-dim) 0%, transparent 100%);
  margin-left: 47px;
  opacity: 0.45;
}

.bridge-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--teal-dim);
  letter-spacing: 1px;
  flex-shrink: 0;
  padding-top: 3px;
  width: 20px;
}

.bridge-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.bridge-step-desc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* =======================================================================
   EDD — epiqar Deep Dive
   ======================================================================= */
.edd {
  padding: 140px 0 var(--section-pad);
  background: var(--navy);
  border-top: 1px solid rgba(0, 184, 196, 0.22);
  position: relative;
  overflow: hidden;
}

.edd::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 110%,
      rgba(0, 184, 196, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 95% 5%,
      rgba(74, 143, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.edd-inner { position: relative; z-index: 1; }

.edd-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}

/* Tag badge */
.edd-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 184, 196, 0.09);
  border: 1px solid rgba(0, 184, 196, 0.28);
  border-radius: 20px;
  padding: 5px 14px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.edd-tag-dot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.8); }
}

.edd-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 16px;
}

.edd-subhead {
  font-size: 16px;
  color: var(--teal);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 28px;
}

.edd-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 14px;
}

.edd-body strong { color: var(--off-white); font-weight: 500; }
.edd-body:last-of-type { margin-bottom: 0; }

.edd-cta-area {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* EDD pillars (right column) */
.edd-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.edd-pillar {
  background: rgba(0, 184, 196, 0.05);
  border: 1px solid rgba(0, 184, 196, 0.14);
  border-radius: var(--radius);
  padding: 24px 22px;
}

.edd-pillar-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  color: var(--teal-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.edd-pillar-text {
  font-size: 13px;
  color: var(--off-white);
  font-weight: 300;
  line-height: 1.6;
}

/* EDD product screenshot */
.edd-product-shot {
  margin: 48px 0 56px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding-top: 3px;
  background: linear-gradient(90deg, #00c6cc 0%, #4a8fff 100%);
}

.edd-product-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* EDD "Talk to your videos" — blown-up query showcase */
.edd-queries-hero {
  margin-top: 64px;
  margin-bottom: 48px;
  padding: 56px 48px 48px;
  background:
    linear-gradient(135deg,
      rgba(0, 184, 196, 0.05) 0%,
      rgba(74, 143, 255, 0.03) 50%,
      rgba(0, 184, 196, 0.02) 100%);
  border: 1px solid rgba(0, 184, 196, 0.16);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.edd-queries-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse at center,
    rgba(0, 184, 196, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.edd-queries-sub {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  color: var(--muted-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.edd-queries-headline {
  font-family: 'DM Mono', monospace;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 32px;
  color: #A8915A;
  position: relative;
  z-index: 1;
}

.edd-tm {
  font-size: 0.45em;
  vertical-align: super;
  font-style: normal;
  color: #A8915A;
  -webkit-text-fill-color: initial;
}

.edd-queries-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.edd-query-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.5;
  background: rgba(0, 184, 196, 0.07);
  padding: 28px 40px 28px 35px;
  border-radius: 6px;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, #00c6cc 0%, #4a8fff 100%) 1;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
}

.edd-query-big::before {
  content: '\201C';
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.4em;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.35;
  position: absolute;
  top: -12px;
  left: 8px;
  line-height: 1;
}

.edd-query-big::after {
  content: '\201D';
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.4em;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.35;
  position: absolute;
  bottom: -24px;
  right: 10px;
  line-height: 1;
}

.edd-query-big:hover {
  background: rgba(0, 184, 196, 0.13);
  color: var(--white);
}

.edd-disclaimer {
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  color: var(--muted-dark);
  line-height: 1.65;
  font-style: italic;
  font-weight: 300;
  max-width: 880px;
}

/* =======================================================================
   EPIQAR BLUE — signature product moment
   ======================================================================= */
.epiqar-blue {
  padding: 80px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--accent-line);
}

.blue-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  background:
    linear-gradient(135deg, #001C5B 0%, #001040 60%, #000c2e 100%);
  border: 1px solid rgba(0, 184, 196, 0.12);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 56px 40px 56px 60px;
  overflow: hidden;
  position: relative;
}

.blue-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%,
    rgba(0, 184, 196, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.blue-callout-content {
  position: relative;
  z-index: 1;
}

.blue-callout-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blue-callout-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.blue-callout-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
  max-width: 480px;
}

.blue-callout-detail {
  font-size: 12px;
  color: var(--teal-dim);
  font-weight: 400;
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.blue-callout-image {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  max-width: 440px;
  border-radius: var(--radius);
  overflow: hidden;
}

.blue-callout-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* =======================================================================
   TESTIMONIALS — editorial layout
   ======================================================================= */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--navy);
  border-top: 1px solid var(--accent-line);
}

/* ── Featured testimonial ─────────────────────────────────── */
.testimonial-featured {
  margin: 56px auto 0;
  max-width: 820px;
  padding: 48px 0 48px 40px;
  border-left: 2px solid var(--teal);
  position: relative;
}

.testimonial-featured-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.testimonial-featured-attr {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.testimonial-featured-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-featured-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-dark);
}

/* ── Supporting testimonials row ──────────────────────────── */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--accent-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.testimonial-item {
  background: var(--navy);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.testimonial-item-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
  font-weight: 300;
  font-style: italic;
  flex: 1;
}

.testimonial-item-attr {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-item-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--off-white);
}

.testimonial-item-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted-dark);
  line-height: 1.5;
}

/* =======================================================================
   PLATFORM CAPABILITIES
   ======================================================================= */
.platform {
  padding: var(--section-pad) 0;
  background: var(--navy-2);
  border-top: 1px solid var(--accent-line);
}

.platform-intro {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  margin-top: 10px;
  line-height: 1.6;
}

.platform-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  margin-bottom: 20px;
}

.platform-feat {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-top: 2px solid var(--teal-dim);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-top-color 0.2s;
}
.platform-feat:hover { border-top-color: var(--teal); }

.platform-feat-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.platform-feat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.platform-list-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.platform-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 28px;
  padding: 32px 36px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.platform-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
  padding: 6px 0;
}

.platform-list-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--teal-dim);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* =======================================================================
   ADVISORY BOARD
   ======================================================================= */
.advisory {
  padding: var(--section-pad) 0;
  background: var(--navy);
  border-top: 1px solid var(--accent-line);
}

.advisory-intro {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 660px;
  margin-top: 16px;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.advisor-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.advisor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

.advisor-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg,
    rgba(0, 184, 196, 0.18) 0%,
    rgba(74, 143, 255, 0.12) 100%);
  border-radius: 50%;
  border: 1px solid rgba(0, 184, 196, 0.2);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 17px;
  font-weight: 500;
  color: var(--teal);
}

.advisor-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.3;
}

.advisor-title {
  font-size: 11px;
  color: var(--muted-dark);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 14px;
}

.advisor-bio {
  font-size: 12px;
  color: var(--muted-dark);
  line-height: 1.6;
  font-weight: 300;
}

/* =======================================================================
   TEAM
   ======================================================================= */
.team {
  padding: var(--section-pad) 0;
  background: var(--navy-2);
  border-top: 1px solid var(--accent-line);
}

.team-intro {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 660px;
  margin-top: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
  margin-top: 56px;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(0, 184, 196, 0.12) 0%,
    rgba(74, 143, 255, 0.08) 100%);
  border: 2px solid rgba(0, 184, 196, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s;
}

.team-member:hover .team-photo {
  border-color: rgba(0, 184, 196, 0.40);
}

/* Placeholder initials — replaced by <img> when photos are ready */
.team-photo-initials {
  font-family: 'DM Mono', monospace;
  font-size: 24px;
  font-weight: 500;
  color: var(--teal-dim);
  letter-spacing: 1px;
  user-select: none;
}

/* When real photos are added, use this class on the img */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.team-member:hover .team-photo img {
  filter: grayscale(0%);
}

.team-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.team-role {
  font-size: 12px;
  color: var(--muted-dark);
  font-weight: 300;
  line-height: 1.5;
}

/* =======================================================================
   GLOBAL MAP
   ======================================================================= */
.global-map {
  padding: var(--section-pad) 0;
  background: var(--navy);
  border-top: 1px solid var(--accent-line);
  position: relative;
  overflow: hidden;
}

.global-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 28% 38%,
      rgba(0, 184, 196, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 72% 32%,
      rgba(74, 143, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.map-wrap {
  position: relative;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 40px;
}

.map-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
}

.map-land {
  fill: rgba(0, 184, 196, 0.06);
  stroke: rgba(0, 184, 196, 0.18);
  stroke-width: 0.5;
  stroke-linejoin: round;
}

.map-grid line {
  stroke: var(--teal);
  stroke-width: 0.5;
  stroke-dasharray: 3 8;
  opacity: 0.07;
}

.map-dot-group {
  opacity: 0;
  cursor: pointer;
}

.map-active .map-dot-group {
  animation: mapDotIn 0.5s ease-out forwards;
  animation-delay: var(--delay);
}

@keyframes mapDotIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.map-dot {
  fill: var(--teal);
  transition: fill 0.2s ease;
}

.map-dot-ring {
  fill: var(--teal);
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
}

.map-active .map-dot-ring {
  animation: mapPulse 3.5s ease-out infinite;
  animation-delay: var(--pulse-delay);
}

@keyframes mapPulse {
  0%   { transform: scale(1); opacity: 0.35; }
  70%  { transform: scale(5); opacity: 0; }
  100% { transform: scale(5); opacity: 0; }
}

.map-dot-group:hover .map-dot {
  fill: #00e5f0;
  filter: drop-shadow(0 0 6px rgba(0, 184, 196, 0.6));
}

.map-tooltip {
  position: absolute;
  padding: 6px 14px;
  background: var(--panel);
  border: 1px solid rgba(0, 184, 196, 0.25);
  border-radius: var(--radius-sm);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--off-white);
  letter-spacing: 0.5px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.map-caption {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted-dark);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-align: center;
}

/* =======================================================================
   FINAL CTA BAND
   ======================================================================= */
.cta-band {
  padding: var(--section-pad) 0;
  background: var(--navy-2);
  border-top: 1px solid var(--accent-line);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    rgba(0, 184, 196, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-inner { position: relative; z-index: 1; }

.cta-band-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-band-body {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.72;
  max-width: 560px;
  margin: 0 auto 44px;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =======================================================================
   CONTACT SECTION
   ======================================================================= */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--navy);
  text-align: center;
}

.contact-inner {
  max-width: 560px;
  margin: 0 auto;
}

.contact-body {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.72;
  margin-bottom: 32px;
}

.contact-email {
  font-family: 'DM Mono', monospace;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.3px;
  background: linear-gradient(90deg, #00c6cc 0%, #4a8fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-email:hover {
  opacity: 0.75;
}

.contact-phones {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
}

.contact-phone {
  font-size: calc(15px + 3pt);
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
}

.contact-phone:hover {
  color: var(--off-white);
}

.contact-phone-sep {
  display: none;
  width: 1px;
  height: 18px;
  background: var(--accent-line);
}

@media (min-width: 520px) {
  .contact-phone-sep {
    display: inline-block;
  }
}

/* =======================================================================
   FOOTER
   ======================================================================= */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--accent-line);
  padding: 72px 0 36px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.65;
  font-weight: 300;
  max-width: 270px;
  margin: 14px 0 22px;
}

.footer-contact {
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.85;
  font-weight: 300;
}

.footer-contact a {
  color: var(--teal);
  transition: opacity 0.2s;
}
.footer-contact a:hover { opacity: 0.75; }

.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted-dark);
  font-weight: 300;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-links a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid var(--accent-line);
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 11px;
  color: var(--muted-dark);
  line-height: 1.72;
  max-width: 660px;
  font-weight: 300;
}

.footer-meta {
  text-align: right;
  flex-shrink: 0;
}

.footer-meta-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.footer-meta-links a {
  font-size: 11px;
  color: var(--muted-dark);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-meta-links a:hover { color: var(--teal); }

.footer-copyright {
  font-size: 11px;
  color: var(--muted-dark);
  font-weight: 300;
}

/* =======================================================================
   SCROLL ANIMATIONS
   ======================================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.10s; }
.fade-up-delay-2 { transition-delay: 0.20s; }
.fade-up-delay-3 { transition-delay: 0.30s; }
.fade-up-delay-4 { transition-delay: 0.40s; }
.fade-up-delay-5 { transition-delay: 0.50s; }

/* =======================================================================
   RESPONSIVE
   ======================================================================= */
@media (max-width: 1100px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 36px; }

  .hero-content { padding-left: 36px; padding-right: 36px; }
  .hero-headline { font-size: clamp(34px, 5vw, 56px); }

  .audience-grid      { grid-template-columns: 1fr; gap: 20px; }
  .pillars-grid       { grid-template-columns: 1fr; }
  .bridge-inner       { grid-template-columns: 1fr; gap: 56px; }
  .edd-header         { grid-template-columns: 1fr; gap: 48px; }
  .platform-featured  { grid-template-columns: repeat(2, 1fr); }
  .platform-list      { grid-template-columns: repeat(2, 1fr); }
  .advisory-grid      { grid-template-columns: repeat(3, 1fr); }
  .team-grid          { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
  .footer-main        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonials-row   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .container { padding: 0 20px; }

  .site-logo { top: 14px; left: 20px; }
  .site-logo .logo-name { font-size: 24px; }
  .nav { pointer-events: none; }
  .nav-links .nav-link { display: none; }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 0 20px 48px 20px;
  }
  .hero-headline {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 48px);
  }
  .hero-right { max-width: 100%; }

  .hero-dropdown-menu {
    bottom: auto;
    top: calc(100% + 8px);
    left: auto;
    right: 0;
  }

  .trust-logos  { gap: 20px; }
  .trust-divider { display: none; }
  .trust-stats  { gap: 14px; }

  .morph-line br { display: none; }
  .morph-lead { font-size: clamp(20px, 5.5vw, 28px); }
  .morph-line { font-size: clamp(18px, 5vw, 26px); overflow-wrap: break-word; }

  .pillars-grid { gap: 16px; }
  .pillar-card  { padding: 32px 28px; }

  .testimonial-featured { padding: 32px 0 32px 24px; }
  .testimonial-featured-text { font-size: 20px; }
  .testimonials-row { grid-template-columns: 1fr; margin-top: 36px; }
  .testimonial-item { padding: 28px 24px; }

  .platform-featured { grid-template-columns: 1fr; }
  .platform-list     { grid-template-columns: 1fr 1fr; padding: 24px 20px; }

  .advisory-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .team-photo    { width: 96px; height: 96px; }

  .blue-callout { flex-direction: column; padding: 36px 28px; }
  .blue-callout-image { max-width: 100%; }
  .blue-callout-image img { border-radius: var(--radius); }

  .edd-pillars { grid-template-columns: 1fr; }
  .edd-queries-hero { padding: 36px 28px 32px; }

  .map-caption { font-size: 10px; }

  .footer-main   { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .footer-meta   { text-align: left; }
  .footer-meta-links { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .platform-list   { grid-template-columns: 1fr; }
  .advisory-grid   { grid-template-columns: 1fr 1fr; }
  .edd-pillars     { grid-template-columns: 1fr; }
  .hero-actions    { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { flex-direction: column; align-items: center; }
}

/* =======================================================================
   CALENDLY POPUP OVERRIDES
   ======================================================================= */
.calendly-overlay .calendly-popup {
  border-radius: 16px !important;
  overflow: hidden;
}

.calendly-overlay .calendly-popup-content {
  background: #080f1c !important;
}

