:root {
  --deep-blue: #0a2a6b;
  --mid-blue: #0f2b73;
  --pink: #ff4f8b;
  --purple: #8f5bff;
  --aqua: #4ad0ff;
  --off-white: #f5f4fb;
  --text-body: #1b233b;
  --muted: #5b6280;
  --shadow: 0 14px 40px rgba(10, 42, 107, 0.14);
  --frost: #eef3ff;
  --panel: rgba(255, 255, 255, 0.86);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

main {
  background: linear-gradient(180deg, #fff 0%, #f7f7ff 45%, #eef2ff 100%);
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  isolation: isolate;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(245, 244, 251, 0.9);
  border-bottom: 1px solid rgba(10, 42, 107, 0.08);
  box-shadow: 0 6px 18px rgba(10, 42, 107, 0.08);
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', 'Fredoka', cursive;
  color: var(--deep-blue);
  font-weight: 800;
  padding: 4px 10px;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  color: var(--mid-blue);
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 12px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--deep-blue);
  background: rgba(255, 79, 139, 0.14);
  transform: translateY(-1px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 16px;
  background: linear-gradient(120deg, var(--pink), var(--purple));
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: 0 16px 38px rgba(255, 79, 139, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 44px rgba(143, 91, 255, 0.35);
}

.menu-toggle {
  display: none;
  background: rgba(10, 42, 107, 0.08);
  border: 1px solid rgba(10, 42, 107, 0.2);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep-blue);
  margin: 5px 0;
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* HERO (adjusted: shorter overlay + higher placement) */
.hero {
  position: relative;
  isolation: isolate;
  color: var(--text-body);

  /* was 90vh + huge bottom padding; this reduces how much the overlay “covers” */
  min-height: 72vh;

  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;

  /* was: 88px 22px 120px */
  padding: 64px 22px 66px;

  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 79, 139, 0.08), transparent 36%),
    radial-gradient(circle at 80% 10%, rgba(74, 208, 255, 0.08), transparent 32%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.74) 46%, rgba(245, 244, 251, 0.64) 76%, rgba(245, 244, 251, 0.74) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;

  /* slightly lighter so more of the image reads through */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.52) 0%,
    rgba(255, 255, 255, 0.38) 45%,
    rgba(255, 255, 255, 0.10) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;

  /* was 960; slightly tighter */
  width: min(860px, 100%);
  max-width: 860px;

  margin: 0 auto;
  z-index: 2;

  /* slimmer “glass” card */
  padding: 16px 22px 18px;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.86),
    rgba(255, 255, 255, 0.74),
    rgba(255, 255, 255, 0.68)
  );
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(10, 42, 107, 0.10);
  backdrop-filter: blur(6px);
  align-self: start;
}

.hero h1 {
  font-family: 'Baloo 2', 'Fredoka', cursive;

  /* slightly smaller -> less height */
  font-size: clamp(2.2rem, 3.3vw + 1rem, 3.6rem);

  /* was 20px 0 16px */
  margin: 10px 0 10px;

  line-height: 1.05;
  letter-spacing: 0.5px;
}

.hero p {
  /* tighter */
  font-size: 1.02rem;
  max-width: 620px;
  color: var(--muted);
  margin: 0 0 14px;
}

.hero-illustration {
  position: absolute;
  inset: 0;

  background-image: url('assets/banner1.svg');
  background-repeat: no-repeat;
  background-position: center 88%;
  background-size: 115% auto; /* your current look */

  opacity: 0.96;
  filter: drop-shadow(0 22px 34px rgba(10, 42, 107, 0.14));
  pointer-events: none;
  z-index: 1;

  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.78) 32%,
    rgba(0, 0, 0, 0.88) 62%,
    rgba(0, 0, 0, 0.48) 90%,
    rgba(0, 0, 0, 0.2) 100%
  );
}


.hero-meta {
  display: none;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(10, 42, 107, 0.08);
  border: 1px solid rgba(10, 42, 107, 0.14);
  border-radius: 14px;
  color: var(--text-body);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-chip svg {
  width: 18px;
  height: 18px;
}

.overline {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--mid-blue);
  margin: 0;
  font-size: 0.75rem;
}

.section {
  padding: 96px 22px 80px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.info-strip {
  background: radial-gradient(circle at 10% 20%, rgba(255, 79, 139, 0.09), transparent 30%),
              radial-gradient(circle at 70% 20%, rgba(143, 91, 255, 0.1), transparent 30%),
              #fff;
  padding: 38px 22px 42px;
  border-top: 1px solid rgba(10, 42, 107, 0.05);
  border-bottom: 1px solid rgba(10, 42, 107, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

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

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  border: 1px solid rgba(10, 42, 107, 0.06);
  box-shadow: 0 12px 28px rgba(10, 42, 107, 0.08);
}

.info-card h3 {
  margin: 6px 0 4px;
  color: var(--deep-blue);
}

.info-card span {
  color: var(--muted);
  font-weight: 500;
}

.section-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-header .overline {
  display: inline-block;
  margin-bottom: 10px;
}

.section h2 {
  font-family: 'Baloo 2', 'Fredoka', cursive;
  font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
  color: var(--deep-blue);
  margin: 0 0 12px;
}

.section p.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  gap: 20px;
}

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

.qa-accordion {
  grid-template-columns: 1fr;
}

.outline-card {
  background: #fff;
  border: 1px dashed rgba(10, 42, 107, 0.25);
}

.outline-card ul {
  padding-left: 20px;
  margin: 10px 0 0;
  color: var(--muted);
}

.outline-card li {
  margin: 4px 0;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 42, 107, 0.06);
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(10, 42, 107, 0.16);
  border-color: rgba(143, 91, 255, 0.35);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.35rem;
  color: var(--deep-blue);
}

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

.schedule-grid,
.route-grid,
.partner-grid {
  display: grid;
  gap: 18px;
}

.schedule-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.schedule-meta {
  display: flex;
  gap: 10px;
  color: var(--deep-blue);
  font-weight: 700;
  margin-bottom: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 79, 139, 0.12);
  color: var(--deep-blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.route-card ul {
  padding-left: 20px;
  margin: 12px 0 0;
  color: var(--muted);
}

.route-media-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.route-media-card {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid rgba(10, 42, 107, 0.12);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(236, 242, 255, 0.9));
  box-shadow: 0 12px 28px rgba(10, 42, 107, 0.14);
  text-align: left;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  appearance: none;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.route-media-card:hover,
.route-media-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(10, 42, 107, 0.2);
  border-color: rgba(143, 91, 255, 0.5);
  outline: none;
}

.route-media-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.route-media-title {
  font-weight: 700;
  color: var(--deep-blue);
  font-size: 1.05rem;
}

.route-media-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--deep-blue);
  background: rgba(74, 208, 255, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
}

.route-media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(10, 42, 107, 0.08);
  transition: transform 0.25s ease;
}

.route-media-card:hover img,
.route-media-card:focus-visible img {
  transform: scale(1.02);
}

.route-media-cta {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}

.media-dialog {
  border: none;
  border-radius: 24px;
  padding: 0;
  max-width: min(920px, 92vw);
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 60px rgba(10, 42, 107, 0.35);
}

.media-dialog::backdrop {
  background: rgba(10, 18, 48, 0.55);
  backdrop-filter: blur(6px);
}

.media-dialog-content {
  padding: 18px 20px 24px;
  display: grid;
  gap: 16px;
}

.media-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  color: var(--deep-blue);
}

.media-dialog-header p {
  margin: 0;
}

.media-dialog-close {
  border: none;
  background: rgba(10, 42, 107, 0.08);
  color: var(--deep-blue);
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.media-dialog-close:hover,
.media-dialog-close:focus-visible {
  background: rgba(255, 79, 139, 0.18);
  outline: none;
}

.media-dialog img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(10, 42, 107, 0.08);
}


.highlight {
  color: var(--deep-blue);
  font-weight: 700;
}

.partner-card {
  background: linear-gradient(140deg, rgba(10, 42, 107, 0.92), rgba(15, 43, 115, 0.92));
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(143, 91, 255, 0.3);
  box-shadow: 0 12px 28px rgba(10, 42, 107, 0.25);
  transition: transform 0.25s ease, box-shadow 0.35s ease, filter 0.35s ease, border-color 0.35s ease;
}

.partner-card:hover,
.partner-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(255, 79, 139, 0.25);
  filter: drop-shadow(0 0 18px rgba(143, 91, 255, 0.45));
  border-color: rgba(74, 208, 255, 0.5);
}

.partner-card img {
  margin: 0 auto 12px;
  max-width: 260px;
  filter: drop-shadow(0 6px 16px rgba(255, 255, 255, 0.45));
}

.partner-logo {
  width: 260px;
  height: 260px;
}

.partner-feature {
  display: grid;
  justify-content: center;
  gap: 16px;
}

.partner-hero {
  position: relative;
  overflow: hidden;
  text-align: left;
}

.partner-hero::before {
  content: '';
  position: absolute;
  inset: -40% -10%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 123, 189, 0.3), transparent 40%), radial-gradient(circle at 70% 80%, rgba(74, 208, 255, 0.25), transparent 45%), radial-gradient(circle at 80% 10%, rgba(143, 91, 255, 0.25), transparent 40%);
  filter: blur(18px);
  z-index: 0;
}

.partner-hero img,
.partner-hero p {
  position: relative;
  z-index: 1;
}

.partner-label {
  display: inline-flex;
  align-self: center;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(255, 123, 189, 0.18);
  color: #f5f4fb;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.partner-copy {
  color: #e6e7fb;
  margin: 12px auto 0;
  max-width: 540px;
}

.partner-benefits {
  list-style: none;
  padding: 0;
  margin: 18px auto 0;
  color: #f1f2ff;
  display: grid;
  gap: 8px;
  max-width: 420px;
  text-align: left;
}

.partner-benefits li::before {
  content: '•';
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.partner-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 42, 107, 0.18), transparent);
  margin: 28px 0;
}

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

.partner-mini {
  text-align: left;
  padding: 20px;
}

.partner-card h3 {
  color: #fff;
  text-align: left;
}

.partner-mini p {
  color: rgba(241, 242, 255, 0.86);
  margin: 8px 0 0;
}

.partner-logo {
  max-width: 180px;
  width: 100%;
  margin: 10px 0 12px;
  filter: drop-shadow(0 6px 16px rgba(255, 255, 255, 0.35));
}

.footer {
  background: #0a1d4a;
  color: #f1f2ff;
  padding: 34px 22px 44px;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
}

.brand-footer {
  color: #f1f2ff;
}

.footer-note {
  margin: 0;
  color: rgba(241, 242, 255, 0.8);
  font-weight: 600;
}

.footer-link {
  color: #ffe0f1;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.secondary-link {
  color: var(--deep-blue);
  font-weight: 700;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.secondary-link svg {
  width: 16px;
  height: 16px;
}

.secondary-link:hover,
.secondary-link:focus-visible {
  color: var(--pink);
  transform: translateX(2px);
}

.template-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), #f7f7ff);
}

.pricing-card {
  padding: 0;
  overflow: hidden;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font: inherit;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  text-align: left;
}

.pricing-table thead th {
  background: linear-gradient(120deg, rgba(255, 79, 139, 0.12), rgba(143, 91, 255, 0.08));
  color: var(--deep-blue);
  font-weight: 800;
  border-bottom: 1px solid rgba(10, 42, 107, 0.12);
}

.pricing-table tbody tr + tr th,
.pricing-table tbody tr + tr td {
  border-top: 1px solid rgba(10, 42, 107, 0.08);
}

.pricing-table tbody tr:hover {
  background: rgba(74, 208, 255, 0.08);
}

.pricing-table tbody tr.pricing-section-row:hover {
  background: transparent;
}

.pricing-table tbody tr.pricing-section-row th {
  padding-top: 18px;
  padding-bottom: 10px;
  color: var(--deep-blue);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-top: 1px solid rgba(10, 42, 107, 0.14);
  background: linear-gradient(120deg, rgba(74, 208, 255, 0.08), rgba(255, 79, 139, 0.06));
}

.pricing-distance {
  color: var(--deep-blue);
  font-weight: 800;
}

.pricing-price {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid rgba(10, 42, 107, 0.08);
  box-shadow: 0 16px 32px rgba(10, 42, 107, 0.12);
}

.contact-card {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mailto-link {
  font-weight: 700;
  color: var(--deep-blue);
  text-decoration: underline;
}

.contact-card .btn-primary {
  width: fit-content;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-row label {
  font-weight: 700;
  color: var(--deep-blue);
}

.form-row input,
.form-row textarea {
  border: 1px solid rgba(10, 42, 107, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(143, 91, 255, 0.18);
}

.contact-form .btn-primary {
  width: fit-content;
}

.qa-item {
  background: linear-gradient(140deg, rgba(143, 91, 255, 0.18), rgba(255, 79, 139, 0.08));
  border: 1px solid rgba(143, 91, 255, 0.28);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 12px 26px rgba(143, 91, 255, 0.12);
}

.qa-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--deep-blue);
  list-style: none;
}

.qa-item summary::-webkit-details-marker {
  display: none;
}

.qa-item summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--purple);
  transition: transform 0.2s ease;
}

.qa-item[open] summary::after {
  content: '–';
}

.qa-item p,
.qa-item ul {
  margin: 12px 0 0;
  color: var(--muted);
}

.qa-item ul {
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

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

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 18px;
    background: rgba(245, 244, 251, 0.95);
    flex-direction: column;
    align-items: flex-start;
    width: min(280px, 90vw);
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(10, 42, 107, 0.08);
    box-shadow: 0 16px 30px rgba(10, 42, 107, 0.12);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  /* keep the overlay compact on tablets too */
  .hero {
    padding: 88px 18px 72px;
    min-height: 70vh;
  }

  .hero-illustration {
    inset: 12px -6px 12px -14px;
    background-size: 150% auto;
    background-position: 68% 92%;
  }
}

@media (max-width: 640px) {
  .navbar {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 14px 14px;
  }

  .cards,
  .grid-2,
  .schedule-grid,
  .route-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

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

    .route-media-card img {
    height: 200px;
  }


  .footer .container {
    align-items: flex-start;
  }

  .hero {
    padding: 84px 16px 64px;
    min-height: 68vh;
  }

  .hero-illustration {
    bottom: -12px;
    opacity: 0.9;
    background-size: 180% auto;
    background-position: 68% 98%;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 28%, #000 60%, transparent 100%);
  }
}

.navbar::after {
  content: '';
  position: absolute;
  inset: auto 18px -8px 18px;
  height: 24px;
  background: radial-gradient(circle at 15% 20%, rgba(255, 79, 139, 0.25), transparent 35%),
              radial-gradient(circle at 70% 40%, rgba(74, 208, 255, 0.18), transparent 40%),
              radial-gradient(circle at 50% 80%, rgba(143, 91, 255, 0.18), transparent 38%);
  filter: blur(18px);
  z-index: -1;
}
