﻿:root {
  --gold: #ffb800;
  --gold-glow: rgba(255, 184, 0, 0.35);
  --cyan: #00d4ff;
  --dark: #05070a;
  --dark-l: #0f141d;
  --text: #ffffff;
  --text-dim: #9aa6bb;
  --card: #0c1118;
  --stroke: #1e293b;
  --success: #22c55e;
  --warning: #f59e0b;
  --info: #38bdf8;
  --danger: #ef4444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { width: min(1120px, 92vw); margin: 0 auto; }
.narrow { width: min(860px, 92vw); margin: 0 auto; }
.text-center { text-align: center; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 3000;
}
.skip-link:focus { left: 12px; }

/* Navbar */
.navbar {
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2000;
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo { font-weight: 900; font-size: 1.6rem; letter-spacing: -1px; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.5rem; font-weight: 600; }
.nav-links a { text-decoration: none; color: var(--text-dim); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: transparent;
  border: 1px solid var(--stroke);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}
.btn-nav:hover { border-color: var(--gold); color: var(--gold); }
.nav-toggle {
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.1rem;
}
.mobile-only { display: none; }
.mobile-menu {
  position: fixed;
  top: 72px;
  right: 16px;
  left: 16px;
  padding: 16px;
  background: rgba(8, 12, 18, 0.96);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1900;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a { text-decoration: none; color: var(--text); font-weight: 600; }

/* Hero */
.hero {
  position: relative;
  padding: 180px 0 110px;
  background: radial-gradient(circle at 70% 20%, #1a202c 0%, var(--dark) 70%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 184, 0, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.2), rgba(5, 7, 10, 0.9));
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}
.badge-gold {
  display: inline-block;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px var(--gold-glow);
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.hero-intro { color: var(--text-dim); font-size: 1rem; }
.hero-btns { margin-top: 2rem; }

.hero-visual { position: relative; min-height: 320px; }
.visual-ring {
  position: absolute;
  inset: 15% 0 auto auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.15);
}
.visual-frame {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.visual-header { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 16px; }
.visual-header span { color: var(--text-dim); }
.visual-lines .line {
  height: 10px;
  background: #141b24;
  border-radius: 999px;
  margin-bottom: 12px;
}
.visual-lines .line.short { width: 70%; }
.visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.visual-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 184, 0, 0.12);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Sections */
section { scroll-margin-top: 100px; }
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section-header p { color: var(--text-dim); max-width: 760px; margin: 12px auto 0; }
.intro h2 { margin-bottom: 1.2rem; }
.intro p { color: var(--text-dim); margin-bottom: 1.4rem; font-size: 1.05rem; }

/* Suite */
.suite { background: var(--dark-l); border-top: 1px solid #1e293b; border-bottom: 1px solid #1e293b; }
.suite-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: start; }
.panel {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 28px;
}
.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.panel-header p { color: var(--text-dim); }
.progress {
  min-width: 140px;
  text-align: right;
  font-weight: 700;
}
.progress-bar {
  width: 160px;
  height: 6px;
  background: #0f172a;
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}
.progress-bar div {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #fff);
  transition: width 0.3s ease;
}
.checklist { display: grid; gap: 12px; }

.check-item {
  border: 1px solid var(--stroke);
  background: #0b1118;
  color: var(--text);
  padding: 16px 18px;
  border-radius: 12px;
  text-align: left;
  font-size: 0.98rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.check-item[data-state="none"] {
  color: var(--text);
}
.check-item[data-state="selected"] {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.08);
}
.check-item[data-state="done"] {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.1);
}
.check-item:hover { transform: translateY(-2px); }

.status-box {
  padding: 26px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: #0b1118;
}
.status-box h3 { font-size: 1.4rem; margin: 8px 0 12px; }
.status-label { color: var(--text-dim); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.status-meta { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; color: var(--text-dim); font-size: 0.85rem; }
.status-meta span { padding: 6px 10px; border-radius: 999px; background: #101826; }

.legend { margin-top: 20px; color: var(--text-dim); display: grid; gap: 8px; font-size: 0.9rem; }
.legend .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 8px; }
.dot.none { background: #334155; }
.dot.selected { background: var(--info); }
.dot.done { background: var(--success); }

/* Requirements */
.requirements-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.requirement-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
}
.requirement-card h3 { margin-bottom: 6px; }
.requirement-card p { color: var(--text-dim); }
.state-tag {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #101826;
  color: var(--text-dim);
}
.requirements-note { margin-top: 24px; color: var(--text-dim); }

/* Confirmations */
.confirmations-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.row { background: #0b1118; }

/* Editorial */
.editorial h2 { margin-bottom: 1.2rem; }
.editorial p { color: var(--text-dim); margin-bottom: 1.4rem; font-size: 1.05rem; }

/* CTA */
.cta { padding: 80px 0 100px; background: linear-gradient(180deg, rgba(15, 20, 29, 0.6), rgba(5, 7, 10, 1)); border-top: 1px solid #1e293b; }
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--dark-l);
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
}

/* Footer */
.footer-cta { padding: 80px 0 100px; background: var(--dark-l); border-top: 1px solid #1e293b; }
.footer-btns { margin-top: 20px; }
.btn-large {
  background: var(--gold);
  color: #000;
  padding: 18px 44px;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}
.sub-links { margin-top: 20px; color: var(--text-dim); }
.sub-links a { color: var(--text-dim); text-decoration: none; }
.sub-links a:hover { color: #fff; }

/* Buttons */
.btn-primary {
  background: var(--gold);
  color: #000;
  padding: 18px 40px;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}
.btn-primary:hover { box-shadow: 0 0 30px var(--gold-glow); transform: translateY(-2px); }
.btn-secondary {
  color: #fff;
  border: 1px solid #334155;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-left: 1rem;
  transition: 0.3s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Accessibility */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .suite-grid { grid-template-columns: 1fr; }
  .panel-header { flex-direction: column; align-items: flex-start; }
  .progress { text-align: left; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .requirements-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: inline-flex; }
  .hero { padding: 140px 0 80px; }
  .hero-btns { display: flex; flex-direction: column; gap: 1rem; }
  .btn-secondary { margin-left: 0; }
  .confirmations-grid { grid-template-columns: 1fr; }
  .nav-flex { gap: 12px; }
  .btn-nav { display: none; }
}

/* Status colors */
.status-box[data-status="invalid"] { border-color: rgba(239, 68, 68, 0.4); background: rgba(239, 68, 68, 0.06); }
.status-box[data-status="monitor"] { border-color: rgba(245, 158, 11, 0.4); background: rgba(245, 158, 11, 0.08); }
.status-box[data-status="interesting"] { border-color: rgba(56, 189, 248, 0.4); background: rgba(56, 189, 248, 0.08); }
.status-box[data-status="ready"] { border-color: rgba(34, 197, 94, 0.45); background: rgba(34, 197, 94, 0.1); }
