@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap");

/*
 * Copyright (c) 2026 Quad Digital LLC. All rights reserved.
 * Quad Digital — www.quad-digital.io corporate site styles
 */

/* =========================================================
   TOKENS
========================================================= */
:root {
  --navy:         #0f1f3d;
  --navy-mid:     #1a3260;
  --navy-light:   #243d6e;
  --gold:         #c8a84b;
  --gold-light:   #e8c97a;
  --gold-pale:    #f7f0dc;
  --gold-dark:    #6b4e0e;
  --cream:        #faf8f3;
  --white:        #ffffff;
  --ink:          #1a1a1a;
  --ink-mid:      #4a4a4a;
  --ink-light:    #7a7a7a;
  --rule:         #e0dbd0;
  --rule-dark:    #c8c0b0;
  --ff-display:   'Playfair Display', Georgia, serif;
  --ff-body:      'DM Sans', 'Helvetica Neue', sans-serif;
  --ff-mono:      'DM Mono', 'Courier New', monospace;
}

/* =========================================================
   RESET
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-y: scroll; scrollbar-gutter: stable; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =========================================================
   UTILITY
========================================================= */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.gold-rule { width: 48px; height: 3px; background: var(--gold); margin-bottom: 1.5rem; }
.section-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }
.section-body {
  font-size: 1.0625rem;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 560px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gold); color: var(--navy);
  font-family: var(--ff-body); font-size: 0.9375rem; font-weight: 600;
  letter-spacing: 0.02em; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent; color: rgba(255,255,255,0.75);
  font-family: var(--ff-body); font-size: 0.9375rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline--dark {
  color: var(--navy);
  border-color: var(--rule-dark);
}
.btn-outline--dark:hover { border-color: var(--navy); color: var(--navy); background: var(--white); }

/* =========================================================
   NAV
========================================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,31,61,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,168,75,0.2);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { text-decoration:none; }
.nav-logo-name { font-family:var(--ff-display); font-size:1.25rem; font-weight:700; color:var(--white); letter-spacing:-0.01em; }
.hero-banner-logo { width:420px; max-width:100%; display:block; margin-bottom:2rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-dropdown { position: relative; }
.nav-links .nav-dropdown > a::after { content: ' \25BE'; font-size: 0.6rem; }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  padding-top: 0.75rem; margin-top: 0;
  min-width: 200px;
  background: var(--navy); border: 1px solid rgba(200,168,75,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  padding: 0.5rem 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 0.6rem 1.25rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.15s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(200,168,75,0.08); padding-left: 1.5rem; }
.nav-cta {
  padding: 0.5rem 1.25rem !important;
  background: var(--gold); color: var(--navy) !important;
  font-weight: 600 !important; font-size: 0.8125rem !important;
  letter-spacing: 0.04em !important; text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* =========================================================
   HERO
========================================================= */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 8rem 0 6rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 120px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: flex-start;
}
.hero-eyebrow {
  font-family: var(--ff-mono); font-size: 1.125rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-body {
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Hero: Four Pillars visual */
.hero-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.2);
  position: relative;
}
.hero-pillars::before {
  content: '';
  position: absolute; inset: -12px;
  border: 1px solid rgba(200,168,75,0.08);
  pointer-events: none;
}
.pillar-card {
  background: rgba(255,255,255,0.03);
  padding: 2rem;
  transition: background 0.3s;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.pillar-card:hover { background: rgba(200,168,75,0.06); }
.pillar-number {
  font-family: var(--ff-mono); font-size: 0.625rem;
  color: rgba(200,168,75,0.4); letter-spacing: 0.1em;
}
.pillar-icon { font-size: 1.75rem; line-height: 1; }
.pillar-name {
  font-family: var(--ff-display); font-size: 1.125rem;
  font-weight: 600; color: var(--white);
}
.pillar-desc {
  font-size: 0.8125rem; color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.pillar-rule { width: 24px; height: 2px; background: var(--gold); margin-top: 0.25rem; }

/* =========================================================
   TAGLINE BAND
========================================================= */
.tagline-band {
  background: var(--gold);
  padding: 1.25rem 0;
  text-align: center;
}
.tagline-band-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.tagline-main {
  font-family: var(--ff-display);
  font-size: 1.125rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.01em;
}
.tagline-divider { width: 1px; height: 1.5rem; background: rgba(15,31,61,0.2); }
.tagline-sub {
  font-family: var(--ff-mono);
  font-size: 0.75rem; font-weight: 500;
  color: rgba(15,31,61,0.6);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* =========================================================
   INTRO SECTION
========================================================= */
.intro { padding: 7rem 0; background: var(--cream); }
.intro-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.intro-body {
  font-size: 1.0625rem; color: var(--ink-mid);
  line-height: 1.8; margin-bottom: 1.5rem;
}
.intro-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); margin-top: 2rem;
}
.intro-stat { background: var(--white); padding: 1.5rem; }
.intro-stat-number {
  font-family: var(--ff-display);
  font-size: 2.25rem; font-weight: 700;
  color: var(--gold-dark); line-height: 1; margin-bottom: 0.375rem;
}
.intro-stat-label {
  font-size: 0.8125rem; color: var(--ink-light);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.intro-visual { background: var(--navy); padding: 3rem; position: relative; }
.intro-visual::before {
  content: '';
  position: absolute; top: -10px; right: -10px; bottom: 10px; left: 10px;
  border: 1px solid var(--gold); opacity: 0.25; pointer-events: none;
}
.intro-quote {
  font-family: var(--ff-display);
  font-size: 1.375rem; font-weight: 400;
  font-style: italic; color: var(--white);
  line-height: 1.6; margin-bottom: 1.5rem;
}
.intro-quote-mark {
  font-size: 3.5rem; color: var(--gold);
  line-height: 0.6; display: block;
  margin-bottom: 1rem; opacity: 0.5; font-family: var(--ff-display);
}
.intro-byline {
  font-family: var(--ff-mono); font-size: 0.6875rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* =========================================================
   PRODUCTS SECTION
========================================================= */
.products {
  padding: 7rem 0; background: var(--white);
  border-top: 1px solid var(--rule);
}
.products-header { margin-bottom: 4rem; }
.products-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
}
.product-card {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 2fr; gap: 0;
}
.product-card-left {
  background: var(--navy); padding: 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.product-tag {
  font-family: var(--ff-mono); font-size: 0.6875rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.product-name {
  font-family: var(--ff-display); font-size: 2rem;
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1rem;
}
.product-name span { color: var(--gold); }
.product-tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.product-card-right { padding: 3rem; }
.product-desc {
  font-size: 1.0625rem; color: var(--ink-mid);
  line-height: 1.8; margin-bottom: 2rem;
}
.product-pillars { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.product-pillar {
  font-family: var(--ff-mono); font-size: 0.6875rem;
  color: var(--navy); background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.5);
  padding: 0.35rem 0.75rem; letter-spacing: 0.05em;
  font-weight: 500;
}
.product-cta { display: flex; gap: 1rem; align-items: center; }
.product-link {
  font-size: 0.875rem; font-weight: 500; color: var(--gold-dark);
  text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s;
}
.product-link:hover { color: var(--gold); }

/* =========================================================
   VERTICALS SECTION
========================================================= */
.verticals {
  padding: 7rem 0; background: var(--cream);
  border-top: 1px solid var(--rule);
}
.verticals-header { margin-bottom: 4rem; }
.verticals-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
}
.vertical-card {
  background: var(--cream); padding: 2.5rem;
  transition: background 0.2s; cursor: pointer;
  position: relative; display: flex; flex-direction: column; gap: 1rem;
}
.vertical-card:hover { background: var(--white); }
.vertical-card::after {
  content: '\2192';
  position: absolute; bottom: 2rem; right: 2rem;
  font-size: 1.25rem; color: var(--gold);
  opacity: 0; transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}
.vertical-card:hover::after { opacity: 1; transform: translateX(0); }
.vertical-icon { font-size: 2rem; line-height: 1; }
.vertical-name {
  font-family: var(--ff-display); font-size: 1.1875rem;
  font-weight: 600; color: var(--navy);
}
.vertical-desc { font-size: 0.9375rem; color: var(--ink-mid); line-height: 1.7; flex: 1; }
.vertical-tag {
  font-family: var(--ff-mono); font-size: 0.6875rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark);
  font-weight: 600;
}

/* =========================================================
   FOUR PILLARS DEEP DIVE
========================================================= */
.pillars-section {
  padding: 7rem 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.pillars-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.pillars-header { margin-bottom: 4rem; position: relative; z-index: 1; }
.pillars-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.12);
}
.pillar-deep-card {
  background: rgba(255,255,255,0.02); padding: 2.5rem; transition: background 0.3s;
}
.pillar-deep-card:hover { background: rgba(200,168,75,0.05); }
.pillar-deep-number {
  font-family: var(--ff-display); font-size: 3rem;
  font-weight: 700; font-style: italic;
  color: rgba(200,168,75,0.15); line-height: 1; margin-bottom: 1.5rem;
}
.pillar-deep-name {
  font-family: var(--ff-display); font-size: 1.25rem;
  font-weight: 600; color: var(--gold); margin-bottom: 0.75rem;
}
.pillar-deep-body {
  font-size: 0.9375rem; color: rgba(255,255,255,0.5); line-height: 1.75;
}
.pillar-deep-rule { width: 32px; height: 2px; background: var(--gold); opacity: 0.4; margin: 1.25rem 0; }

/* =========================================================
   TRUST BAND
========================================================= */
.trust-band {
  padding: 4rem 0; background: var(--cream);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item {
  text-align: center; padding: 1.5rem 2rem;
  border-right: 1px solid var(--rule);
}
.trust-item:last-child { border-right: none; }
.trust-number {
  font-family: var(--ff-display); font-size: 2.5rem;
  font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.5rem;
}
.trust-label {
  font-size: 0.8125rem; color: var(--ink-light);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* =========================================================
   INFRASTRUCTURE CALLOUT
========================================================= */
.infra-callout {
  padding: 5rem 0; background: var(--white);
  border-top: 1px solid var(--rule);
}
.infra-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.infra-body { font-size: 1.0625rem; color: var(--ink-mid); line-height: 1.8; margin-bottom: 1.5rem; }
.infra-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.infra-badge {
  font-family: var(--ff-mono); font-size: 0.6875rem;
  color: var(--navy); background: var(--cream);
  border: 1px solid var(--rule-dark); padding: 0.4rem 0.875rem; letter-spacing: 0.05em;
}
.infra-specs { background: var(--navy); padding: 2.5rem; position: relative; }
.infra-specs::before {
  content: '';
  position: absolute; top: -8px; right: -8px; bottom: 8px; left: 8px;
  border: 1px solid var(--gold); opacity: 0.2; pointer-events: none;
}
.infra-spec-title {
  font-family: var(--ff-mono); font-size: 0.6875rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.infra-spec-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 1rem;
}
.infra-spec-row:last-child { border-bottom: none; }
.infra-spec-key { font-size: 0.8125rem; color: rgba(255,255,255,0.4); flex-shrink: 0; padding-top: 0.05rem; }
.infra-spec-val { font-family: var(--ff-mono); font-size: 0.8125rem; color: var(--white); font-weight: 500; text-align: right; }

/* =========================================================
   CTA SECTION
========================================================= */
.cta-section {
  padding: 7rem 0; background: var(--navy);
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow {
  font-family: var(--ff-mono); font-size: 0.8125rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.cta-body {
  font-size: 1.0625rem; color: rgba(255,255,255,0.55);
  max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: #080f1e; padding: 4rem 0 2rem;
  border-top: 1px solid rgba(200,168,75,0.1);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo-img, .footer-logo { height: 40px; width: auto; max-width: 200px; display:block; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.8125rem; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 240px; }
.footer-col-title {
  font-family: var(--ff-mono); font-size: 0.6875rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col-links a { font-size: 0.875rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-col-links a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
.footer-rubicon { font-size: 0.75rem; color: rgba(255,255,255,0.18); font-family: var(--ff-mono); }
.footer-rubicon a { color: rgba(200,168,75,0.4); transition: color 0.2s; }
.footer-rubicon a:hover { color: var(--gold); }

/* =========================================================
   ANIMATIONS
========================================================= */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-pillars { grid-template-columns: 1fr 1fr; }
  .intro-inner { grid-template-columns: 1fr; gap: 3rem; }
  .product-card { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .infra-inner { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { display: none; }
  .tagline-divider { display: none; }
}
@media (max-width: 600px) {
  .verticals-grid { grid-template-columns: 1fr; }
  .hero-pillars { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
}


/* =========================================================
   VERTICALS - ALL MARKETS CALLOUT CARD
========================================================= */
.vertical-card--all {
  background: var(--navy);
}
.vertical-card--all:hover { background: var(--navy-mid); }
.vertical-card--all .vertical-name { color: var(--white); }
.vertical-card--all .vertical-desc { color: rgba(255,255,255,0.45); }
.vertical-card--all .vertical-tag { color: var(--gold); }
.vertical-card--all::after { color: var(--gold); }
.vertical-card--all .vertical-stat {
  font-family: var(--ff-display);
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 0.25rem;
}
.vertical-card--all .vertical-stat-label {
  font-size: 0.8125rem; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.vertical-stats-pair { display: flex; gap: 2rem; margin-top: 0.5rem; }
