:root {
  --bg: #040a19;
  --bg-soft: #0d1835;
  --text: #f2f6ff;
  --muted: #adc1e5;
  --brand: #8dff2f;
  --brand-2: #52c412;
  --line: rgba(148, 176, 220, 0.24);
  --card: #0d1f45;
  --max: 1140px;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(90, 135, 255, 0.2), transparent 65%),
    radial-gradient(850px 420px at -5% 15%, rgba(66, 125, 255, 0.18), transparent 60%),
    var(--bg);
}

.container { width: min(calc(100% - 2.2rem), var(--max)); margin-inline: auto; }

.header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img { width: 220px; display: block; }

.menu { display: flex; gap: 1.3rem; }
.menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color .2s ease;
}
.menu a:hover { color: var(--text); }

.btn {
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.8rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.btn-solid {
  background: linear-gradient(120deg, var(--brand), #cfff90);
  color: #082001;
  box-shadow: 0 12px 30px rgba(141, 255, 47, .24);
}
.btn-text { color: var(--text); padding-left: 0.4rem; }

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: center;
  padding: 2.5rem 0 5rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.25), transparent);
}

.tag {
  margin: 0 0 .8rem;
  color: var(--brand);
  letter-spacing: .14rem;
  font-size: .76rem;
  font-weight: 700;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Urbanist", sans-serif;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: .98;
  max-width: 12ch;
}

.lead {
  color: var(--muted);
  max-width: 57ch;
  line-height: 1.65;
  margin: 1.1rem 0 0;
}

.actions { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .75rem; }

.kpis {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.kpis div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .75rem .9rem;
  min-width: 140px;
  background: rgba(10, 23, 51, .65);
}

.kpis strong { display: block; font-size: 1.22rem; }
.kpis span { color: var(--muted); font-size: .86rem; }

.hero-panel {
  background: linear-gradient(180deg, rgba(15, 35, 76, .95), rgba(9, 22, 48, .96));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 24px 48px rgba(3, 8, 20, .55);
}

.panel-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}

.hero-panel p { color: var(--muted); line-height: 1.6; margin: .75rem 0 1rem; }
.hero-panel ul { margin: 0; padding-left: 1.1rem; color: #dce8ff; line-height: 1.8; }

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(12,25,55,.9), rgba(10,21,48,.9));
}

.strip-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
  align-items: center;
}

.strip-inner span {
  text-align: center;
  color: #d9e7ff;
  font-weight: 600;
}

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

.section-title {
  grid-column: 1 / -1;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  margin: 0 0 .2rem;
}

.cards article {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 36, 76, .85), rgba(9, 22, 47, .85));
  padding: 1.2rem;
}

.cards article:nth-child(5),
.cards article:nth-child(6) {
  grid-column: span 1;
}

.apps {
  margin-top: 3rem;
}

.apps-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.apps-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(14, 32, 66, .9), rgba(8, 18, 42, .95));
}

.apps-grid p { color: var(--muted); line-height: 1.6; }

.faq {
  margin-top: 3rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 22, 48, .85);
  padding: .95rem 1rem;
  margin-top: .8rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
}

.faq p {
  color: var(--muted);
  line-height: 1.6;
  margin: .8rem 0 .1rem;
}

.cards article img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: .9rem;
  border: 1px solid var(--line);
}

.cards p { color: var(--muted); line-height: 1.6; }

.cta {
  margin: 3.3rem auto 3rem;
  border: 1px solid rgba(141, 255, 47, .45);
  border-radius: 22px;
  background:
    radial-gradient(650px 220px at 50% -10%, rgba(141,255,47,.2), transparent 65%),
    #08152e;
  text-align: center;
  padding: 2rem;
}

.cta h2 { font-size: clamp(1.5rem, 3.4vw, 2.4rem); }
.cta p { margin: .9rem auto 1.4rem; color: var(--muted); max-width: 64ch; }

.footer {
  color: #9db2d7;
  text-align: center;
  padding: 0 0 2rem;
}

@media (max-width: 980px) {
  .menu { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 1.4rem; }
  .strip-inner, .cards, .apps-grid { grid-template-columns: 1fr; }
  .brand img { width: 190px; }
}
