/* ============================================================================
   VISIBLUX — Consolidated Stylesheet
   Brand: Where Visibility Becomes Revenue
   Aesthetic: Hybrid — deep black hero/dark sections, lighter sections between
   Palette: #04D9FF (cyan) + #7A5CFF (violet) accents on near-black, paper-light interiors
   ============================================================================ */

:root {
  /* Core brand */
  --black: #07070d;
  --ink: #1a1a1a;
  --graphite: #3a3a3a;
  --paper: #fafaf7;
  --bone: #f4f1ea;
  --line: rgba(26, 26, 26, 0.1);
  --line-dark: rgba(255, 255, 255, 0.1);

  /* Accents (matching the Visiblux PDF system) */
  --cyan: #04d9ff;
  --violet: #7a5cff;
  --violet-deep: #4b00f0;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  --grad-deep: linear-gradient(135deg, #07070d 0%, #1a1450 60%, var(--cyan) 130%);
  --grad-rule: linear-gradient(90deg, var(--cyan), var(--violet));

  /* Typography */
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 24px 64px rgba(7, 7, 13, 0.08);
  --shadow-deep: 0 28px 80px rgba(7, 7, 13, 0.18);
  --shadow-glow: 0 18px 60px rgba(122, 92, 255, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Reserve space for the mobile sticky CTA */
  padding-bottom: env(safe-area-inset-bottom);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.6em;
}
h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
p { margin: 0 0 1em; }
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--graphite);
}
.lead.light, .light-copy { color: rgba(255, 255, 255, 0.78); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  display: block;
}
.section-dark .eyebrow { color: var(--cyan); }
.section-light .eyebrow, body.light-page .eyebrow { color: var(--violet); }

.kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1rem;
  display: block;
}

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: rgba(26, 26, 26, 0.7); }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ============================================================================
   LAYOUT
   ============================================================================ */

.container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section-sm { padding: clamp(56px, 7vw, 90px) 0; }
.section-dark {
  background: var(--black);
  color: #fff;
  position: relative;
}
.section-light {
  background: var(--paper);
  color: var(--ink);
}
.section-bone {
  background: var(--bone);
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.split > *, .cta-band > *, .industry-hero > *,
.about-hero > *, .proof-callout > *, .experience-callout > * {
  min-width: 0;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { box-shadow: 0 24px 70px rgba(4, 217, 255, 0.32); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
}
.btn-secondary:hover { background: var(--bone); }
.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-dark:hover { background: #1a1a25; }

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-row.center-btn { justify-content: center; }

/* ============================================================================
   HEADER / NAV
   ============================================================================ */

.utility-bar {
  background: #050507;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 101;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.utility-bar a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.utility-bar a:hover { color: var(--cyan); }
.utility-tagline { color: rgba(255, 255, 255, 0.5); }

.site-header {
  position: sticky;
  top: 32px;
  z-index: 100;
  background: rgba(7, 7, 13, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header .container.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
}
.site-header .container.nav { position: relative; }
.site-header .btn {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 0.88rem;
}
.brand img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
  padding: 8px;
  cursor: pointer;
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background: #0d0d18;
  min-width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  margin-top: 0;
}
/* Invisible bridge so hover doesn't break crossing the gap from trigger to menu */
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: grid; }
.dropdown-menu a {
  padding: 10px 14px;
  border-radius: 10px;
  display: block;
}
.dropdown-menu a:hover { background: rgba(255, 255, 255, 0.06); }

.hide-mobile { display: inline-flex; }
.hide-desktop { display: none; }

/* ============================================================================
   HERO SECTIONS
   ============================================================================ */

.home-hero {
  position: relative;
  background: var(--black);
  color: #fff;
  overflow: hidden;
  padding: clamp(40px, 5vw, 70px) 0 clamp(56px, 7vw, 90px);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 13, 0.96) 0%, rgba(7, 7, 13, 0.78) 45%, rgba(7, 7, 13, 0.36) 75%, rgba(7, 7, 13, 0.92) 100%),
    url('../images/home-hero-bg.png') right center / cover no-repeat;
  z-index: 0;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 30%, rgba(122, 92, 255, 0.18), transparent 50%),
    radial-gradient(ellipse at 88% 80%, rgba(4, 217, 255, 0.14), transparent 55%);
  z-index: 0;
  pointer-events: none;
}
.home-hero .container { position: relative; z-index: 1; }
.hero-content {
  max-width: 760px;
}
.hero-content .eyebrow { color: var(--cyan); margin-bottom: 14px; }
.hero-content h1 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  margin-bottom: 22px;
}
.hero-content h1 .gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin-bottom: 26px;
}
.hero-emphasis {
  display: block;
  margin: 22px 0 18px;
  padding: 14px 18px;
  background: rgba(122, 92, 255, 0.08);
  border-left: 3px solid var(--violet);
  border-radius: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.hero-checks {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}
.hero-checks li {
  position: relative;
  padding-left: 26px;
}
.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

/* Trust signal strip under hero */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.trust-item svg { color: var(--cyan); flex-shrink: 0; }

/* Inner-page hero (industries, About, Contact, etc.) */
.page-hero {
  background: var(--black);
  color: #fff;
  padding: clamp(80px, 9vw, 120px) 0 clamp(64px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(4, 217, 255, 0.1), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(122, 92, 255, 0.12), transparent 55%);
  pointer-events: none;
}

/* EDD hero — flagship treatment with executive imagery on right */
.page-hero.edd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 13, 0.97) 0%, rgba(7, 7, 13, 0.84) 45%, rgba(7, 7, 13, 0.42) 75%, rgba(7, 7, 13, 0.92) 100%),
    url('../images/executive-hero-bg.png') right center / cover no-repeat;
  z-index: 0;
}
.page-hero.edd-hero { padding: clamp(96px, 12vw, 140px) 0 clamp(80px, 9vw, 120px); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); }
.page-hero .lead { max-width: 720px; }
.page-hero .narrow { max-width: 720px; margin-left: 0; margin-right: 0; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
}
.breadcrumb a:hover { color: var(--cyan); }

/* Industry-specific hero with photo */
.industry-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.industry-hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}
.industry-hero-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ============================================================================
   LOGO PROOF STRIP
   ============================================================================ */

.logo-proof {
  background: #fff;
  padding: 44px 0 48px;
  border-bottom: 1px solid var(--line);
}
.logo-proof .eyebrow {
  color: var(--violet);
  text-align: center;
  display: block;
  margin-bottom: 28px;
}
.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.logo-item {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item img {
  max-height: 48px;
  width: auto;
  filter: grayscale(1) contrast(0.7);
  opacity: 0.78;
  transition: opacity 0.2s ease;
}
.logo-item:hover img { opacity: 1; }
.logo-item.label {
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(26, 26, 26, 0.65);
  line-height: 1.15;
  text-align: center;
}

/* ============================================================================
   AUTHORITY SYSTEMS / VALUE CARDS
   ============================================================================ */

.value-strip {
  background: #fff;
  padding: 56px 0;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--grad-rule);
  border-radius: 2px;
}
.value-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.value-card span {
  display: block;
  color: rgba(26, 26, 26, 0.65);
  font-size: 0.95rem;
}

/* ============================================================================
   PROOF STRIP (5 stats)
   ============================================================================ */

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.proof-card {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.proof-card span {
  display: block;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.proof-card strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.proof-card.featured {
  background: linear-gradient(135deg, #07070d 0%, #1a1450 60%, var(--cyan) 200%);
  border: 1px solid rgba(4, 217, 255, 0.3);
  transform: scale(1.04);
  box-shadow: var(--shadow-glow);
}

/* ============================================================================
   SYSTEM STACK (3 trademarked systems)
   ============================================================================ */

.system-stack {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.system-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(122, 92, 255, 0.12), transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(4, 217, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.system-stack .container { position: relative; }
.system-stack .eyebrow { color: var(--cyan); }
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.system-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.system-card:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 217, 255, 0.3);
}
.system-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(122, 92, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--cyan);
}
.system-card h3 {
  color: #fff;
  margin-bottom: 12px;
}
.system-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  margin-bottom: 0;
}

/* ============================================================================
   COMPETITOR GAP (split with image bg)
   ============================================================================ */

.gap-section {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gap-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 13, 0.96), rgba(7, 7, 13, 0.78), rgba(7, 7, 13, 0.5)),
    url('../images/competitive-gap-bg.jpeg') center / cover no-repeat;
  z-index: 0;
}
.gap-section .container { position: relative; z-index: 1; }
.list-checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.list-checks li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.82);
}
.list-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 800;
}
.section-light .list-checks li,
.section-bone .list-checks li { color: var(--graphite); }
.section-light .list-checks li::before,
.section-bone .list-checks li::before { color: var(--violet); }

.gap-card {
  background: linear-gradient(135deg, #0d0d18, #1a1450 65%, var(--cyan) 200%);
  border: 1px solid rgba(4, 217, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-glow);
}
.gap-card .kicker { color: var(--cyan); }
.gap-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.gap-card p { color: rgba(255, 255, 255, 0.82); }

/* ============================================================================
   AAA ENTERPRISE PROOF SECTION
   ============================================================================ */

.enterprise-proof {
  background: var(--bone);
  padding: clamp(72px, 9vw, 110px) 0;
}
.proof-callout {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  position: relative;
}
.proof-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: var(--grad-brand);
}
.proof-callout h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.proof-stats {
  display: grid;
  gap: 24px;
}
.proof-stat {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.proof-stat:first-child { border-top: none; padding-top: 0; }
.proof-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.proof-stat span {
  font-size: 0.9rem;
  color: var(--graphite);
}

/* ============================================================================
   PRICING CARD (Stitch-inspired, Visiblux brand)
   ============================================================================ */

.pricing-card {
  max-width: 720px;
  margin: 44px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(122, 92, 255, 0.3);
  box-shadow: var(--shadow-deep);
  background: #fff;
}
.pricing-card-header {
  background: var(--black);
  color: #fff;
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(122, 92, 255, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(4, 217, 255, 0.12), transparent 55%);
}
.pricing-card-header > * { position: relative; z-index: 1; }
.pricing-card-header .kicker {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.pricing-card-header .price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.pricing-card-header .price-range {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.pricing-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 28px;
  gap: 4px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 600;
}
.pricing-feature svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--violet);
}
.pricing-card-footer {
  background: var(--bone);
  padding: 28px 36px 32px;
  text-align: center;
}
.pricing-proof {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--graphite);
  margin: 0 auto 20px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 580px;
}
.pricing-proof svg {
  color: var(--violet);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-proof strong { color: var(--ink); }
.pricing-card-footer .btn {
  width: 100%;
  margin-bottom: 14px;
}
.pricing-card-footer .scarcity {
  font-size: 0.85rem;
  color: var(--graphite);
  font-style: italic;
  margin: 0;
}

/* ============================================================================
   AUTHORITY ACCELERATION (3-step)
   ============================================================================ */

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.method-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 18px 50px rgba(7, 7, 13, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(7, 7, 13, 0.1);
}

/* Dark variant for use inside section-dark */
.method-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #fff;
}
.method-card-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(4, 217, 255, 0.3);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}
.method-card-dark h3 { color: #fff; }
.method-card-dark p { color: rgba(255, 255, 255, 0.78); }
.method-card-dark .method-icon {
  background: rgba(122, 92, 255, 0.22);
  border-color: rgba(122, 92, 255, 0.35);
  color: var(--cyan);
}
.method-card-dark .method-step { color: var(--cyan); }

/* Section-dark text color sanity */
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, 0.78); }
.section-dark .lead { color: rgba(255, 255, 255, 0.82); }
.section-dark strong { color: #fff; }

/* AEO/GEO direct-answer block — concise 30-50 word snippet for AI Overviews */
.answer-block-section {
  background: var(--paper);
  padding: clamp(40px, 5vw, 60px) 0;
  border-bottom: 1px solid var(--line);
}
.answer-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.answer-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(28px, 4vw, 40px);
  right: clamp(28px, 4vw, 40px);
  height: 3px;
  background: var(--grad-rule);
  border-radius: 3px;
}
.answer-block-q {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
}
.answer-block-a {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(122, 92, 255, 0.15), rgba(4, 217, 255, 0.15));
  border: 1px solid rgba(122, 92, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--violet);
}
.method-step {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  display: block;
  margin-bottom: 8px;
}

/* ============================================================================
   CTA BAND
   ============================================================================ */

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #07070d, #1a1450 60%, #0a4a78);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 52px);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 217, 255, 0.18), transparent 65%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band .eyebrow { color: var(--cyan); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.78); margin-bottom: 0; }

/* ============================================================================
   INDUSTRY PAGE COMPONENTS
   ============================================================================ */

.service-lines {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  position: relative;
}
.service-lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--grad-rule);
  border-radius: 3px;
}
.service-lines h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}
.service-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}

.leak-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.leak-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 36px rgba(7, 7, 13, 0.05);
  position: relative;
}
.leak-card .leak-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--violet);
  display: block;
  margin-bottom: 10px;
}
.leak-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.leak-card p {
  color: rgba(26, 26, 26, 0.68);
  font-size: 0.95rem;
  margin: 0;
}

/* FAQ */
.faq {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq details[open] {
  box-shadow: 0 18px 50px rgba(7, 7, 13, 0.07);
  border-color: rgba(122, 92, 255, 0.2);
}
.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--violet);
  font-weight: 800;
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 14px;
  color: var(--graphite);
}

/* ============================================================================
   VISIBILITY INDEX PAGE — 4-dimension scoring
   ============================================================================ */

.vix-frame {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.vix-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(4, 217, 255, 0.12), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(122, 92, 255, 0.12), transparent 55%);
}
.vix-frame > * { position: relative; }
.vix-dimensions {
  display: grid;
  gap: 28px;
  margin-top: 32px;
}
.vix-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
}
.vix-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.vix-label small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}
.vix-bar-stack { display: grid; gap: 8px; }
.vix-bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 60px;
  gap: 12px;
  align-items: center;
  font-size: 0.82rem;
}
.vix-bar-row .vix-bar-label {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}
.vix-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.vix-bar-fill {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: var(--grad-brand);
  width: 0;
}
.vix-bar.industry .vix-bar-fill {
  background: rgba(255, 255, 255, 0.4);
}
.vix-bar.pending .vix-bar-fill {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 6px, rgba(255, 255, 255, 0.02) 6px 12px);
  width: 100%;
}
.vix-bar-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  text-align: right;
  font-size: 0.85rem;
}
.vix-bar.pending + .vix-bar-value, .vix-bar-row.pending .vix-bar-value {
  color: var(--cyan);
  font-style: italic;
  font-size: 0.78rem;
}

/* ============================================================================
   INDUSTRY GRID (industries.html)
   ============================================================================ */

.industry-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 32px rgba(7, 7, 13, 0.04);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(7, 7, 13, 0.09);
}
.industry-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122, 92, 255, 0.12), rgba(4, 217, 255, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--violet);
}
.industry-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.industry-card p {
  color: rgba(26, 26, 26, 0.68);
  font-size: 0.95rem;
  margin-bottom: 22px;
  flex-grow: 1;
}
.industry-card .arrow {
  font-weight: 700;
  color: var(--violet);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================================
   ABOUT PAGE
   ============================================================================ */

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.portrait-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
  position: relative;
  max-width: 460px;
  justify-self: end;
}
.portrait-card img {
  width: 100%;
  height: clamp(420px, 60vh, 620px);
  object-fit: cover;
  object-position: center top;
}

.experience-callout {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  position: relative;
}
.experience-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: var(--grad-brand);
}
.experience-stats {
  display: grid;
  gap: 18px;
}
.experience-stats > div { padding: 8px 0; border-top: 1px solid var(--line); }
.experience-stats > div:first-child { border-top: none; }
.experience-stats span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 4px;
}
.experience-stats p { font-size: 0.9rem; color: var(--graphite); margin: 0; }

/* ============================================================================
   FORM
   ============================================================================ */

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.form-card form { display: grid; gap: 18px; }
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.form-card label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: var(--ink);
  font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(122, 92, 255, 0.12);
}
.form-card textarea {
  min-height: 120px;
  resize: vertical;
}
.form-card .small-note {
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.58);
  margin: 0;
}

/* Form trust signals — generic-but-truthful CRO signals */
.form-trust {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--graphite);
  font-weight: 500;
}
.form-trust-item svg {
  color: var(--violet);
  flex-shrink: 0;
}
.form-card .btn { width: 100%; }

.qualifier-card {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(122, 92, 255, 0.25);
}
.qualifier-card h4 {
  color: var(--cyan);
  margin-bottom: 12px;
}
.qualifier-card p { color: rgba(255, 255, 255, 0.78); margin: 0 0 8px; }
.qualifier-card strong { color: #fff; }

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
  background: var(--black);
  color: #fff;
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-rule);
  opacity: 0.4;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
}
.footer img { height: 46px; width: auto; margin-bottom: 18px; }
.footer p, .footer a { color: rgba(255, 255, 255, 0.7); }
.footer a:hover { color: var(--cyan); }
.footer h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}
.footer p { font-size: 0.92rem; margin: 0 0 8px; }
.footer-bottom {
  margin-top: 0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-bottom div:last-child { display: flex; gap: 18px; }

.footer-trust {
  margin-top: 44px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
}
.footer-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}
.footer-trust-item svg { color: var(--cyan); flex-shrink: 0; }

@media (max-width: 900px) {
  .footer-trust { gap: 12px 24px; }
  .footer-trust-item { font-size: 0.72rem; }
}

/* ============================================================================
   MOBILE STICKY CTA
   ============================================================================ */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(7, 7, 13, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}
.mobile-sticky-cta .btn {
  width: 100%;
  min-height: 50px;
  font-size: 0.96rem;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1100px) {
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-card.featured { transform: none; }
  .system-grid { grid-template-columns: minmax(0, 1fr); }
  .industry-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card-body { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .hide-mobile { display: none; }
  .hide-desktop { display: inline-flex; }
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #07070d;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 24px;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
  }
  .nav-links .btn {
    margin-top: 12px;
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    display: grid;
    margin-top: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 0;
    box-shadow: none;
    padding: 8px;
  }
  .dropdown-menu a {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .split, .split.reverse,
  .industry-hero, .about-hero,
  .proof-callout, .experience-callout,
  .cta-band {
    grid-template-columns: minmax(0, 1fr);
  }
  .industry-hero-photo img { height: 280px; }
  .portrait-card {
    max-width: 100%;
    justify-self: stretch;
  }
  .portrait-card img { height: 460px; }

  .value-grid, .system-grid,
  .method-grid, .leak-grid,
  .industry-mini-grid, .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .logo-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .vix-row { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .vix-bar-row { grid-template-columns: 90px 1fr 50px; }

  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 88px; }

  /* Hero photo behavior on mobile */
  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(7, 7, 13, 0.92), rgba(7, 7, 13, 0.96)),
      url('../images/home-hero-bg.png') center / cover no-repeat;
  }
  .page-hero.edd-hero::before {
    background:
      linear-gradient(180deg, rgba(7, 7, 13, 0.94), rgba(7, 7, 13, 0.97)),
      url('../images/executive-hero-bg.png') center / cover no-repeat;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, 1200px); }
  .brand img { height: 38px; }
  .btn { width: 100%; padding: 14px 20px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .home-hero { padding: 64px 0 56px; }
  .hero-content h1 { font-size: 2.3rem; }
  .pricing-card-body { padding: 18px; }
  .pricing-feature { padding: 12px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .utility-bar { font-size: 0.7rem; padding: 6px 0; }
  .site-header { top: 28px; }
  .utility-tagline { display: none; }
  .logo-strip { grid-template-columns: minmax(0, 1fr); }
  .vix-bar-row { grid-template-columns: 80px 1fr 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
