:root {
  --bg: #080809;
  --surface: rgba(255, 255, 255, 0.04);
  --panel: rgba(255, 255, 255, 0.06);
  --text: #f3f5fb;
  --muted: #a9b0c2;
  --border: rgba(255, 255, 255, 0.08);
  --accent: linear-gradient(135deg, #c084fc, #7c3aed, #6366f1);
  --pill: rgba(255, 255, 255, 0.06);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.16), transparent 36%),
              radial-gradient(circle at 80% 0%, rgba(99, 102, 241, 0.12), transparent 32%),
              radial-gradient(circle at 20% 90%, rgba(192, 132, 252, 0.08), transparent 36%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.page-chrome {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%);
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 8;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(8, 8, 9, 0.94), rgba(8, 8, 9, 0.78));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #0a0a0f;
  box-shadow: 0 16px 30px rgba(99, 102, 241, 0.35);
}
.brand-word { letter-spacing: 0.01em; }

nav { display: flex; align-items: center; gap: 20px; font-weight: 600; color: var(--muted); }
nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  background: transparent;
  color: var(--text);
}

.btn.primary {
  background: var(--accent);
  color: #0b0b10;
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.35);
}

.btn.ghost { border-color: var(--border); color: var(--text); padding-inline: 14px; }

.btn.link { color: #cbd1ff; padding: 0; }

.btn.subtle {
  background: var(--pill);
  border-color: var(--border);
  color: var(--text);
  padding-inline: 14px;
}

.btn.full { width: 100%; }

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 42px;
  align-items: center;
}

.hero-copy h1 { font-size: clamp(32px, 6vw, 56px); margin: 16px 0 12px; letter-spacing: -0.02em; }
.lede { color: var(--muted); max-width: 640px; }
.eyebrow { letter-spacing: 0.2em; font-size: 12px; text-transform: uppercase; color: #cbd1ff; font-weight: 700; }
.pill { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--pill); color: #d9ddff; font-weight: 600; border: 1px solid var(--border); }
.muted-pill { background: rgba(255, 255, 255, 0.02); color: var(--muted); }

.cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 16px; }

.hero-meta { display: grid; gap: 10px; margin-top: 24px; color: var(--muted); }
.meta-label { color: var(--muted); font-size: 14px; margin: 0; }
.meta-value { font-weight: 700; margin: 4px 0 0; color: var(--text); }

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  padding-right: 24px;
  padding-bottom: 0;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.card-heading { display: flex; align-items: center; gap: 8px; justify-content: space-between; color: var(--muted); font-size: 12px; }
.card-heading .dot { width: 8px; height: 8px; border-radius: 50%; background: #8b5cf6; box-shadow: 0 0 10px rgba(99, 102, 241, 0.7); }

.conversation { display: grid; gap: 10px; margin: 14px 0; }
.bubble {
  padding: 12px 14px;
  border-radius: 14px;
  line-height: 1.5;
  font-weight: 500;
  border: 1px solid var(--border);
}
.bubble.inbound { background: rgba(255, 255, 255, 0.02); color: var(--text); }
.bubble.outbound { background: rgba(124, 58, 237, 0.12); color: #e7d9ff; border-color: rgba(124, 58, 237, 0.25); }

.glass-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--border); padding-top: 12px; }

.floating-card {
  position: relative;
  justify-self: end;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  width: min(260px, 90%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.chip { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: rgba(124, 58, 237, 0.12); color: #d9ccff; border: 1px solid rgba(124,58,237,0.4); font-weight: 700; margin-left: 6px; }

.section { padding: 80px 0; }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 32px; }

.cards.three { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}
.card h3 { margin: 8px 0 12px; font-size: 20px; }
.card ul { color: var(--muted); padding-left: 20px; line-height: 1.5; margin: 0; }

.panel-section { background: rgba(255, 255, 255, 0.01); border-block: 1px solid var(--border); }
.panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; align-items: center; }
.panel-copy h2 { margin: 8px 0 12px; font-size: 32px; letter-spacing: -0.02em; }

.list { display: grid; gap: 12px; margin-top: 14px; }
.list-item { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; background: rgba(255,255,255,0.02); border: 1px solid var(--border); padding: 10px 12px; border-radius: 12px; }
.list-item .dot { width: 10px; height: 10px; border-radius: 50%; background: #7c3aed; box-shadow: 0 0 12px rgba(124,58,237,0.7); margin-top: 6px; }

.panel-preview {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.preview-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.preview-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.metric-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; margin-top: 12px; }
.wave { height: 120px; margin-top: 12px; background: linear-gradient(120deg, rgba(124,58,237,0.3), rgba(99,102,241,0.2), rgba(0,0,0,0)); border-radius: 12px; mask-image: radial-gradient(circle at 20% 60%, black 30%, transparent 60%), radial-gradient(circle at 60% 40%, black 30%, transparent 60%), radial-gradient(circle at 90% 70%, black 25%, transparent 60%); mask-size: 50% 100%; mask-repeat: repeat-x; opacity: 0.6; }

.logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 26px auto 12px; }
.logo-mark { padding: 10px 14px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,0.02); color: var(--muted); font-weight: 700; letter-spacing: 0.02em; }

.quote { text-align: center; max-width: 640px; margin: 0 auto; }

.about { background: rgba(255, 255, 255, 0.01); border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; align-items: start; }
.team-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 16px; box-shadow: 0 14px 36px rgba(0,0,0,0.3); display: grid; gap: 14px; }
.team-panel-header { display: flex; justify-content: space-between; gap: 14px; align-items: flex-end; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.team-panel-header h3 { margin: 2px 0 4px; letter-spacing: -0.01em; }
.team-panel-header .muted { max-width: 320px; }
.team-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
@media (min-width: 1024px) {
  .team-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.profile-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: grid; gap: 10px; box-shadow: 0 10px 26px rgba(0,0,0,0.28); }
.portrait { position: relative; background: radial-gradient(circle at 30% 20%, rgba(124,58,237,0.18), transparent 50%), rgba(255,255,255,0.02); aspect-ratio: 2 / 3; overflow: hidden; border-bottom: 1px solid var(--border); }
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.02); }
.portrait .portrait-tag { position: absolute; left: 12px; top: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(8,8,9,0.7); border: 1px solid var(--border); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; }
.profile-details { padding: 0 12px 14px; display: grid; gap: 8px; }
.profile-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.profile-header h3 { margin: 0; }
.micro-pill { padding: 6px 10px; font-size: 12px; letter-spacing: 0.02em; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: #d9ddff; border-radius: 999px; }
.profile-details .bio { margin: 0; color: var(--muted); }

.contact { background: rgba(255, 255, 255, 0.02); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; align-items: center; }

.contact-form { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 16px; padding: 18px; display: grid; gap: 12px; box-shadow: 0 16px 40px rgba(0,0,0,0.32); }
.input-row { display: grid; gap: 8px; color: var(--muted); font-weight: 600; font-size: 14px; }
input, select, textarea { width: 100%; padding: 12px 12px; border-radius: 12px; border: 1px solid var(--border); background: rgba(255,255,255,0.02); color: var(--text); font-size: 15px; }
textarea { resize: vertical; }

.footer { border-top: 1px solid var(--border); padding: 32px 0 40px; background: rgba(0,0,0,0.35); margin-top: 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; align-items: start; }
.footer-links, .footer-meta { display: grid; gap: 8px; color: var(--muted); }
.brand-block .brand { margin-bottom: 8px; }
.muted { color: var(--muted); }

@media (max-width: 720px) {
  nav { display: none; }
  .topbar { border-bottom-color: transparent; }
  .hero { padding-top: 50px; }
  .hero-visual { padding-right: 0; padding-bottom: 0; }
  .floating-card { position: static; width: 100%; }
}
