/* Lock website - static Cloudflare Pages build */

:root {
  --bg: #080c13;
  --bg2: #0b0f17;
  --panel: rgba(17, 23, 34, 0.78);
  --panel-strong: rgba(21, 28, 41, 0.92);
  --line: #263248;
  --line-bright: #34466a;
  --text: #eef2ff;
  --muted: #9aa7bd;
  --blue: #6d7dff;
  --blue2: #58a6ff;
  --purple: #9b7dff;
  --green: #53f29d;
  --danger: #ff6b81;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 0%, rgba(109, 125, 255, 0.13), transparent 34rem),
    radial-gradient(circle at 10% 20%, rgba(88, 166, 255, 0.10), transparent 28rem),
    linear-gradient(135deg, #080c13 0%, #0b0f17 52%, #101a33 100%);
  color: var(--text);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(109, 125, 255, 0.08) 18.1% 18.25%, transparent 18.35%),
    linear-gradient(74deg, transparent 0 72%, rgba(109, 125, 255, 0.08) 72.1% 72.25%, transparent 72.35%);
  opacity: 0.8;
}

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

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 12, 19, 0.78);
  border-bottom: 1px solid rgba(38, 50, 72, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 154px;
  height: auto;
  display: block;
}

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

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  transition: 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(32, 43, 64, 0.9);
}

.nav-cta {
  background: linear-gradient(90deg, var(--blue2), var(--blue), var(--purple));
  color: white !important;
  box-shadow: 0 0 30px rgba(109, 125, 255, 0.24);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(21, 28, 41, 0.9);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

.hero {
  padding: 76px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #aab8ff;
  border: 1px solid rgba(109, 125, 255, 0.38);
  background: rgba(109, 125, 255, 0.09);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(83, 242, 157, 0.9);
}

h1 {
  margin: 22px 0 16px;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.92;
  letter-spacing: -3px;
}

.hero p {
  color: #c0c9dd;
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: rgba(21, 28, 41, 0.9);
  color: var(--text);
  font-weight: 900;
  transition: 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--blue);
  background: rgba(32, 43, 64, 0.95);
}

.btn.primary {
  background: linear-gradient(90deg, var(--blue2), var(--blue), var(--purple));
  border-color: transparent;
  color: white;
  box-shadow: 0 14px 40px rgba(109, 125, 255, 0.28);
}

.hero-card,
.panel {
  background: var(--panel);
  border: 1px solid rgba(52, 70, 106, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-height: 430px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(circle at 72% 24%, rgba(109, 125, 255, 0.42), transparent 13rem),
    radial-gradient(circle at 30% 76%, rgba(88, 166, 255, 0.22), transparent 12rem);
  opacity: 0.75;
}

.app-window {
  position: relative;
  z-index: 1;
  background: rgba(8, 12, 19, 0.78);
  border: 1px solid rgba(154, 167, 255, 0.22);
  border-radius: 20px;
  padding: 18px;
}

.window-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.window-title {
  font-weight: 950;
  font-size: 21px;
}

.status-dot {
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(83, 242, 157, 0.9);
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.mini-card {
  background: rgba(21, 28, 41, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}

.mini-card span {
  color: #9eb0e6;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-card strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
}

.pool-preview {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.champ-chip {
  width: 78px;
  padding: 10px;
  text-align: center;
  background: rgba(21, 28, 41, 0.92);
  border: 1px solid #31415e;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 900;
}

.champ-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin: 0 auto 8px;
  background: linear-gradient(135deg, #151c29, #6d7dff);
  border: 1px solid rgba(238, 242, 255, 0.2);
}

.section {
  padding: 54px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -1px;
}

.section-lead {
  color: #b6c1d8;
  line-height: 1.7;
  max-width: 760px;
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.panel {
  padding: 22px;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.panel p,
.panel li {
  color: #b6c1d8;
  line-height: 1.65;
}

.panel ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.download-card {
  margin-top: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.download-card h3 {
  font-size: 28px;
}

.file-note {
  color: var(--muted);
  font-size: 14px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(109, 125, 255, 0.16);
  border: 1px solid rgba(109, 125, 255, 0.45);
  color: #dfe7ff;
  font-weight: 950;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.placeholder {
  min-height: 180px;
  border: 1px dashed rgba(154, 167, 255, 0.38);
  border-radius: 20px;
  padding: 22px;
  background: rgba(21, 28, 41, 0.38);
}

.placeholder h3 {
  margin-top: 0;
}

.footer {
  border-top: 1px solid rgba(38, 50, 72, 0.9);
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.disclaimer {
  max-width: 850px;
  line-height: 1.6;
}

code {
  background: rgba(21, 28, 41, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2px 6px;
  color: #dfe7ff;
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 12, 19, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .cards,
  .placeholder-grid,
  .download-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand img {
    width: 132px;
  }

  .hero-card {
    padding: 14px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
