/* GoBunnyy – brand theme
   White #ffffff · Rich green #013e37 · Obsidian #0B1215 · Organizational blue #000055 */

:root {
  --gb-butter: #ffffff;
  --gb-butter-deep: #f1f5f9;
  --gb-butter-soft: #f8fafc;
  --gb-rich-green: #013e37;
  --gb-rich-green-hover: #025448;
  --gb-obsidian: #0B1215;
  --gb-deep-navy: #000055;
  --gb-deep-navy-soft: #00006e;

  --gb-navy: #000055;
  --gb-navy-dark: #0B1215;
  --gb-career-accent: #013e37;
  --gb-consulting-accent: #000055;
  --gb-slate-900: #0B1215;
  --gb-slate-700: #1c2e34;
  --gb-slate-600: #2a3f46;
  --gb-slate-500: #3d545c;
  --gb-slate-200: #e2e8f0;
  --gb-slate-100: #f8fafc;
  --gb-surface: #ffffff;
  --gb-white: #ffffff;
  --gb-radius: 12px;
  --gb-shadow-sm: 0 1px 3px rgba(11, 18, 21, 0.08);
  --gb-shadow-md: 0 8px 24px rgba(11, 18, 21, 0.12);
  --gb-max-width: 1200px;
  --space-section-y: clamp(36px, 4.5vw, 56px);
  --touch-target-min: 44px;
  --font-size-display: clamp(2rem, 4.5vw, 3rem);
  --font-size-h2: clamp(1.75rem, 3vw, 2rem);
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
}

body {
  background: var(--gb-white);
  color: var(--gb-obsidian);
}

/* Unified buttons */
.button-primary,
a.button-primary {
  background: var(--gb-deep-navy);
  border: 2px solid var(--gb-deep-navy);
  color: var(--gb-butter);
}

.button-primary:hover,
a.button-primary:hover {
  background: var(--gb-obsidian);
  border-color: var(--gb-obsidian);
  color: var(--gb-butter);
}

.button-secondary,
a.button-secondary {
  background: transparent;
  border: 2px solid var(--gb-rich-green);
  color: var(--gb-rich-green);
}

.button-secondary:hover,
a.button-secondary:hover {
  border-color: var(--gb-deep-navy);
  color: var(--gb-deep-navy);
  background: var(--gb-butter-soft);
}

.button-ghost,
a.button-ghost {
  background: transparent;
  border: 2px solid transparent;
  color: var(--gb-deep-navy);
}

.section-subtitle {
  color: var(--gb-slate-600);
}

.divisions-section,
.ai-section,
.consulting-section,
.solutions-section,
.cta-section,
#pricing {
  /* Vertical rhythm handled once on .row (see ui-fixes.css) */
  padding-top: 0;
  padding-bottom: 0;
}

.division-card-career .division-badge,
.cta-panel-career .cta-eyebrow,
.hero-route-career .hero-route-eyebrow {
  color: var(--gb-career-accent);
}

.hero-route-career {
  border-color: rgba(1, 62, 55, 0.28);
}

.hero-route-career:hover {
  border-color: var(--gb-career-accent);
}

.scroll-top-btn {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 40;
  width: var(--touch-target-min);
  height: var(--touch-target-min);
  border-radius: 999px;
  border: 1px solid var(--gb-slate-200);
  background: var(--gb-white);
  color: var(--gb-deep-navy);
  box-shadow: var(--gb-shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  cursor: pointer;
  font-size: 1.1rem;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

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

  .scroll-top-btn {
    transition: none;
  }
}

@media (max-width: 720px) {
  .locale-bar-inner {
    padding: 8px 14px;
  }

  .locale-option {
    font-size: 0.75rem;
  }
}
