:root {
  --dark: #0f172a;
  --accent: #6366f1;
}

body {
  font-family: Inter, sans-serif;
  color: var(--dark);
  background: #fff;
}

.messages-container {
  padding-top: 90px;
}

.navbar {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
}

.hero {
  min-height: 760px;
  padding: 160px 0 100px;
  background:
    linear-gradient(180deg, rgba(15,23,42,.76), rgba(15,23,42,.7)),
  color: #fff;
}

.hero-title {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: .96;
  font-weight: 800;
}

.hero-text {
  max-width: 650px;
  color: rgba(255,255,255,.82);
}

.hero-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.search-panel {
  max-width: 900px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255,255,255,.95);
}

.search-panel .form-control {
  min-height: 56px;
  border-radius: 18px;
  border: 0;
  background: #f1f5f9;
}

.btn-accent {
  border: 0;
  border-radius: 18px;
  min-height: 56px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
}

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

.section-kicker {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .8rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.photo-card {
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
  transition: .25s;
}

.photo-card:hover {
  transform: translateY(-6px);
}

.photo-thumb {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: .82rem;
  font-weight: 700;
}

.empty-state {
  padding: 70px 24px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15,23,42,.06);
}

.footer {
  padding: 60px 0 35px;
  background: #020617;
  color: rgba(255,255,255,.72);
}

.footer a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.author-card {
  padding: 40px 24px;
  text-align: center;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15,23,42,.06);
  transition: .25s;
}

.author-card:hover {
  transform: translateY(-6px);
}

.author-avatar-big {
  width: 92px;
  height: 92px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
}
.pixabay-author-card {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
  transition: .25s;
}

.pixabay-author-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15,23,42,.14);
}

.author-cover {
  height: 110px;
  background:
    linear-gradient(135deg, rgba(99,102,241,.88), rgba(6,182,212,.88)),
}

.pixabay-author-body {
  position: relative;
  padding: 0 28px 32px;
  text-align: center;
}

.pixabay-avatar {
  width: 104px;
  height: 104px;
  margin: -52px auto 0;
  border: 6px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(15,23,42,.2);
}

.author-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #e2e8f0;
  padding-top: 22px;
}

.author-stats-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-stats-grid strong {
  font-size: 1.25rem;
  color: #0f172a;
}

.author-stats-grid span {
  font-size: .78rem;
  color: #64748b;
}
.photo-card-new {
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15,23,42,.1);
  transition: .25s;
}

.photo-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(15,23,42,.16);
}

.photo-card-image-link {
  display: block;
  overflow: hidden;
  border-radius: 34px 34px 0 0;
}

.photo-card-new-img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: .35s;
}

.photo-card-new:hover .photo-card-new-img {
  transform: scale(1.04);
}

.photo-card-new-body {
  padding: 26px;
}

.photo-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.photo-card-author {
  color: #64748b;
  margin: 0;
  font-size: .95rem;
}

.photo-card-desc {
  color: #64748b;
  font-size: .95rem;
  min-height: 42px;
  margin: 16px 0;
}

.photo-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748b;
  font-size: .9rem;
}

.license-badge {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  white-space: nowrap;
}

.license-badge.free {
  color: #047857;
  background: #d1fae5;
}

.license-badge.restricted {
  color: #92400e;
  background: #fef3c7;
}

.photo-detail-page {
  padding: 130px 0 80px;
  background: #f8fafc;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
}

.photo-detail-header {
  margin-bottom: 24px;
}

.photo-detail-header h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.05em;
  margin-bottom: 10px;
}

.photo-detail-header p,
.photo-detail-post-desc {
  color: #64748b;
  font-size: 1.05rem;
}

.photo-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, .8fr);
  gap: 34px;
  align-items: start;
  margin-top: 36px;
}

.photo-detail-image-wrap {
  overflow: hidden;
  border-radius: 34px;
  background: #f8fafc;
  box-shadow: 0 24px 70px rgba(15,23,42,.12);
}

.photo-detail-img {
  background: #f8fafc;
  object-fit: contain;
  display: block;
  width: 100%;

  object-fit: contain;

  position: relative;
  z-index: 1;
}

.photo-detail-info {
  display: grid;
  gap: 22px;
}

.photo-detail-main-info,
.photo-tech-card {
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.photo-detail-main-info h2 {
  font-weight: 900;
  margin-bottom: 14px;
}

.photo-short-description {
  color: #64748b;
  margin-bottom: 24px;
}

.license-box {
  padding: 24px;
  border-radius: 24px;
}

.license-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.license-box p {
  color: #475569;
}

.license-free {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}

.license-restricted {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.price-note {
  font-weight: 800;
  color: #92400e !important;
}

.photo-tech-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.tech-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
}

.tech-row:last-child {
  border-bottom: 0;
}

.tech-row span {
  color: #64748b;
}

.tech-row strong {
  text-align: right;
}

@media (max-width: 992px) {
  .photo-detail-card {
    grid-template-columns: 1fr;
  }

  .photo-card-new-img {
    height: 300px;
  }
}
.hero-premium {
  position: relative;
  min-height: 820px;
  padding: 150px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(6,182,212,.32), transparent 28%),
    radial-gradient(circle at 18% 28%, rgba(99,102,241,.28), transparent 32%),
    linear-gradient(135deg, #4b5563 0%, #111827 100%);
}

.hero-bg-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: 6%;
  top: 18%;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  filter: blur(90px);
  pointer-events: none;
}

.hero-premium .hero-title {
  max-width: 850px;
  color: #fff;
  font-size: clamp(3.2rem, 6.8vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 950;
}

.hero-premium .hero-text {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero-search-panel {
  max-width: 760px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.94);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.72);
  font-size: .95rem;
}

.hero-tags a {
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}

.hero-tags a:hover {
  background: rgba(255,255,255,.22);
}

.hero-visual-card {
  position: relative;
  overflow: hidden;
  height: 520px;
  border-radius: 42px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 40px 120px rgba(0,0,0,.35);
  transform: rotate(2deg);
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 4rem;
}

.hero-visual-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 26px;
  color: #fff;
  background: rgba(15,23,42,.58);
  backdrop-filter: blur(18px);
}

.hero-visual-info span,
.hero-visual-info strong {
  display: block;
}

.hero-visual-info span {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
}

.hero-visual-info strong {
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .hero-premium {
    min-height: auto;
    padding: 130px 0 90px;
  }

  .hero-premium .hero-title {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }
}
.related-section {
  padding: 40px 0 90px;
  background: #111827;
  color: #fff;
}

.related-header {
  margin-bottom: 34px;
}

.related-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.04em;
}

.related-card {
  overflow: hidden;
  height: 100%;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  transition: .25s;
}

.related-card:hover {
  transform: translateY(-6px);
}

.related-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.related-card-body {
  padding: 24px;
}

.related-card-body h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin: 12px 0 6px;
}

.related-card-body p {
  color: rgba(255,255,255,.65);
}

.related-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-categories span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
  font-size: .78rem;
  font-weight: 700;
}
.pixabay-avatar-img,
.pixabay-avatar {
  width: 104px;
  height: 104px;
  min-width: 104px;
  min-height: 104px;
  max-width: 104px;
  max-height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.pixabay-author-body {
  min-height: 360px;
}

.pixabay-author-card {
  height: 100%;
}

.photo-detail-gallery {
  display: grid;
  gap: 18px;
}

.gallery-main-wrap {
  cursor: zoom-in;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 8px;
}

.gallery-thumb-btn {
  width: 96px;
  height: 76px;
  min-width: 96px;
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  background: #e2e8f0;
  cursor: pointer;
  transition: .2s;
}

.gallery-thumb-btn:hover {
  transform: translateY(-2px);
}

.gallery-thumb-btn.active {
  border-color: #6366f1;
  box-shadow: 0 10px 24px rgba(99, 102, 241, .25);
}

.gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-modal-content {
     position: relative;
    border: 0;
    border-radius: 28px;
    background: transparent;
    box-shadow: none;
}

.zoom-photo {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.zoom-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  background-color: #fff;
  opacity: 1;
}
.gallery-main-wrap {
    position: relative;
    cursor: zoom-in;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 24px;
    z-index: 20;
    cursor: pointer;
    transition: .2s;
}

.gallery-arrow:hover {
    background: rgba(0,0,0,.8);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-main-wrap {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  cursor: zoom-in;
}

.photo-detail-img {
  background: #f8fafc;
}

.gallery-zoom-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: rgba(15, 23, 42, .68);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.gallery-zoom-btn:hover {
  background: rgba(15, 23, 42, .88);
}

body.lightbox-open {
  overflow: hidden;
}

.custom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, .94);
  padding: 40px 88px;
}

.custom-lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: 18px;
  box-shadow: 0 30px 120px rgba(0,0,0,.45);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 100001;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255,255,255,.22);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100001;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.lightbox-arrow:hover {
  background: rgba(255,255,255,.24);
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.lightbox-counter {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 100001;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

@media (max-width: 768px) {
  .custom-lightbox {
    padding: 24px 18px;
  }

  .lightbox-arrow {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
  }
}
.category-card {
  display: block;
  overflow: hidden;
  height: 100%;
  border-radius: 30px;
  background: #fff;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 20px 55px rgba(15,23,42,.08);
  transition: .25s;
}

.category-card:hover {
  transform: translateY(-6px);
  color: #0f172a;
  box-shadow: 0 30px 80px rgba(15,23,42,.14);
}

.category-cover {
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s;
}

.category-card:hover .category-cover img {
  transform: scale(1.06);
}

.category-cover-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  color: #64748b;
  font-size: 2.4rem;
}

.category-body {
  padding: 24px;
}

.category-body h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.category-body p {
  margin: 0;
  color: #64748b;
}
.hero-redesign {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(56,189,248,.26), transparent 30%),
    radial-gradient(circle at 20% 25%, rgba(129,140,248,.26), transparent 34%),
    linear-gradient(135deg, #111827 0%, #1f2937 45%, #0f172a 100%);
}

.hero-redesign .hero-title {
  max-width: 760px;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  line-height: .93;
  letter-spacing: -0.07em;
}

.hero-redesign .hero-text {
  max-width: 620px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
}

.hero-search-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}

.hero-search-panel .form-control {
  height: 58px;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0 22px;
  font-size: 1rem;
}

.hero-search-panel .btn {
  height: 58px;
  min-width: 150px;
  border-radius: 22px;
  font-weight: 800;
}

.hero-collage {
  position: relative;
  height: 560px;
}

.hero-collage-item {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.26);
  transform: rotate(var(--rotate));
}

.hero-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-collage-item.item-1 {
  width: 330px;
  height: 420px;
  right: 120px;
  top: 70px;
  --rotate: -3deg;
}

.hero-collage-item.item-2 {
  width: 210px;
  height: 250px;
  right: 0;
  top: 20px;
  --rotate: 6deg;
}

.hero-collage-item.item-3 {
  width: 230px;
  height: 280px;
  right: 10px;
  bottom: 40px;
  --rotate: -5deg;
}

.hero-collage-item.item-4 {
  width: 190px;
  height: 220px;
  left: 40px;
  top: 40px;
  --rotate: 5deg;
}

.hero-collage-item.item-5 {
  width: 220px;
  height: 240px;
  left: 10px;
  bottom: 80px;
  --rotate: -4deg;
}

.hero-collage-item:hover {
  z-index: 5;
  transform: translateY(-8px) rotate(0deg);
  transition: .25s;
}

@media (max-width: 991px) {
  .hero-redesign {
    min-height: auto;
    padding: 110px 0 80px;
  }

  .hero-search-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search-panel .btn {
    width: 100%;
  }
}
.categories-premium {
  background: #f8fafc;
}

.categories-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 22px;
}

.category-premium-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  text-decoration: none;
  background: linear-gradient(135deg, #dbeafe, #f8fafc);
  box-shadow: 0 24px 70px rgba(15,23,42,.10);
  transition: .3s;
}

.category-premium-card.category-large {
  grid-row: span 2;
}

.category-premium-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s;
}

.category-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(15,23,42,.18);
}

.category-premium-card:hover img {
  transform: scale(1.07);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15,23,42,.82), rgba(15,23,42,.12) 58%, rgba(15,23,42,.04));
}

.category-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
  z-index: 2;
}

.category-content h3 {
  margin: 8px 0 0;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.category-large .category-content h3 {
  font-size: 2.2rem;
}

.category-count {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  font-size: .85rem;
  font-weight: 800;
}

@media (max-width: 991px) {
  .categories-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .category-premium-card.category-large {
    grid-row: span 1;
  }
}

@media (max-width: 575px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}
.authors-page {
  background: #f8fafc;
}

.authors-hero {
  padding: 140px 0 70px;
  background:
    radial-gradient(circle at 20% 20%, rgba(99,102,241,.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(14,165,233,.16), transparent 30%),
    #f8fafc;
}