/* Omnix LMS Marketing Site — WordPress-ready styles */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&family=Inter:wght@400;600;700;900&display=swap');

:root {
  --background: #0A0D14;
  --foreground: #F0F2FF;
  --card: #141824;
  --muted: #1A1F2E;
  --muted-foreground: #8B91A8;
  --primary: #4F7CFF;
  --accent: #7FFFB2;
  --destructive: #FF6B35;
  --border: rgba(79, 124, 255, 0.15);
  --font-mono: 'IBM Plex Mono', monospace;
  --font-sans: 'Inter', sans-serif;
  --max-width: 80rem;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 0; height: 0; }
* { scrollbar-width: none; }
::selection { background: rgba(79, 124, 255, 0.35); color: var(--foreground); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; }

.container { max-width: var(--max-width); margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }

.mono { font-family: var(--font-mono); }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-destructive { color: var(--destructive); }

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(79, 124, 255, 0.12);
  background: rgba(10, 13, 20, 0.96);
  backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  letter-spacing: -0.04em;
}

.logo-name { font-size: 1.25rem; font-weight: 900; color: var(--primary); }

.logo-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  background: rgba(79, 124, 255, 0.12);
  border: 1px solid rgba(79, 124, 255, 0.3);
  color: var(--primary);
}

.nav-links { display: none; align-items: center; gap: 2rem; }

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--foreground); font-weight: 600; }

.nav-cta { display: none; }

.menu-toggle {
  display: block;
  padding: 0.25rem;
  color: var(--muted-foreground);
}

.menu-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  display: none;
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid rgba(79, 124, 255, 0.12);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
}

.mobile-menu .btn-demo { margin-top: 0.5rem; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* Buttons */
.btn-demo {
  font-weight: 700;
  border-radius: 0.5rem;
  transition: filter 0.2s, transform 0.1s;
  background: var(--primary);
  color: var(--background);
  letter-spacing: -0.01em;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-demo:hover { filter: brightness(1.1); }
.btn-demo:active { transform: scale(0.98); }
.btn-demo-lg { padding: 1rem 2rem; font-size: 1rem; }

.btn-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: opacity 0.2s;
}

.btn-link:hover { opacity: 0.7; }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(79, 124, 255, 0.1);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand { font-size: 1.125rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 0.25rem; }
.footer-tagline { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-links { display: flex; flex-wrap: wrap; gap: 2rem; }
.footer-links a { font-size: 0.875rem; color: var(--muted-foreground); text-transform: capitalize; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-family: var(--font-mono); font-size: 0.75rem; color: rgba(139, 145, 168, 0.45); }

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; align-items: center; }
}

/* Sections */
.section-border { border-top: 1px solid rgba(79, 124, 255, 0.1); }
.section-alt { background: var(--card); }
.section-cta {
  background: var(--card);
  border-top: 1px solid rgba(79, 124, 255, 0.15);
  border-bottom: 1px solid rgba(79, 124, 255, 0.15);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hero-title {
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--foreground);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.page-title {
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--foreground);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
}

.section-title {
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--foreground);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
}

.lead { font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.75; max-width: 36rem; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(79, 124, 255, 0.08);
  border: 1px solid rgba(79, 124, 255, 0.2);
  color: var(--primary);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Grid layouts */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.grid-2-col { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-col { grid-template-columns: repeat(2, 1fr); }
  .order-md-1 { order: 1; }
  .order-md-2 { order: 2; }
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid rgba(79, 124, 255, 0.15);
  border-radius: 0.75rem;
  overflow: hidden;
}

.card-body { padding: 1.25rem; }
.card-title { font-weight: 600; font-size: 0.875rem; margin-bottom: 0.25rem; }

.report-card {
  position: relative;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid rgba(79, 124, 255, 0.15);
  cursor: pointer;
  transition: all 0.2s;
}

.report-card-inner { display: flex; align-items: center; gap: 0.75rem; }
.report-card .icon { color: var(--primary); width: 15px; height: 15px; flex-shrink: 0; }
.report-card-label { font-size: 0.875rem; font-weight: 500; }

.report-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 13, 20, 0.92);
  opacity: 0;
  transition: opacity 0.2s;
}

.report-card:hover .report-card-overlay { opacity: 1; }
.report-card-overlay span { font-size: 0.875rem; font-weight: 600; color: var(--primary); }

/* UI Preview wrapper */
.ui-preview {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(79, 124, 255, 0.2);
}

.ui-preview-fade {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: 40%;
  pointer-events: none;
  background: linear-gradient(to right, transparent, var(--fade-color, var(--background)));
}

.annotation-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.annotation-pill .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.annotation-warning { background: rgba(255, 107, 53, 0.18); border: 1px solid var(--destructive); color: var(--destructive); }
.annotation-warning .dot { background: var(--destructive); }

.annotation-success { background: rgba(127, 255, 178, 0.18); border: 1px solid var(--accent); color: var(--accent); }
.annotation-success .dot { background: var(--accent); }

.annotation-info { background: rgba(79, 124, 255, 0.18); border: 1px solid var(--primary); color: var(--primary); }
.annotation-info .dot { background: var(--primary); }

/* UI Mockups */
.ui-mockup {
  padding: 1.5rem;
  background: var(--card);
  min-height: 280px;
}

.ui-mockup-header {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

/* Teaching Journey */
.journey-line {
  position: absolute;
  left: 11px;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 1px;
  background: rgba(79, 124, 255, 0.2);
}

.journey-steps { position: relative; }
.journey-step { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; position: relative; }

.step-circle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-circle.done { background: rgba(127, 255, 178, 0.15); border: 1px solid var(--accent); color: var(--accent); }
.step-circle.active { background: rgba(255, 107, 53, 0.2); border: 1px solid var(--destructive); color: var(--destructive); animation: pulse 2s infinite; }
.step-circle.pending { background: var(--muted); border: 1px solid rgba(139, 145, 168, 0.3); color: var(--muted-foreground); }

.step-label { font-size: 0.875rem; font-weight: 500; }
.step-label.pending { color: var(--muted-foreground); }
.step-sub { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.125rem; }

.step-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.4);
  color: var(--destructive);
  flex-shrink: 0;
}

/* Misconception radar grid */
.radar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }

.radar-cell { padding: 0.625rem; border-radius: 0.5rem; }
.radar-cell .code { font-family: var(--font-mono); font-size: 10px; font-weight: 500; }
.radar-cell .label { font-size: 9px; margin-top: 0.125rem; color: var(--muted-foreground); }

.radar-l0 { background: rgba(127, 255, 178, 0.2); border: 1px solid rgba(127, 255, 178, 0.4); }
.radar-l0 .code { color: var(--accent); }
.radar-l1 { background: rgba(79, 124, 255, 0.15); border: 1px solid rgba(79, 124, 255, 0.35); }
.radar-l1 .code { color: var(--primary); }
.radar-l2 { background: rgba(255, 107, 53, 0.2); border: 1px solid rgba(255, 107, 53, 0.4); }
.radar-l2 .code { color: var(--destructive); }
.radar-l3 { background: rgba(255, 107, 53, 0.35); border: 1px solid var(--destructive); }
.radar-l3 .code { color: var(--destructive); }

/* Curriculum tree */
.curriculum-flow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }

.pdf-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(79, 124, 255, 0.1);
  border: 1px solid rgba(79, 124, 255, 0.3);
  color: var(--primary);
}

.tree-node { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.tree-node.depth-1 { padding-left: 20px; }
.tree-dot { width: 4px; height: 4px; border-radius: 50%; flex-shrink: 0; }
.std-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  background: rgba(127, 255, 178, 0.1);
  border: 1px solid rgba(127, 255, 178, 0.3);
  color: var(--accent);
}

/* Pacing calendar */
.cal-header { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; margin-bottom: 0.5rem; }
.cal-header div { text-align: center; font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted-foreground); }
.cal-week { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; margin-bottom: 0.5rem; }

.cal-day {
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  background: rgba(26, 31, 46, 0.8);
  border: 1px solid rgba(79, 124, 255, 0.1);
}

.cal-dot { width: 10px; height: 10px; border-radius: 50%; }
.cal-dot.done { background: var(--accent); }
.cal-dot.warning { background: var(--destructive); animation: pulse 2s infinite; }
.cal-dot.pending { background: rgba(139, 145, 168, 0.35); }
.cal-label { font-family: var(--font-mono); font-size: 8px; text-align: center; line-height: 1.2; color: var(--muted-foreground); }

/* Mastery bars */
.mastery-row { margin-bottom: 1.25rem; }
.mastery-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.bar-track { flex: 1; height: 8px; border-radius: 9999px; background: var(--muted); }
.bar-fill { height: 100%; border-radius: 9999px; }
.bar-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.375rem; }
.bar-label { font-family: var(--font-mono); font-size: 10px; width: 2.5rem; text-align: right; color: var(--muted-foreground); }
.bar-pct { font-family: var(--font-mono); font-size: 10px; width: 2rem; }

/* Chat UI */
.chat-msg { margin-bottom: 0.75rem; }
.chat-msg.user { display: flex; justify-content: flex-end; }
.chat-msg.ai { display: flex; justify-content: flex-start; }

.chat-bubble {
  max-width: 72%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
}

.chat-bubble.user {
  background: rgba(79, 124, 255, 0.15);
  border: 1px solid rgba(79, 124, 255, 0.3);
  border-top-right-radius: 0.125rem;
}

.chat-bubble.ai {
  max-width: 80%;
  background: var(--muted);
  border: 1px solid rgba(79, 124, 255, 0.2);
  border-top-left-radius: 0.125rem;
}

.chat-meta { font-family: var(--font-mono); font-size: 10px; color: var(--primary); margin-bottom: 0.25rem; }
.chat-footer { display: flex; align-items: center; gap: 0.375rem; font-family: var(--font-mono); font-size: 10px; color: var(--muted-foreground); }

/* Heatmap table */
.heatmap-table { width: 100%; font-family: var(--font-mono); font-size: 0.75rem; border-collapse: collapse; }
.heatmap-table th { font-weight: 400; color: var(--muted-foreground); padding-bottom: 0.5rem; }
.heatmap-table td { padding: 0.375rem 0.25rem; }
.heat-cell { padding: 0.125rem 0.5rem; border-radius: 0.25rem; }

/* Standard mastery report */
.mastery-report-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.mastery-report-label { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted-foreground); width: 11rem; flex-shrink: 0; }

/* At-risk list */
.at-risk-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(26, 31, 46, 0.8);
  margin-bottom: 0.5rem;
}

.at-risk-row.high { border: 1px solid rgba(255, 107, 53, 0.3); }
.at-risk-row.medium { border: 1px solid rgba(79, 124, 255, 0.15); }
.risk-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.risk-dot.high { background: var(--destructive); animation: pulse 2s infinite; }
.risk-dot.medium { background: var(--primary); }

/* PDF course */
.pdf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pdf-panel { padding: 0.75rem; border-radius: 0.5rem; background: var(--muted); }
.pdf-panel.before { border: 1px solid rgba(139, 145, 168, 0.2); }
.pdf-panel.after { border: 1px solid rgba(127, 255, 178, 0.25); }

/* Lesson card */
.lesson-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--muted);
  border: 1px solid rgba(79, 124, 255, 0.2);
}

.lesson-std {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(127, 255, 178, 0.1);
  border: 1px solid rgba(127, 255, 178, 0.35);
  color: var(--accent);
}

/* Quote */
.quote { font-size: 1.875rem; font-weight: 900; line-height: 1.25; letter-spacing: -0.025em; margin-bottom: 1.5rem; }
.quote-attr { font-family: var(--font-mono); font-size: 0.875rem; color: var(--muted-foreground); }

/* CTA band */
.cta-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 5rem 0;
}

.cta-title { font-weight: 900; font-size: 1.5rem; letter-spacing: -0.03em; margin-bottom: 0.5rem; }

@media (min-width: 768px) {
  .cta-band { flex-direction: row; }
}

/* Comparison cards */
.compare-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 42rem; }
@media (min-width: 768px) { .compare-grid { grid-template-columns: 1fr 1fr; } }

.compare-card { padding: 1.5rem; border-radius: 0.75rem; background: var(--card); }
.compare-card.sis { border: 1px solid rgba(139, 145, 168, 0.12); }
.compare-card.omnix { border: 1px solid rgba(79, 124, 255, 0.35); }

/* Governance callout */
.governance {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  max-width: 32rem;
  background: rgba(127, 255, 178, 0.06);
  border: 1px solid rgba(127, 255, 178, 0.2);
}

.governance .icon { color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* Enterprise trust strip */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid rgba(79, 124, 255, 0.2);
}

.trust-item .icon { color: var(--primary); width: 16px; height: 16px; }

/* Architecture diagram */
.arch-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0;
}

.arch-box {
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
}

.arch-arrow {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  color: var(--primary);
  font-size: 14px;
}

.arch-line {
  height: 1px;
  width: 2.5rem;
  background: linear-gradient(to right, rgba(79, 124, 255, 0.3), rgba(79, 124, 255, 0.7));
}

.arch-line.reverse { background: linear-gradient(to right, rgba(79, 124, 255, 0.7), rgba(79, 124, 255, 0.3)); }

.district-stack { display: flex; flex-direction: column; gap: 0.625rem; }

.district-box {
  width: 7rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
  background: var(--muted);
  border: 1px solid rgba(127, 255, 178, 0.2);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
}

/* Booking widget */
.booking-widget {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(79, 124, 255, 0.2);
}

.booking-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(79, 124, 255, 0.12);
}

.booking-body { padding: 1.5rem; }

.date-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; margin-bottom: 1.5rem; }

.date-btn {
  height: 2.5rem;
  border-radius: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  transition: all 0.2s;
  background: rgba(26, 31, 46, 0.9);
  color: var(--muted-foreground);
  border: 1px solid rgba(79, 124, 255, 0.15);
}

.date-btn.selected {
  background: var(--primary);
  color: var(--background);
  border-color: var(--primary);
  font-weight: 700;
}

.time-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-bottom: 1.5rem; }

.time-btn {
  padding: 0.625rem;
  border-radius: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  transition: all 0.2s;
  background: rgba(26, 31, 46, 0.9);
  color: var(--muted-foreground);
  border: 1px solid rgba(79, 124, 255, 0.15);
}

.time-btn.selected {
  background: rgba(127, 255, 178, 0.12);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-confirm {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--primary);
  color: var(--background);
  transition: filter 0.2s;
}

.btn-confirm:hover { filter: brightness(1.1); }

.booking-empty {
  text-align: center;
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(139, 145, 168, 0.45);
}

.booking-confirmed { text-align: center; padding: 2rem; }

.confirm-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(127, 255, 178, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 1.25rem;
}

.checklist { margin-bottom: 2rem; }
.checklist-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }

.check-num {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  flex-shrink: 0;
  background: rgba(79, 124, 255, 0.12);
  border: 1px solid rgba(79, 124, 255, 0.35);
  color: var(--primary);
}

.highlight-box {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(127, 255, 178, 0.07);
  border: 1px solid rgba(127, 255, 178, 0.22);
}

.highlight-box .title { font-weight: 700; font-size: 0.875rem; color: var(--accent); margin-bottom: 0.25rem; }

.hidden { display: none !important; }

/* Spacing utilities */
.pt-24 { padding-top: 6rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-16 { padding-top: 4rem; }
.pt-14 { padding-top: 3.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
