:root {
  --bg: #050915;
  --panel: #0b1326;
  --card: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: #e7edf7;
  --muted: #b6c4d9;
  --accent: #51f2c7;
  --accent-2: #f3a43b;
  --shadow: 0 20px 70px rgba(5, 12, 40, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Space Grotesk", sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(81, 242, 199, 0.08), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(243, 164, 59, 0.1), transparent 28%),
    linear-gradient(140deg, #04070f 0%, #060c19 45%, #03050b 100%);
  color: var(--text);
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page::before {
  background: radial-gradient(circle at 60% 40%, rgba(81, 242, 199, 0.06), transparent 30%);
  opacity: 0.9;
}

.page::after {
  background: radial-gradient(circle at 30% 70%, rgba(243, 164, 59, 0.08), transparent 28%);
  opacity: 0.7;
}

.section {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.muted {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding-inline: clamp(18px, 3vw, 32px);
}

.section-header {
  max-width: 820px;
  margin-bottom: 32px;
}

.hero {
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  padding-top: 100px;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

h1 {
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.18;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

.lede {
  font-size: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px 0;
  font-weight: 700;
}

.hero-text .lede {
  margin: 18px 0 26px 0;
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  color: #04101c;
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent) 0%, #6df2ff 100%);
  box-shadow: 0 14px 40px rgba(81, 242, 199, 0.28);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(81, 242, 199, 0.38);
}

.btn.large {
  padding: 16px 26px;
  font-size: 17px;
}

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

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.chip {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.hero-panel {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.green { background: #51f2c7; }
.amber { background: #f3a43b; }
.blue { background: #44c4ff; }

.panel-label {
  margin-left: auto;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.panel-body {
  display: grid;
  gap: 14px;
}

.panel-metric {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--stroke);
}

.metric-label {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.metric-trend {
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
}

.metric-trend.up {
  color: var(--accent);
}

.metric-trend.stable {
  color: #8ab3ff;
}

.panel-foot {
  padding: 12px 10px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px 18px 20px 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  transition: transform 150ms ease, border-color 150ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(81, 242, 199, 0.5);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--stroke);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(81, 242, 199, 0.1);
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  border: 1px solid rgba(81, 242, 199, 0.35);
}

.result-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 18px;
}

.result {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.result-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.highlight .cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  background: linear-gradient(135deg, rgba(81, 242, 199, 0.12), rgba(243, 164, 59, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid var(--stroke);
  padding: 32px 0 48px 0;
  margin-top: 30px;
}

.footer-content {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-content: start;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover {
  color: var(--accent);
}

@media (max-width: 860px) {
  .hero {
    padding-top: 80px;
  }

  .highlight .cta-block {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .btn.primary {
    width: 100%;
    justify-content: center;
  }

  .cta-row {
    align-items: flex-start;
  }

  .cta-note {
    margin-left: 2px;
  }
}
