:root {
  --bg: #0b0710;
  --bg-2: #120a15;
  --bg-3: #17101b;
  --surface: rgba(255,255,255,0.05);
  --surface-strong: rgba(255,255,255,0.08);
  --surface-soft: rgba(255,255,255,0.03);
  --text: #f7f3f6;
  --muted: #cdbfc8;
  --muted-2: #aa98a5;
  --primary: #e5106b;
  --primary-2: #ff2d87;
  --primary-soft: rgba(229, 16, 107, 0.16);
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.14);
  --shadow: 0 24px 70px rgba(0,0,0,0.34);
  --radius: 24px;
  --radius-sm: 18px;
  --maxw: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(229,16,107,0.14), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.04), transparent 22%),
    linear-gradient(180deg, #0a0610 0%, #110914 42%, #0d0811 100%);
  position: relative;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--maxw), calc(100% - 40px));
  margin: 0 auto;
}

/* GLOWS */
.bg-glow {
  position: fixed;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  filter: blur(95px);
  z-index: -1;
  opacity: 0.34;
  pointer-events: none;
}

.bg-glow-1 {
  top: -180px;
  right: -120px;
  background: rgba(229, 16, 107, 0.30);
}

.bg-glow-2 {
  left: -200px;
  bottom: 6%;
  background: rgba(255,255,255,0.07);
}

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(9, 6, 11, 0.76);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.topbar-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 184px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  flex: 1 1 auto;
}

.nav a {
  transition: color 0.18s ease, opacity 0.18s ease;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-2) 0%, #d8085e 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(229, 16, 107, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 24px 46px rgba(229, 16, 107, 0.34);
}

.btn-secondary,
.btn-outline {
  background: rgba(255,255,255,0.025);
  border-color: rgba(255,255,255,0.14);
  color: var(--text);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.20);
}

/* HERO */
.hero {
  padding: 58px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pill img {
  width: 22px;
  height: 22px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 760px;
}

.hero-text {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 18px;
  margin-bottom: 7px;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* PANEL */
.hero-panel {
  position: relative;
}

.panel-card {
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  gap: 8px;
  padding: 0 4px 16px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}

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

.dashboard-main,
.alert-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(9, 8, 10, 0.42);
  border: 1px solid rgba(255,255,255,0.08);
}

.dashboard-main h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

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

.kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.kpi {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.kpi small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.kpi strong {
  font-size: 28px;
}

.kpi-ok {
  background: rgba(255,255,255,0.04);
}

.kpi-warn {
  background: rgba(229, 16, 107, 0.10);
}

.kpi-high {
  background: rgba(229, 16, 107, 0.18);
}

.dashboard-side {
  display: grid;
  gap: 12px;
}

.alert-card small {
  display: block;
  margin-bottom: 6px;
  color: #ffb6d5;
}

.alert-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.alert-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* SECTIONS */
.section {
  padding: 52px 0;
}

.section.alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-heading {
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff9dc6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.two-col h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 190px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

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

/* TIMELINE */
.timeline {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff2d87 0%, #d8085e 100%);
  color: #fff;
  font-weight: 800;
}

.step h3 {
  margin: 2px 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 50px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: #ff8ebf;
}

.quote-box {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

.quote-box p {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.6;
}

.quote-box strong {
  color: #ff9dc6;
}

/* CTA */
.cta-section {
  padding-top: 18px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(229, 16, 107, 0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.10);
}

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

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* FOOTER */
.footer {
  padding: 30px 0 44px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer img {
  width: 164px;
  height: auto;
  object-fit: contain;
}

.footer p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.92;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .cards-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 30px;
  }

  .topbar-inner {
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--maxw));
  }

  .topbar-inner {
    min-height: 76px;
  }

  .brand img {
    width: 146px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .kpis {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .quote-box p {
    font-size: 19px;
  }
}