/* ============================================================
   BUZOPS V2 — MAIN CSS
   Color system from Figma design spec
   ============================================================ */

:root {
  --teal:          #008db9;
  --teal-bright:   #06b6d4;
  --teal-dark:     #044d80;
  --orange:        #ff7603;
  --orange-light:  #ff7a0e;
  --dark-bg:       #0a0a0a;
  --dark-section:  #1b1b1b;
  --dark-mid:      #2c2c2c;
  --purple-glow:   #8243ea;
  --white:         #ffffff;
  --off-white:     #f7fcff;
  --light-bg:      #f3f4f6;
  --text-dark:     #0a0a0a;
  --text-secondary:#6b7280;
  --success:       #00911f;
  --font-main:     'Poppins', sans-serif;
  --font-accent:   'Lexend', sans-serif;
  --max-w:         1200px;
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.25s ease;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center  { text-align: center; }
.text-teal    { color: var(--teal); }
.text-orange  { color: var(--orange); }
.text-white   { color: var(--white); }
.text-muted   { color: rgba(255,255,255,0.65); }

.section-light { background: var(--off-white); }
.section-dark  { background: var(--dark-bg); color: var(--white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,118,3,0.35); }

/* Cosmic proximity glow — toggled by JS when cursor approaches */
.btn-primary.cta-glow {
  animation: ctaPulse 1.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255,118,3,0.3); }
  50%      { box-shadow: 0 0 20px rgba(255,118,3,0.6), 0 0 40px rgba(255,118,3,0.2); }
}

/* Hide default cursor when comet is active */
body.comet-cursor,
body.comet-cursor *,
body.comet-cursor a,
body.comet-cursor button,
body.comet-cursor input,
body.comet-cursor span,
body.comet-cursor svg,
body.comet-cursor img,
body.comet-cursor .nav-btn,
body.comet-cursor .mega-col ul li a,
body.comet-cursor .podcast-card,
body.comet-cursor .btn-primary,
body.comet-cursor .btn-ghost,
body.comet-cursor .btn-hero-cta,
body.comet-cursor .btn-hero-cta *,
body.comet-cursor .ai-pulse,
body.comet-cursor .summit-cta {
  cursor: none !important;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark-bg); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }

.btn-lg  { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }
.btn-xl  { padding: 20px 48px; font-size: 1.1rem; border-radius: 12px; }
.btn-sm  { padding: 8px 18px; font-size: 0.85rem; }
.btn-link { color: var(--teal); font-weight: 600; font-size: 0.95rem; }
.btn-link:hover { text-decoration: underline; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
}
.top-bar-sep { margin: 0 12px; opacity: 0.5; }
.top-bar-link { color: var(--white); font-weight: 700; text-decoration: underline; }
.top-bar-link:hover { opacity: 0.85; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 44px;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-links > li > a,
.nav-btn {
  padding: 6px 12px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 6px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-btn:hover {
  background: rgba(0,141,185,0.08);
  color: var(--teal);
}

/* Active glow pulse on parent menu item when submenu is open */
.has-mega:hover > .nav-btn {
  color: var(--teal);
  background: rgba(0,141,185,0.08);
  animation: navGlow 2s ease-in-out infinite;
}
@keyframes navGlow {
  0%, 100% { text-shadow: 0 0 4px rgba(0,141,185,0.2); }
  50%      { text-shadow: 0 0 12px rgba(0,141,185,0.5), 0 0 24px rgba(0,141,185,0.2); }
}

.chevron { font-size: 0.6rem; transition: transform 0.2s; opacity: 0.5; }
.has-mega:hover .chevron { transform: rotate(180deg); opacity: 1; color: var(--teal); }

.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.nav-actions .btn-ghost { color: var(--text-dark); border-color: rgba(0,0,0,0.2); }
.nav-actions .btn-ghost:hover { color: var(--teal); border-color: var(--teal); background: rgba(0,141,185,0.06); }

/* Smaller nav CTAs */
.btn-sm {
  padding: 6px 16px !important;
  font-size: 0.8rem !important;
  border-radius: 6px !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }

/* Nav action wrappers (login/demo dropdowns) */
.nav-action-wrap { position: relative; }

/* ============================================================
   LOGIN DROPDOWN
   ============================================================ */
.login-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 300px;
  background: var(--dark-section);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.2);
  padding: 20px;
  display: none;
  z-index: 1001;
}
.nav-action-wrap:hover .login-dropdown,
.login-dropdown:hover { display: block; }
/* Hover bridge */
.nav-action-wrap:has(#login-trigger)::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 10px;
  display: none;
}
.nav-action-wrap:has(#login-trigger):hover::after { display: block; }

.login-field { margin-bottom: 12px; }
.login-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.login-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: var(--font-main);
  transition: border-color 0.2s;
  outline: none;
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.login-field input::placeholder { color: rgba(255,255,255,0.3); }
.login-field input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,141,185,0.15);
  background: rgba(255,255,255,0.1);
}
.login-submit-btn {
  width: 100%;
  padding: 10px;
  font-size: 0.88rem;
  border-radius: 8px;
  margin-top: 4px;
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-main);
  transition: all 0.2s;
}
.login-submit-btn:hover {
  background: var(--orange-light);
  box-shadow: 0 4px 16px rgba(255,118,3,0.3);
}
.login-divider {
  text-align: center;
  margin: 14px 0;
  position: relative;
}
.login-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.login-divider span {
  background: var(--dark-section);
  padding: 0 12px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  position: relative;
}
.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-google:hover {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.1);
}
.login-links {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.login-links a {
  font-size: 0.78rem;
  color: var(--teal-bright);
  font-weight: 500;
}
.login-links a:hover { text-decoration: underline; }

/* ============================================================
   BOOK A DEMO — CALENDAR DROPDOWN
   ============================================================ */
.demo-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  overflow: hidden;
  background: var(--dark-section);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.2);
  padding: 20px;
  display: none;
  z-index: 1001;
}
/* Invisible bridge fills the gap between button and dropdown */
.demo-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
/* Step containers — only one visible at a time */
.demo-step { display: none; }
.demo-step.active { display: block; }
.demo-step-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-main);
  padding: 0;
  margin-bottom: 12px;
  transition: color 0.15s;
}
.demo-step-back:hover { color: var(--teal-bright); }
.demo-step-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.demo-step-subtitle {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
/* Demo dropdown is now JS-controlled — no CSS hover rules */
.demo-dropdown.open { display: block; }

.demo-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.demo-cal-month {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.demo-cal-nav {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.15s;
  background: none;
  border: none;
  font-family: var(--font-main);
}
.demo-cal-nav:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.demo-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 4px;
}
.demo-cal-weekdays span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.4);
  padding: 4px 0;
}
.demo-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.demo-cal-day {
  width: 100%; aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  cursor: default;
  border: none;
  background: none;
  font-family: var(--font-main);
}
.demo-cal-day.available {
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.demo-cal-day.available:hover {
  background: rgba(0,141,185,0.15);
  color: var(--teal-bright);
}
.demo-cal-day.selected {
  background: var(--teal);
  color: var(--white);
}
.demo-cal-day.today {
  font-weight: 700;
  border: 2px solid var(--teal);
  color: var(--teal-bright);
}
.demo-cal-day.past { opacity: 0.25; }

.demo-times-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 12px 0 8px;
}
.demo-times-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.demo-cal-time {
  padding: 8px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  background: rgba(255,255,255,0.04);
  font-family: var(--font-main);
  color: var(--white);
}
.demo-cal-time:hover {
  border-color: var(--teal);
  color: var(--teal-bright);
  background: rgba(0,141,185,0.1);
}
.demo-cal-time.selected {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.demo-success {
  text-align: center;
  padding: 20px 0;
}
.demo-success-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.demo-success-title {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}
.demo-success-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  line-height: 1.5;
}

/* ============================================================
   NOVA CHAT BUBBLE
   ============================================================ */
.nova-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
}

/* The orb bubble */
.nova-bubble {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,141,185,0.4), 0 0 40px rgba(0,141,185,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: novaFloat 3s ease-in-out infinite;
}
.nova-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0,141,185,0.5), 0 0 60px rgba(0,141,185,0.2);
}
@keyframes novaFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.nova-bubble:hover { animation: none; transform: scale(1.1); }

/* Orb internals */
.nova-orb { position: relative; width: 36px; height: 36px; }
.nova-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  animation: novaRingSpin 4s linear infinite;
}
.nova-ring-2 {
  inset: 4px;
  border-color: rgba(255,255,255,0.15);
  animation-direction: reverse;
  animation-duration: 3s;
}
@keyframes novaRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.nova-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(34,197,94,0.6));
  animation: novaPulseCore 2s ease-in-out infinite;
}
@keyframes novaPulseCore {
  0%, 100% { opacity: 0.8; transform: translate(-50%,-50%) scale(1); box-shadow: 0 0 6px rgba(34,197,94,0.4); }
  50%      { opacity: 1; transform: translate(-50%,-50%) scale(1.15); box-shadow: 0 0 14px rgba(34,197,94,0.6); }
}

/* Hidden by default, shown after 20s */
.nova-chat { opacity: 0; pointer-events: none; transition: opacity 0.5s; }
.nova-chat.visible { opacity: 1; pointer-events: auto; }

/* Chat window — dark theme */
.nova-window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 340px;
  max-height: 480px;
  background: var(--dark-section);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.nova-window.open {
  display: flex;
  animation: novaSlideUp 0.3s ease;
}
@keyframes novaSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nova-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
}
.nova-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nova-header-info strong { font-size: 0.92rem; }
.nova-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  opacity: 0.9;
}
.nova-status::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: novaBlink 2s ease-in-out infinite;
}
@keyframes novaBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px rgba(34,197,94,0.6); }
  50%      { opacity: 0.3; box-shadow: none; }
}
.nova-header-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}
.nova-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s;
  padding: 0 4px;
}
.nova-close:hover { opacity: 1; }

.nova-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  max-height: 320px;
}
.nova-msg { margin-bottom: 12px; }
.nova-msg p {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 85%;
}
.nova-msg-bot p {
  background: rgba(0,141,185,0.12);
  color: rgba(255,255,255,0.9);
  border-bottom-left-radius: 4px;
}
.nova-msg-user p {
  background: var(--teal);
  color: var(--white);
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.nova-input {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nova-input textarea {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  font-size: 0.85rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.2s;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  resize: none;
  min-height: 38px;
  max-height: 100px;
  overflow-y: auto;
  line-height: 1.4;
}
.nova-input textarea::placeholder { color: rgba(255,255,255,0.35); }
.nova-input textarea:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.1);
}
.nova-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nova-send:hover { background: var(--teal-bright); }

/* ============================================================
   MEGA MENU
   ============================================================ */
.has-mega { position: relative; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  display: none;
  gap: 0;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 1000;
}

/* All menus open flush-left from their parent nav item */
.has-mega .mega-menu {
  left: 0;
  transform: none;
}

/* Hover bridge — invisible pad between button and dropdown */
.has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  display: none;
}
.has-mega:hover::after { display: block; }
.has-mega:hover .mega-menu {
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

/* ---- Column variants ---- */
.mega-3col { grid-template-columns: 1fr 1fr 1fr; min-width: 720px; }
.mega-2col { grid-template-columns: 1fr 1fr; min-width: 460px; }
.mega-1col { grid-template-columns: 1fr; min-width: 260px; }

.mega-col { padding: 0 20px; }
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { padding-right: 0; }
.mega-col + .mega-col { border-left: 1px solid rgba(0,0,0,0.06); }
.mega-1col .mega-col { border-left: none; padding: 0; }

/* Column headers */
.mega-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom: none;
}

/* ---- Card-style menu items ---- */
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col ul li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mega-col ul li:last-child { border-bottom: none; }
.mega-col ul li a {
  display: block;
  padding: 10px 10px;
  border-radius: 0;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mega-col ul li a:hover {
  background: rgba(0,0,0,0.04);
  color: var(--teal);
}
/* Highlight description text on hover too */
.mega-col ul li a:hover .mega-desc {
  color: var(--teal);
  opacity: 0.75;
}

/* Title inside link */
.mega-title {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.3;
}

/* Description text under link title */
.mega-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.4;
  margin-top: 3px;
  transition: color 0.15s, opacity 0.15s;
}

/* ---- Results menu (Proof + Podcast) ---- */
.mega-results { grid-template-columns: 1fr 1fr; min-width: 400px; }

/* Podcast card inside mega-menu */
.podcast-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.15s;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.84rem;
  font-weight: 500;
}
.podcast-card:hover { background: rgba(0,0,0,0.04); color: var(--teal); }
.podcast-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Compact 1-col for Our Story */
.mega-compact { grid-template-columns: 1fr; min-width: 220px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,141,185,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,141,185,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: var(--purple-glow);
  opacity: 0.22;
  top: -250px; right: -80px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: var(--teal);
  opacity: 0.18;
  bottom: -150px; left: -60px;
}

/* Two-column layout */
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 40px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* ── LEFT COLUMN ────────────────────────────────── */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-bright);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  flex-shrink: 0;
  animation: pulsering-sm 2s ease-out infinite;
}
@keyframes pulsering-sm {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* Headline */
.hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* Problem lines */
.hero-problem {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 8px;
  font-weight: 400;
}

/* Solution line */
.hero-solution {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
}

/* CTA block */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  width: fit-content;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 32px rgba(255,118,3,0.3);
}
.btn-hero-cta:hover {
  background: #e56800;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255,118,3,0.45);
}
.btn-hero-cta svg { flex-shrink: 0; transition: transform 0.2s; }
.btn-hero-cta:hover svg { transform: translateX(4px); }

.hero-cta-micro {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  padding-left: 4px;
  letter-spacing: 0.01em;
}

/* Proof strips */
.hero-proof-strips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.proof-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.proof-icon-teal   { background: rgba(6,182,212,0.15);  color: #22d3ee; }
.proof-icon-orange { background: rgba(255,118,3,0.15);  color: var(--orange); }
.proof-icon-green  { background: rgba(34,197,94,0.15);  color: #4ade80; }

/* ── RIGHT COLUMN — Visual Stack ────────────────── */
.hero-visual {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: var(--purple-glow);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

/* AI robot background — REMOVED per Michael's directive */
.hv-agent-bg { display: none !important; }

/* Dashboard image stack */
.hv-dashboard-stack {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hv-dash {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  opacity: 0;
  animation: floatIn 0.8s ease forwards;
  border: 1px solid rgba(255,255,255,0.08);
}
/* Main dashboard — largest, fills the top */
.hv-dash-1 {
  width: 110%;
  top: 0; left: -5%;
  animation-delay: 0.3s;
  z-index: 3;
}
/* Automation — overlaps pipeline bottom-right */
.hv-dash-2 {
  width: 90%;
  bottom: 120px; right: -20px;
  animation-delay: 0.55s;
  z-index: 4;
  transform: rotate(1.5deg);
}
/* Messaging — bottom-left, separated from automation */
.hv-dash-3 {
  width: 68%;
  bottom: -60px; left: -16px;
  animation-delay: 0.75s;
  z-index: 5;
  transform: rotate(-1deg);
}

/* Single status card */
.hv-card {
  position: absolute;
  background: rgba(10,15,25,0.95);
  border: 1px solid rgba(34,197,94,0.3);
  backdrop-filter: blur(16px);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 20px rgba(34,197,94,0.1);
  opacity: 0;
  animation: floatIn 0.8s ease forwards;
  z-index: 6;
}
.hv-card-booked { top: 42%; right: -16px; animation-delay: 1.0s; }

.hv-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hv-dot-green  { background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: pulsering-sm 2s ease-out infinite; }
.hv-dot-orange { background: var(--orange); box-shadow: 0 0 6px var(--orange); }

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

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logos-track-wrapper {
  overflow: hidden;
  position: relative;
}
.logos-track-wrapper::before,
.logos-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.logos-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.logos-track-wrapper::after  { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }

.logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  will-change: transform;
}
.logos-track img {
  height: 32px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all var(--transition);
}
.logos-track img:hover { filter: grayscale(0%); opacity: 1; }

/* scrollLogos keyframe injected dynamically by main.js */

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { padding: 100px 0; }
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}

.problem-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}

.problem-list { display: flex; flex-direction: column; gap: 16px; }
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}
.problem-icon {
  width: 24px;
  height: 24px;
  background: rgba(229,71,71,0.12);
  color: #e54747;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.problem-right { display: flex; flex-direction: column; gap: 20px; }
.problem-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.problem-card-2 { border-left: 3px solid var(--orange); }

/* ============================================================
   GROWTH LEVERS
   ============================================================ */
.growth-levers { padding: 100px 0; }
.growth-levers-header { text-align: center; margin-bottom: 60px; }
.growth-levers-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
}

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

.lever-flip {
  perspective: 1000px;
  cursor: pointer;
  min-height: 220px;
}
.lever-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.lever-flip:hover .lever-flip-inner {
  transform: rotateY(180deg);
}
.lever-front, .lever-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}
.lever-front {
  background: rgba(255,255,255,0.04);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s;
}
.lever-flip:hover .lever-front {
  background: rgba(0,141,185,0.12);
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(0,141,185,0.2);
}
.lever-back {
  background: linear-gradient(135deg, var(--teal-dark), rgba(0,141,185,0.85));
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lever-back h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.lever-back ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lever-back ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.lever-back ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.lever-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  min-width: 56px;
}
.lever-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.lever-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: 100px 0; }
.how-it-works h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 60px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
/* HIW Flip Cards */
.hiw-flip {
  perspective: 1000px;
  cursor: pointer;
  min-height: 320px;
}
.hiw-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.hiw-flip:hover .hiw-flip-inner {
  transform: rotateY(180deg);
}
.hiw-front, .hiw-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}
.hiw-front {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.hiw-flip:hover .hiw-front {
  box-shadow: 0 20px 50px rgba(0,141,185,0.12);
  border-color: var(--teal);
}
.hiw-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.15);
}
.hiw-back-1 { background: linear-gradient(135deg, #006d8e, var(--teal)); }
.hiw-back-2 { background: linear-gradient(135deg, #cc5e00, var(--orange)); }
.hiw-back-3 { background: linear-gradient(135deg, #006b16, var(--success)); }
.hiw-back h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.hiw-back ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: hiw-step;
}
.hiw-back ol li {
  counter-increment: hiw-step;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  padding: 8px 0 8px 28px;
  position: relative;
}
.hiw-back ol li::before {
  content: counter(hiw-step) '.';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.hiw-step-num {
  position: absolute;
  top: 16px;
  left: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hiw-back .hiw-step-num {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.hiw-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hiw-icon-1 { background: rgba(0,141,185,0.12); color: var(--teal); }
.hiw-icon-2 { background: rgba(255,118,3,0.12); color: var(--orange); }
.hiw-icon-3 { background: rgba(0,145,31,0.12); color: var(--success); }
.hiw-icon img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; }
.hiw-icon svg { width: 32px; height: 32px; }
.hiw-front h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.hiw-front p  { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================================
   CREDIBILITY
   ============================================================ */
.credibility { padding: 100px 0; }
.credibility-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.credibility-text .section-label { color: var(--teal-bright); }
.credibility-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.credibility-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.credibility-text .btn-outline-white { margin-top: 12px; }

/* Orbit layout — Michael center, logos rotating like a ferris wheel */
.credibility-orbit-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.credibility-orbit {
  position: relative;
  width: 480px;
  height: 480px;
}
.orbit-center-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.orbit-center {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0,141,185,0.5);
  box-shadow: 0 0 40px rgba(0,141,185,0.3), 0 0 80px rgba(0,141,185,0.1);
}
.orbit-glow {
  position: absolute;
  top: -20px; left: -20px;
  right: -20px; bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,141,185,0.15) 0%, transparent 70%);
  z-index: -1;
}
.orbit-ring {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
/* Subtle dashed ring path — matches JS radius of 170px */
.orbit-ring::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(0,141,185,0.15);
  border-radius: 50%;
}
/* Each item positioned via JS — no CSS animation needed */
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  will-change: transform;
}
.orbit-item img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(0,141,185,0.4);
  box-shadow: 0 0 16px rgba(0,141,185,0.25);
  object-fit: contain;
  padding: 10px;
}
.orbit-year {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--teal-bright);
  white-space: nowrap;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 48px 0 24px; }
.testimonials h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,141,185,0.12);
  border-color: var(--teal);
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author strong { display: block; font-weight: 700; }
.testimonial-author span   { font-size: 0.85rem; color: var(--text-secondary); }

/* Rating bar — platform badges */
.rating-bar {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
}
.rating-badge svg { flex-shrink: 0; }
.rating-stars-row {
  display: flex;
  align-items: center;
  gap: 3px;
}
.rating-stars {
  color: #F5A623;
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1;
}
.rating-score {
  font-size: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
}
.rating-platform {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.star-partial {
  display: inline-block;
  position: relative;
  color: #ddd;
}
.star-partial::before {
  content: '\2605';
  position: absolute;
  left: 0; top: 0;
  overflow: hidden;
  color: #F5A623;
}
.star-partial-80::before { width: 80%; }
a.rating-badge {
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
a.rating-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Scrolling reviews carousel — compact cards */
.reviews-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
  padding: 0 0 4px;
}
.reviews-wrap::before,
.reviews-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.reviews-wrap::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.reviews-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }
.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.review-card {
  flex-shrink: 0;
  width: 280px;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.review-meta {
  flex: 1;
  min-width: 0;
}
.review-meta strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}
.review-meta span {
  font-size: 0.68rem;
  color: var(--text-secondary);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-rating {
  color: #F5A623;
  font-size: 0.8rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.review-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-read-more {
  font-size: 0.72rem;
  color: var(--teal);
  cursor: pointer;
  font-weight: 600;
  background: none;
  border: none;
  padding: 2px 0;
  text-align: left;
  position: relative;
  z-index: 5;
  pointer-events: auto;
}
.review-read-more:hover { text-decoration: underline; }
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.review-source-icon {
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-source-icon svg { flex-shrink: 0; }
.review-source-label {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Review modal popup */
.review-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.review-modal-overlay.active { opacity: 1; pointer-events: auto; }
.review-modal {
  position: relative;
  background: #fff;
  border-radius: 14px;
  max-width: 480px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.2s;
}
.review-modal-overlay.active .review-modal { transform: scale(1); }
.review-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
}
.review-modal-close:hover { color: var(--text-dark); }
.review-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-modal-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-modal-meta strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}
.review-modal-meta span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.review-modal-stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.review-modal-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0 0 16px;
}
.review-modal-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* ============================================================
   WHO IT'S BUILT FOR
   ============================================================ */
.built-for { padding: 60px 0; background: var(--white); }
.built-for-inner { max-width: 680px; }
.built-for-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}
.built-for-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.built-for-cta-q { font-weight: 600; color: var(--text-dark); margin-bottom: 12px !important; }
.btn-sm {
  font-size: 0.82rem;
  padding: 8px 20px;
}

/* Inline demo dropdown (mid-page CTA) */
.inline-demo-wrap {
  position: relative;
  display: inline-block;
}
.inline-demo-dropdown {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  right: auto;
  top: auto;
}
.inline-demo-dropdown::before {
  top: auto;
  bottom: -7px;
  left: 40px;
  transform: rotate(45deg);
  border-top: none;
  border-left: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   THREE WAYS TO GROW
   ============================================================ */
.three-ways { padding: 100px 0; }
.three-ways h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 60px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.plan-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.plan-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--teal);
  box-shadow: 0 20px 50px rgba(0,141,185,0.2);
}
.plan-card-featured {
  border-color: var(--orange);
  background: rgba(255,118,3,0.08);
}
.plan-card-featured:hover { border-color: var(--orange); box-shadow: 0 20px 50px rgba(255,118,3,0.25); }

.plan-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.plan-badge-best { background: var(--orange); color: var(--white); }

.plan-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.plan-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ============================================================
   SECURITY SECTION
   ============================================================ */
.security-section { padding: 100px 0; }
.security-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.security-section .text-muted { margin-bottom: 56px; }

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

/* --- Flip Cards --- */
.flip-card {
  perspective: 800px;
  height: 280px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  text-align: center;
}
.flip-card-front {
  background: rgba(255,255,255,0.05);
}
.flip-card-back {
  background: linear-gradient(135deg, rgba(0,180,216,0.15), rgba(255,255,255,0.06));
  border-color: rgba(0,180,216,0.3);
  transform: rotateY(180deg);
  justify-content: flex-start;
  padding-top: 32px;
}

/* Icon image */
.flip-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.flip-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Front text */
.flip-card-front h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.flip-hint {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  transition: opacity 0.3s;
}
.flip-card:hover .flip-hint { opacity: 0; }

/* Back text */
.flip-card-back h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #00b4d8;
  margin-bottom: 14px;
}
.flip-back-content {
  width: 100%;
}
.flip-back-content p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 10px;
  text-align: left;
}
.flip-back-content p:last-child { margin-bottom: 0; }

/* Legacy classes (unused but kept for safety) */
.security-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.security-icon { font-size: 2rem; margin-bottom: 14px; }
.security-item h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.security-item p  { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ============================================================
   RESOURCES
   ============================================================ */
.resources-section { padding: 100px 0; background: var(--light-bg); }
.resources-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 48px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resource-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,141,185,0.1);
  border-color: var(--teal);
}
.resource-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.resource-card p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; }

/* ============================================================
   PODCAST
   ============================================================ */
.podcast-section { padding: 100px 0; background: var(--dark-section); }
.podcast-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.podcast-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.podcast-role { font-size: 0.85rem; color: var(--teal-bright); margin-bottom: 20px; font-weight: 500; }
.podcast-text > p:not(.podcast-role) { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.podcast-apps { display: flex; gap: 16px; align-items: center; }
.podcast-apps img { height: 28px; width: auto; filter: brightness(0.8); transition: filter var(--transition); }
.podcast-apps img:hover { filter: brightness(1); }
.podcast-image img { border-radius: var(--radius-lg); width: 100%; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-heading {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 60px;
  color: var(--text-dark);
}
.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--teal); transition: transform var(--transition); }
.faq-item[open] summary { background: rgba(0,141,185,0.05); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   DEMO CTA
   ============================================================ */
.demo-cta { padding: 100px 0; }
.demo-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.demo-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark-bg); color: var(--white); padding: 80px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--teal); }
.footer-phone { font-weight: 600; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-social a:hover { color: var(--teal); }
.footer-social svg { display: block; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .levers-grid        { grid-template-columns: repeat(2, 1fr); }
  .plan-cards         { grid-template-columns: repeat(2, 1fr); }
  .security-grid      { grid-template-columns: repeat(2, 1fr); }
  .flip-card           { height: 260px; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .credibility-inner  { grid-template-columns: 1fr; }
  .problem-inner      { grid-template-columns: 1fr; gap: 40px; }
  .podcast-inner      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  .hero-content { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 60px; gap: 40px; }
  .hero-visual { display: none; }
  .hero-text h1 { font-size: 2.6rem; }
  .btn-hero-cta { width: 100%; justify-content: center; }

  .hiw-grid           { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .resources-grid     { grid-template-columns: 1fr; }
  .levers-grid        { grid-template-columns: 1fr; }
  .plan-cards         { grid-template-columns: 1fr; }
  .security-grid      { grid-template-columns: 1fr; }
  .flip-card           { height: 240px; }
  .flip-hint           { display: none; }
  .footer-inner       { grid-template-columns: 1fr; }
  .credibility-orbit { width: 340px; height: 340px; }
  .orbit-center { width: 130px; height: 130px; }
  .orbit-item img { width: 54px; height: 54px; padding: 6px; }

  .mega-menu { display: none !important; }
}

/* ============================================================
   AI AGENT BUTTON + MODAL
   ============================================================ */

/* Teal pulsing AI button */
.btn-ai-agent {
  background: transparent;
  color: var(--teal-bright);
  border: 1.5px solid var(--teal-bright);
  position: relative;
  overflow: visible;
  gap: 10px;
}
.btn-ai-agent:hover {
  background: rgba(6,182,212,0.12);
  box-shadow: 0 0 24px rgba(6,182,212,0.35);
  transform: translateY(-2px);
}
.ai-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  position: relative;
}
.ai-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  opacity: 0.6;
  animation: pulsering 1.8s ease-out infinite;
}
@keyframes pulsering {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Modal overlay */
.agent-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.agent-modal-overlay.open {
  display: flex;
}

/* Modal card — matches summit modal */
.agent-modal {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.agent-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.4);
  line-height: 1;
  transition: color 0.2s;
}
.agent-modal-close:hover { color: var(--white); }

.agent-modal-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.agent-modal-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(6,182,212,0.4);
}
.agent-live-dot {
  position: absolute;
  bottom: 4px; right: 4px;
  width: 14px; height: 14px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
}
.agent-live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: pulsering 1.8s ease-out infinite;
  opacity: 0.5;
}

.agent-modal h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.agent-modal > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Form */
.agent-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agent-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.agent-input-wrap:focus-within {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.15);
}
.agent-flag {
  padding: 0 14px;
  font-size: 1.1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.agent-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 18px;
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-main);
}
.agent-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }

.agent-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.agent-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px !important;
}

/* Success state */
.agent-modal.success .agent-form { display: none; }
.agent-success-msg {
  display: none;
  padding: 20px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 12px;
  color: #86efac;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 8px;
}
.agent-modal.success .agent-success-msg { display: block; }

/* AiGO partnership note */
.aigo-partnership {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  margin-left: 12px;
}
.aigo-partnership a {
  color: rgba(255,255,255,0.3);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.aigo-partnership a:hover { color: rgba(255,255,255,0.55); }

/* ── Logo fix: no gray background, larger ── */
.nav-logo img {
  height: 44px !important;
  width: auto;
  background: transparent !important;
  mix-blend-mode: normal;
}
/* If logo has white bg baked in, force it visible on light nav */
.site-header { background: #ffffff; }

/* ── Powered by AiGO — subtle, directly under CTA button ── */
.hero-cta-powered {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.18);
  padding-left: 6px;
  letter-spacing: 0.06em;
  margin-top: -4px;
}
.hero-cta-powered a {
  color: rgba(255,255,255,0.24);
  text-decoration: none;
  font-weight: 500;
}
.hero-cta-powered a:hover { color: rgba(255,255,255,0.45); }

/* ── Hero visual: taller, starts higher ── */
.hero-visual {
  height: 680px !important;
  margin-top: -24px;
  align-items: flex-start !important;
}

/* ============================================================
   AI SUMMIT SCROLLING BANNER
   ============================================================ */
.summit-bar {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--dark-bg) 0%, var(--dark-section) 40%, var(--dark-bg) 100%);
  border-bottom: 1px solid rgba(255,118,3,0.25);
  display: flex;
  align-items: center;
  height: 44px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  /* No overflow:hidden here — CTA button must never be clipped */
}

/* Marquee wrapper clips only the scrolling text, not the button */
.summit-marquee-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.summit-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  /* JS sets the animation dynamically based on measured width */
}
/* marquee never pauses on hover */

.summit-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 48px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.summit-item strong { color: var(--orange); font-weight: 700; }

.summit-robot {
  height: 34px;
  width: auto;
  object-fit: contain;
  object-position: top center;
  filter: saturate(1.2) brightness(1.05);
  flex-shrink: 0;
  vertical-align: middle;
  border-radius: 4px;
}

/* CTA button — always visible, never scrolls */
.summit-cta {
  flex-shrink: 0;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin: 0 12px 0 8px;
  white-space: nowrap;
  transition: all 0.2s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.summit-cta:hover {
  background: var(--orange-light);
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(255,118,3,0.4);
}

/* Nav sticks below the summit bar — top: 44px set in base .site-header rule */

/* ── Summit Modal ── */
.summit-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.summit-modal-overlay.open { display: flex; }

.summit-modal {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  max-height: 90vh;
  overflow-y: auto;
}

/* Robot panel */
.summit-modal-robot-panel {
  background: rgba(0,141,185,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.summit-modal-robot-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(0,141,185,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.summit-modal-robot {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0,141,185,0.4)) saturate(1.3);
  position: relative;
  z-index: 1;
}
.summit-modal-robot-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-bright);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.summit-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.35);
  z-index: 10;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s;
}
.summit-modal-close:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.summit-modal-content {
  padding: 28px 24px 24px;
  overflow-y: auto;
  background: rgba(255,255,255,0.03);
}
.summit-modal-badge {
  display: inline-block;
  background: rgba(0,141,185,0.15);
  border: 1px solid rgba(0,141,185,0.4);
  color: var(--teal-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.summit-modal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.summit-modal-date {
  font-size: 0.83rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
}
.summit-modal-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Summit form */
.summit-form { display: flex; flex-direction: column; gap: 9px; }
.summit-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.summit-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.875rem;
  font-family: var(--font-main);
  outline: none;
  transition: all 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.summit-form input::placeholder { color: rgba(255,255,255,0.28); }
.summit-form input:focus {
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 0 0 3px rgba(0,141,185,0.15);
  background: rgba(255,255,255,0.12);
}
.summit-submit {
  background: rgba(255,118,3,0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
  justify-content: center;
  padding: 14px !important;
  margin-top: 6px;
  font-size: 0.95rem !important;
  letter-spacing: 0.01em;
  border-radius: 14px !important;
  box-shadow: 0 4px 20px rgba(255,118,3,0.3), inset 0 1px 0 rgba(255,255,255,0.2) !important;
  transition: all 0.2s !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.summit-submit:hover {
  background: rgba(255,118,3,0.95) !important;
  box-shadow: 0 8px 32px rgba(255,118,3,0.4), inset 0 1px 0 rgba(255,255,255,0.25) !important;
  transform: translateY(-1px);
}
.summit-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .summit-modal {
    grid-template-columns: 1fr;
    max-width: 100%;
    border-radius: 16px;
  }
  .summit-modal-robot-panel {
    display: flex;
    flex-direction: row;
    padding: 16px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(0,141,185,0.2);
    gap: 16px;
    justify-content: flex-start;
  }
  .summit-modal-robot {
    max-width: 56px;
  }
  .summit-modal-robot-label {
    font-size: 0.7rem;
    text-align: left;
  }
  .summit-modal-content {
    padding: 20px 18px 20px;
  }
  .summit-modal-content h2 { font-size: 1.2rem; }
  .summit-form-row { grid-template-columns: 1fr; }
  .summit-cta { font-size: 0.7rem; padding: 6px 12px; }
}
@media (max-width: 400px) {
  .summit-bar { height: 40px; }
  .site-header { top: 40px; }
  .summit-item { font-size: 0.75rem; padding: 0 28px; }
  .summit-robot { height: 28px; }
}

/* ── Hero spacing ── */
.hero-content {
  padding-top: 32px !important;
  padding-bottom: 72px !important;
}

/* ============================================================
   NOVA CHAT — MIC BUTTON (Voice-to-Text)
   ============================================================ */

/* Mic button — sits left of the text input inside .nova-input */
.nova-mic {
  display: flex;              /* shown/hidden via JS */
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  outline: none;
  margin-right: 6px;
}

.nova-mic svg {
  pointer-events: none;
}

.nova-mic:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: scale(1.05);
}

/* Recording state — red pulsing ring */
.nova-mic.recording {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  animation: novaMicPulse 1.2s ease-in-out infinite;
}

@keyframes novaMicPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    background: rgba(239, 68, 68, 0.35);
  }
}

/* Make the nova-input row flex so mic + input + send line up */
.nova-input {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

/* Responsive: smaller mic on narrow screens */
@media (max-width: 400px) {
  .nova-mic {
    width: 30px;
    height: 30px;
  }
  .nova-mic svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================================
   CLOUDFLARE TURNSTILE — hide invisible widgets
   ============================================================ */

/* Invisible Turnstile widgets render a 0-height iframe.
   Keep them in the DOM (needed for token delivery) but visually hidden. */
.cf-turnstile {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

/* The nova-input form uses relative positioning so the absolute
   Turnstile widget doesn't escape the chat window. */
.nova-input {
  position: relative;
}

/* ============================================================
   SECURITY / TRUST SECTION — Flip Cards
   ============================================================ */
.sec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  perspective: 1200px;
}
.sec-card {
  height: 240px;
  cursor: default;
}
.sec-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.sec-card:hover .sec-card-inner,
.sec-card:focus .sec-card-inner,
.sec-card.sec-active .sec-card-inner {
  transform: rotateY(180deg);
}
.sec-front,
.sec-back {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.sec-front {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  text-align: center;
  gap: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.sec-card:hover .sec-front,
.sec-card:focus .sec-front {
  border-color: rgba(0,141,185,0.4);
  box-shadow: 0 0 20px rgba(0,141,185,0.12);
}
.sec-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(0,141,185,0.1);
  padding: 6px;
  flex-shrink: 0;
}
.sec-title {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.sec-hint {
  color: rgba(0,141,185,0.85);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.sec-back {
  background: linear-gradient(160deg, #006a8e 0%, #008DB9 100%);
  border: 1px solid rgba(0,141,185,0.3);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 18px;
}
.sec-back h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  line-height: 1.3;
}
.sec-back ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sec-back ul li {
  color: rgba(255,255,255,0.93);
  font-size: 0.78rem;
  line-height: 1.45;
  padding-left: 16px;
  position: relative;
}
.sec-back ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-card { height: 220px; }
}
@media (max-width: 520px) {
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-card { height: 200px; }
}

/* Orange FAQ variant (for subpages) */
.faq-section-orange { background: var(--orange); }
.faq-section-orange .faq-heading { color: var(--white); }
.faq-item-dark summary { color: var(--white); }
.faq-item-dark p { color: rgba(255,255,255,0.8); }

