:root {
  --ink: #141414;
  --base: #ffffff;
  --cream: #fff9f1;
  --citrus: #ffd34e;
  --sky: #19b8ff;
  --fuchsia: #ff5dbb;
  --mint: #38e2a0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: #222;
  background: var(--base);
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.lead {
  font-family: "Nunito", system-ui, sans-serif;
}

.text-citrus {
  color: var(--citrus) !important;
}
.text-sky {
  color: var(--sky) !important;
}
.text-fuchsia {
  color: var(--fuchsia) !important;
}
.bg-cream {
  background: var(--cream);
}
.bg-citrus {
  background: var(--citrus) !important;
}
.bg-sky {
  background: var(--sky) !important;
  color: #052533;
}
.bg-fuchsia {
  background: var(--fuchsia) !important;
  color: #fff;
}

a {
  color: var(--sky);
}
a:hover {
  color: #0c89bf;
}

.btn-ink {
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
}
.btn-ink:hover {
  filter: brightness(1.06);
  color: #fff;
}
.btn-outline-ink {
  border: 2px solid var(--ink);
  color: var(--ink);
}
.btn-outline-ink:hover {
  background: var(--ink);
  color: #fff;
}

.hero-grid {
  background: radial-gradient(
      60% 80% at 10% 10%,
      rgba(255, 211, 78, 0.45) 0%,
      rgba(255, 211, 78, 0) 60%
    ),
    radial-gradient(
      60% 80% at 90% 15%,
      rgba(25, 184, 255, 0.35) 0%,
      rgba(25, 184, 255, 0) 60%
    ),
    radial-gradient(
      60% 80% at 20% 85%,
      rgba(255, 93, 187, 0.35) 0%,
      rgba(255, 93, 187, 0) 60%
    ),
    #ffffff;
}
.hero-grid-img {
  position: absolute;
  right: -80px;
  bottom: -60px;
  width: 420px;
  opacity: 0.25;
  pointer-events: none;
}
.border-hero {
  border: 6px solid #fff;
  border-radius: 1rem;
}
.shadow-xl {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.tile {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.tile-badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 0.75rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.5rem;
}
.pattern-cross {
  background: radial-gradient(
      circle at 1px 1px,
      rgba(0, 0, 0, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(var(--cream), var(--cream));
  background-size: 16px 16px, auto;
}

.step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--fuchsia));
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.mesh-soft {
  background: linear-gradient(
      180deg,
      rgba(25, 184, 255, 0.08),
      rgba(255, 93, 187, 0.08)
    ),
    #fff;
}
.price-card.highlighted {
  outline: 3px solid var(--fuchsia);
}
.card-ribbon {
  position: absolute;
  top: 12px;
  left: -6px;
  padding: 0.25rem 0.75rem;
  border-radius: 0.75rem;
  font-weight: 800;
  color: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bright-quote {
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, #fff, rgba(255, 211, 78, 0.08));
}

summary {
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
details {
  border: 1px solid #eee;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
}
