:root {
  --fx1: #6f2cff;
  --fx2: #c6ff3e;
  --fx3: #00c2b8;
  --fx4: #0b0f14;
  --surface: #ffffff;
}

html,
body {
  font-family: "Space Grotesk", Inter, system-ui, -apple-system, Segoe UI,
    Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji", sans-serif;
  background: #f7f9ff;
  color: #14171a;
}
a:focus,
button:focus {
  outline: 2px dashed var(--fx2);
  outline-offset: 2px;
}

.hero-fx {
  background: radial-gradient(
      1200px 600px at 10% -10%,
      rgba(111, 44, 255, 0.45) 0%,
      rgba(111, 44, 255, 0) 60%
    ),
    radial-gradient(
      1000px 500px at 100% 0%,
      rgba(0, 194, 184, 0.45) 0%,
      rgba(0, 194, 184, 0) 60%
    ),
    linear-gradient(135deg, var(--fx1), var(--fx4));
  position: relative;
  color: #fff;
}
.hero-accent {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: conic-gradient(from 120deg, var(--fx2), var(--fx3), var(--fx1));
  filter: blur(60px);
  opacity: 0.35;
  border-radius: 50%;
}

.section-edge-top {
  position: relative;
}
.section-edge-top::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.05) 50%,
    transparent 100%
  );
  opacity: 0.5;
}
.section-edge-bottom {
  position: relative;
}
.section-edge-bottom::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.05) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.feature-card {
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
}
.feature-card i {
  font-size: 1.6rem;
  color: var(--fx1);
}

.step {
  background: #fff;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  padding: 1rem;
}
.step-num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--fx2);
  color: #000;
  font-weight: 700;
}

.pricing-card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.2s;
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.25rem rgba(111, 44, 255, 0.15);
}
.pricing-card.featured {
  border: 2px solid var(--fx1);
  box-shadow: 0 0.75rem 1.25rem rgba(111, 44, 255, 0.18);
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(111, 44, 255, 0.25);
  border-color: var(--fx1);
}
.btn-primary {
  background-color: var(--fx1);
  border-color: var(--fx1);
}
.btn-outline-primary {
  color: var(--fx1);
  border-color: var(--fx1);
}
.btn-outline-primary:hover {
  background: var(--fx1);
  border-color: var(--fx1);
  color: #fff;
}
.hero-fx .btn-outline-light:hover {
  background: #fff;
  color: #000;
}

.cta-fx {
  background: linear-gradient(135deg, var(--fx2), var(--fx3));
  color: #000;
}

.breadcrumb {
  --bs-breadcrumb-divider: "›";
}

.small-muted {
  font-size: 0.9rem;
  color: #6c757d;
}
