@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&family=Sora:wght@400;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('/assets/3t71ov6f9z_g6.css');

/* ==========================================================================
   AI Essentials - Design System Custom Refinements & Overrides
   Matches: The AI-Powered Career Experience & 1:1 Design Spec
   ========================================================================== */

:root {
  --font-display: 'Sora', 'Space Grotesk', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --primary-glow: #1A22FF;
  --accent-lime: #D8FF32;
  --accent-cyan: #2B7FEE;
}

body {
  font-family: var(--font-body);
  background-color: #060810;
  color: #f0f4fc;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .section-title, .brand-logo {
  font-family: var(--font-display);
}

.serif-accent {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Navigation Bar (Floating Glassmorphism)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.site-header .brand-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.site-header .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, #a2c4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header .nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-header .nav-links a:hover {
  color: #ffffff;
}

.site-header .nav-cta {
  background: linear-gradient(135deg, #1A22FF 0%, #2b7fee 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(26, 34, 255, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.site-header .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(26, 34, 255, 0.65);
}

@media (max-width: 840px) {
  .site-header .nav-links {
    display: none;
  }
}

/* ==========================================================================
   Hero Stage Overrides with Real Portrait
   ========================================================================== */
.hs-img {
  background: linear-gradient(to bottom, transparent 40%, rgba(9, 11, 15, 0.85) 90%), url('/portrait.jpg') top center/cover no-repeat !important;
}

.mentor-photo {
  background: linear-gradient(to bottom, transparent 40%, rgba(9, 11, 15, 0.85) 90%), url('/portrait.jpg') top center/cover no-repeat !important;
}

.badge-av, .av {
  background: url('/portrait.jpg') top center/cover no-repeat !important;
}

/* Custom Live Intake Pulse */
.live-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 10px #10b981;
  margin-right: 8px;
  animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   Interactive Booking Form Elements
   ========================================================================== */
.profile-selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

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

.profile-card-option {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-card-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.profile-card-option.selected,
.profile-card-option:has(input[type="radio"]:checked) {
  background: rgba(26, 34, 255, 0.15);
  border-color: #2b7fee;
  box-shadow: 0 0 20px rgba(43, 127, 238, 0.25);
}

.profile-card-option input[type="radio"] {
  position: absolute;
  top: 12px;
  right: 12px;
  accent-color: #2b7fee;
}

.profile-card-option .profile-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.profile-card-option .profile-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.35;
}

/* Dynamic Goals Selection */
.goals-wrapper {
  margin-top: 16px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 16px;
}

.goals-wrapper .goals-header {
  font-size: 0.88rem;
  font-weight: 600;
  color: #a2c4fc;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.goals-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.goal-item-label {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.88rem;
  color: #e2e8f0;
}

.goal-item-label:hover {
  background: rgba(255, 255, 255, 0.06);
}

.goal-item-label:has(input[type="checkbox"]:checked) {
  background: rgba(43, 127, 238, 0.12);
  border-color: rgba(43, 127, 238, 0.4);
  color: #ffffff;
}

.goal-item-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #2b7fee;
  cursor: pointer;
}

/* Form validation & states */
.field-error-msg {
  color: #f87171;
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}

.field-error-msg.visible {
  display: block;
}

/* Order Summary Box */
.order-summary-box {
  background: linear-gradient(145deg, rgba(26, 34, 255, 0.08), rgba(9, 11, 15, 0.6));
  border: 1px solid rgba(43, 127, 238, 0.25);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-summary-box .order-meta {
  display: flex;
  flex-direction: column;
}

.order-summary-box .order-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.order-summary-box .order-tag {
  font-size: 0.8rem;
  color: #94a3b8;
}

.order-summary-box .order-price-group {
  text-align: right;
}

.order-summary-box .order-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2b7fee;
  font-family: var(--font-display);
}

.order-summary-box .order-original {
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: line-through;
}

/* ==========================================================================
   Sticky CTA Bar (Mobile + Desktop Scroll)
   ========================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(9, 11, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-cta-seats {
  margin: 0;
  font-size: 0.88rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-cta-seats .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ef4444;
  animation: pulse-live 1.5s infinite;
}

.sticky-cta-price {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}

.sticky-cta-price .was {
  font-size: 0.88rem;
  color: #64748b;
  margin-right: 6px;
}

/* ==========================================================================
   Modals & Toast Notifications
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content-card {
  background: #0f1422;
  border: 1px solid rgba(43, 127, 238, 0.3);
  border-radius: 24px;
  padding: 36px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(43, 127, 238, 0.2);
}

.modal-icon-success {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #10b981;
}

.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3000;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
