/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0a0a14;
  color: #e2e8f0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
textarea { resize: vertical; }

/* ── Pages ────────────────────────────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn-brand {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white; font-weight: 600; font-size: 14px;
  transition: all 0.2s; box-shadow: 0 4px 15px rgba(99,102,241,0.35);
}
.btn-brand:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(99,102,241,0.5); }
.btn-brand:active { transform: translateY(0); }
.btn-brand.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 14px; }
.btn-brand.btn-sm { padding: 6px 14px; font-size: 13px; border-radius: 8px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75); font-weight: 500; font-size: 14px;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: white; }
.btn-ghost.btn-sm { padding: 6px 14px; font-size: 13px; border-radius: 8px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 12px;
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8); font-weight: 500; font-size: 14px;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); color: white; }
.btn-outline.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 14px; }
.btn-outline.w-full { width: 100%; justify-content: center; }
.btn-brand.w-full { width: 100%; justify-content: center; }

.btn-google {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8); font-weight: 500; font-size: 14px;
  transition: all 0.2s;
}
.btn-google:hover { background: rgba(255,255,255,0.1); color: white; }

/* ── Gradient text ────────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 50%, #38bdf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,20,0.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: white; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(99,102,241,0.4);
  flex-shrink: 0;
}
.logo-icon.sm { width: 28px; height: 28px; border-radius: 8px; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-actions { display: flex; gap: 10px; }
.nav-mobile-btn { display: none; color: rgba(255,255,255,0.7); padding: 6px; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 140px 24px 80px; text-align: center;
  max-width: 1200px; margin: 0 auto;
}
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(100px); opacity: 0.12;
}
.hero-glow-1 { width: 600px; height: 600px; background: #6366f1; top: -100px; left: 50%; transform: translateX(-50%); }
.hero-glow-2 { width: 400px; height: 400px; background: #8b5cf6; top: 200px; left: 10%; }
.hero-glow-3 { width: 300px; height: 300px; background: #06b6d4; top: 100px; right: 10%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc; font-size: 13px; font-weight: 500; margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #818cf8;
  box-shadow: 0 0 8px rgba(129,140,248,0.8);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title {
  font-size: clamp(42px, 7vw, 80px); font-weight: 900; line-height: 1.05;
  color: white; letter-spacing: -2px; margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 600px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  margin-bottom: 64px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-num { font-size: 28px; font-weight: 800; color: white; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Hero mockup */
.hero-mockup {
  max-width: 900px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  background: #0f0f1a;
}
.mockup-bar {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mockup-url { flex: 1; text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); }
.mockup-pill { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.mockup-pill.green { background: rgba(16,185,129,0.2); color: #34d399; }
.mockup-body { padding: 16px; }
.mockup-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.mockup-tile {
  position: relative; border-radius: 12px; padding: 20px 12px 12px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-height: 100px;
}
.mockup-tile-chat { padding: 10px; align-items: stretch; }
.mockup-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: white;
}
.mockup-name { font-size: 11px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 4px; }
.host-badge { background: rgba(99,102,241,0.3); color: #a5b4fc; font-size: 9px; padding: 1px 5px; border-radius: 4px; }
.mockup-mic-on, .mockup-mic-off {
  position: absolute; bottom: 8px; right: 8px;
  width: 22px; height: 22px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.mockup-mic-on { background: rgba(99,102,241,0.4); }
.mockup-mic-off { background: rgba(239,68,68,0.4); }
.mockup-chat-header { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.mockup-chat-msgs { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mockup-msg { font-size: 10px; color: rgba(255,255,255,0.6); line-height: 1.4; }
.msg-author { font-weight: 600; }
.mockup-chat-input { margin-top: 8px; padding: 6px 10px; background: rgba(255,255,255,0.05); border-radius: 8px; font-size: 10px; color: rgba(255,255,255,0.25); border: 1px solid rgba(255,255,255,0.08); }
.mockup-controls { display: flex; justify-content: center; gap: 8px; }
.mockup-ctrl {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.mockup-ctrl.active { background: rgba(99,102,241,0.3); border-color: rgba(99,102,241,0.5); }
.mockup-ctrl.danger { background: rgba(239,68,68,0.3); border-color: rgba(239,68,68,0.5); }

/* ── FEATURES ─────────────────────────────────────────────────────────────── */
.features, .how, .pricing { max-width: 1200px; margin: 0 auto; padding: 100px 24px; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #818cf8; margin-bottom: 16px;
}
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: white; margin-bottom: 16px; letter-spacing: -1px; }
.section-sub { font-size: 17px; color: rgba(255,255,255,0.5); max-width: 560px; line-height: 1.7; margin-bottom: 60px; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  padding: 28px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); }
.feature-card-large { grid-column: span 2; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; border: 1px solid;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.feature-tags span {
  font-size: 12px; padding: 4px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */
.steps { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 200px; padding: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
}
.step-num { font-size: 40px; font-weight: 900; color: rgba(99,102,241,0.3); margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; }
.step p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.step-arrow { font-size: 28px; color: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ── PRICING ──────────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card {
  padding: 32px; border-radius: 20px; position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}
.pricing-card-featured {
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.1));
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 0 40px rgba(99,102,241,0.15);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 18px; font-weight: 700; color: white; margin-bottom: 12px; }
.plan-price { margin-bottom: 24px; }
.price-num { font-size: 40px; font-weight: 900; color: white; }
.price-period { font-size: 14px; color: rgba(255,255,255,0.4); }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 14px; color: rgba(255,255,255,0.7); }
.plan-features li.dim { color: rgba(255,255,255,0.3); }

/* ── CTA ──────────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative; text-align: center; padding: 100px 24px;
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.05));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.cta-glow {
  position: absolute; width: 600px; height: 400px; border-radius: 50%;
  background: rgba(99,102,241,0.15); filter: blur(100px);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.cta-section h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; color: white; margin-bottom: 16px; letter-spacing: -1px; position: relative; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 36px; position: relative; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer { padding: 60px 24px 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 60px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 12px; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { max-width: 1200px; margin: 0 auto; font-size: 13px; color: rgba(255,255,255,0.25); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; }

/* ── AUTH ─────────────────────────────────────────────────────────────────── */
.auth-bg {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 24px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a0a14, #0f0f1a);
}
.auth-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: rgba(99,102,241,0.1); filter: blur(120px);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.auth-container { position: relative; width: 100%; max-width: 420px; text-align: center; }
.auth-logo { margin-bottom: 32px; display: inline-flex; }
.auth-title { font-size: 28px; font-weight: 800; color: white; margin-bottom: 8px; }
.auth-sub { font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.auth-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
  padding: 28px; text-align: left; display: flex; flex-direction: column; gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); }
.form-input {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: white; font-size: 14px; outline: none; transition: all 0.2s;
}
.form-input:focus { border-color: rgba(99,102,241,0.6); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); background: rgba(255,255,255,0.07); }
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-label-row { display: flex; justify-content: space-between; align-items: center; }
.form-link { font-size: 12px; color: #818cf8; }
.form-link:hover { color: #a5b4fc; }
.auth-divider { position: relative; text-align: center; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.1); }
.auth-divider span { position: relative; background: rgba(15,15,26,0.9); padding: 0 12px; font-size: 12px; color: rgba(255,255,255,0.35); }
.auth-terms { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; }
.auth-terms a { color: #818cf8; }
.auth-footer-text { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,0.4); }
.auth-footer-text a { color: #818cf8; font-weight: 500; }
.auth-footer-text a:hover { color: #a5b4fc; }

/* ── APP LAYOUT ───────────────────────────────────────────────────────────── */
.app-layout { display: flex; height: 100vh; overflow: hidden; }
.app-sidebar {
  width: 240px; flex-shrink: 0; display: flex; flex-direction: column;
  background: rgba(10,10,20,0.95); border-right: 1px solid rgba(255,255,255,0.06);
  padding: 20px 12px;
}
.sidebar-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; color: white; padding: 8px 12px; margin-bottom: 24px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.sidebar-link {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px;
  color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 500; transition: all 0.2s;
}
.sidebar-link:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }
.sidebar-link.active { background: rgba(99,102,241,0.15); color: #a5b4fc; }
.sidebar-bottom { display: flex; flex-direction: column; gap: 4px; }
.sidebar-user {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px;
  cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.sidebar-user:hover, .sidebar-user.active { background: rgba(255,255,255,0.06); }
.user-avatar-sm {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; color: white;
}
.user-name-sm { font-size: 13px; font-weight: 600; color: white; }
.user-email-sm { font-size: 11px; color: rgba(255,255,255,0.4); }
.app-main { flex: 1; overflow-y: auto; padding: 32px; background: #0a0a14; }

/* ── DASHBOARD ────────────────────────────────────────────────────────────── */
.dash-tab { display: none; }
.dash-tab.active { display: block; }
.dash-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.dash-title { font-size: 26px; font-weight: 800; color: white; }
.dash-sub { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.dash-header-actions { display: flex; gap: 10px; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.stat-card {
  display: flex; align-items: center; gap: 14px; padding: 20px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px;
}
.stat-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-card-num { font-size: 24px; font-weight: 800; color: white; }
.stat-card-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

.dash-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dash-section { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 20px; }
.dash-section-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 16px; }

.meeting-list { display: flex; flex-direction: column; gap: 10px; }
.meeting-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer; transition: all 0.2s;
}
.meeting-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.meeting-item.upcoming { border-color: rgba(99,102,241,0.2); }
.meeting-time-badge {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 8px;
  background: rgba(99,102,241,0.2); color: #a5b4fc; white-space: nowrap; flex-shrink: 0;
}
.meeting-time-badge.past { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }
.meeting-info { flex: 1; min-width: 0; }
.meeting-name { font-size: 14px; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.meeting-meta { font-size: 12px; color: rgba(255,255,255,0.4); display: flex; gap: 6px; margin-top: 2px; }

/* Filter row */
.filter-row { display: flex; gap: 8px; margin-bottom: 20px; }
.filter-btn {
  padding: 7px 16px; border-radius: 8px; font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: rgba(99,102,241,0.2); border-color: rgba(99,102,241,0.4); color: #a5b4fc; }

/* Meetings table */
.meetings-table { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; }
.table-header { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr; padding: 12px 20px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); border-bottom: 1px solid rgba(255,255,255,0.06); text-transform: uppercase; letter-spacing: 0.5px; }
.table-row { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr; padding: 14px 20px; font-size: 14px; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.04); cursor: pointer; transition: background 0.15s; align-items: center; }
.table-row:last-child { border-bottom: none; }
.table-row:hover { background: rgba(255,255,255,0.03); }
.table-meeting-name { display: flex; align-items: center; gap: 10px; font-weight: 500; color: white; }
.table-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.table-dot.green { background: #34d399; box-shadow: 0 0 6px rgba(52,211,153,0.5); }
.table-dot.gray { background: rgba(255,255,255,0.2); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.team-card {
  padding: 24px 20px; border-radius: 16px; text-align: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.2s;
}
.team-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.12); }
.team-avatar {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: white;
}
.team-name { font-size: 14px; font-weight: 700; color: white; margin-bottom: 4px; }
.team-role { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.team-status { font-size: 12px; font-weight: 500; }
.team-status.online { color: #34d399; }
.team-status.offline { color: rgba(255,255,255,0.3); }
.team-card-invite { border-style: dashed; cursor: pointer; }
.team-invite-icon { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 12px; background: rgba(255,255,255,0.06); border: 2px dashed rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 24px; color: rgba(255,255,255,0.3); }

/* Settings */
.settings-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.settings-section { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.settings-section h3 { font-size: 16px; font-weight: 700; color: white; }
.settings-row { display: flex; align-items: center; gap: 16px; }
.settings-avatar { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; color: white; flex-shrink: 0; }
.settings-name { font-size: 16px; font-weight: 700; color: white; margin-bottom: 8px; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; }
.toggle-row span { font-size: 14px; color: rgba(255,255,255,0.7); }
.toggle { width: 44px; height: 24px; border-radius: 12px; background: rgba(255,255,255,0.1); position: relative; cursor: pointer; transition: background 0.2s; }
.toggle::after { content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: white; top: 3px; left: 3px; transition: transform 0.2s; }
.toggle.active { background: #6366f1; }
.toggle.active::after { transform: translateX(20px); }

/* Recordings */
.recordings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.recording-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; cursor: pointer; transition: all 0.2s; }
.recording-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.12); }
.recording-thumb { position: relative; height: 160px; background: linear-gradient(135deg, #1a1a2e, #16213e); display: flex; align-items: center; justify-content: center; }
.recording-play { width: 48px; height: 48px; border-radius: 50%; background: rgba(99,102,241,0.8); display: flex; align-items: center; justify-content: center; font-size: 18px; color: white; padding-left: 4px; }
.recording-duration { position: absolute; bottom: 8px; right: 10px; font-size: 12px; font-weight: 600; color: white; background: rgba(0,0,0,0.6); padding: 2px 8px; border-radius: 6px; }
.recording-info { padding: 14px 16px; }
.recording-name { font-size: 14px; font-weight: 600; color: white; margin-bottom: 4px; }
.recording-meta { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── MEETING ROOM ─────────────────────────────────────────────────────────── */
.meeting-layout { display: flex; flex-direction: column; height: 100vh; background: #080810; }
.meeting-topbar {
  display: flex; align-items: center; justify-content: space-between; padding: 0 20px;
  height: 56px; background: rgba(10,10,20,0.95); border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.meeting-topbar-left { display: flex; align-items: center; gap: 12px; }
.meeting-room-name { font-size: 14px; font-weight: 600; color: white; }
.meeting-live-badge { font-size: 11px; font-weight: 700; color: #34d399; background: rgba(52,211,153,0.15); padding: 3px 10px; border-radius: 100px; }
.meeting-topbar-center { position: absolute; left: 50%; transform: translateX(-50%); }
.meeting-timer { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.7); font-variant-numeric: tabular-nums; }
.meeting-topbar-right { display: flex; gap: 8px; }
.topbar-btn {
  display: flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; transition: all 0.2s;
}
.topbar-btn:hover { background: rgba(255,255,255,0.1); color: white; }
.topbar-btn.danger { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.3); color: #f87171; }
.topbar-btn.danger:hover { background: rgba(239,68,68,0.25); }

.meeting-body { flex: 1; display: flex; overflow: hidden; }
.video-area { flex: 1; padding: 16px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; width: 100%; max-width: 900px; }
.video-tile {
  position: relative; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.video-tile:hover { border-color: rgba(255,255,255,0.15); }
.video-tile.self-tile { border-color: rgba(99,102,241,0.3); }
.video-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px; color: white;
}
.video-name-tag {
  position: absolute; bottom: 10px; left: 12px;
  font-size: 12px; font-weight: 600; color: white;
  background: rgba(0,0,0,0.6); padding: 3px 10px; border-radius: 8px;
  backdrop-filter: blur(8px);
}
.video-mic-indicator {
  position: absolute; bottom: 10px; right: 10px;
  width: 26px; height: 26px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.video-mic-indicator.active { background: rgba(99,102,241,0.5); }
.video-mic-indicator.muted { background: rgba(239,68,68,0.5); }

/* Meeting sidebar */
.meeting-sidebar {
  width: 0; overflow: hidden; transition: width 0.3s ease;
  background: rgba(10,10,20,0.95); border-left: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.meeting-sidebar.open { width: 320px; }
.panel { display: flex; flex-direction: column; height: 100%; }
.panel.hidden { display: none; }
.panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px; font-weight: 700; color: white; flex-shrink: 0;
}
.panel-close { color: rgba(255,255,255,0.4); font-size: 16px; transition: color 0.2s; }
.panel-close:hover { color: white; }

/* Chat */
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.chat-msg { display: flex; gap: 10px; }
.chat-msg-avatar { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; color: white; }
.chat-msg-body { flex: 1; }
.chat-msg-header { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.chat-msg-name { font-size: 13px; font-weight: 600; color: white; }
.chat-msg-time { font-size: 11px; color: rgba(255,255,255,0.3); }
.chat-msg-text { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.chat-input-area { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.chat-input { flex: 1; padding: 10px 14px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: white; font-size: 13px; outline: none; }
.chat-input:focus { border-color: rgba(99,102,241,0.5); }
.chat-input::placeholder { color: rgba(255,255,255,0.25); }
.chat-send { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg,#6366f1,#8b5cf6); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: opacity 0.2s; }
.chat-send:hover { opacity: 0.85; }

/* Participants */
.participants-list { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.participant-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; transition: background 0.15s; }
.participant-item:hover { background: rgba(255,255,255,0.04); }
.participant-info { flex: 1; }
.participant-name { font-size: 13px; font-weight: 600; color: white; display: flex; align-items: center; gap: 6px; }
.participant-status { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.host-tag { font-size: 10px; background: rgba(99,102,241,0.3); color: #a5b4fc; padding: 1px 6px; border-radius: 4px; }
.participant-icons { color: rgba(255,255,255,0.6); }

/* Notes */
.notes-area { flex: 1; padding: 12px; display: flex; }
.notes-editor { width: 100%; flex: 1; background: transparent; border: none; outline: none; color: rgba(255,255,255,0.8); font-size: 13px; line-height: 1.7; resize: none; font-family: 'JetBrains Mono', 'Fira Code', monospace; }
.notes-editor::placeholder { color: rgba(255,255,255,0.2); }

/* Meeting controls */
.meeting-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 14px 24px; background: rgba(10,10,20,0.95);
  border-top: 1px solid rgba(255,255,255,0.06); flex-shrink: 0;
}
.controls-group { display: flex; gap: 8px; }
.ctrl-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 16px; border-radius: 12px; min-width: 60px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-size: 11px; font-weight: 500;
  transition: all 0.2s;
}
.ctrl-btn:hover { background: rgba(255,255,255,0.12); color: white; }
.ctrl-btn.active { background: rgba(99,102,241,0.2); border-color: rgba(99,102,241,0.4); color: #a5b4fc; }
.ctrl-btn.ctrl-end { background: rgba(239,68,68,0.2); border-color: rgba(239,68,68,0.4); color: #f87171; }
.ctrl-btn.ctrl-end:hover { background: rgba(239,68,68,0.35); }

/* ── WHITEBOARD ───────────────────────────────────────────────────────────── */
.wb-layout { display: flex; flex-direction: column; height: 100vh; background: #0d0d1a; }
.wb-topbar {
  display: flex; align-items: center; justify-content: space-between; padding: 0 20px;
  height: 52px; background: rgba(10,10,20,0.95); border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.wb-title { font-size: 14px; font-weight: 600; color: white; }
.wb-topbar-right { display: flex; gap: 8px; }
.wb-body { flex: 1; position: relative; overflow: hidden; }
.wb-toolbar-left {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 4px; z-index: 10;
  background: rgba(10,10,20,0.9); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 10px 8px; backdrop-filter: blur(20px);
}
.wb-tool {
  width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.15s;
}
.wb-tool:hover { background: rgba(255,255,255,0.08); color: white; }
.wb-tool.active { background: rgba(99,102,241,0.3); color: #818cf8; border: 1px solid rgba(99,102,241,0.4); }
.wb-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 4px 0; }
.wb-colors { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.wb-color { width: 20px; height: 20px; border-radius: 50%; cursor: pointer; transition: transform 0.15s; border: 2px solid transparent; }
.wb-color:hover { transform: scale(1.2); }
.wb-color.active { border-color: white; transform: scale(1.15); }
.wb-canvas { width: 100%; height: 100%; display: block; cursor: crosshair; }
.wb-cursors { position: absolute; inset: 0; pointer-events: none; }
.wb-cursor { position: absolute; }
.cursor-dot { width: 10px; height: 10px; border-radius: 50%; }
.cursor-label { font-size: 11px; font-weight: 600; color: white; padding: 2px 8px; border-radius: 6px; margin-top: 2px; white-space: nowrap; }

/* ── PROFILE ──────────────────────────────────────────────────────────────── */
.profile-page { max-width: 700px; }
.profile-header { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; }
.profile-avatar-wrap { position: relative; flex-shrink: 0; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 26px; color: white; }
.profile-avatar-edit { position: absolute; bottom: 0; right: 0; width: 26px; height: 26px; border-radius: 50%; background: #6366f1; display: flex; align-items: center; justify-content: center; }
.profile-header-info h1 { font-size: 22px; font-weight: 800; color: white; }
.profile-header-info p { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.profile-badges { display: flex; gap: 8px; margin-top: 10px; }
.badge-pro { font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: rgba(99,102,241,0.2); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.3); }
.badge-member { font-size: 12px; color: rgba(255,255,255,0.4); padding: 3px 10px; border-radius: 100px; background: rgba(255,255,255,0.05); }
.profile-tabs { display: flex; gap: 4px; margin-bottom: 24px; background: rgba(255,255,255,0.04); border-radius: 12px; padding: 4px; width: fit-content; }
.profile-tab { padding: 8px 20px; border-radius: 9px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.profile-tab.active { background: rgba(99,102,241,0.25); color: #a5b4fc; }
.profile-section { display: none; flex-direction: column; gap: 16px; }
.profile-section.active { display: flex; }
.security-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 8px 0; }
.security-desc { font-size: 14px; color: rgba(255,255,255,0.45); }
.billing-plan { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.3); border-radius: 12px; }
.billing-plan-name { font-size: 16px; font-weight: 700; color: white; }
.billing-plan-price { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.billing-features { display: flex; flex-direction: column; gap: 8px; }
.billing-feature { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ── TOAST ────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  padding: 12px 20px; border-radius: 12px;
  background: rgba(15,15,26,0.95); border: 1px solid rgba(255,255,255,0.1);
  color: white; font-size: 14px; font-weight: 500;
  backdrop-filter: blur(20px); box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(80px); opacity: 0; transition: all 0.3s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; margin-left: auto; }
  .nav-actions { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .dash-two-col { grid-template-columns: 1fr; }
  .settings-layout { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .app-sidebar { width: 200px; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .mockup-grid { grid-template-columns: 1fr 1fr; }
  .hide-mobile { display: none; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 36px; }
  .app-sidebar { display: none; }
  .app-main { padding: 20px; }
  .meeting-controls { gap: 8px; padding: 10px 12px; }
  .ctrl-btn { padding: 8px 10px; min-width: 48px; font-size: 10px; }
  .video-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}