/* ============================================
   Kihbb.AI — Styles (Green Theme)
   ============================================ */

:root {
  --bg: #000000;
  --bg-surface: #0a0a0a;
  --bg-elevated: #111111;
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --text-muted: #888888;
  --brand: #00ff88;
  --brand-secondary: #00d4ff;
  --brand-glow: rgba(0, 255, 136, 0.3);
  --accent: #22c55e;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Dot Grid Background */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
  background-size: 40px 40px;
}

.grid-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

/* Glow line at top */
.glow-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--brand-secondary), transparent);
  z-index: 1000;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  font-size: 24px;
  color: var(--brand);
  text-shadow: 0 0 20px var(--brand-glow);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 10px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
}

.logo-ai {
  color: var(--brand);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--brand);
  text-shadow: 0 0 20px var(--brand-glow);
}

.nav-cta {
  background: transparent;
  color: var(--brand);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--brand);
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--brand);
  color: black;
  box-shadow: 0 0 30px var(--brand-glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: var(--brand);
  color: black;
  box-shadow: 0 0 30px var(--brand-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--brand-glow), 0 10px 40px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding: 160px 24px 100px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(0, 255, 136, 0.15) 0%, transparent 60%);
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 64px;
  font-weight: 800;
  color: var(--brand);
  text-shadow: 0 0 30px var(--brand-glow);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* Problem Section */
.problem {
  padding: 100px 24px;
  background: var(--bg-surface);
}

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

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

.problem-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Solution Section */
.solution {
  padding: 100px 24px;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.solution-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.solution-highlight {
  display: flex;
  gap: 16px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.highlight-icon {
  font-size: 24px;
}

.solution-highlight p {
  font-size: 14px;
  color: var(--text-muted);
}

.solution-highlight strong {
  color: var(--text);
}

.solution-list {
  list-style: none;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.check {
  color: var(--brand);
  font-weight: 600;
}

/* Agent Count Badge */
.agent-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  margin-top: 20px;
}

.agent-count-badge .count {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
}

.agent-count-badge .label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Example Slider */
.example-slider {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.slider-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-arrow {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.slider-arrow:hover {
  background: var(--brand);
  color: black;
  border-color: var(--brand);
}

.slider-dots {
  display: flex;
  gap: 6px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand-glow);
}

.slider-content {
  padding: 24px;
  min-height: 320px;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.slide-scenario {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.slide-message.outgoing {
  flex-direction: row-reverse;
}

.slide-avatar {
  font-size: 24px;
  flex-shrink: 0;
}

.slide-bubble {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  font-size: 14px;
  max-width: 280px;
}

.slide-message.outgoing .slide-bubble {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.slide-meta {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

/* How It Works - Team Word Art */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg-surface);
}

.team-concept {
  text-align: center;
  margin-bottom: 60px;
}

.team-tagline {
  font-size: 24px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.team-wordart {
  position: relative;
  display: inline-block;
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.team-wordart .letter {
  display: inline-block;
}

.team-wordart .letter-t,
.team-wordart .letter-e,
.team-wordart .letter-m {
  color: var(--text);
}

.team-wordart .bracket {
  color: var(--brand);
  opacity: 0.6;
}

.team-wordart .ai-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.75;
  margin: 0 -5px;
  vertical-align: middle;
}

.team-wordart .ai-a {
  color: var(--brand);
  text-shadow: 0 0 30px var(--brand-glow);
  font-size: 70px;
}

.team-wordart .ai-i {
  color: var(--brand-secondary);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  font-size: 55px;
}

.team-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 40px;
}

/* Portal Flow */
.portal-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.portal-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  min-width: 200px;
  max-width: 240px;
  transition: all 0.3s;
}

.portal-step:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
}

.portal-step-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.portal-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.portal-step p {
  font-size: 13px;
  color: var(--text-muted);
}

.portal-arrow {
  font-size: 24px;
  color: var(--brand);
}

/* Agents Section */
.agents {
  padding: 100px 24px;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.agent-card {
  background: var(--bg);
  padding: 32px 24px;
  transition: all 0.3s;
  position: relative;
}

.agent-card:hover {
  background: var(--bg-surface);
}

.agent-card:hover .agent-icon {
  transform: scale(1.1);
}

.agent-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s;
}

.agent-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.agent-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.agent-card.coming-soon {
  opacity: 0.6;
}

.coming-soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  padding: 4px 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
}

.agents-cta {
  text-align: center;
}

.agents-cta p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Pricing Section */
.pricing {
  padding: 100px 24px;
  background: var(--bg-surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card .card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card .subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
}

/* Monthly Pricing Card */
.monthly-card {
  max-width: 800px;
  margin: 0 auto 60px;
  background: var(--bg);
  border: 1px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: 0 0 40px var(--brand-glow);
}

.monthly-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.monthly-card .subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.monthly-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.monthly-price .amount {
  font-size: 64px;
  font-weight: 800;
  color: var(--brand);
}

.monthly-price .period {
  font-size: 20px;
  color: var(--text-muted);
}

.monthly-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}

@media (max-width: 600px) {
  .monthly-features {
    grid-template-columns: 1fr;
  }
}

.monthly-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-radius: 8px;
}

.monthly-feature .icon {
  font-size: 20px;
}

.monthly-feature .text {
  font-size: 14px;
}

.monthly-feature .text strong {
  display: block;
  margin-bottom: 2px;
}

.monthly-feature .text span {
  color: var(--text-muted);
  font-size: 13px;
}

/* Testimonials */
.testimonials {
  padding: 100px 24px;
}

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

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  color: var(--text-muted);
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  padding: 120px 24px;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 60%);
  text-align: center;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 60px 24px 30px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--brand);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1100px) {
  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .solution-content {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .portal-flow {
    flex-direction: column;
  }
  
  .portal-arrow {
    transform: rotate(90deg);
  }
  
  .team-wordart {
    font-size: 80px;
  }
  
  .team-wordart .ai-a {
    font-size: 50px;
  }
  
  .team-wordart .ai-i {
    font-size: 40px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 48px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .solution-text h2,
  .cta-content h2 {
    font-size: 32px;
  }
  
  .agents-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .team-wordart {
    font-size: 60px;
  }
  
  .team-wordart .ai-a {
    font-size: 38px;
  }
  
  .team-wordart .ai-i {
    font-size: 30px;
  }
  
  .floating-taz {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  
  .cta-taz {
    width: 140px;
    height: 140px;
  }
}

/* ============================================
   Floating Taz Mascot
   ============================================ */
.floating-taz {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  z-index: 99;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.floating-taz:hover {
  transform: scale(1.15);
  animation-play-state: paused;
}

.floating-taz img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px var(--brand-glow));
}

.floating-taz .taz-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--brand);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  margin-bottom: 10px;
  box-shadow: 0 4px 20px var(--brand-glow);
}

.floating-taz .taz-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 25px;
  border: 6px solid transparent;
  border-top-color: var(--brand);
}

.floating-taz:hover .taz-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   CTA Section Taz
   ============================================ */
.cta-mascot {
  margin-bottom: 24px;
}

.cta-taz {
  width: 200px;
  height: 200px;
  object-fit: contain;
  animation: pulse-glow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px var(--brand-glow));
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px var(--brand-glow));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 40px var(--brand-glow)) drop-shadow(0 0 60px rgba(0, 212, 255, 0.2));
    transform: scale(1.05);
  }
}

/* ============================================
   High Visibility Mode
   ============================================ */
body.high-visibility {
  --bg: #000000;
  --bg-surface: #111111;
  --bg-elevated: #1a1a1a;
  --text: #ffffff;
  --text-muted: #cccccc;
  --brand: #00ff88;
  --border: rgba(255, 255, 255, 0.3);
}

body.high-visibility * {
  font-size-adjust: 0.55;
}

body.high-visibility .hero-title,
body.high-visibility h1 {
  font-size: clamp(42px, 8vw, 72px) !important;
  line-height: 1.2 !important;
}

body.high-visibility h2 {
  font-size: clamp(28px, 5vw, 42px) !important;
}

body.high-visibility h3 {
  font-size: clamp(20px, 4vw, 28px) !important;
}

body.high-visibility p,
body.high-visibility li,
body.high-visibility span,
body.high-visibility a {
  font-size: 18px !important;
  line-height: 1.8 !important;
}

body.high-visibility .nav-links a,
body.high-visibility .footer-column a {
  font-size: 16px !important;
  padding: 10px 0 !important;
}

body.high-visibility .btn,
body.high-visibility .nav-cta {
  font-size: 18px !important;
  padding: 16px 32px !important;
}

body.high-visibility .grid-bg {
  display: none;
}

body.high-visibility .problem-card,
body.high-visibility .agent-card,
body.high-visibility .pricing-card,
body.high-visibility .testimonial-card {
  border-width: 2px;
}

/* High Visibility Toggle Button */
.visibility-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 12px;
}

.visibility-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
}

body.high-visibility .visibility-toggle {
  background: var(--brand);
  color: #000;
  border-color: var(--brand);
}

body.high-visibility .visibility-toggle:hover {
  background: #00cc6a;
}
