:root {
  --bg: #07090c;
  --bg-soft: #0f141a;
  --text: #eef3f7;
  --muted: #a9b4bf;
  --brand: #05c2ff;
  --brand-strong: #02a5d7;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 14% 16%, rgba(5, 194, 255, 0.16), transparent 26%),
              radial-gradient(circle at 82% 8%, rgba(5, 194, 255, 0.13), transparent 24%),
              linear-gradient(180deg, #040608 0%, #090d12 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
  z-index: -1;
}

.orb-a {
  background: var(--brand);
  top: -180px;
  left: -120px;
}

.orb-b {
  background: #0e8ec0;
  bottom: -220px;
  right: -150px;
}

.topbar {
  width: min(1120px, 92vw);
  margin: 26px auto 0;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 11, 16, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 16px;
  z-index: 20;
}

.brand {
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 32px;
  width: auto;
}

.menu {
  display: flex;
  gap: 18px;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.menu a:hover {
  color: var(--text);
}

main {
  width: min(1120px, 92vw);
  margin: 28px auto 80px;
}

.hero {
  padding: 56px 0 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
  font-family: "Sora", sans-serif;
}

h1 {
  font-size: clamp(2rem, 5.1vw, 4rem);
  max-width: 14ch;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.hero-copy {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #001018;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(5, 194, 255, 0.35);
}

.btn-sm {
  padding: 10px 14px;
  font-size: 0.92rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.kpis {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kpis li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(11, 16, 22, 0.62);
}

.kpis strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.kpis span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 46px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.grid {
  display: grid;
  gap: 14px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(180deg, rgba(12, 19, 28, 0.82) 0%, rgba(9, 14, 21, 0.82) 100%);
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-dark {
  background: linear-gradient(180deg, rgba(5, 10, 15, 0.95) 0%, rgba(7, 11, 18, 0.95) 100%);
}

.spotlight {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  background: linear-gradient(120deg, rgba(12, 20, 28, 0.92) 0%, rgba(5, 9, 14, 0.92) 100%);
}

.spotlight p {
  color: var(--muted);
}

.spot-badge {
  border-radius: 18px;
  border: 1px solid rgba(5, 194, 255, 0.45);
  padding: 18px;
  background: rgba(5, 194, 255, 0.1);
  align-self: center;
}

.spot-badge p,
.spot-badge span {
  margin: 0;
  color: #d3f6ff;
}

.spot-badge strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  margin: 8px 0;
}

.contact {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 16, 24, 0.9);
  padding: 22px;
}

.contact-box p {
  margin: 0 0 10px;
  color: var(--muted);
}

.contact-box strong {
  color: var(--text);
}

.floating-whats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 800;
  background: #00d97e;
  color: #062014;
  box-shadow: 0 10px 26px rgba(0, 217, 126, 0.42);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .menu {
    display: none;
  }

  .cards-3,
  .spotlight,
  .contact,
  .kpis {
    grid-template-columns: 1fr;
  }

  .topbar {
    top: 10px;
    padding: 14px;
  }

  h1 {
    max-width: 100%;
  }
}
