@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;900&family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
  --gold: #C9922A;
  --gold-light: #F5C76A;
  --gold-glow: rgba(201,146,42,0.2);
  --bg: #070a0f;
  --bg2: rgba(5,8,15,0.85);
  --card: rgba(10,15,28,0.75);
  --text: #EAF0FF;
  --muted: #8A9BB8;
  --line: rgba(201,146,42,0.15);
  --green: #3DFFB1;
  --blue: #3DB7FF;
  --radius: 16px;
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('../img/background.png') center center / cover no-repeat;
  opacity: 0.45;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(7,10,15,0.3) 0%,
    rgba(7,10,15,0.5) 40%,
    rgba(7,10,15,0.85) 100%);
  z-index: -1;
  pointer-events: none;
}

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── TOPBAR ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(5,8,15,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.brand__logo { height: 56px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 32px; }

.nav a {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav a:hover { color: var(--gold-light); }

.btn-nav {
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  background: rgba(201,146,42,0.08);
}

.btn-nav:hover {
  background: rgba(201,146,42,0.2);
  box-shadow: 0 0 20px rgba(201,146,42,0.3);
}

/* ── BUTTONS ── */
.btn-img-wrap { display: inline-block; transition: transform 0.2s, filter 0.2s; }
.btn-img-wrap:hover { transform: translateY(-2px); filter: brightness(1.15); }
.btn-img { height: 52px; display: block; }
.btn-img--sm { height: 44px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 600px at 70% 40%, rgba(201,146,42,0.06), transparent 70%);
  pointer-events: none;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.gold { color: var(--gold-light); }

.kicker {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10,15,28,0.6);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 58ch;
  margin-bottom: 32px;
}

.hero__cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }

.trust { display: flex; gap: 12px; flex-wrap: wrap; }

.trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(10,15,28,0.5);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--blue { background: var(--blue); box-shadow: 0 0 6px var(--blue); }
.dot--gold { background: var(--gold-light); box-shadow: 0 0 6px var(--gold); }
.dot--green { background: var(--green); box-shadow: 0 0 6px var(--green); }

/* ── PANEL ── */
.panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8,12,22,0.8);
  backdrop-filter: blur(20px);
  padding: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,146,42,0.08);
}

.panel__glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,42,0.15), transparent 70%);
  pointer-events: none;
}

.panel h3 { color: var(--text); font-size: 18px; margin-bottom: 20px; }

.checklist { list-style: none; display: grid; gap: 12px; }

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.check {
  display: inline-flex;
  width: 20px; height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(61,255,177,0.12);
  border: 1px solid rgba(61,255,177,0.3);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.micro {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5,8,15,0.8);
  backdrop-filter: blur(10px);
}

.stats-bar__item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats-bar__item:last-child { border-right: none; }

.stats-bar__num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(201,146,42,0.4);
}

.stats-bar__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }

.section--dark {
  background: rgba(5,8,15,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--cta { padding: 80px 0; }

.section__head { margin-bottom: 48px; }

.section__label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
  margin-top: 12px;
}

/* ── GRID ── */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .hero__content { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; }
}

/* ── CARDS ── */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(16px);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s;
}

.card:hover::before { width: 100%; }

.card:hover {
  border-color: rgba(201,146,42,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(201,146,42,0.06);
  transform: translateY(-3px);
}

.card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.card p { color: var(--muted); line-height: 1.6; font-size: 14px; }

.card--agent { border-color: rgba(201,146,42,0.2); }

.agent-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 12px;
}

.agent-online::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.agent__role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }

.split__left .lead { margin-bottom: 24px; }

/* ── PILLS ── */
.pillrow { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

.pill {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10,15,28,0.5);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s;
}

.pill:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── TERMINAL ── */
.terminal {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(3,5,10,0.85);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(5,8,15,0.8);
}

.lamp { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.lamp--green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.terminal__title { margin-left: auto; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; }

.terminal__body {
  margin: 0;
  padding: 20px;
  color: rgba(234,240,255,0.85);
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre;
  overflow: auto;
}

/* ── CTA BAND ── */
.cta-band {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(201,146,42,0.25);
  background: linear-gradient(135deg, rgba(201,146,42,0.08), rgba(61,183,255,0.05));
}

.cta-band h3 { margin-bottom: 4px; font-size: 18px; }
.cta-band p { color: var(--muted); font-size: 14px; }

/* ── CTA BOX ── */
.cta-box {
  border: 1px solid rgba(201,146,42,0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,146,42,0.06), rgba(10,15,28,0.8));
  backdrop-filter: blur(20px);
  padding: 80px 60px;
  text-align: center;
}

.cta-box h2 { margin-bottom: 16px; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--line);
  background: rgba(5,8,15,0.9);
  backdrop-filter: blur(20px);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}

.footer__brand p { color: var(--muted); font-size: 13px; margin-top: 12px; line-height: 1.6; }

.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.footer__col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; display: grid; gap: 8px; }
.footer__col ul li a { color: var(--muted); font-size: 13px; transition: color 0.3s; }
.footer__col ul li a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .topbar { padding: 12px 20px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2,1fr); }
  .cta-box { padding: 40px 24px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
