/* VI Meet Bot - Shared Styles */
:root {
  --bg: #0b0f19;
  --card: #12182a;
  --text: #e6eaf5;
  --muted: #9aa3b2;
  --primary: #8b5cf6;
  --secondary: #22d3ee;
  --ring: rgba(139, 92, 246, 0.35);
  --accent: linear-gradient(135deg, var(--primary), var(--secondary));
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.nav {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(11, 15, 25, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 20;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background:url("images/logo.png");  
  background-size: 60% auto, cover, contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(255,255,255,.18);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  color: var(--text);
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}
.btn.primary {
  background: var(--accent);
  border: none;
}

.btn.ghost {
  background: transparent;
  border: none;
}

.hero {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.18),
    rgba(34, 211, 238, 0.14)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero h1 {
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.1;
  margin: 6px 0;
}
.hero p {
  font-size: clamp(16px, 2.6vw, 20px);
  color: var(--muted);
  margin: 0;
}
.grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 860px) {
  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: 18px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.muted {
  color: var(--muted);
}
.section {
  margin-top: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid var(--ring);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.xmode {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
  background: radial-gradient(
      80% 60% at 10% 10%,
      rgba(255, 255, 255, 0.06),
      transparent
    ),
    linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(217, 70, 239, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.xmode h2 {
  margin-top: 0;
}
.xmode .note {
  font-size: 13px;
  color: #fbcfe8;
}
.list {
  padding-left: 18px;
  margin: 10px 0;
}
.footer {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 14px;
}
.kicker {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  font-size: 12px;
  color: var(--muted);
}
.phone-frame {
  display: block;
  width: min(420px, 100%);
  margin: 10px auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(139, 92, 246, 0.15);
}
.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
}
#faq-s {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#faq-m {
  cursor: pointer;
}
/* mini table */
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px; 
}

.table th {
  text-align: left;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
}

.table td {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 10px;
}

.table tbody tr {
  border-radius: 12px;
  overflow: hidden; 
}

.table tbody tr td:first-child {
  border-radius: 12px 0 0 12px; 
}

.table tbody tr td:last-child {
  border-radius: 0 12px 12px 0; 
}
code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2px 6px;
  border-radius: 8px;
}
.nav a.active {
  border-bottom: 2px solid var(--secondary);
  border-radius: 0;
}
.small {
  font-size: 13px;
  color: var(--muted);
}
blockquote {
  margin: 0;
  padding: 16px;
  border-left: 3px solid rgba(139, 92, 246, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

.app-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    #6a5acd,
    #00c6ff
  ); /* purple-blue gradient */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.app-icon img {
  width: 70%;
  height: auto;
}


@media screen and (max-width: 768px) {
  .nav-links a{
    display: none;;
  }
  .btn{
    padding: 10px 14px;
    font-weight: 600;
  }
   .nav-links a.btn.primary {
    display: inline-flex; 
  }
  .hero {
    padding: 20px;
  }
  .hero h1 {
    font-size: 30px;
  }
}