@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: #F0B84A;
  --text: #F0E8D8;
  --muted: rgba(240,232,216,0.5);
  --line: rgba(200,134,26,0.2);
  --green: #3DFFB1;
  --blue: #3DB7FF;
  --card: rgba(10,6,2,0.65);
  --radius: 14px;
  --max: 1160px;
}

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

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

/* BACKGROUND */
.bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background-image: url('../img/background.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.page { position: relative; z-index: 2; min-height: 100vh; display: flex; flex-direction: column; }

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

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

/* NAV */
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  padding: 24px 48px;
}
nav a { color: var(--text); font-size: 14px; font-weight: 500; opacity: 0.9; text-shadow: 0 1px 6px rgba(0,0,0,0.9); transition: color 0.2s; }
nav a:hover { color: var(--gold); opacity: 1; }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 185px 48px 60px;
  align-items: start;
  flex: 1;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.95);
}
h1 .gold { color: var(--gold); }

.hero__body {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 36px;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  max-width: 52ch;
}

.btn-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.btn-img { height: 54px; display: block; cursor: pointer; transition: transform 0.2s, filter 0.2s; }
.btn-img:hover { transform: translateY(-2px); filter: brightness(1.15); }
.btn-img--sm { height: 44px; }

.trust { display: flex; gap: 10px; flex-wrap: wrap; }
.trust__item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(5,3,0,0.5);
  backdrop-filter: blur(8px);
  color: var(--muted); font-size: 12px; font-weight: 500;
}
.dot { width: 7px; height: 7px; border-radius: 50%; }
.dot--blue { background: var(--blue); box-shadow: 0 0 6px var(--blue); }
.dot--gold { background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.dot--green { background: var(--green); box-shadow: 0 0 6px var(--green); }

/* PANEL */
.panel { background: transparent; border: none; padding: 0; }
.panel__heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(200,134,26,0.4);
}
.checklist { list-style: none; display: grid; gap: 14px; margin-bottom: 20px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); text-shadow: 0 1px 6px rgba(0,0,0,0.8); }
.check {
  width: 22px; height: 22px; border-radius: 5px;
  background: rgba(61,255,177,0.06);
  border: 1px solid rgba(61,255,177,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(61,255,177,0.6); font-size: 11px; font-weight: 900; flex-shrink: 0;
}
.panel__footer {
  font-size: 13px; color: rgba(255,255,255,0.85);
  line-height: 1.6; padding-top: 16px;
  border-top: 1px solid var(--line);
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

/* STATS */
.stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  background: rgba(5,3,0,0.75);
  backdrop-filter: blur(16px);
}
.stat { padding: 24px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat__num { display: block; font-family: 'Orbitron', sans-serif; font-size: 30px; font-weight: 900; color: var(--gold); text-shadow: 0 0 20px rgba(200,134,26,0.5); margin-bottom: 5px; }
.stat__label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

/* SECTIONS */
.section { padding: 80px 0; }
.section--dark {
  background: rgba(5,3,0,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.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; }

h2 { font-family: 'Orbitron', sans-serif; font-size: clamp(22px, 3vw, 38px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
h3 { font-family: 'Orbitron', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 12px; color: var(--gold); }

.lead { color: var(--muted); font-size: 16px; line-height: 1.65; margin-bottom: 24px; }

/* GRID */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--2 { grid-template-columns: repeat(2,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), #F5C76A); transition: width 0.4s; }
.card:hover::before { width: 100%; }
.card:hover { border-color: rgba(200,134,26,0.3); transform: translateY(-3px); }
.card__icon { font-size: 28px; margin-bottom: 16px; }
.card p { color: var(--muted); line-height: 1.6; font-size: 14px; }

.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: 10px; }
.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; }
.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,6,2,0.5); color: var(--muted); font-size: 12px; font-weight: 600; transition: all 0.3s; }
.pill:hover { border-color: var(--gold); color: var(--gold); }

/* TERMINAL */
.terminal { border-radius: var(--radius); border: 1px solid var(--line); background: rgba(3,2,0,0.85); backdrop-filter: blur(20px); overflow: hidden; }
.terminal__bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: rgba(5,3,0,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(240,232,216,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(200,134,26,0.25); background: linear-gradient(135deg, rgba(200,134,26,0.08), rgba(5,3,0,0.5)); }
.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(200,134,26,0.2); border-radius: var(--radius); background: rgba(5,3,0,0.6); 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,3,0,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); }
.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); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 185px 24px 60px; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2,1fr); }
  nav { padding: 24px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .cta-box { padding: 40px 24px; }
}
