:root {
  --bg: #07111f;
  --bg-2: #0b1728;
  --panel: rgba(17, 28, 47, 0.72);
  --panel-strong: rgba(14, 23, 39, 0.92);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f8ff;
  --muted: #9fb0c9;
  --primary: #6ea8ff;
  --primary-2: #90f3ff;
  --accent: #7c5cff;
  --success: #77f2b0;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(110, 168, 255, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(124, 92, 255, 0.08), transparent 25%),
    linear-gradient(180deg, #050d18 0%, #081220 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  pointer-events: none;
  z-index: -3;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
}

.orb-1 {
  width: 360px;
  height: 360px;
  background: rgba(110, 168, 255, 0.22);
  top: 40px;
  left: -100px;
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: rgba(124, 92, 255, 0.18);
  right: -120px;
  top: 140px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 13, 24, 0.56);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 30px rgba(110, 168, 255, 0.28);
}

.logo-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.hero {
  padding: 72px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.badge,
.panel-pill,
.preview-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: #d9e7ff;
  font-size: 0.92rem;
  font-weight: 600;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 20px var(--success);
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 720px;
}

.hero h1 span {
  display: block;
  color: #bcd4ff;
}

.hero-text {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 16px;
  padding: 15px 22px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #06101d;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  box-shadow: 0 16px 40px rgba(110, 168, 255, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
}

.hero-stats {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stat-card,
.feature-card,
.step-card,
.preview-card,
.glass-card {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.stat-card {
  min-width: 180px;
  padding: 18px;
  border-radius: 18px;
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-panel {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-top {
  width: 100%;
  max-width: 490px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 29, 48, 0.88), rgba(10, 18, 31, 0.92));
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-mini {
  color: var(--muted);
  font-size: 0.95rem;
}

.search-demo {
  display: grid;
  gap: 16px;
}

.fake-input {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: #d9e7ff;
}

.fake-input svg,
.search-input-wrap svg {
  width: 20px;
  height: 20px;
  fill: #8eabd8;
  flex-shrink: 0;
}

.demo-results {
  display: grid;
  gap: 12px;
}

.demo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.demo-row.best {
  background: linear-gradient(180deg, rgba(110, 168, 255, 0.12), rgba(255,255,255,0.04));
  border-color: rgba(110, 168, 255, 0.25);
}

.demo-row h4 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.demo-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.demo-row strong {
  font-size: 1.15rem;
}

.floating-chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: #dce9ff;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.92rem;
}

.chip-1 { top: 22px; right: 18px; }
.chip-2 { bottom: 72px; left: 0; }
.chip-3 { bottom: 10px; right: 40px; }

.search-section,
.features-section,
.steps-section,
.preview-section {
  padding: 44px 0 24px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #9ec5ff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.7;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}

.search-input-wrap input {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: 0;
  outline: 0;
  font-size: 1rem;
}

.search-input-wrap input::placeholder {
  color: #88a0c0;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: #d9e7ff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.tag:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
}

.results-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.result-card {
  padding: 20px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.result-left h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.result-left p {
  margin: 0;
  color: var(--muted);
}

.result-price {
  text-align: right;
}

.result-price strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.result-price span {
  color: #9ec5ff;
  font-size: 0.95rem;
  font-weight: 600;
}

.features-grid,
.steps-grid,
.preview-grid {
  display: grid;
  gap: 18px;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.step-card,
.preview-card {
  padding: 24px;
  border-radius: 24px;
}

.feature-icon,
.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(110, 168, 255, 0.22), rgba(124, 92, 255, 0.22));
  color: #dce9ff;
  font-weight: 800;
}

.feature-card h3,
.step-card h3,
.preview-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.feature-card p,
.step-card p,
.preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.preview-card strong {
  display: inline-block;
  margin-top: 18px;
  font-size: 1.6rem;
}

.site-footer {
  padding: 42px 0 60px;
}

.footer-inner {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-inner h3 {
  margin: 0 0 6px;
}

.footer-inner p,
.footer-note {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .hero-grid,
  .features-grid,
  .steps-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 42px;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .result-card,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .result-price {
    text-align: left;
  }

  .hero-stats {
    flex-direction: column;
  }

  .floating-chip {
    display: none;
  }

  .nav-cta {
    display: none;
  }
}

.results-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-top: 34px;
  margin-bottom: 18px;
}

.results-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #9ec5ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

.results-header h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.results-subtext {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  text-align: right;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.listing-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 168, 255, 0.25);
}

.listing-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.listing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0a1220;
}

.listing-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
}

.listing-badge.best {
  background: rgba(119, 242, 176, 0.18);
  color: #c7ffe2;
}

.listing-badge.source {
  left: auto;
  right: 14px;
  background: rgba(255,255,255,0.08);
  color: #eaf2ff;
}

.listing-content {
  padding: 20px;
}

.listing-content h4 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.4;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.listing-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.84rem;
}

.listing-delivery {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 0.95rem;
}

.listing-delivery.yes {
  color: #aaf3c8;
}

.listing-delivery.no {
  color: #ffb8b8;
}

.listing-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.listing-price-block strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 6px;
}

.listing-price-block span {
  color: var(--muted);
  font-size: 0.88rem;
}

.listing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #08111d;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .results-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .results-subtext {
    text-align: left;
  }

  .listing-grid {
    grid-template-columns: 1fr;
  }

  .listing-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .listing-link {
    width: 100%;
  }
}
