:root {
  --bg: #06111b;
  --panel: #0f1b2a;
  --panel-alt: #111f30;
  --text: #e8eef5;
  --muted: #9eb0c2;
  --line: #2d4359;
  --accent: #4fd384;
  --accent-strong: #31ba6a;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top right, #10304b 0%, var(--bg) 40%);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.bg-orb-a {
  width: 420px;
  height: 420px;
  background: #2d6cff;
  top: -120px;
  left: -120px;
}

.bg-orb-b {
  width: 360px;
  height: 360px;
  background: #34d399;
  bottom: -120px;
  right: -80px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  width: calc(100% - 2rem);
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  padding: 1.25rem 0;
}

.site-header .brand {
  justify-self: start;
}

.header-spacer {
  justify-self: end;
  width: 120px;
  height: 1px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0c4475 0%, #0d7a59 100%);
  box-shadow: 0 8px 22px rgba(5, 22, 38, 0.34);
  border: 1px solid rgba(143, 246, 200, 0.38);
  backdrop-filter: blur(2px);
}

.brand-wordmark {
  display: block;
  height: 50px;
  width: auto;
  max-width: min(340px, 72vw);
  flex: 0 1 auto;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  justify-self: center;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  margin-top: 2.2rem;
  padding: 2.8rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(160deg, rgba(17, 31, 48, 0.95), rgba(12, 25, 39, 0.9));
  box-shadow: var(--shadow);
}

.eyebrow {
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
  margin: 0 0 0.8rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.08;
  max-width: 16ch;
}

.hero-copy {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0.8rem 1.1rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: linear-gradient(140deg, var(--accent), var(--accent-strong));
  color: #05200f;
}

.btn-outline,
.btn-ghost {
  color: var(--text);
  border-color: #3b5166;
  background: transparent;
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: #6d849a;
}

.hero-kpis {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-kpis article {
  background: rgba(6, 17, 27, 0.6);
  border: 1px solid #355066;
  border-radius: 14px;
  padding: 1rem;
}

.hero-kpis h3 {
  margin: 0;
  font-size: 1rem;
}

.hero-kpis p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  margin-top: 3.2rem;
}

.partner-strip {
  margin-top: 2rem;
}

.partner-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: start;
  justify-items: start;
  gap: 1rem;
}

.partner-card {
  background: rgba(10, 21, 34, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.9rem;
  width: fit-content;
  min-width: 280px;
}

.partner-card img {
  width: auto;
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.35rem;
}

.partner-card h3 {
  margin: 0;
  font-size: 1rem;
}

.section-alt {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 31, 48, 0.85), rgba(11, 23, 35, 0.85));
}

.legal-shell {
  max-width: 840px;
}

.legal-shell p {
  color: var(--muted);
  line-height: 1.65;
}

.legal-shell a {
  color: #9be8c0;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
}

.grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: rgba(15, 27, 42, 0.8);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
}

.card p,
.muted {
  margin: 0;
  color: var(--muted);
}

#solutions .card a {
  color: var(--accent);
  font-weight: 700;
}

#solutions .card a:hover {
  color: var(--accent-strong);
}

.pricing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.readiness {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  background: rgba(10, 21, 34, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
  position: relative;
}

.price-card.featured {
  border-color: #3f9964;
  box-shadow: inset 0 0 0 1px rgba(79, 211, 132, 0.2);
}

.badge {
  display: inline-block;
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #041b0e;
  font-weight: 800;
  background: linear-gradient(130deg, #73f1ad, #3ed782);
  border-radius: 999px;
  padding: 0.24rem 0.5rem;
}

.price-card ul {
  margin: 0.9rem 0 1rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.price-card li {
  margin: 0.4rem 0;
}

.pricing-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 27, 42, 0.8);
  padding: 0.9rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.site-footer {
  margin-top: 3.4rem;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.site-footer div {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .header-spacer {
    display: none;
  }

  .brand-wordmark {
    height: 44px;
  }

  .hero {
    padding: 1.6rem;
  }

  .hero-kpis,
  .cards,
  .readiness,
  .pricing {
    grid-template-columns: 1fr;
  }
}
