/* ═══════════════════════════════════════════════════════════
   abaco — Industry pages shared styles
   Design tokens + nav + hero + sections + footer
   Consistent with index.html / diagnostico.html / contact.html
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --white: #ffffff;
  --black: #0A0A0A;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --blue: #1D4ED8;
  --blue-light: #EFF6FF;
  --purple: #6D28D9;
  --purple-light: #F5F3FF;
  --green: #047857;
  --green-light: #ECFDF5;
  --amber: #B45309;
  --amber-light: #FFFBEB;
  --ink: #001639;
  --ink-2: #062154;
  --accent: #ff6f28;
  --accent-2: #ff8a4d;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --font: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; background: var(--white); }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-200);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); flex-shrink: 0; }
.nav-logo img { content: url('/assets/abaco/logo-dark.svg'); transition: opacity .3s; display: block; }
#navbar.scrolled .nav-logo img { content: url('/assets/abaco/logo.svg'); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85);
  text-decoration: none; padding: 6px 12px; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
#navbar.scrolled .nav-links a { color: var(--gray-600); }
#navbar.scrolled .nav-links a:hover { color: var(--black); background: var(--gray-100); }
.nav-cta {
  font-size: 14px; font-weight: 700; color: var(--white);
  background: var(--accent); border-radius: 999px;
  padding: 10px 20px; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow .2s;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255,111,40,.35);
}
.nav-cta:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,111,40,.5); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.25s; }
#navbar.scrolled .nav-hamburger span { background: var(--black); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px 24px; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mob-link { font-size: 16px; font-weight: 500; color: var(--gray-700); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.mob-cta { margin-top: 12px; background: var(--black); color: var(--white); text-decoration: none; font-weight: 700; font-size: 15px; padding: 14px 20px; border-radius: var(--radius); text-align: center; }
.mob-cap { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); padding: 14px 0 2px; }
.mob-sub { padding-left: 16px !important; }

/* ─── NAV DROPDOWN (Casos de Uso) ─── */
.nav-dd { position: relative; }
.nav-dd-toggle { display: inline-flex !important; align-items: center; gap: 5px; cursor: pointer; }
.nav-dd-caret { width: 11px; height: 11px; transition: transform .2s; flex-shrink: 0; }
.nav-dd:hover .nav-dd-caret { transform: rotate(180deg); }
.nav-dd::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px; background: #fff;
  border: 1px solid var(--gray-200); border-radius: 14px;
  box-shadow: 0 16px 44px rgba(0,22,57,.16);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 300;
}
.nav-dd:hover .nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd-menu a { padding: 10px 14px; border-radius: 9px; font-size: 14px; font-weight: 500; color: var(--gray-700) !important; white-space: nowrap; background: none !important; }
.nav-dd-menu a:hover { background: var(--gray-100) !important; color: var(--black) !important; }

/* ─── DARK HERO BAND ─── */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 60%, var(--ink) 100%);
  color: var(--white);
  padding-top: 140px;
  padding-bottom: 96px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.hero-aurora {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
}
.hero-aurora svg {
  position: absolute;
  top: -10%; right: -15%;
  width: 110%; height: 140%;
  opacity: .9;
  mix-blend-mode: screen;
  filter: saturate(125%) contrast(105%);
  animation: auroraHue 22s linear infinite;
}
@keyframes auroraHue {
  0%   { filter: saturate(125%) contrast(105%) hue-rotate(0deg); }
  50%  { filter: saturate(135%) contrast(108%) hue-rotate(28deg); }
  100% { filter: saturate(125%) contrast(105%) hue-rotate(0deg); }
}
.page-hero-inner {
  max-width: 900px; margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 1;
  text-align: center;
}
.page-hero .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 6px 14px; margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.page-hero .pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.05;
  color: var(--white);
  max-width: 820px; margin: 0 auto 18px;
}
.page-hero h1 .grad {
  background: linear-gradient(135deg, #ff6f28 0%, #ffb085 50%, #c084fc 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}
.page-hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  max-width: 640px; margin: 0 auto;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 30px;
}

/* ─── CONTENT ─── */
.content-wrap {
  max-width: 1160px; margin: 0 auto; width: 100%;
  padding: 76px 24px 100px;
  position: relative;
  z-index: 2;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius);
  font-family: var(--font); font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, background 0.2s, box-shadow .3s;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 14px rgba(255,111,40,.35);
}
.btn-primary:hover { opacity: 0.94; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,111,40,.5); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,.06); color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); }
.btn-outline {
  background: var(--white); color: var(--gray-800);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--gray-400); background: var(--gray-50); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ─── SECTION ─── */
.section { margin-top: 88px; }
.section:first-of-type { margin-top: 0; }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-500); border: 1px solid var(--gray-200);
  border-radius: 100px; padding: 5px 14px; background: var(--gray-50);
  margin-bottom: 18px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); }
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.12; color: var(--black);
}
.section-head p {
  margin-top: 14px; font-size: 17px; line-height: 1.6; color: var(--gray-600);
}

/* ─── HUB: INDUSTRY CARDS ─── */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ind-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0,22,57,.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ind-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,22,57,.12); border-color: var(--gray-300); }
.ind-card .ico {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(255,111,40,.14));
  color: var(--ink); margin-bottom: 22px;
}
.ind-card h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--black); margin-bottom: 10px; }
.ind-card p { font-size: 15px; line-height: 1.6; color: var(--gray-600); flex: 1; }
.ind-card .go {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--accent);
}
.ind-card .go svg { transition: transform .2s; }
.ind-card:hover .go svg { transform: translateX(4px); }

/* ─── CHALLENGES (problem cards) ─── */
.challenge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.challenge {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 26px 26px 26px 24px;
  box-shadow: 0 6px 24px rgba(0,22,57,.05);
}
.challenge h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.challenge h3 .cn {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  background: var(--amber-light); color: var(--amber);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.challenge p { font-size: 15px; line-height: 1.62; color: var(--gray-600); }

/* ─── SOLUTIONS ─── */
.sol-band {
  background: linear-gradient(180deg, var(--gray-50), var(--white));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}
.sol-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 34px; }
.sol {
  display: flex; gap: 16px;
}
.sol .sol-ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.sol h3 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 6px; letter-spacing: -0.01em; }
.sol p { font-size: 14.5px; line-height: 1.6; color: var(--gray-600); }

/* ─── BENEFITS ─── */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  box-shadow: 0 6px 24px rgba(0,22,57,.05);
}
.benefit-card .bnum {
  font-size: 34px; font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #7c3aed, #ff6f28);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.benefit-card p { font-size: 14px; line-height: 1.55; color: var(--gray-600); }

/* ─── CTA BAND ─── */
.cta-band {
  margin-top: 88px;
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 55%, #2a1258 100%);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  color: var(--white);
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px circle at 20% 0%, rgba(255,111,40,.22), transparent 60%),
    radial-gradient(600px circle at 90% 100%, rgba(124,58,237,.30), transparent 55%);
}
.cta-band h2 {
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.12; color: var(--white);
  max-width: 640px; margin: 0 auto 14px;
}
.cta-band p {
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.75);
  max-width: 560px; margin: 0 auto 30px;
}
.cta-band .hero-cta-row { margin-top: 0; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
  font-size: 13px; color: var(--gray-400);
  position: relative; z-index: 1;
}
footer a { color: var(--gray-500); text-decoration: none; }
footer a:hover { color: var(--black); }
footer .dot-accent { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════
   VISUAL SHOWCASE — bento grid + per-industry mockups
   ═══════════════════════════════════════════════════════════ */
.showcase { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(330px, auto); gap: 20px; }
.show-card {
  position: relative; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 30px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 30px rgba(0,22,57,.05);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.show-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(0,22,57,.12); border-color: var(--gray-300); }
.show-card.span-2 { grid-column: span 2; }
.show-card .sc-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 12px;
}
.show-card .sc-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.show-card h3 { font-size: 19px; font-weight: 800; letter-spacing: -.02em; color: var(--black); margin-bottom: 8px; }
.show-card > p { font-size: 14px; line-height: 1.55; color: var(--gray-600); max-width: 460px; }
.sv { margin-top: 22px; position: relative; flex: 1; min-height: 180px; border-radius: 14px; overflow: hidden; }

/* Gradient washes */
.sv-violet  { background: linear-gradient(135deg,#ede9fe 0%, #f5d0fe 50%, #fde4cf 100%); }
.sv-indigo  { background: linear-gradient(135deg,#e0e7ff 0%, #c7d2fe 60%, #ddd6fe 100%); }
.sv-peach   { background: linear-gradient(135deg,#ffe9d6 0%, #fed7aa 60%, #fbcfe8 100%); }
.sv-mint    { background: linear-gradient(135deg,#dcfce7 0%, #c7d2fe 100%); }
.sv-sky     { background: linear-gradient(135deg,#dbeafe 0%, #bae6fd 60%, #e0f2fe 100%); }
.sv-lime    { background: linear-gradient(135deg,#ecfccb 0%, #d9f99d 55%, #fef9c3 100%); }
.sv-sunset  { background: linear-gradient(135deg,#fef3c7 0%, #fed7aa 40%, #f5d0fe 100%); }
.sv-rose    { background: linear-gradient(135deg,#ffe4e6 0%, #fecdd3 55%, #fae8ff 100%); }

/* Data rows / table */
.v-table { position: absolute; inset: 18px; display: flex; flex-direction: column; gap: 9px; justify-content: center; }
.v-row {
  background: rgba(255,255,255,.94); border-radius: 10px; padding: 11px 13px;
  box-shadow: 0 4px 12px -6px rgba(0,22,57,.15);
  display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; align-items: center;
}
.v-row .nm { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.v-row .mrg { font-size: 12px; font-weight: 800; color: #15803d; font-family: var(--mono); }
.v-row .mrg.neg { color: #dc2626; }
.v-row .track { grid-column: 1 / -1; height: 6px; border-radius: 4px; background: rgba(0,22,57,.08); overflow: hidden; }
.v-row .track i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg,#7c3aed,#ff6f28); }
.v-row .track i.warn { background: linear-gradient(90deg,#f59e0b,#ef4444); }

/* Stacked composition bar + legend */
.v-stack { position: absolute; inset: 24px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.v-stack .bar { display: flex; height: 28px; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px -6px rgba(0,22,57,.22); }
.v-stack .bar span { display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; }
.v-stack .legend { display: flex; flex-direction: column; gap: 7px; }
.v-stack .lg { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--ink); background: rgba(255,255,255,.9); border-radius: 8px; padding: 7px 11px; box-shadow: 0 3px 10px -6px rgba(0,22,57,.15); }
.v-stack .lg b { margin-left: auto; font-weight: 800; font-family: var(--mono); }
.v-stack .sw { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; }

/* Ranking bars */
.v-rank { position: absolute; inset: 22px; display: flex; flex-direction: column; justify-content: center; gap: 13px; }
.v-rank .rk { display: flex; flex-direction: column; gap: 6px; }
.v-rank .rk .top { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink); }
.v-rank .rk .top b { font-weight: 800; font-family: var(--mono); }
.v-rank .rk .tr { height: 9px; border-radius: 5px; background: rgba(255,255,255,.55); overflow: hidden; }
.v-rank .rk .tr i { display: block; height: 100%; border-radius: 5px; background: linear-gradient(90deg,#7c3aed,#c084fc); }
.v-rank .rk .tr i.o { background: linear-gradient(90deg,#ff6f28,#ffb085); }

/* Spark / area chart */
.v-spark { position: absolute; left: 16px; right: 16px; top: 34%; bottom: 16px; }
.v-spark svg { width: 100%; height: 100%; }
.v-badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.94); border-radius: 999px; padding: 5px 12px; font-size: 11px; font-weight: 700; color: var(--ink); box-shadow: 0 4px 12px -6px rgba(0,22,57,.2); display: inline-flex; align-items: center; gap: 6px; }
.v-badge .d { color: #15803d; }
.v-badge .d.neg { color: #dc2626; }

/* Radial gauge */
.v-gauge { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.v-gauge .ring { position: relative; width: 128px; height: 128px; }
.v-gauge .ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.v-gauge .ring .big { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.v-gauge .ring .big .n { font-size: 27px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.v-gauge .ring .big .u { font-size: 10px; color: var(--gray-500); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.v-gauge .cap { font-size: 12px; color: var(--ink); background: rgba(255,255,255,.9); padding: 6px 13px; border-radius: 999px; box-shadow: 0 3px 10px -6px rgba(0,22,57,.2); font-weight: 600; }

/* KPI mini grid */
.v-kpis { position: absolute; inset: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.v-kpi { background: rgba(255,255,255,.93); border-radius: 10px; padding: 12px 13px; box-shadow: 0 4px 12px -6px rgba(0,22,57,.15); display: flex; flex-direction: column; gap: 3px; justify-content: center; }
.v-kpi .l { font-size: 10.5px; color: var(--gray-500); }
.v-kpi .v { font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.v-kpi .d { font-size: 11px; font-weight: 700; color: #15803d; }
.v-kpi .d.neg { color: #dc2626; }

/* Alert toasts */
.v-alert { position: absolute; inset: 18px; display: flex; flex-direction: column; gap: 9px; justify-content: center; }
.v-alert .t { background: rgba(255,255,255,.96); border-radius: 11px; padding: 11px 13px; font-size: 12px; color: var(--ink); line-height: 1.4; display: flex; gap: 10px; align-items: flex-start; box-shadow: 0 8px 20px -10px rgba(0,22,57,.22); border-left: 3px solid var(--accent); }
.v-alert .t.p { border-left-color: #7c3aed; }
.v-alert .t.g { border-left-color: #22c55e; }
.v-alert .t .i { width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; background: linear-gradient(135deg,var(--accent),#ff9d6f); }
.v-alert .t.p .i { background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.v-alert .t.g .i { background: linear-gradient(135deg,#16a34a,#4ade80); }

/* Checklist */
.v-check { position: absolute; inset: 20px; display: flex; flex-direction: column; gap: 9px; justify-content: center; }
.v-check .c { background: rgba(255,255,255,.93); border-radius: 10px; padding: 11px 13px; font-size: 12.5px; color: var(--ink); display: flex; align-items: center; gap: 11px; box-shadow: 0 4px 12px -6px rgba(0,22,57,.15); }
.v-check .c .k { width: 19px; height: 19px; border-radius: 50%; background: #22c55e; color: #fff; font-size: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v-check .c .k.p { background: #a78bfa; }
.v-check .c b { font-weight: 800; font-family: var(--mono); margin-left: auto; }

/* Seasonal harvest calendar (Gantt-like) */
.v-cal { position: absolute; inset: 22px; display: flex; flex-direction: column; gap: 11px; justify-content: center; }
.v-cal .mrow { display: flex; align-items: center; gap: 10px; }
.v-cal .mrow .nm { font-size: 11.5px; font-weight: 700; color: var(--ink); width: 72px; flex-shrink: 0; }
.v-cal .mrow .tl { flex: 1; height: 11px; border-radius: 6px; background: rgba(255,255,255,.55); position: relative; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(0,22,57,.05); }
.v-cal .mrow .tl i { position: absolute; top: 0; bottom: 0; border-radius: 6px; }
.v-cal .months { display: flex; justify-content: space-between; font-size: 9px; color: var(--gray-500); padding-left: 82px; font-weight: 600; }

/* Compact challenge chips */
.challenge.mini { border-left-width: 3px; padding: 20px 22px; }
.challenge.mini h3 { margin-bottom: 0; font-size: 15.5px; }
.challenge.mini h3 .cn { width: 24px; height: 24px; }

/* Seasonal cash-flow bars (net cash by month) */
.v-bars { position: absolute; inset: 20px 20px 16px; display: flex; flex-direction: column; }
.v-bars .plot { flex: 1; display: flex; align-items: stretch; gap: 5px; position: relative; }
.v-bars .plot::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(0,22,57,.16); }
.v-bars .col { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.v-bars .col .top { height: 50%; display: flex; align-items: flex-end; padding-bottom: 1px; }
.v-bars .col .bot { height: 50%; display: flex; align-items: flex-start; padding-top: 1px; }
.v-bars .col i { display: block; width: 100%; border-radius: 3px; }
.v-bars .col .top i { background: linear-gradient(180deg,#4ade80,#16a34a); }
.v-bars .col .bot i { background: linear-gradient(180deg,#ff8a4c,#ff6f28); }
.v-bars .months { display: flex; gap: 5px; margin-top: 7px; }
.v-bars .months span { flex: 1; text-align: center; font-size: 8.5px; color: var(--gray-500); font-weight: 600; }
.v-bars .lgn { position: absolute; top: -2px; right: 0; display: flex; gap: 10px; font-size: 9.5px; font-weight: 700; }
.v-bars .lgn i { width: 8px; height: 8px; border-radius: 2px; display: inline-block; margin-right: 4px; vertical-align: middle; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .ind-grid { grid-template-columns: 1fr; }
  .challenge-grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .show-card.span-2 { grid-column: span 1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding-top: 110px; padding-bottom: 72px; }
  .content-wrap { padding-top: 56px; padding-bottom: 64px; }
  .sol-band { padding: 32px 22px; }
  .cta-band { padding: 44px 24px; }
  .section { margin-top: 64px; }
  .cta-band { margin-top: 64px; }
  .hero-aurora svg { animation: none !important; mix-blend-mode: normal; }
}
@media (max-width: 480px) {
  .benefit-grid { grid-template-columns: 1fr; }
}
