/* ===== COLOR SCHEME OVERRIDE — keep design intact regardless of OS mode ===== */
html { color-scheme: light !important; }
* { color-scheme: light !important; }
@media (prefers-color-scheme: dark) {
  body { background-color: white !important; color: #111827 !important; }
}

/* ===== BASE ===== */
html { color-scheme: dark; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 500 !important;
}

body {
  font-family: 'Geist', sans-serif;
  background-color: #000;
  color: #fff;
  letter-spacing: -0.015em;
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.loaded { opacity: 1; }

/* ===== BRAND COLOURS ===== */
:root {
  --primary: #27B0FF;
  --primary-dark: #0284c7;
  --primary-light: #7dd3fc;
  --bg: #000000;
  --card-bg: #0d0d0d;
  --border: rgba(255,255,255,0.08);
  --text-muted: #9ca3af;
}

/* ===== SECTION LABEL PILL ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.section-label i, .section-label svg { color: var(--primary); }

/* ===== BUTTONS ===== */
.outline-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  background: transparent;
  padding: 0.7rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.outline-pill-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.7);
}

.primary-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #000;
  padding: 0.7rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.primary-pill-btn:hover { opacity: 0.88; }

/* ===== DARK CARDS ===== */
.kp-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
}

/* ===== ICON CIRCLES ===== */
.kp-icon-circle {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}


/* ===== NAV ===== */
.kp-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 900px;
  z-index: 100;
  background: rgba(18,18,18,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-toggle {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.2s;
}
/* Plus/minus icon swap via aria-expanded */
.faq-icon-minus { display: none; }
.faq-question[aria-expanded="true"] .faq-icon-plus  { display: none; }
.faq-question[aria-expanded="true"] .faq-icon-minus { display: block; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== WHY-US CARDS (audience) ===== */
.why-card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.05);
  min-height: 460px;
}
.why-card-text { flex-shrink: 0; width: 100%; }
.why-card-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.why-card-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  width: 100%;
}
.why-card img {
  width: 100%;
  flex: 1;
  min-height: 0;
  max-height: 340px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ===== FOOTER SOCIAL ICONS ===== */
.social-circle {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.social-circle:hover { opacity: 0.82; }

/* ===== FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.6s ease forwards;
}
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.45s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== HERO RIBBON ===== */
.hero-ribbon { width: 120%; }
@media (max-width: 640px) {
  .hero-ribbon {height: 50%; width: 140%; top: 30%;}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .text-7xl { font-size: 2.75rem !important; line-height: 1.08 !important; }
  .text-6xl { font-size: 2.5rem !important; line-height: 1.1 !important; }
  .text-5xl { font-size: 2rem !important; line-height: 1.15 !important; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none !important; opacity: 1; transform: none; }
  .faq-answer { transition: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
