:root {
  --bg: #060b0a;
  --bg-alt: #101917;
  --surface: #15201d;
  --surface-soft: #1a2925;
  --line: rgba(199, 218, 210, 0.2);
  --text: #e9f0ec;
  --muted: #aac0b8;
  --primary: #2d3f3b;
  --primary-strong: #243531;
  --lilac: #c9c0dc;
  --ink: #ecf1ef;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(77, 103, 96, 0.22) 0, transparent 36%),
    radial-gradient(circle at 84% 12%, rgba(201, 192, 220, 0.14) 0, transparent 34%),
    linear-gradient(170deg, #050a09 0%, #0f1816 44%, #060b0a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.45;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}

.ambient-1 {
  width: 380px;
  height: 380px;
  left: -90px;
  top: -60px;
  background: rgba(61, 84, 77, 0.3);
}

.ambient-2 {
  width: 320px;
  height: 320px;
  right: -80px;
  top: 180px;
  background: rgba(201, 192, 220, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  backdrop-filter: blur(18px);
  background: rgba(13, 13, 17, 0.82);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(201, 192, 220, 0.35);
}

.footer-logo {
  width: 110px;
  height: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.18s ease;
  padding: 6px 8px;
  border-radius: 10px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links .nav-login {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--lilac);
  color: var(--ink);
  font-weight: 800;
}

.nav-links .nav-login:hover {
  color: var(--ink);
  background: #d8d0e8;
}

.top-banner {
  margin: 0;
  padding: 0;
  position: relative;
}

.top-banner::before {
  content: none;
}

.banner-slider {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(201, 192, 220, 0.16);
  background: rgba(11, 18, 16, 0.72);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.banner-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 15, 13, 0.03) 20%, rgba(9, 15, 13, 0.16) 100%);
  pointer-events: none;
  z-index: 1;
}

.banner-track {
  position: relative;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.banner-slide.is-active {
  opacity: 1;
}

.banner-slide-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(201, 192, 220, 0.35);
  background: rgba(10, 16, 15, 0.62);
  color: #ecf2ef;
  cursor: pointer;
  transition: background 0.18s ease;
}

.banner-nav:hover {
  background: rgba(201, 192, 220, 0.26);
}

.banner-nav.prev {
  left: 12px;
}

.banner-nav.next {
  right: 12px;
}

.banner-dots {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.banner-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: rgba(201, 192, 220, 0.35);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.banner-dot.is-active {
  transform: scale(1.15);
  background: #e8e1f7;
}

main {
  padding: 14px 36px 72px;
}

.hero-layout {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero {
  max-width: none;
  margin: 0;
  min-height: auto;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 8px 0 10px;
}

.hero-kicker,
.section-eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lilac);
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  display: grid;
  gap: 4px;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: lowercase;
}

.hero h1 em,
.section h2 em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--lilac);
}

.hero-copy {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.72;
  font-size: 16px;
}

.search-section {
  max-width: 1060px;
  margin: 12px auto 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(21, 32, 29, 0.52);
}

.search-box {
  max-width: 100%;
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.search-box input {
  flex: 1;
  min-width: 160px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 0 16px;
}

.search-box input::placeholder {
  color: #9f8f82;
}

.search-box button {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--lilac);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.search-box button:hover {
  transform: translateY(-1px);
  background: #d8d0e8;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin-top: 12px;
}

.tag {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tag:hover {
  border-color: rgba(201, 192, 220, 0.65);
  color: var(--text);
  transform: translateY(-1px);
}

.hero-stats {
  margin-top: 12px;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.hero-stats article {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #dce7e2;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: #96aca4;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 36px 0 10px;
}

.section h2 {
  margin: 12px 0 28px;
  max-width: 720px;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--surface) 0%, #171820 100%);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 192, 220, 0.45);
}

.card span,
.feature-card span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lilac);
  font-weight: 700;
}

.card h3,
.feature-card h3,
.steps h3 {
  margin: 12px 0 10px;
  letter-spacing: -0.02em;
  font-size: 22px;
}

.card p,
.feature-card p,
.steps p,
.cta-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.features .feature-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
}

.feature-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}

.feature-card.highlight {
  grid-row: span 2;
  background: linear-gradient(160deg, #1d1e25 0%, #15161d 100%);
}

.feature-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.feature-card li {
  font-size: 14px;
  color: #d8c5b5;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 10px 12px;
}

.steps .step-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.02);
}

.step-grid article {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.step-grid article:last-child {
  border-right: 0;
}

.step-grid strong {
  display: inline-block;
  color: rgba(201, 192, 220, 0.4);
  font-size: 42px;
  letter-spacing: -0.06em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--surface-soft);
}

.testimonial-grid p {
  margin: 0 0 14px;
  font-family: "Fraunces", serif;
  font-size: 20px;
  line-height: 1.45;
  color: #f4e9df;
}

.testimonial-grid span {
  font-size: 13px;
  color: var(--lilac);
  font-weight: 700;
}

.cta {
  text-align: center;
  padding-bottom: 24px;
}

.cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.cta-copy {
  max-width: 520px;
  margin: 0 auto 22px;
}

.cta-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  font-size: 14px;
}

.btn-primary {
  background: var(--lilac);
  color: var(--ink);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(201, 192, 220, 0.65);
}

.site-footer {
  max-width: 1060px;
  margin: 26px auto 0;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14, 24, 22, 0.72);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-meta strong {
  display: block;
  color: #e5ece8;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.footer-meta p {
  margin: 0;
  color: #9db0a8;
  font-size: 13px;
}

.footer-credit {
  margin-top: 8px;
  font-size: 12px;
  color: #88a79c;
}

.footer-credit a {
  color: #c9c0dc;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #e8e1f7;
  text-decoration: underline;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  color: #b8cac3;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #e6efea;
}

.footer-copy {
  margin: 0;
  color: #8ba098;
  font-size: 12px;
  font-weight: 600;
}

.search-feedback {
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: 320px;
  border: 1px solid rgba(201, 192, 220, 0.45);
  border-radius: 14px;
  background: rgba(20, 20, 26, 0.94);
  box-shadow: var(--shadow);
  padding: 12px 14px;
  color: #e8f0eb;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.search-feedback.show {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 980px) {
  .site-header,
  main,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .features .feature-layout,
  .testimonial-grid,
  .steps .step-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .feature-card.highlight {
    grid-row: auto;
  }

  .step-grid article,
  .hero-stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-grid article:last-child,
  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .banner-slider {
    max-width: none;
  }

  .hero-layout {
    padding: 0;
    gap: 14px;
    border-radius: 0;
  }

  .search-section {
    margin-top: 10px;
    padding: 14px;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-header nav {
    width: auto;
  }

  .brand {
    align-self: center;
  }

  .nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .nav-links .nav-login {
    margin-left: 0;
    padding: 9px 14px;
  }

  .nav-links a {
    font-size: 12px;
    padding: 5px 7px;
  }

  .top-banner {
    margin-top: 6px;
  }

  .banner-slider {
    border-radius: 14px;
  }

  .banner-nav {
    width: 34px;
    height: 34px;
  }

  .banner-nav.prev {
    left: 8px;
  }

  .banner-nav.next {
    right: 8px;
  }

  .hero {
    min-height: auto;
    padding: 14px 0 8px;
  }

  .search-box {
    flex-direction: column;
    border-radius: 20px;
  }

  .search-box button {
    width: 100%;
  }

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

  .site-footer {
    gap: 14px;
  }

  .footer-links {
    gap: 10px;
  }

  .hero-layout {
    padding: 0;
    border-radius: 0;
  }

  .search-section {
    padding: 12px;
    border-radius: 14px;
  }
}

@media (min-width: 1100px) {
  .site-header {
    padding-left: clamp(20px, 3.2vw, 56px);
    padding-right: clamp(20px, 3.2vw, 56px);
  }

  main {
    padding-left: clamp(20px, 3.2vw, 56px);
    padding-right: clamp(20px, 3.2vw, 56px);
  }

  .hero-layout {
    max-width: 1280px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 34px;
    padding: 2px 0 0;
  }

  .hero {
    order: 1;
  }

  .top-banner {
    order: 2;
    width: 100%;
  }

  .section {
    max-width: 1280px;
  }

  .search-section {
    max-width: 1280px;
    margin-top: 14px;
  }

  .site-footer {
    max-width: 1280px;
  }

  .top-banner {
    align-self: stretch;
  }

  .banner-slider {
    border-radius: 18px;
    width: 100%;
  }

  .hero {
    padding: 0;
    gap: 14px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(44px, 4.2vw, 80px);
  }

  .hero-copy {
    max-width: 62ch;
  }

  .hero-stats {
    max-width: 92%;
  }
}
