@font-face {
  font-family: "klaxon";
  src: url("/klaxon.otf");
}
@font-face {
  font-family: "Friend Bestie";
  src: url("/Friend_Bestie.otf");
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  background: #0c0c0c;
  color: #e0e0e0;
  min-height: 100vh;
  line-height: 1.55;
}
a { color: #93c5fd; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(18, 18, 18, 0.92);
  border-bottom: 1px solid #2a2a2a;
  backdrop-filter: blur(10px);
}
.nav-brand {
  display: flex;
  align-items: center;
  vertical-align: middle;
  color: #f0f0f0;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}
.nav-brand:hover { text-decoration: none; color: #fff; }
.brand-div, .brand-cord {
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  background: transparent !important;
}
.brand-div {
  font-family: klaxon;
  color: #FAA !important;
  margin: 0;
}
.brand-cord {
  font-family: Friend Bestie;
  color: #FFF !important;
  margin: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-links a {
  color: #a3a3a3;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
}
.nav-links a:hover { color: #e0e0e0; background: #222; text-decoration: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: #2563eb;
  color: #fff;
}
.btn-primary:hover { background: #1d4ed8; color: #fff; }
.btn-ghost {
  background: #222;
  color: #e0e0e0;
  border: 1px solid #333;
}
.btn-ghost:hover { background: #2a2a2a; color: #fff; }
.btn-lg { padding: 12px 20px; font-size: 15px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 64px;
  text-align: center;
  border-bottom: 1px solid #222;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -40% 20% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.22), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 750;
  line-height: 1.15;
  color: #f5f5f5;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero h1 span {
  background: linear-gradient(90deg, #93c5fd, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 17px;
  color: #a3a3a3;
  max-width: 540px;
  margin: 0 auto 28px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  color: #737373;
  font-size: 13px;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta i { color: #525252; }

/* Mock chat preview */
.preview-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 24px 56px;
  pointer-events: none;
  user-select: none;
}
.preview {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #1a1a1a;
  border-bottom: 1px solid #2a2a2a;
}
.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}
.preview-dot.r { background: #ef4444; }
.preview-dot.y { background: #eab308; }
.preview-dot.g { background: #22c55e; }
.preview-title {
  margin-left: 8px;
  font-size: 12px;
  color: #888;
}
.preview-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 280px;
}
@media (max-width: 640px) {
  .preview-body { grid-template-columns: 1fr; }
  .preview-side { display: none; }
}
.preview-side {
  background: #121212;
  border-right: 1px solid #2a2a2a;
  padding: 14px 12px;
}
.preview-side h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 10px;
}
.preview-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
  font-size: 13px;
}
.preview-user.on { background: #1e1e1e; }
.av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #333;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
}
.av.blue { background: #1e3a5f; color: #93c5fd; }
.av.purple { background: #3b2760; color: #c4b5fd; }
.av.green { background: #14532d; color: #86efac; }
.preview-chat {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.msg .body { min-width: 0; }
.msg .meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 2px;
}
.msg .meta strong { color: #ddd; font-weight: 600; }
.msg .text {
  font-size: 13.5px;
  color: #ccc;
}
.msg .text code {
  background: #222;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 12px;
  color: #93c5fd;
}
.tabs-row {
  display: flex;
  gap: 4px;
  padding: 0 14px;
  border-bottom: 1px solid #2a2a2a;
  background: #161616;
}
.ptab {
  padding: 8px 12px;
  font-size: 12px;
  color: #777;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  margin-top: 6px;
}
.ptab.active {
  color: #e0e0e0;
  background: #1e1e1e;
  border-color: #333;
}

/* Sections */
section {
  padding: 64px 24px;
}
.section-inner {
  max-width: 960px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.section-head p {
  color: #888;
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.feature {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.15s ease;
}
.feature:hover { border-color: #3b3b3b; }
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1e1e1e;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  margin-bottom: 14px;
  font-size: 15px;
}
.feature h3 {
  font-size: 15px;
  font-weight: 600;
  color: #eee;
  margin-bottom: 6px;
}
.feature p {
  font-size: 13.5px;
  color: #888;
  margin: 0;
}

.how {
  background: #111;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 8px 0 8px 0;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #eee;
}
.step p { font-size: 13.5px; color: #888; }

.audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.audience-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 22px;
}
.audience-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.audience-card h3 i { color: #a78bfa; font-size: 14px; }
.audience-card p { font-size: 13.5px; color: #888; }

.cta-band {
  text-align: center;
  padding: 72px 24px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.12), transparent 60%);
  border-top: 1px solid #222;
}
.cta-band h2 {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #f0f0f0;
}
.cta-band p {
  color: #888;
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .hero-cta { margin-bottom: 0; }

footer {
  padding: 24px;
  border-top: 1px solid #222;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: 13px;
  background: #0c0c0c;
}
footer .links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
footer a { color: #888; }
footer a:hover { color: #ccc; }