/* Ticketboost LLC — starter landing (no build tools needed) */
:root{
  --bg: #0b1020;
  --card: rgba(255,255,255,0.06);
  --muted: rgba(255,255,255,0.72);
  --text: rgba(255,255,255,0.92);
  --line: rgba(255,255,255,0.14);
  --accent: #7c5cff;
  --accent2: #27e2b4;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(124,92,255,0.35), transparent 60%),
    radial-gradient(1000px 700px at 90% 10%, rgba(39,226,180,0.20), transparent 55%),
    radial-gradient(900px 650px at 50% 110%, rgba(255,255,255,0.08), transparent 60%),
    var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(11,16,32,0.65);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:-0.02em; }
.brand-mark{
  width: 36px; height:36px; border-radius: 10px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: rgba(0,0,0,0.85);
  box-shadow: var(--shadow);
}
.nav{ display:flex; align-items:center; gap: 18px; }
.nav a{ color: var(--muted); font-weight: 500; }
.nav a:hover{ color: var(--text); }

.menu-btn{
  display:none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
}
.menu-btn span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  margin: 5px auto;
  border-radius: 2px;
}

.mobile-nav{
  display:none;
  border-top: 1px solid var(--line);
  padding: 12px 0 18px;
}
.mobile-nav a{
  display:block;
  padding: 10px 0;
  color: var(--muted);
}

/* Buttons */
.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.16);
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(39,226,180,0.85));
  color: rgba(0,0,0,0.88);
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }
.btn-sm{ padding: 10px 12px; border-radius: 12px; font-size: 0.95rem; }
.btn-ghost{
  background: rgba(255,255,255,0.06);
  color: var(--text);
  box-shadow: none;
}
.btn-ghost:hover{ background: rgba(255,255,255,0.10); }

/* Hero */
.hero{ padding: 54px 0 30px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.pill{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}
h1{
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  margin: 14px 0 12px;
  letter-spacing: -0.03em;
}
.accent{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead{ color: var(--muted); font-size: 1.05rem; margin: 0 0 18px; }
.hero-cta{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.trust{
  display:flex; gap: 16px; flex-wrap: wrap;
  padding-top: 8px;
}
.trust-item{
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.trust-kpi{ font-weight: 800; display:block; }
.trust-label{ color: var(--muted); font-size: 0.92rem; }

.hero-card .card{
  height: 100%;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}
.card-head{
  display:flex; align-items:flex-start; justify-content:space-between; gap: 10px;
  margin-bottom: 10px;
}
.card-title{ margin:0; font-weight: 800; }
.card-subtitle{ margin: 2px 0 0; color: var(--muted); font-size: 0.95rem; }
.tag{
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.86rem;
}
.steps{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.88);
}
.steps li{ margin: 10px 0; color: var(--muted); }
.steps strong{ color: var(--text); }
.card-actions{ margin-top: 16px; display:flex; gap: 10px; flex-wrap: wrap; }

/* Sections */
.section{ padding: 56px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{ margin-bottom: 22px; }
.section-head h2{
  margin: 0 0 6px;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: -0.02em;
}
.section-head p{ margin:0; color: var(--muted); }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
}
.feature h3{ margin: 0 0 6px; }
.feature p{ margin: 0 0 10px; color: var(--muted); }
.feature ul{ margin: 0; padding-left: 18px; color: var(--muted); }
.feature li{ margin: 8px 0; }

/* Timeline */
.timeline{
  display:grid;
  gap: 14px;
}
.timeline-item{
  display:grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.dot{
  width: 12px; height: 12px; border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card{
  position: relative;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
}
.price-card.featured{
  border: 1px solid rgba(124,92,255,0.55);
  background: linear-gradient(180deg, rgba(124,92,255,0.20), rgba(255,255,255,0.04));
}
.badge{
  position:absolute;
  top: 14px; right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124,92,255,0.22);
  border: 1px solid rgba(124,92,255,0.45);
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-size: 0.86rem;
}
.price{ font-size: 1.55rem; font-weight: 900; margin: 6px 0 0; }
.muted{ color: var(--muted); }
.small{ font-size: 0.92rem; }

.price-card ul{ margin: 12px 0 14px; padding-left: 18px; color: var(--muted); }
.price-card li{ margin: 8px 0; }

/* FAQ */
.faq details{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 12px;
}
.faq summary{
  cursor:pointer;
  font-weight: 700;
}
.faq p{ margin: 10px 0 0; color: var(--muted); }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.field{ display:flex; flex-direction:column; gap: 6px; }
label{ font-weight: 600; color: rgba(255,255,255,0.88); }
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{ border-color: rgba(124,92,255,0.65); }
.contact button{ grid-column: 1 / -1; width: fit-content; }
.contact .muted{ grid-column: 1 / -1; margin: 0; }

/* Footer */
.footer{
  padding: 26px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links{ display:flex; gap: 12px; }

/* Chat widget */
.chat-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.chat-widget{
  position: fixed;
  right: 18px;
  bottom: 86px;
  width: min(360px, calc(100% - 36px));
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(11,16,32,0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
}
.chat-head{
  display:flex; align-items:center; justify-content:space-between; gap: 10px;
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
}
.chat-title{ margin:0; font-weight: 800; }
.chat-subtitle{ margin: 2px 0 0; color: var(--muted); font-size: 0.92rem; }
.icon-btn{
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
}
.chat-body{
  padding: 12px;
  height: 280px;
  overflow: auto;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.msg{
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
}
.msg.user{
  align-self: flex-end;
  background: rgba(124,92,255,0.20);
}
.msg.bot{
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.90);
}
.chat-input{
  display:flex;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid var(--line);
}
.chat-input input{
  flex: 1;
}

/* Responsive */
@media (max-width: 960px){
  .hero-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .nav{ display:none; }
  .menu-btn{ display:block; }
  .grid3{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}
