/* ============================================================
   Boostur Meet — Public booking page stylesheet
   Completely standalone: zero dependency on dashboard.css
   ============================================================ */

:root {
  --bio-bg:         #0D0A1A;
  --bio-surface:    #1E1A38;
  --bio-border:     rgba(255,255,255,0.08);
  --bio-text:       #F0EEFF;
  --bio-muted:      #B8B0D8;
  --bio-accent:     #6C3BFF;
  --bio-accent2:    #FF5C3B;
  --bio-footer-bg:  #13102A;
  --bio-radius:     14px;
  --bio-font:       'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  /* Meet-specific */
  --meet-calendar-selected:  #6C3BFF;
  --meet-calendar-today:     rgba(108,59,255,0.15);
  --meet-calendar-disabled:  rgba(255,255,255,0.03);
  --meet-slot-bg:            #1E1A38;
  --meet-slot-hover:         rgba(108,59,255,0.15);
  --meet-slot-selected:      #6C3BFF;
  --meet-step-active:        #6C3BFF;
  --meet-step-complete:      #00e5a0;
  --meet-step-inactive:      #5C5480;

  /* Landing page extras */
  --bio-muted2:    #5C5480;
  --accent:        #6C3BFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--bio-font);
  background: var(--bio-bg);
  color: var(--bio-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Background gradient ─────────────────────────────────── */
.meet-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 25% 15%, rgba(108,59,255,.3) 0%, transparent 65%),
    radial-gradient(ellipse 45% 30% at 80% 85%, rgba(108,59,255,.12) 0%, transparent 65%),
    var(--bio-bg);
  z-index: 0;
  pointer-events: none;
}

/* ── Page wrapper ────────────────────────────────────────── */
.meet-page {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 16px 80px;
  min-height: 100vh;
}

/* ── Main card ───────────────────────────────────────────── */
.meet-card {
  width: 100%;
  max-width: 520px;
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  border-radius: 20px;
  overflow: hidden;
}

/* ── Host header ─────────────────────────────────────────── */
.meet-header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--bio-border);
  text-align: center;
}
.meet-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--bio-accent), #a855f7);
  color: #fff;
  overflow: hidden;
}
.meet-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.meet-host-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bio-text);
  margin-bottom: 4px;
}
.meet-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bio-text);
  margin-bottom: 14px;
}
.meet-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.meet-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(108,59,255,0.12);
  border: 1px solid rgba(108,59,255,0.25);
  font-size: 0.82rem;
  color: var(--bio-muted);
}
.meet-welcome {
  font-size: 0.88rem;
  color: var(--bio-muted);
  line-height: 1.6;
  margin-top: 12px;
}

/* ── Step progress indicator ─────────────────────────────── */
.meet-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px 0;
  gap: 0;
}
.meet-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--meet-step-inactive);
  font-weight: 500;
}
.meet-step.active  { color: var(--meet-step-active); }
.meet-step.done    { color: var(--meet-step-complete); }
.meet-step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--meet-step-inactive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  transition: background .2s;
}
.meet-step.active  .meet-step-dot { background: var(--meet-step-active); }
.meet-step.done    .meet-step-dot { background: var(--meet-step-complete); }
.meet-step-line {
  flex: 1;
  height: 1px;
  background: var(--bio-border);
  margin: 0 8px;
  min-width: 24px;
}

/* ── Step panels ─────────────────────────────────────────── */
.meet-body {
  padding: 24px 28px 32px;
}
.meet-step-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.meet-step-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.meet-step-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bio-text);
  margin-bottom: 20px;
}

/* ── Calendar grid ───────────────────────────────────────── */
.meet-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.meet-cal-month {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bio-text);
}
.meet-cal-btn {
  background: none;
  border: 1px solid var(--bio-border);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  color: var(--bio-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, color .15s;
}
.meet-cal-btn:hover { border-color: var(--bio-accent); color: var(--bio-accent); }

.meet-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.meet-cal-header {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bio-muted);
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.meet-cal-day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background .15s, color .15s;
  position: relative;
  color: var(--bio-text);
}
.meet-cal-day.empty      { cursor: default; }
.meet-cal-day.today      { background: var(--meet-calendar-today); }
.meet-cal-day.disabled   {
  color: rgba(255,255,255,0.15);
  cursor: not-allowed;
  background: var(--meet-calendar-disabled);
}
.meet-cal-day.available:hover { background: rgba(108,59,255,0.2); }
.meet-cal-day.selected   {
  background: var(--meet-calendar-selected);
  color: #fff;
  font-weight: 700;
}

/* ── Time slots ──────────────────────────────────────────── */
.meet-slots-wrap {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.meet-slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 400px) { .meet-slots-grid { grid-template-columns: 1fr; } }

.meet-slot {
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--bio-border);
  background: var(--meet-slot-bg);
  color: var(--bio-text);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-family: var(--bio-font);
  display: flex;
  align-items: center;
  justify-content: center;
}
.meet-slot:hover    { border-color: var(--bio-accent); background: var(--meet-slot-hover); }
.meet-slot.selected { background: var(--meet-slot-selected); border-color: var(--meet-slot-selected); color: #fff; font-weight: 700; }

.meet-tz-line {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--bio-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.meet-tz-change {
  color: var(--bio-accent);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
}

/* Timezone dropdown */
.meet-tz-dropdown {
  margin-top: 10px;
  display: none;
}
.meet-tz-dropdown.open { display: block; }
.meet-tz-search {
  width: 100%;
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--bio-border);
  border-radius: 8px;
  color: var(--bio-text);
  font-size: 0.85rem;
  font-family: var(--bio-font);
  margin-bottom: 6px;
}
.meet-tz-search:focus { outline: none; border-color: var(--bio-accent); }
.meet-tz-list {
  max-height: 180px;
  overflow-y: auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bio-border);
  border-radius: 8px;
  scrollbar-width: thin;
}
.meet-tz-option {
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--bio-muted);
  cursor: pointer;
}
.meet-tz-option:hover { background: rgba(108,59,255,0.15); color: var(--bio-text); }

/* Slot loading / empty states */
.meet-slots-loading, .meet-slots-empty {
  text-align: center;
  padding: 24px 0;
  color: var(--bio-muted);
  font-size: 0.88rem;
}
.meet-slots-loading::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--bio-accent);
  border-top-color: transparent;
  border-radius: 50%;
  animation: meet-spin .7s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}
@keyframes meet-spin { to { transform: rotate(360deg); } }

/* ── Step 3 — Details form ───────────────────────────────── */
.meet-selected-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(108,59,255,0.1);
  border: 1px solid rgba(108,59,255,0.25);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--bio-text);
}
.meet-selected-summary strong { display: block; font-size: 0.95rem; }
.meet-change-link {
  color: var(--bio-accent);
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

/* ── Form fields ─────────────────────────────────────────── */
.meet-field {
  margin-bottom: 16px;
}
.meet-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bio-muted);
  margin-bottom: 6px;
}
.meet-field input,
.meet-field textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--bio-border);
  border-radius: 10px;
  color: var(--bio-text);
  font-size: 0.9rem;
  font-family: var(--bio-font);
  transition: border-color .15s;
}
.meet-field input:focus,
.meet-field textarea:focus {
  outline: none;
  border-color: var(--bio-accent);
}
.meet-field textarea { resize: vertical; min-height: 90px; }
.meet-field input::placeholder,
.meet-field textarea::placeholder { color: var(--bio-muted); opacity: .6; }

/* ── Buttons ─────────────────────────────────────────────── */
.meet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--bio-font);
  cursor: pointer;
  transition: opacity .15s, transform .1s;
}
.meet-btn:active { transform: scale(0.98); }
.meet-btn-primary {
  background: var(--bio-accent);
  color: #fff;
}
.meet-btn-primary:hover { opacity: .9; }
.meet-btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.meet-btn-outline {
  background: transparent;
  border: 1px solid var(--bio-border);
  color: var(--bio-text);
}
.meet-btn-outline:hover { border-color: var(--bio-accent); color: var(--bio-accent); }
.meet-btn-sm {
  width: auto;
  padding: 9px 16px;
  font-size: 0.85rem;
}
.meet-btn-green {
  background: #00e5a0;
  color: #0a0a1a;
}
.meet-btn-green:hover { opacity: .9; }

/* ── Confirmation screen ─────────────────────────────────── */
.meet-confirm-screen {
  text-align: center;
  padding: 8px 0;
}
.meet-confirm-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,229,160,0.15);
  border: 2px solid #00e5a0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  animation: meet-pop .4s ease;
}
@keyframes meet-pop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.meet-confirm-heading {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.meet-confirm-sub {
  font-size: 0.88rem;
  color: var(--bio-muted);
  margin-bottom: 24px;
}
.meet-confirm-details {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bio-border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}
.meet-confirm-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bio-border);
  font-size: 0.88rem;
}
.meet-confirm-row:last-child { border-bottom: none; }
.meet-confirm-row-label {
  color: var(--bio-muted);
  width: 80px;
  flex-shrink: 0;
  font-size: 0.8rem;
  padding-top: 1px;
}
.meet-confirm-row-val { color: var(--bio-text); font-weight: 500; }
.meet-confirm-row-val a {
  color: var(--bio-accent);
  text-decoration: none;
}
.meet-confirm-row-val a:hover { text-decoration: underline; }

.meet-confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.meet-confirm-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--bio-muted);
}
.meet-confirm-links a {
  color: var(--bio-muted);
  text-decoration: underline;
}
.meet-confirm-links a:hover { color: var(--bio-text); }

/* ── 404 / Error states ──────────────────────────────────── */
.meet-404 {
  text-align: center;
  padding: 60px 24px;
  color: var(--bio-muted);
}
.meet-404-icon { font-size: 3rem; margin-bottom: 16px; }
.meet-404 h2   { font-size: 1.3rem; color: var(--bio-text); margin-bottom: 8px; }
.meet-404 p    { font-size: 0.9rem; }

/* ── Error messages ──────────────────────────────────────── */
.meet-error {
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #ff8080;
  margin-bottom: 14px;
  display: none;
}
.meet-error.show { display: block; }

/* ── Footer ──────────────────────────────────────────────── */
.meet-footer {
  text-align: center;
  padding: 16px;
  font-size: 0.75rem;
  color: var(--bio-muted);
  opacity: .6;
}
.meet-footer a {
  color: inherit;
  text-decoration: underline;
}

/* ============================================================
   Landing page — full marketing layout
   (replaces card.boostur.ai/card.css + inline <style> block)
   ============================================================ */

/* ── Nav ─────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem;
  height: 64px;
  background: rgba(13,10,26,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bio-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-logo-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bio-accent);
  background: rgba(108,59,255,0.12);
  border: 1px solid rgba(108,59,255,0.25);
  border-radius: 100px;
  padding: 2px 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--bio-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--bio-text); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  nav { padding: 0 1rem; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--bio-font);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--bio-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,59,255,0.35);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(108,59,255,0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--bio-border);
  color: var(--bio-text);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.8rem 1.75rem;
  border-radius: 12px;
}

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  gap: 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--bio-text);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #a78bff, #6C3BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--bio-muted);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

/* ── Eyebrow / pill label ────────────────────────────────── */
.meet-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bio-accent);
  background: rgba(108,59,255,0.1);
  border: 1px solid rgba(108,59,255,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.meet-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bio-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

/* ── How It Works ────────────────────────────────────────── */
.how-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  border-top: 1px solid var(--bio-border);
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bio-accent);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--bio-text);
  margin-bottom: 0.85rem;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, #a78bff, #6C3BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--bio-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ── Steps ───────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.2s;
}

.step:hover { border-color: rgba(108,59,255,0.3); }

.step-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--bio-muted2);
  margin-bottom: 1rem;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(108,59,255,0.1);
  border: 1px solid rgba(108,59,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bio-accent);
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bio-text);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--bio-muted);
}

/* ── Features ────────────────────────────────────────────── */
#features {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  border-top: 1px solid var(--bio-border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.feature {
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.feature:hover { border-color: rgba(108,59,255,0.3); }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(108,59,255,0.08);
  border: 1px solid rgba(108,59,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bio-text);
  margin-bottom: 0.45rem;
}

.feature p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--bio-muted);
}

/* ── Gated / Integrations section ────────────────────────── */
.gated-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  border-top: 1px solid var(--bio-border);
}

.gated-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 860px) {
  .gated-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.gate-mockup {
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  margin: 5rem 0;
  position: relative;
  z-index: 1;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(108,59,255,0.3), rgba(108,59,255,0.05), rgba(108,59,255,0.15));
  z-index: -1;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--bio-text);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 1rem;
  color: var(--bio-muted);
  margin-bottom: 1.75rem;
}

.btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  background: #13102A;
  border-top: 1px solid var(--bio-border);
  padding: 3.5rem 1.5rem 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

.footer-brand img {
  height: 28px;
  width: auto;
  margin-bottom: 0.85rem;
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--bio-muted2);
  max-width: 300px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bio-muted);
  margin-bottom: 0.4rem;
}

.footer-col a {
  font-size: 0.84rem;
  color: var(--bio-muted2);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--bio-text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bio-border);
  font-size: 0.78rem;
  color: var(--bio-muted2);
}

.footer-bottom div {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom a {
  color: var(--bio-muted2);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-bottom a:hover { color: var(--bio-text); }

/* ── Mock calendar widget ─────────────────────────────────── */
.mock-cal {
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  border-radius: 20px;
  padding: 1.5rem;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(108,59,255,0.1);
  position: relative;
}

.mock-cal::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6C3BFF, transparent);
  border-radius: 100px;
}

.mock-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mock-cal-header span {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bio-text);
}

.mock-cal-header button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bio-muted);
  font-size: 1rem;
  padding: 0 4px;
}

.mock-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 1rem;
}

.mock-cal-day-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--bio-muted);
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-cal-day {
  text-align: center;
  font-size: 0.78rem;
  padding: 6px 2px;
  border-radius: 50%;
  color: var(--bio-muted);
  cursor: default;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-cal-day.available {
  color: var(--bio-text);
  cursor: pointer;
  transition: background 0.15s;
}

.mock-cal-day.available:hover { background: rgba(108,59,255,0.15); }

.mock-cal-day.selected {
  background: #6C3BFF;
  color: #fff;
  font-weight: 700;
}

.mock-cal-day.today {
  border: 1px solid rgba(108,59,255,0.4);
  color: #a78bff;
}

.mock-cal-day.disabled { opacity: 0.25; }

/* ── Mock time slots ─────────────────────────────────────── */
.mock-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.mock-slot {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--bio-text);
  cursor: pointer;
  transition: all 0.15s;
}

.mock-slot:hover {
  border-color: rgba(108,59,255,0.4);
  background: rgba(108,59,255,0.1);
}

.mock-slot.selected {
  background: #6C3BFF;
  border-color: #6C3BFF;
  font-weight: 700;
}

/* ── Mock host card ──────────────────────────────────────── */
.mock-host {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bio-border);
}

.mock-host-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #6C3BFF, #FF5C3B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}

.mock-host-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bio-text);
}

.mock-host-meta {
  font-size: 0.75rem;
  color: var(--bio-muted);
  margin-top: 8px;
}

/* ── Mock badges ─────────────────────────────────────────── */
.mock-badges {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.mock-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(108,59,255,0.12);
  border: 1px solid rgba(108,59,255,0.25);
  color: #a78bff;
  border-radius: 100px;
  padding: 3px 10px;
}

/* ── Mock step progress bar ──────────────────────────────── */
.mock-steps {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.mock-step {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
}

.mock-step.active { background: #6C3BFF; }
.mock-step.done   { background: #00e5a0; }

/* ── Features section two-col responsive ─────────────────── */
@media (max-width: 860px) {
  #features .container > div {
    grid-template-columns: 1fr !important;
  }
  .features-grid { margin-top: 2rem !important; }
}

/* ── Hero section responsive ─────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding: 3.5rem 1rem 3rem; }
  .hero h1 { font-size: 2rem; }
  .cta-banner { padding: 2.5rem 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
