/* ═══════════════════════════════════════════════════════════════
   RUBICON v2 — SHARED DESIGN TOKENS + COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ─── Palette ─── */
  --black: #050505;
  --gray-1: #0c0c0c;
  --gray-2: #141414;
  --gray-3: #1c1c1c;
  --gray-4: #2a2a2a;
  --gray-5: #404040;
  
  --white: #f5f0e8;
  --white-soft: #e8e2d8;
  --muted: #8a857c;
  --muted-2: #5a5550;
  
  --gold: #c9a84c;
  --gold-light: #e0c373;
  --gold-dark: #a88a3a;
  --gold-glow: rgba(201, 168, 76, 0.15);
  
  --crimson: #8b1a1a;
  --crimson-light: #b03030;
  
  /* ─── Type ─── */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'DM Mono', 'JetBrains Mono', Menlo, monospace;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  
  /* ─── Motion ─── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  
  /* ─── Layout ─── */
  --container: 1280px;
  --nav-h: 70px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.v2-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s var(--ease-out);
}
.v2-nav.scrolled {
  background: rgba(5, 5, 5, 0.97);
  border-bottom-color: rgba(201, 168, 76, 0.08);
}

.v2-nav .brand img { height: 32px; }

.v2-nav-links {
  display: flex; gap: 36px; align-items: center;
}
.v2-nav-link {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease-out);
  position: relative;
}
.v2-nav-link::after {
  content: '';
  position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.v2-nav-link:hover { color: var(--white); }
.v2-nav-link:hover::after,
.v2-nav-link.active::after { transform: scaleX(1); }
.v2-nav-link.active { color: var(--gold); }

.v2-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 12px 22px;
  border: 1px solid var(--gold);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  font-weight: 600;
}
.v2-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--gold-glow);
}
.v2-cta-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gray-4);
}
.v2-cta-outline:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   STICKY BOTTOM CTA (mobile mainly)
   ═══════════════════════════════════════════════════════════════ */
.v2-sticky-cta {
  position: fixed; bottom: 24px; left: 24px; z-index: 99;
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s var(--ease-out);
}
.v2-sticky-cta.visible { transform: translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.v2-hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 60px) 32px 100px;
  text-align: center;
  overflow: hidden;
}

/* Animated skyline (image marquee — uses 7 admin-pool images) */
.v2-skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38vh;
  min-height: 240px;
  max-height: 380px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(139,26,26,0.05) 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 100%);
}
.v2-skyline-track {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 18px;
  align-items: flex-end;
  height: 100%;
  width: max-content;
  will-change: transform;
}
.v2-skyline-track img {
  flex-shrink: 0;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}
.v2-skyline-back {
  bottom: 0;
  animation: skyline-back 90s linear infinite;
  z-index: 1;
}
.v2-skyline-back img {
  height: 60%;
  opacity: 0.42;
  filter: brightness(0.6) contrast(1.0);
}
.v2-skyline-front {
  bottom: 0;
  animation: skyline-front 55s linear infinite;
  z-index: 2;
}
.v2-skyline-front img {
  height: 82%;
  opacity: 0.72;
  filter: brightness(0.85) contrast(1.1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
@keyframes skyline-back {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes skyline-front {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Vignette glow */
.v2-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at center 30%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.v2-hero-content {
  position: relative; z-index: 10;
  max-width: 920px;
}

.v2-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 12px;
}
.v2-eyebrow::before, .v2-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold-dark);
}

.v2-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.v2-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.v2-hero p.lead {
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.v2-hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px;
}

.v2-hero-trust {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.v2-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.v2-hero-trust span::before {
  content: '✓'; color: var(--gold); font-weight: bold;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION BASE
   ═══════════════════════════════════════════════════════════════ */
.v2-section {
  position: relative;
  padding: 100px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.v2-section.bg-dark { background: var(--gray-1); }
.v2-section.full-width { max-width: none; padding-left: 0; padding-right: 0; }
.v2-section.full-width > .v2-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.v2-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
}
.v2-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: 24px;
}
.v2-section h2 em {
  font-style: italic;
  color: var(--gold);
}
.v2-section .sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   PROBLEM-SOLUTION SPLIT (Section 2)
   ═══════════════════════════════════════════════════════════════ */
.v2-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 4px;
  overflow: hidden;
}
.v2-split-col { padding: 48px 40px; }
.v2-split-col.left {
  background: linear-gradient(180deg, rgba(139,26,26,0.04), transparent);
}
.v2-split-col.right {
  background: linear-gradient(180deg, rgba(201,168,76,0.04), transparent);
}
.v2-split-divider {
  background: linear-gradient(180deg, transparent, var(--gray-4), transparent);
}
.v2-split-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.v2-split-col.left .v2-split-label { color: var(--crimson-light); }
.v2-split-col.right .v2-split-label { color: var(--gold); }
.v2-split ul { list-style: none; }
.v2-split li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--white-soft);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 10px;
}
.v2-split-col.left li::before {
  content: '✕'; color: var(--crimson-light); font-weight: bold; font-size: 14px;
}
.v2-split-col.right li::before {
  content: '✓'; color: var(--gold); font-weight: bold; font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   AI AGENT CARDS (Section 3)
   ═══════════════════════════════════════════════════════════════ */
.v2-agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v2-agent {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.v2-agent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.v2-agent:hover { transform: translateY(-6px); border-color: var(--gold-dark); }
.v2-agent:hover::before { transform: scaleX(1); }

.v2-agent-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}
.v2-agent-icon::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  opacity: 0.3;
}

.v2-agent-name {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.v2-agent-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.v2-agent-features {
  list-style: none;
}
.v2-agent-features li {
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative; padding-left: 16px;
}
.v2-agent-features li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold-dark);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS (reveal on scroll)
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
/* legacy footer rule removed — replaced by fusion-gradient version below */
.v2-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
}
.v2-footer-brand img { height: 48px; margin-bottom: 20px; }
.v2-footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; max-width: 280px; }
.v2-footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.v2-footer-col ul { list-style: none; }
.v2-footer-col li { margin-bottom: 10px; }
.v2-footer-col a {
  color: var(--white-soft);
  font-size: 13px;
  transition: color 0.2s;
}
.v2-footer-col a:hover { color: var(--gold); }
.v2-footer-bottom {
  max-width: var(--container);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--gray-3);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.15em;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .v2-nav { padding: 0 18px; }
  .v2-nav-links { display: none; }
  .v2-hero { padding: calc(var(--nav-h) + 30px) 18px 60px; }
  .v2-section { padding: 60px 18px; }
  .v2-section h2 { font-size: 36px; }
  .v2-agent-grid { grid-template-columns: 1fr; }
  .v2-split { grid-template-columns: 1fr; }
  .v2-split-divider { display: none; }
  .v2-split-col { padding: 32px 24px; }
  .v2-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .v2-eyebrow::before, .v2-eyebrow::after { width: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   ECOSYSTEM WHEEL (Section 4)
   ═══════════════════════════════════════════════════════════════ */
.v2-eco-wheel {
  position: relative;
  width: 100%; max-width: 600px;
  aspect-ratio: 1;
  margin: 60px auto 0;
}
.v2-eco-center {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.v2-eco-center::before {
  content: '';
  position: absolute; inset: -30px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  opacity: 0.3;
  animation: eco-pulse 4s ease-in-out infinite;
}
.v2-eco-center::after {
  content: '';
  position: absolute; inset: -50px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  opacity: 0.15;
  animation: eco-pulse 4s ease-in-out infinite 1s;
}
@keyframes eco-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.08); opacity: 0.5; }
}
.v2-eco-spokes {
  position: absolute;
  inset: 0;
}
.v2-eco-spoke {
  position: absolute;
  top: 50%; left: 50%;
  transform-origin: 0 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 8px 14px;
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.3s var(--ease-out);
}
.v2-eco-spoke:hover {
  border-color: var(--gold);
  color: var(--white);
  transform: translate(0, -50%) scale(1.05);
}
/* Position spokes around the wheel by angle (using transform) */
.v2-eco-spoke[data-angle="0"]   { transform: rotate(0deg)   translate(220px) rotate(0deg)   translateY(-50%); }
.v2-eco-spoke[data-angle="30"]  { transform: rotate(30deg)  translate(220px) rotate(-30deg) translateY(-50%); }
.v2-eco-spoke[data-angle="60"]  { transform: rotate(60deg)  translate(220px) rotate(-60deg) translateY(-50%); }
.v2-eco-spoke[data-angle="90"]  { transform: rotate(90deg)  translate(220px) rotate(-90deg) translateY(-50%); }
.v2-eco-spoke[data-angle="120"] { transform: rotate(120deg) translate(220px) rotate(-120deg) translateY(-50%); }
.v2-eco-spoke[data-angle="150"] { transform: rotate(150deg) translate(220px) rotate(-150deg) translateY(-50%); }
.v2-eco-spoke[data-angle="180"] { transform: rotate(180deg) translate(220px) rotate(-180deg) translateY(-50%); }
.v2-eco-spoke[data-angle="210"] { transform: rotate(210deg) translate(220px) rotate(-210deg) translateY(-50%); }
.v2-eco-spoke[data-angle="240"] { transform: rotate(240deg) translate(220px) rotate(-240deg) translateY(-50%); }
.v2-eco-spoke[data-angle="270"] { transform: rotate(270deg) translate(220px) rotate(-270deg) translateY(-50%); }
.v2-eco-spoke[data-angle="300"] { transform: rotate(300deg) translate(220px) rotate(-300deg) translateY(-50%); }
.v2-eco-spoke[data-angle="330"] { transform: rotate(330deg) translate(220px) rotate(-330deg) translateY(-50%); }

/* Connect lines from center to spokes */
.v2-eco-wheel::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 440px; height: 440px;
  border: 1px dashed var(--gray-4);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .v2-eco-wheel { max-width: 380px; }
  .v2-eco-spoke { font-size: 8.5px; padding: 6px 10px; }
  .v2-eco-spoke[data-angle="0"], .v2-eco-spoke[data-angle="30"], .v2-eco-spoke[data-angle="60"], .v2-eco-spoke[data-angle="90"], .v2-eco-spoke[data-angle="120"], .v2-eco-spoke[data-angle="150"], .v2-eco-spoke[data-angle="180"], .v2-eco-spoke[data-angle="210"], .v2-eco-spoke[data-angle="240"], .v2-eco-spoke[data-angle="270"], .v2-eco-spoke[data-angle="300"], .v2-eco-spoke[data-angle="330"] {
    /* Reset and use smaller radius */
  }
  .v2-eco-wheel::before { width: 280px; height: 280px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS GRID (Section 5)
   ═══════════════════════════════════════════════════════════════ */
.v2-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.v2-product {
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}
.v2-product::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 0% 0%, rgba(201, 168, 76, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.v2-product:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}
.v2-product:hover::before { opacity: 1; }
.v2-product.featured {
  border-color: var(--gold);
}
.v2-product-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  text-transform: uppercase;
  font-weight: 600;
}
.v2-product-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.v2-product h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.v2-product h3 em { font-style: italic; color: var(--gold); }
.v2-product p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.v2-product ul {
  list-style: none;
  margin-bottom: 28px;
}
.v2-product li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--white-soft);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  text-transform: uppercase;
}
.v2-product li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold);
}
.v2-product-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  transition: letter-spacing 0.3s var(--ease-out);
}
.v2-product:hover .v2-product-cta { letter-spacing: 0.28em; }

@media (max-width: 768px) {
  .v2-products-grid { grid-template-columns: 1fr; }
  .v2-product { padding: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   DEMO GRID (Section 6)
   ═══════════════════════════════════════════════════════════════ */
.v2-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v2-demo-card {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.v2-demo-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}
.v2-demo-card h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}
.v2-demo-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .v2-demo-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (smaller hero for non-home pages)
   ═══════════════════════════════════════════════════════════════ */
.v2-page-hero {
  padding: calc(var(--nav-h) + 80px) 32px 80px;
  text-align: center;
  max-width: 900px; margin: 0 auto;
}
.v2-page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.v2-page-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v2-page-hero p.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px; margin: 0 auto;
}
.v2-page-hero .v2-eyebrow { margin-bottom: 22px; }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT DETAIL SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.v2-product-detail h2 { font-size: clamp(36px, 5vw, 56px); }

.v2-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.v2-feature {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 24px;
  transition: all 0.3s var(--ease-out);
}
.v2-feature:hover { border-color: var(--gold-dark); }
.v2-feature-icon {
  font-size: 24px; margin-bottom: 12px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-3);
  border-radius: 6px;
}
.v2-feature h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
.v2-feature p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .v2-feature-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   OFFICER TIER ROWS
   ═══════════════════════════════════════════════════════════════ */
.v2-officer-tiers { display: flex; flex-direction: column; gap: 40px; }
.v2-officer-block {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 28px;
}
.v2-officer-header {
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap;
  gap: 8px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--gray-3);
}
.v2-officer-name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 500;
  color: var(--gold);
}
.v2-officer-tagline {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.2em;
  color: var(--muted); text-transform: uppercase;
}
/* dead block removed — old .v2-tier-row + .v2-tier-card replaced by expandable .v2-tier-expand-row in E2 */

/* ═══════════════════════════════════════════════════════════════
   SEGMENT GRID (Connect)
   ═══════════════════════════════════════════════════════════════ */
.v2-segment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 18px;
  margin-top: 24px;
}
.v2-segment {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 24px;
}
.v2-segment.featured { border-color: var(--gold); }
.v2-segment-header { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-3); }
.v2-segment-header h4 { font-family: var(--font-serif); font-size: 22px; font-weight: 500; }
.v2-segment-header span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase; }
.v2-segment ul { list-style: none; }
.v2-segment li {
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--white-soft);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.v2-segment li:last-child { border-bottom: none; }
.v2-segment li strong { color: var(--gold); font-weight: 500; }

@media (max-width: 768px) {
  .v2-segment-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ECOSYSTEM FEATURES (full ecosystem section)
   ═══════════════════════════════════════════════════════════════ */
.v2-ecosystem-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.v2-eco-feat {
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 20px;
}
.v2-eco-feat h5 {
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 500;
  color: var(--gold);
  margin-bottom: 8px;
}
.v2-eco-feat p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .v2-ecosystem-features { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   FLOW GRID
   ═══════════════════════════════════════════════════════════════ */
.v2-flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.v2-flow {
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 32px;
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.v2-flow:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}
.v2-flow-num {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1;
  position: absolute;
  top: 24px; right: 32px;
  opacity: 0.4;
}
.v2-flow h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 80%;
}
.v2-flow ol {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin-bottom: 18px;
}
.v2-flow ol li {
  counter-increment: step;
  padding: 6px 0;
  padding-left: 28px;
  font-size: 14px;
  color: var(--white-soft);
  position: relative;
}
.v2-flow ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 600;
  top: 9px;
}
.v2-flow-stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid var(--gray-3);
  margin-top: 14px;
}

@media (max-width: 768px) {
  .v2-flow-grid { grid-template-columns: 1fr; }
  .v2-flow { padding: 24px; }
  .v2-flow-num { font-size: 44px; top: 16px; right: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   FOUNDATIONS GRID
   ═══════════════════════════════════════════════════════════════ */
.v2-foundations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.v2-foundation {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 4px;
  padding: 18px 20px;
  display: flex; flex-direction: column;
  transition: all 0.3s var(--ease-out);
}
.v2-foundation:hover {
  border-color: var(--gold);
  background: var(--gray-2);
}
.v2-foundation strong {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.v2-foundation span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .v2-foundations-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.v2-final-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), rgba(139,26,26,0.03));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 60px 32px;
}
.v2-final-cta h2 { margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════════════
   INDUSTRY GRID
   ═══════════════════════════════════════════════════════════════ */
.v2-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v2-industry {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 28px;
  transition: all 0.3s var(--ease-out);
  display: flex; flex-direction: column;
}
.v2-industry:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}
.v2-industry-icon {
  font-size: 32px;
  margin-bottom: 14px;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-3);
  border-radius: 8px;
}
.v2-industry h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.v2-industry p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.v2-industry-cta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: auto;
}

@media (max-width: 768px) {
  .v2-industry-grid, 
  .v2-industry-grid[style*="repeat(3"] { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.v2-compare {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 8px;
  overflow: hidden;
}
.v2-compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-3);
}
.v2-compare-row:last-child { border-bottom: none; }
.v2-compare-row > div {
  padding: 18px 24px;
  font-size: 14px;
  display: flex; align-items: center;
}
.v2-compare-row > div:first-child {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  background: var(--black);
}
.v2-compare-row.v2-compare-head > div {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--gray-2);
}
.v2-compare-row.v2-compare-head > div:nth-child(2) { color: var(--crimson-light); }
.v2-compare-row.v2-compare-head > div:nth-child(3) { color: var(--gold); }
.v2-compare-row > div:nth-child(2) { border-left: 1px solid var(--gray-3); }
.v2-compare-row > div:nth-child(3) { border-left: 1px solid var(--gray-3); }
.v2-compare span.x::before {
  content: '✕  '; color: var(--crimson-light); font-weight: bold;
}
.v2-compare span.check::before {
  content: '✓  '; color: var(--gold); font-weight: bold;
}

@media (max-width: 768px) {
  .v2-compare-row { grid-template-columns: 1fr; }
  .v2-compare-row > div { border-left: none !important; padding: 12px 18px; }
  .v2-compare-row.v2-compare-head { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   RESULTS GRID
   ═══════════════════════════════════════════════════════════════ */
.v2-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.v2-result {
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
}
.v2-result h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.v2-result-before {
  font-size: 13px;
  color: var(--crimson-light);
  margin-bottom: 8px;
}
.v2-result-arrow {
  font-size: 16px;
  color: var(--muted-2);
  margin: 6px 0;
}
.v2-result-after {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 768px) {
  .v2-results-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.v2-faq { max-width: 800px; margin: 0 auto; }
.v2-faq-item {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 0 24px;
  transition: border-color 0.3s var(--ease-out);
}
.v2-faq-item[open] { border-color: var(--gold-dark); }
.v2-faq-item summary {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
  transition: color 0.2s;
}
.v2-faq-item summary:hover { color: var(--gold); }
.v2-faq-item summary::-webkit-details-marker { display: none; }
.v2-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 300;
  transition: transform 0.3s var(--ease-out);
}
.v2-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.v2-faq-item p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 0 22px;
}

/* ═══════════════════════════════════════════════════════════════
   CONSULTATION FORM
   ═══════════════════════════════════════════════════════════════ */
.v2-consult-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  max-width: 1100px; margin: 0 auto;
}
.v2-consult-form {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 8px;
  padding: 40px;
}
.v2-consult-form h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
}
.v2-form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
.v2-form-field { margin-bottom: 18px; }
.v2-form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.v2-form-field input,
.v2-form-field select,
.v2-form-field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--gray-3);
  color: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.v2-form-field input:focus,
.v2-form-field select:focus,
.v2-form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.v2-form-field textarea { resize: vertical; min-height: 80px; font-family: var(--font-body); }
.v2-honeypot {
  position: absolute; left: -9999px; opacity: 0; pointer-events: none;
}
.v2-form-status {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  display: none;
}
.v2-form-status.success {
  display: block;
  background: rgba(76,175,80,0.1);
  border: 1px solid #4caf50;
  color: #4caf50;
}
.v2-form-status.error {
  display: block;
  background: rgba(230,57,70,0.1);
  border: 1px solid var(--crimson-light);
  color: var(--crimson-light);
}
.v2-form-disclaimer {
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 14px;
  text-align: center;
  line-height: 1.6;
}

/* ─── ASIDE: WHAT TO EXPECT ─── */
.v2-consult-aside h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
.v2-consult-steps {
  list-style: none;
  margin-bottom: 36px;
}
.v2-consult-steps li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-3);
}
.v2-consult-steps li:last-child { border-bottom: none; }
.v2-consult-steps strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 4px;
}
.v2-consult-steps p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.v2-consult-trust {
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}
.v2-consult-trust h5,
.v2-consult-alt h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.v2-consult-trust ul { list-style: none; }
.v2-consult-trust li {
  font-size: 13px;
  color: var(--white-soft);
  padding: 5px 0;
}
.v2-consult-alt {
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 20px;
}
.v2-consult-alt p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.v2-consult-alt a { color: var(--gold); }

@media (max-width: 900px) {
  .v2-consult-grid { grid-template-columns: 1fr; }
  .v2-consult-form { padding: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL: prevent ANY horizontal scroll
   ═══════════════════════════════════════════════════════════════ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
.v2-section, .v2-page-hero, .v2-hero, footer {
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   NAV BRAND LOGO sizing (works for PNG/SVG)
   ═══════════════════════════════════════════════════════════════ */
.v2-nav .brand img {
  height: 38px;
  width: auto;
  display: block;
}
.v2-footer-brand img {
  height: 56px;
  width: auto;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   HAMBURGER BUTTON
   ═══════════════════════════════════════════════════════════════ */
.v2-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--gray-4);
  border-radius: 4px;
  width: 42px; height: 42px;
  padding: 10px 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  transition: border-color 0.2s;
}
.v2-burger:hover { border-color: var(--gold); }
.v2-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE DRAWER (slide-in from right)
   ═══════════════════════════════════════════════════════════════ */
.v2-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
}
.v2-drawer-overlay.open { opacity: 1; visibility: visible; }
.v2-drawer {
  position: fixed;
  top: 0; right: -380px;
  width: 360px; max-width: 92vw;
  height: 100vh;
  background: var(--black);
  border-left: 1px solid var(--gold-dark);
  z-index: 201;
  padding: 60px 28px 28px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  transition: right 0.35s var(--ease-out);
}
.v2-drawer.open { right: 0; }
.v2-drawer-close {
  position: absolute;
  top: 18px; right: 18px;
  background: transparent;
  border: 1px solid var(--gray-4);
  color: var(--muted);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.v2-drawer-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.v2-drawer-brand {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-3);
}
.v2-drawer-brand img {
  height: 48px;
  width: auto;
  display: block;
}
.v2-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: auto;
}
.v2-drawer-links a {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.3s var(--ease-out);
}
.v2-drawer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.v2-drawer-cta {
  margin-top: 32px;
  width: 100%;
  text-align: center;
  padding: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FIXES — show burger, fix overflow
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .v2-nav-links { display: none; }
  .v2-burger { display: flex; }
  .v2-nav > .v2-cta { display: none; }  /* hide top-nav CTA, drawer has it */
  .v2-nav { padding: 0 16px; }
  .v2-nav .brand img { height: 32px; }
}

@media (max-width: 768px) {
  /* HERO: scale down the hero h1 letter-spacing on tight screens */
  .v2-hero h1, .v2-page-hero h1 {
    font-size: 38px !important;
    letter-spacing: -0.01em !important;
    word-break: normal;
    hyphens: auto;
  }
  .v2-hero h1 em, .v2-page-hero h1 em { letter-spacing: -0.01em; }
  
  /* HERO ACTIONS: stack vertically + full width */
  .v2-hero-actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .v2-hero-actions > a { width: 100%; text-align: center; }
  
  /* HERO TRUST: smaller, tighter */
  .v2-hero-trust {
    gap: 10px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  
  /* SECTIONS: tight padding to keep things in viewport */
  .v2-section { padding: 60px 18px; }
  .v2-section h2 { font-size: 30px; letter-spacing: -0.01em; }
  .v2-section .sub { font-size: 15px; }
  
  /* ECOSYSTEM WHEEL: collapse to vertical list on mobile */
  .v2-eco-wheel {
    aspect-ratio: auto !important;
    height: auto !important;
    max-width: 100% !important;
    padding: 20px 0;
  }
  .v2-eco-wheel::before { display: none; }
  .v2-eco-center {
    position: relative;
    top: auto; left: auto; transform: none;
    margin: 0 auto 30px;
  }
  .v2-eco-spokes {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  /* Disable the rotate-translate trick on mobile and just lay out as grid items */
  .v2-eco-spoke[data-angle="0"],
  .v2-eco-spoke[data-angle="30"],
  .v2-eco-spoke[data-angle="60"],
  .v2-eco-spoke[data-angle="90"],
  .v2-eco-spoke[data-angle="120"],
  .v2-eco-spoke[data-angle="150"],
  .v2-eco-spoke[data-angle="180"],
  .v2-eco-spoke[data-angle="210"],
  .v2-eco-spoke[data-angle="240"],
  .v2-eco-spoke[data-angle="270"],
  .v2-eco-spoke[data-angle="300"],
  .v2-eco-spoke[data-angle="330"] {
    transform: none !important;
    position: static !important;
    text-align: center;
  }
  .v2-eco-spoke[data-angle] {
    position: static;
    transform: none !important;
    text-align: center;
  }
  
  /* COMPARE table: head row hidden, rows have inline labels */
  .v2-compare-row { grid-template-columns: 1fr !important; }
  .v2-compare-row > div {
    border-left: none !important;
    padding: 12px 18px;
  }
  .v2-compare-row.v2-compare-head { display: none; }
  .v2-compare-row > div:first-child {
    background: var(--gray-2);
    border-radius: 4px 4px 0 0;
  }
  
  /* PRODUCT cards: smaller padding */
  .v2-product { padding: 24px; }
  .v2-product h3 { font-size: 28px; }
  
  /* FLOW cards: smaller num */
  .v2-flow-num { font-size: 36px; top: 12px; right: 16px; }
  
  /* FOUNDATIONS grid: 1 col on tiny phones */
  .v2-foundations-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .v2-hero h1, .v2-page-hero h1 { font-size: 32px !important; }
  .v2-section h2 { font-size: 26px; }
  .v2-foundations-grid { grid-template-columns: 1fr; }
  .v2-tier-row { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════
   AGENT AVATAR IMAGES (replaces letter circles)
   ═══════════════════════════════════════════════════════════════ */
.v2-agent-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dark);
  margin-bottom: 22px;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15), 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.v2-agent:hover .v2-agent-avatar {
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.3), 0 12px 30px rgba(0,0,0,0.5);
}
.v2-agent-avatar-demo {
  width: 72px;
  height: 72px;
  display: block;
  margin: 0 auto 20px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER WATERMARK — drifting RDA shield in background
   ═══════════════════════════════════════════════════════════════ */
.v2-footer {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(139,26,26,0.35), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(201,168,76,0.25), transparent 60%),
    linear-gradient(180deg, #1a0a08 0%, #0a0608 100%);
  overflow: hidden;
  padding: 80px 32px 50px;
  margin-top: 100px;
  border-top: 1px solid rgba(201,168,76,0.15);
  isolation: isolate;
}
.v2-footer-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;       /* visible against fusion background */
  background-image: url('/v2/img/footer-tile.webp');
  background-repeat: repeat;
  background-size: 140px 140px;
  background-position: 0 0;
  animation: footer-drift 60s linear infinite;
  filter: blur(0.3px) brightness(1.4);
  mix-blend-mode: normal;  /* keep gold visible */
}
@keyframes footer-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 280px 140px; }
}
.v2-footer::after {
  /* subtle gradient overlay to push the watermark farther back near the text */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}
.v2-footer-inner, .v2-footer-bottom {
  position: relative;
  z-index: 2;  /* above watermark + gradient */
}

/* ═══════════════════════════════════════════════════════════════
   Avatar responsive sizing
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .v2-agent-avatar { width: 72px; height: 72px; }
  .v2-agent-avatar-demo { width: 64px; height: 64px; }
}

/* ═══════════════════════════════════════════════════════════════
   EXPANDABLE TIER CARDS (Products page)
   ═══════════════════════════════════════════════════════════════ */
.v2-tier-expand-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.v2-tier-expand-card {
  background: var(--black);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.v2-tier-expand-card:hover { border-color: var(--gold-dark); transform: translateY(-2px); }
.v2-tier-expand-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.v2-tier-expand-card[open] {
  background: var(--gray-1);
  border-color: var(--gold);
  grid-column: 1 / -1;
  padding: 32px;
}
.v2-tier-expand-card summary {
  list-style: none;
  cursor: pointer;
}
.v2-tier-expand-card summary::-webkit-details-marker { display: none; }
.v2-tier-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.v2-tier-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.v2-tier-price {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
}
.v2-tier-price .per-mo {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-left: 2px;
}
.v2-tier-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
  min-height: 38px;
}
.v2-tier-toggle {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-block;
  transition: letter-spacing 0.3s var(--ease-out);
}
.v2-tier-expand-card:hover .v2-tier-toggle { letter-spacing: 0.24em; }
.v2-tier-expand-card[open] .v2-tier-toggle { display: none; }

/* Expanded content */
.v2-tier-expanded {
  padding-top: 24px;
  margin-top: 18px;
  border-top: 1px solid var(--gray-3);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}
.v2-tier-features-label,
.v2-tier-limits-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.v2-tier-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.v2-tier-features li {
  padding: 6px 0;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--white-soft);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.v2-tier-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: bold;
}
.v2-tier-limits ul {
  list-style: none;
  padding: 0; margin: 0;
}
.v2-tier-limits li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  font-size: 12.5px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-transform: capitalize;
}
.v2-tier-limits li strong {
  color: var(--gold);
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 12px;
}
.v2-tier-cta-row {
  grid-column: 1 / -1;
  display: flex; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-3);
  flex-wrap: wrap;
}

/* Tier expand animation */
.v2-tier-expanded { animation: tier-fade-in 0.4s var(--ease-out); }
@keyframes tier-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 900px) {
  .v2-tier-expand-row { grid-template-columns: 1fr 1fr; }
  .v2-tier-expand-card[open] { padding: 24px; }
  .v2-tier-expanded { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 540px) {
  .v2-tier-expand-row { grid-template-columns: 1fr; }
  .v2-tier-expand-card { padding: 18px; }
  .v2-tier-cta-row > a { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   LAUNCHPAD PERSONAS — Who Is This For?
   ═══════════════════════════════════════════════════════════════ */
.v2-launchpad-personas {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-3);
}
.v2-persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.v2-persona {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 8px;
  padding: 28px;
  display: flex; flex-direction: column;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.v2-persona:hover { border-color: var(--gold-dark); transform: translateY(-3px); }
.v2-persona-website {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15);
}
.v2-persona-website:hover { box-shadow: 0 0 0 1px rgba(201,168,76,0.3); }
.v2-persona-badge {
  display: inline-block;
  background: var(--gray-3);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  align-self: flex-start;
}
.v2-persona-website .v2-persona-badge {
  background: var(--gold);
  color: var(--black);
}
.v2-persona h4 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.25;
}
.v2-persona > p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.v2-persona-action {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gray-3);
}
.v2-persona-action-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.v2-persona-action ol {
  list-style: none;
  counter-reset: ps;
  padding: 0; margin: 0;
}
.v2-persona-action ol li {
  counter-increment: ps;
  padding: 6px 0;
  padding-left: 28px;
  font-size: 13px;
  color: var(--white-soft);
  line-height: 1.5;
  position: relative;
}
.v2-persona-action ol li::before {
  content: counter(ps);
  position: absolute; left: 0; top: 6px;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-3);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  border-radius: 50%;
  font-weight: 600;
}
.v2-cta-primary {
  background: var(--gold);
  color: var(--black);
  width: 100%;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   BIZEE PARTNERSHIP BLOCK
   ═══════════════════════════════════════════════════════════════ */
.v2-bizee-block {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-top: 32px;
  padding: 36px;
  background:
    radial-gradient(circle at 0% 0%, rgba(201,168,76,0.08), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(139,26,26,0.08), transparent 50%),
    var(--gray-1);
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
}
.v2-bizee-left h3 em { font-style: italic; }
.v2-bizee-perks {
  list-style: none;
  margin-bottom: 24px;
  padding: 0;
}
.v2-bizee-perks li {
  padding: 8px 0;
  padding-left: 24px;
  font-size: 14px;
  color: var(--white-soft);
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.v2-bizee-perks li:last-child { border-bottom: none; }
.v2-bizee-perks li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: bold;
}
.v2-bizee-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.v2-bizee-stat {
  background: var(--black);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}
.v2-bizee-stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.v2-bizee-stat-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 900px) {
  .v2-persona-grid { grid-template-columns: 1fr; }
  .v2-bizee-block { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .v2-bizee-right { flex-direction: row; flex-wrap: wrap; }
  .v2-bizee-stat { flex: 1; min-width: 100px; }
}
@media (max-width: 540px) {
  .v2-bizee-right { flex-direction: column; }
  .v2-bizee-stat { width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════
   BILINGUAL EN/ES TOGGLE — unified pattern matching customer sites
   ═══════════════════════════════════════════════════════════════ */

/* Default: show English, hide Spanish */
html[lang="en"] [data-lang="es"] { display: none !important; }
html[lang="es"] [data-lang="en"] { display: none !important; }

/* Smooth fade on language switch (optional polish) */
[data-lang] { transition: opacity 0.15s ease; }

/* ─── Lang toggle button (in nav + drawer) ─── */
.lang-toggle {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 72px;
  justify-content: center;
  white-space: nowrap;
}
.lang-toggle:hover {
  background: var(--gold);
  color: var(--black);
}
.lang-toggle-icon {
  font-size: 12px;
  line-height: 1;
}

/* In the mobile drawer, scale up slightly */
.v2-drawer .lang-toggle {
  padding: 10px 16px;
  font-size: 13px;
  width: 100%;
  margin-top: 12px;
}

/* Spanish-friendly reflow (Spanish text averages ~30% longer than English) */
html[lang="es"] body {
  /* Tighter letter-spacing helps long Spanish words fit */
  letter-spacing: -0.005em;
}
html[lang="es"] .v2-page-hero h1,
html[lang="es"] .v2-section h2 {
  /* Slightly more aggressive auto-hyphenation for long Spanish words */
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

/* Mobile: lang toggle CENTERED in header (Phoenix Hispanic market) */
@media (max-width: 768px) {
  .v2-nav {
    position: fixed;
    gap: 8px;
  }
  .v2-nav .brand {
    margin-right: auto;
  }
  .v2-nav .lang-toggle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 10px;
    font-size: 10px;
    min-width: 64px;
    z-index: 5;
  }
  .v2-nav .lang-toggle-icon { font-size: 11px; }
  .v2-nav > .v2-cta {
    padding: 8px 14px;
    font-size: 10px;
    flex-shrink: 0;
  }
  .v2-burger {
    flex-shrink: 0;
    order: 99;
  }
}

@media (max-width: 420px) {
  .v2-nav > .v2-cta { 
    padding: 6px 10px;
    font-size: 9px;
  }
  .v2-nav .lang-toggle { 
    min-width: 56px;
    padding: 5px 8px;
    font-size: 9.5px;
  }
}


/* Coming Soon badge + disabled CTA (P9 UI fixes) */
.v2-soon-badge {
  display: inline-block; font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 100px; padding: 3px 12px;
  margin-left: 10px; vertical-align: middle; opacity: 0.9;
}
.v2-cta-disabled {
  opacity: 0.5; cursor: not-allowed; pointer-events: none;
  filter: grayscale(0.3);
}
