:root {
  --bg: #ffffff;
  --text: #1d1f2a;
  --muted: #7b8094;
  --accent: #6b2ce9;
  --accent-2: #7b4df3;
  --panel: #ffffff;
  --ring: rgba(21, 24, 38, 0.08);
}

body {
  font-family: "Sora", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.pb-6 {
  padding-bottom: 9rem !important;
}

.fade-top-wrap {
  position: relative;
  z-index: 0;
  background: #ffffff;
}

.fade-top-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -120px;
  height: 140px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 75%);
  pointer-events: none;
  z-index: 0;
}

.fade-top-wrap > * {
  position: relative;
  z-index: 1;
}


.navbar {
  padding: 1.5rem 0 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  line-height: 0;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  padding: 3.5rem 0 6rem;
  color: #fff;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.hero::before {
  top: -200px;
  left: -160px;
}

.hero::after {
  top: -240px;
  right: -140px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.02em;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 0.75rem;
}

.nav-links a:hover {
  color: #fff;
}

.search-card {
  background: var(--panel);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.search-input {
  border: 1px solid var(--ring);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  width: 100%;
}

.btn-accent {
  background: #6f7780;
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 1rem;
}

.domain-pill {
  border-radius: 12px;
  border: 1px solid #edf0f7;
  background: #fff;
  padding: 0.75rem 1rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.domain-pill strong {
  color: var(--accent);
}

.section-title {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8790a6;
}

.card {
  border: 1px solid #eef1f6;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.thumb-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f3f8;
  border-bottom: 1px solid #eef1f6;
}

.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12), 0 12px 32px rgba(107, 44, 233, 0.18);
  border-color: rgba(91, 109, 255, 0.35);
}

.card:hover .thumb-img {
  transform: scale(1.03);
}

.cta-strip {
  border-radius: 20px;
  background: #f6f7ff;
  border: 1px solid #eef1ff;
  padding: 2rem;
}

footer {
  background: #1c2238;
  color: #c7ccda;
}

.footer-wrap {
  padding: 3rem 0 2rem;
}

.footer-title {
  color: #ffffff;
  font-weight: 600;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 2rem 0;
}

.footer-fade {
  position: relative;
}

.footer-fade::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -80px;
  height: 80px;
  background: linear-gradient(to bottom, #ffffff 0%, #1c2238 100%);
  pointer-events: none;
}

.contact-pill {
  text-align: center;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.footer-input {
  background: #252c46;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  width: 100%;
}

.footer-btn {
  background: #6b2ce9;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  width: 100%;
}

.footer-link {
  color: #c7ccda;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero {
    padding: 2.5rem 0 4rem;
  }
  .navbar .brand {
    width: 100%;
    justify-content: center;
  }
  .logo-img {
    height: 52px;
    max-width: 220px;
  }
}

.logo-img {
  height: 36px;
  width: auto;
  max-width: 180px;
}

.logo-img {
  height: clamp(30px, 4vw, 40px);
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

.sites-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sites-next {
  border: none;
  background: #6f7780;
  color: #fff;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.sites-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

html {
  scroll-behavior: smooth;
}

.site-fade {
  animation: fadeUp 0.45s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.sites-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sites-next,
.sites-prev {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 14px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sites-next:disabled,
.sites-prev:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sites-next:hover,
.sites-prev:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.22);
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .sites-actions {
    flex-direction: row;
  }
}

.site-fade {
  animation: fadeSlide 0.65s ease;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-hero {
  background: #6b2ce9;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.35);
}

.btn-hero:hover {
  background: #5a22d4;
  color: #fff;
}

.sites-next,
.sites-prev {
  color: #1d1f2a;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
}
