/* ===========================
   Boinko AI – Dark Neon Styles (Optimized)
   All orb / ring / face code removed
   =========================== */

:root {
  --bg-main: #05060b;
  --bg-alt: #080818;
  --bg-card: #0e0f1c;
  --bg-card-alt: #111226;
  --grid-line: rgba(255, 255, 255, 0.04);
  --text-main: #f5f7ff;
  --text-muted: #9ba0c2;
  --accent-pink: #ff4ec7;
  --accent-blue: #00c4ff;
  --accent-yellow: #f8ff3c;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.25s ease-out;
}
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-copy {
  flex: 1;
}

.hero-visual {
  flex: 0 0 350px;
  display: flex;
  justify-content: center;
}

.hero-square-right {
  width: 100%;
  max-width: 350px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.4);
}

/* Hero square logo */
.hero-square {
  width: 240px;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 0 45px rgba(0, 196, 255, 0.55),
              0 0 25px rgba(255, 78, 199, 0.35);
  animation: square-float 4s ease-in-out infinite;
}

@keyframes square-float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Responsiveness for hero */
@media (max-width: 720px) {
  .hero-square { width: 200px; }
}
@media (max-width: 520px) {
  .hero-square { width: 160px; }
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #171a30 0, #05060b 45%, #020309 100%);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Background orbits (not orb graphics) */
.bg-orbit {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: -2;
  pointer-events: none;
}

.orbit-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0, 196, 255, 0.75), transparent 70%);
  top: -140px; right: -120px;
}

.orbit-2 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(255, 78, 199, 0.8), transparent 72%);
  bottom: -220px; left: -160px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
      linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
      linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.32;
  z-index: -3;
  mix-blend-mode: soft-light;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px min(5vw, 72px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 11, 0.98),
    rgba(5, 6, 11, 0.92),
    transparent
  );
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 520px) {
  .header-logo { height: 40px; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #fff;
  background: radial-gradient(circle at top, rgba(0, 196, 255, 0.16), transparent 55%);
  transform: translateY(-1px);
}

.nav-cta {
  border: 1px solid rgba(255, 78, 199, 0.7);
  color: #fff;
  background: radial-gradient(circle at top left, rgba(255, 78, 199, 0.32), transparent 60%);
}

/* Sections */

.section {
  padding: 48px min(5vw, 72px);
  max-width: 1120px;
  margin: 0 auto;
}

.section.hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-alt {
  background: radial-gradient(circle at top, #16172c 0, #05060b 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 32px auto;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 10px 0;
  font-size: clamp(26px, 3vw, 32px);
}

/* Hero */

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--accent-blue);
}

.hero h1 {
  margin: 0 0 10px 0;
  font-size: clamp(32px, 4vw, 40px);
}

.accent {
  color: var(--accent-pink);
}

.hero-sub {
  margin-bottom: 14px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-med);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
  color: #05060b;
  box-shadow: 0 0 28px rgba(255, 78, 199, 0.7);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 6, 11, 0.7);
  color: #fff;
}

/* Pills */

.hero-footnote {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(11, 13, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

/* Stats */

.hero-stats {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  max-width: 320px;
}

.stat-card {
  background: rgba(8, 9, 22, 0.96);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 196, 255, 0.35);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-blue);
}

.stat-value {
  font-size: 12px;
}

/* Feature grid */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature-card {
  background: radial-gradient(circle at top, rgba(0, 196, 255, 0.24), rgba(8, 9, 22, 0.98));
  border-radius: var(--radius-md);
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* Demo section */

.section-split {
  margin-top: 12px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

/* Chat window */

.chat-window {
  background: linear-gradient(150deg, rgba(17, 18, 40, 0.96), rgba(6, 7, 18, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 196, 255, 0.5);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.chat-header {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: radial-gradient(circle at top left, rgba(0, 196, 255, 0.36), transparent 65%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
}

.chat-row {
  display: flex;
}
.chat-row.user { justify-content: flex-end; }
.chat-row.bot { justify-content: flex-start; }

.bubble {
  padding: 9px 11px;
  border-radius: 16px;
  font-size: 13px;
  max-width: 100%;
}

.user-bubble {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
  color: #05060b;
}

.bot-bubble {
  background: rgba(6, 7, 20, 0.96);
  border: 1px solid rgba(0, 196, 255, 0.6);
  color: var(--text-main);
}

.chat-input {
  padding: 9px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 7, 18, 0.96);
  font-size: 12px;
}

/* Pricing */

.pricing-wrap {
  max-width: 480px;
  margin: 26px auto 0 auto;
}

.pricing-card {
  background: radial-gradient(circle at top, rgba(255, 78, 199, 0.5), rgba(6, 7, 20, 0.98));
  border-radius: 24px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.8);
}

/* Reseller */

.reseller-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.reseller-card {
  background: rgba(8, 9, 20, 0.96);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  border: 1px solid rgba(0, 196, 255, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  font-size: 13px;
}

/* Contact */

.contact-inner {
  max-width: 880px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-top: 24px;
}

.contact-card {
  background: rgba(9, 10, 24, 0.96);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px min(5vw, 72px);
  background: rgba(3, 4, 10, 0.96);
  margin-top: 16px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* Scrollbars */

.chat-body::-webkit-scrollbar {
  width: 6px;
}
.chat-body::-webkit-scrollbar-thumb {
  background: rgba(0, 196, 255, 0.6);
  border-radius: 999px;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; }
  .contact-grid, .reseller-grid { grid-template-columns: 1fr; }
}
.hero-ai-logo-wrap {
  display: flex;
  justify-content: flex-start; /* change to center if you want it centered */
  margin: 8px 0 10px 0;
}

.hero-square {
  width: 180px;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 0 35px rgba(0, 196, 255, 0.45),
              0 0 20px rgba(255, 78, 199, 0.25);
  animation: square-float 4s ease-in-out infinite;
}

@media (max-width: 720px) {
  .site-header { padding-inline: 18px; }
  .nav-link { font-size: 12px; padding-inline: 9px; }
  .section { padding-inline: 18px; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .nav { display: none; }
  .hero-stats { max-width: 100%; }
}
