:root {
  --bg: #03070b;
  --panel: rgba(9, 16, 24, 0.88);
  --panel-border: #223347;
  --text: #f3f6fa;
  --muted: #c8d0d8;
  --blue: #0b72ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 10%, rgba(11, 114, 255, 0.18), transparent 28%),
    url("./assets/hexagonos.png") top right / min(700px, 52vw) auto no-repeat,
    var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
}

.hero,
.content {
  width: min(1100px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  padding: 48px 0 0;
  text-align: center;
}

.logo-wrap {
  display: flex;
  justify-content: center;
}

.logo {
  width: min(980px, 94vw);
  height: auto;
}

.pill {
  margin: 38px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border: 1px solid var(--blue);
  border-radius: 14px;
}

.pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(11, 114, 255, 0.8);
}

.pill span:last-child {
  letter-spacing: 0.32em;
  font-size: 16px;
}

h1 {
  margin: 34px 0 18px;
  line-height: 0.9;
}

.eyebrow,
.title-white,
.title-blue {
  display: block;
}

.eyebrow {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 400;
}

.title-white {
  font-size: clamp(3.2rem, 8vw, 5.3rem);
  font-weight: 800;
}

.title-blue {
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 800;
  color: var(--blue);
}

.lead,
.section-copy {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.lead {
  max-width: 760px;
  margin: 0 auto;
}

.lead strong {
  color: var(--blue);
}

.hero-car {
  width: min(950px, 100%);
  margin: 22px auto 0;
}

.content {
  padding: 0 0 52px;
  text-align: center;
}

.section-title {
  margin: 8px 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.star {
  color: var(--blue);
}

.section-title span:last-child {
  font-size: clamp(1.4rem, 2.9vw, 1.95rem);
  color: var(--text);
}

.section-title strong {
  display: block;
  color: var(--blue);
}

.features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
  backdrop-filter: blur(8px);
}

.feature-card {
  padding: 26px 16px;
}

.feature-card + .feature-card {
  border-left: 1px solid var(--panel-border);
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 0.95rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.feature-card img {
  width: 52px;
  height: 52px;
  margin: 0 auto;
}

.info-bar {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
}

.info-block {
  padding: 24px 28px;
  text-align: left;
}

.info-block + .info-block {
  border-left: 1px solid var(--panel-border);
}

.info-label {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.info-block strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.info-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card:nth-child(3) {
    border-left: 0;
  }

  .feature-card:nth-child(n + 3) {
    border-top: 1px solid var(--panel-border);
  }

  .info-bar {
    grid-template-columns: 1fr;
  }

  .info-block + .info-block {
    border-left: 0;
    border-top: 1px solid var(--panel-border);
  }
}

@media (max-width: 640px) {
  .hero,
  .content {
    width: min(100vw - 24px, 1100px);
  }

  .hero {
    padding-top: 28px;
  }

  .pill {
    padding: 10px 16px;
    gap: 10px;
  }

  .pill span:last-child {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  .section-title {
    align-items: flex-start;
    gap: 10px;
  }

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

  .feature-card + .feature-card,
  .feature-card:nth-child(3) {
    border-left: 0;
  }

  .feature-card:nth-child(n + 2) {
    border-top: 1px solid var(--panel-border);
  }

  .info-block {
    padding: 20px;
  }
}
