/* ============================================================
   ODDLY EVEN STUDIO — MAIN STYLESHEET
   "Electric Lab" — Bold. Playful. Technically Brilliant.
   Cody, Wyoming's coolest tech lab.
   ============================================================ */

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

/* ─── DESIGN TOKENS ─── */
:root {
  --yellow:       #FFE230;
  --yellow-hot:   #FFD000;
  --yellow-pale:  #FFFBE0;
  --yellow-glow:  rgba(255,226,48,0.15);
  --black:        #0A0A0A;
  --ink:          #111111;
  --charcoal:     #1A1A1A;
  --panel:        #222222;
  --border:       rgba(255,226,48,0.15);
  --border-hi:    rgba(255,226,48,0.5);
  --white:        #FAFAFA;
  --text-body:    rgba(255,255,255,0.75);
  --text-muted:   rgba(255,255,255,0.38);
  --accent-blue:  #4DFFEF;
  --accent-pink:  #FF4DCA;
  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    16px;
  --radius-pill:  100px;
  --font-display: 'Syne', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-body:    'DM Sans', sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── CUSTOM CURSOR ─── */
.cursor {
  width: 12px; height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--yellow);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.25s, height 0.25s, opacity 0.2s;
  opacity: 0.6;
}
body:hover .cursor { opacity: 1; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 2px; }

/* ─── GRID BACKGROUND PATTERN ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,226,48,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,226,48,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ─── NAV ─── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--yellow); }

/* Brooke paw icon in nav */
.nav-paw {
  width: 32px; height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s;
}
.nav-paw:hover { transform: rotate(20deg) scale(1.1); }

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
.main-navigation a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.2s;
  text-transform: uppercase;
}
.main-navigation a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  transition: all 0.2s !important;
  transform: rotate(-1deg);
}
.nav-cta:hover {
  background: var(--yellow-hot) !important;
  transform: rotate(0deg) scale(1.05) !important;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 0;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient blob */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,226,48,0.08) 0%, transparent 70%);
  top: 10%; right: 5%;
  border-radius: 50%;
  animation: blob-float 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-30px) scale(1.05); }
  66% { transform: translate(-15px,20px) scale(0.97); }
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-glow);
  border: 1px solid var(--border-hi);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow);
  margin-bottom: 32px;
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 .highlight {
  color: var(--yellow);
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 0.6s 0.8s forwards ease-out;
}
@keyframes underline-in { to { transform: scaleX(1); } }

.hero h1 .outlined {
  -webkit-text-stroke: 2px var(--yellow);
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow-hot);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,226,48,0.3); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.stat-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ─── HERO RIGHT — BROOKE CARD ─── */
.hero-right {
  background: var(--charcoal);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,226,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.brooke-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 360px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.brooke-card:hover {
  transform: translateY(-4px) rotate(0.5deg);
  box-shadow: 0 24px 64px rgba(255,226,48,0.12);
}

.brooke-avatar {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-hot) 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  box-shadow: 0 8px 32px rgba(255,226,48,0.3);
  animation: wiggle 4s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.brooke-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 4px;
}
.brooke-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow);
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.brooke-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.brooke-stat {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}
.brooke-stat-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  display: block;
}
.brooke-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

.brooke-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,226,48,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.brooke-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: #4DFF91; flex-shrink: 0; animation: pulse 2s infinite; }

/* Floating paw prints */
.paw-float {
  position: absolute;
  font-size: 20px;
  opacity: 0.08;
  animation: float-paw 6s ease-in-out infinite;
}
.paw-float:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.paw-float:nth-child(2) { top: 70%; left: 75%; animation-delay: 2s; }
.paw-float:nth-child(3) { top: 40%; left: 85%; animation-delay: 4s; font-size: 14px; }
@keyframes float-paw {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
  50% { transform: translateY(-12px) rotate(15deg); opacity: 0.15; }
}

/* ─── TICKER BAND ─── */
.ticker-band {
  background: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-sep { font-size: 18px; color: rgba(0,0,0,0.3); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTION SHARED ─── */
.section-pad { padding: 120px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '//';
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title .em { color: var(--yellow); }
.section-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── SERVICES ─── */
#services { background: var(--ink); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.service-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,226,48,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { border-color: var(--yellow); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(255,226,48,0.1); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-num { opacity: 0.08; }

.service-num {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: var(--yellow);
  opacity: 0.04;
  position: absolute;
  top: -20px; right: -10px;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.3s;
  letter-spacing: -0.04em;
}

.service-emoji {
  font-size: 40px;
  margin-bottom: 24px;
  display: block;
  transition: transform 0.3s;
}
.service-card:hover .service-emoji { transform: scale(1.2) rotate(5deg); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,226,48,0.08);
  border: 1px solid var(--border);
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Featured service card */
.service-card.featured {
  background: var(--yellow);
  border-color: var(--yellow);
  grid-row: span 1;
}
.service-card.featured::before { display: none; }
.service-card.featured h3 { color: var(--black); }
.service-card.featured p { color: rgba(0,0,0,0.65); }
.service-card.featured .service-num { color: rgba(0,0,0,0.08); }
.service-card.featured .tag { background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.2); color: var(--black); }
.service-card.featured:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(255,226,48,0.3); border-color: var(--yellow-hot); }

/* ─── AI SECTION ─── */
#ai-power {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#ai-power::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(77,255,239,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(255,226,48,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.85;
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.ai-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.ai-feature:hover { border-color: var(--accent-blue); transform: translateX(4px); }
.ai-feature-icon {
  width: 36px; height: 36px;
  background: rgba(77,255,239,0.1);
  border: 1px solid rgba(77,255,239,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ai-feature h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.ai-feature p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Terminal window */
.terminal {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13px;
}
.terminal-header {
  background: var(--panel);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot.red { background: #FF5F57; }
.terminal-dot.yellow { background: #FFBD2E; }
.terminal-dot.green { background: #28C840; }
.terminal-title {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 8px;
  letter-spacing: 0.08em;
}
.terminal-body { padding: 24px; line-height: 2; }
.t-line { display: flex; gap: 12px; margin-bottom: 4px; }
.t-prompt { color: var(--yellow); }
.t-cmd { color: var(--white); }
.t-comment { color: rgba(255,255,255,0.25); }
.t-output { color: var(--accent-blue); padding-left: 20px; }
.t-success { color: #4DFF91; padding-left: 20px; }
.t-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--yellow);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ─── INSIGHTS / DASHBOARD ─── */
#insights { background: var(--ink); }

.insights-showcase {
  margin-top: 64px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dashboard-header {
  background: var(--panel);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.dashboard-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.dashboard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #4DFF91;
}
.status-dot { width: 6px; height: 6px; background: #4DFF91; border-radius: 50%; animation: pulse 2s infinite; }

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.dash-metric {
  background: var(--charcoal);
  padding: 28px 24px;
  transition: background 0.2s;
}
.dash-metric:hover { background: var(--panel); }
.metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-value .unit { font-size: 18px; color: var(--yellow); }
.metric-change {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #4DFF91;
}
.metric-change.down { color: #FF4D4D; }

.insights-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--border);
  margin-top: 1px;
}
.insight-item {
  background: var(--charcoal);
  padding: 28px 24px;
  transition: background 0.2s;
}
.insight-item:hover { background: var(--panel); }
.insight-icon { font-size: 24px; margin-bottom: 10px; }
.insight-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.insight-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── ABOUT / KAILA ─── */
#about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 80px;
  align-items: center;
}

.about-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-card-top {
  background: var(--yellow);
  padding: 48px 40px 40px;
  position: relative;
  overflow: hidden;
}
.about-card-top::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
}
.about-portrait {
  width: 100px; height: 100px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 16px;
  border: 3px solid rgba(0,0,0,0.1);
}
.about-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.about-card-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-card-body { padding: 28px 32px; }
.about-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.about-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--yellow-glow);
  border: 1px solid var(--border-hi);
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.85;
}
.about-content p strong { color: var(--white); font-weight: 500; }

.wyoming-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.wyoming-badge span { color: var(--yellow); }

/* ─── BROOKE SECTION ─── */
#meet-brooke {
  background: var(--yellow);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#meet-brooke::before {
  content: '🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾';
  position: absolute;
  top: 16px; left: 0;
  font-size: 20px;
  letter-spacing: 8px;
  opacity: 0.15;
  white-space: nowrap;
  animation: paw-scroll 20s linear infinite;
}
#meet-brooke::after {
  content: '🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾🐾';
  position: absolute;
  bottom: 16px; left: 0;
  font-size: 20px;
  letter-spacing: 8px;
  opacity: 0.15;
  white-space: nowrap;
  animation: paw-scroll 20s linear infinite reverse;
}
@keyframes paw-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brooke-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brooke-big {
  font-size: 140px;
  text-align: center;
  line-height: 1;
  animation: wiggle 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

.brooke-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 20px;
}
.brooke-content p {
  font-size: 17px;
  color: rgba(0,0,0,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}
.brooke-fun-facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.fun-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.fun-fact::before { content: '🐾'; font-size: 16px; }

/* ─── PROCESS ─── */
#process { background: var(--ink); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 56px;
  right: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow), rgba(255,226,48,0.1));
}
.process-step { padding: 0 24px 0 0; }
.step-num-circle {
  width: 56px; height: 56px;
  background: var(--charcoal);
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .step-num-circle {
  background: var(--yellow);
  color: var(--black);
  transform: scale(1.1);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── CTA ─── */
#cta {
  background: var(--black);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,226,48,0.06) 0%, transparent 65%);
}

#cta h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}
#cta h2 .em { color: var(--yellow); }
#cta h2 .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
#cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
#site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.footer-brand span { color: var(--yellow); }
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
  margin-top: 8px;
}
.footer-loc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-loc::before { content: '📍'; font-size: 13px; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-brooke { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; }

/* ─── ANIMATIONS ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .brooke-section-inner { grid-template-columns: 1fr; text-align: center; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::after { display: none; }
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #site-header { padding: 0 20px; }
  .main-navigation { display: none; }
  .container { padding: 0 24px; }
  .hero-left { padding: 80px 24px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .insights-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
}
