:root {
  --bg: #08111d;
  --bg-soft: #0d1828;
  --panel: rgba(9, 17, 30, 0.82);
  --panel-strong: #14253f;
  --panel-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(176, 194, 220, 0.16);
  --text: #eef4fb;
  --muted: #adc0d2;
  --accent: #ff6d89;
  --accent-strong: #7d48cf;
  --accent-soft: #ffd8df;
  --success: #8ff0bf;
  --warning: #ffd166;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 109, 137, 0.18), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(125, 72, 207, 0.2), transparent 24%),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(180deg, #08111d 0%, #0b1630 44%, #08111d 100%);
}

.page-shell {
  min-height: 100vh;
}

.hero,
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 24px 0 72px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px 0 34px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.brand-name {
  font-size: 1.12rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.pricing-card,
.service-card,
.compare-card,
.value-card,
.faq-card,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 30px;
  padding: 46px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 109, 137, 0.28), transparent 70%);
  pointer-events: none;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 6vw, 5.1rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

h3 {
  font-size: 1.34rem;
  margin-bottom: 14px;
}

.lead,
.service-card p,
.plan-copy,
.value-card p,
.faq-card p,
.contact-panel p,
.compare-row div {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.hero-points,
.hero-panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points {
  margin-top: 24px;
}

.hero-points span,
.mini-stat {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.92rem;
}

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

.button,
.nav-cta,
.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary,
.nav-cta,
.plan-cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.hero-panel {
  border-radius: 30px;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.hero-panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.status-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 5px;
}

.hero-panel-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel-value {
  margin: 4px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.hero-panel-value span {
  margin-left: 8px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.hero-panel-list,
.plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-panel-list li,
.plan-list li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.section {
  padding: 24px 0 90px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.pricing-grid,
.card-grid,
.values-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pricing-card,
.service-card,
.value-card,
.faq-card {
  border-radius: 28px;
  padding: 30px;
}

.pricing-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.pricing-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 109, 137, 0.06)),
    var(--panel);
}

.pricing-card-featured {
  position: relative;
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, rgba(255, 109, 137, 0.16), rgba(125, 72, 207, 0.16)),
    var(--panel);
}

.plan-label {
  margin: 0 0 10px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.plan-price {
  margin: 16px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.plan-price span {
  margin-left: 8px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.plan-cta {
  margin-top: 24px;
  width: 100%;
}

.service-card,
.value-card,
.faq-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel-soft);
}

.compare-card {
  border-radius: 28px;
  overflow: hidden;
}

.compare-table {
  display: grid;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

.compare-row div {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.compare-row div:not(:first-child) {
  border-left: 1px solid var(--line);
}

.compare-head {
  background:
    linear-gradient(135deg, rgba(255, 109, 137, 0.14), rgba(125, 72, 207, 0.18)),
    var(--panel-strong);
}

.compare-head div {
  border-top: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.section-soft .value-card h3,
.section-faq .faq-card h3 {
  margin-bottom: 12px;
}

.section-accent {
  padding-bottom: 112px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 22px;
  align-items: center;
  border-radius: 30px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(255, 109, 137, 0.14), rgba(125, 72, 207, 0.18)),
    var(--panel);
}

@media (max-width: 980px) {
  .hero-grid,
  .pricing-grid,
  .card-grid,
  .values-grid,
  .faq-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row div:not(:first-child) {
    border-left: 0;
  }

  .pricing-card-featured {
    transform: none;
  }

  h1 {
    max-width: 14ch;
  }
}

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

  .hero-copy,
  .hero-panel,
  .pricing-card,
  .service-card,
  .value-card,
  .faq-card,
  .contact-panel {
    padding: 24px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions {
    width: 100%;
  }

  h1 {
    font-size: 2.6rem;
  }
}
