/* Zoekee homepage — dark mockup */

.zk-home {
  --zk-bg: #070a08;
  --zk-surface: #101612;
  --zk-surface-2: #161c18;
  --zk-text: #f4f7f1;
  --zk-muted: rgba(244, 247, 241, 0.68);
  --zk-green: #7ed321;
  --zk-green-deep: #5aa61f;
  --zk-green-btn: #68b824;
  --zk-border: rgba(255, 255, 255, 0.08);
  --zk-font: "Plus Jakarta Sans", "Nunito", "Avenir Next", system-ui, sans-serif;

  background: var(--zk-bg);
  color: var(--zk-text);
  font-family: var(--zk-font);
  overflow: clip;
}

.zk-home a {
  color: inherit;
  text-decoration: none;
}

.zk-shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Hero */
.zk-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: end;
  padding: 7rem 0 3.5rem;
}

.zk-hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  overflow: hidden;
}

.zk-hero-slice {
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
  animation: zk-pan 18s ease-in-out infinite alternate;
}

.zk-hero-slice:nth-child(2) { animation-delay: -3s; }
.zk-hero-slice:nth-child(3) { animation-delay: -6s; }
.zk-hero-slice:nth-child(4) { animation-delay: -9s; }
.zk-hero-slice:nth-child(5) { animation-delay: -12s; }

@keyframes zk-pan {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

.zk-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 8, 0.55) 0%, rgba(7, 10, 8, 0.35) 35%, rgba(7, 10, 8, 0.82) 78%, var(--zk-bg) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(7, 10, 8, 0.15), rgba(7, 10, 8, 0.7));
}

.zk-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.zk-hero-title {
  margin: 0 0 0.85rem;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #fff;
}

.zk-hero-title em {
  font-style: normal;
  color: var(--zk-green);
}

.zk-hero-lede {
  margin: 0 auto 1.6rem;
  max-width: 34rem;
  color: var(--zk-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.45;
}

.zk-search {
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
  max-width: 560px;
  margin: 0 auto;
  padding: 0.4rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.zk-search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.7rem 1.1rem;
  font: inherit;
  font-size: 0.98rem;
  color: #121612;
  outline: none;
}

.zk-search-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  background: var(--zk-green-btn);
  color: #08110a;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.zk-search-ai:hover {
  background: var(--zk-green);
  transform: translateY(-1px);
}

/* Trending */
.zk-trending {
  padding: 0.75rem 0 1.5rem;
  border-bottom: 1px solid var(--zk-border);
}

.zk-trending-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.zk-trending-row::-webkit-scrollbar { display: none; }

.zk-trending-label {
  flex: 0 0 auto;
  color: var(--zk-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.zk-trend-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  padding: 0.3rem 0.85rem 0.3rem 0.3rem;
  border: 1px solid var(--zk-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--zk-text);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.zk-trend-chip img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.zk-trend-chip:hover {
  border-color: rgba(126, 211, 33, 0.45);
  background: rgba(126, 211, 33, 0.08);
}

/* Shared section */
.zk-section {
  padding: 2.75rem 0;
}

.zk-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.zk-section-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.zk-section-head p {
  margin: 0.25rem 0 0;
  color: var(--zk-muted);
  font-size: 0.92rem;
}

.zk-view-all {
  color: var(--zk-green);
  font-size: 0.88rem;
  font-weight: 650;
  white-space: nowrap;
}

.zk-view-all i { margin-left: 0.35rem; font-size: 0.75rem; }

/* Continue exploring */
.zk-continue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.zk-continue-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.1rem;
  background: var(--zk-surface);
  border: 1px solid var(--zk-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.zk-continue-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 211, 33, 0.35);
}

.zk-continue-media {
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
}

.zk-continue-body {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem 1.1rem;
}

.zk-continue-body strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.zk-meta {
  color: var(--zk-muted);
  font-size: 0.8rem;
}

.zk-pill {
  display: inline-flex;
  width: fit-content;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.zk-pill-article { background: rgba(72, 149, 239, 0.18); color: #7eb6ff; }
.zk-pill-inspire { background: rgba(167, 119, 255, 0.18); color: #c4a0ff; }
.zk-pill-market { background: rgba(126, 211, 33, 0.16); color: var(--zk-green); }
.zk-pill-event { background: rgba(255, 159, 67, 0.16); color: #ffb36b; }

/* Interests */
.zk-interest-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.zk-interest-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.15;
  border-radius: 1.1rem;
}

.zk-interest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.zk-interest-card:hover img {
  transform: scale(1.06);
}

.zk-interest-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78) 100%);
}

.zk-interest-copy {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  display: grid;
  gap: 0.15rem;
}

.zk-interest-copy strong {
  font-size: 1rem;
  font-weight: 750;
}

.zk-interest-copy em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

/* Triad */
.zk-triad-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.95fr;
  gap: 1.1rem;
}

.zk-panel {
  padding: 1.1rem;
  border-radius: 1.15rem;
  background: var(--zk-surface);
  border: 1px solid var(--zk-border);
}

.zk-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.zk-panel-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
}

.zk-panel-head a {
  color: var(--zk-muted);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.zk-panel-head a:hover { color: var(--zk-green); }

.zk-article-list,
.zk-event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.zk-article-list a,
.zk-event-list a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.zk-article-list img {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  object-fit: cover;
  flex: 0 0 auto;
}

.zk-article-list span,
.zk-event-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.zk-article-list strong,
.zk-event-copy strong,
.zk-product strong {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

.zk-article-list em,
.zk-event-copy em,
.zk-product em {
  font-style: normal;
  color: var(--zk-muted);
  font-size: 0.78rem;
}

.zk-market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.zk-product {
  display: grid;
  gap: 0.4rem;
}

.zk-product img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.85rem;
  object-fit: cover;
}

.zk-event-date {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 0.8rem;
  background: rgba(126, 211, 33, 0.1);
  border: 1px solid rgba(126, 211, 33, 0.22);
  flex: 0 0 auto;
}

.zk-event-date b {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--zk-green);
}

.zk-event-date i {
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

/* CTA */
.zk-cta {
  padding: 1rem 0 3.5rem;
}

.zk-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #1a3a1f 0%, #123018 55%, #0d2414 100%);
  border: 1px solid rgba(126, 211, 33, 0.18);
}

.zk-cta-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(126, 211, 33, 0.14);
  color: var(--zk-green);
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.zk-cta-copy {
  flex: 1;
  min-width: 0;
}

.zk-cta-copy h2 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.zk-cta-copy p {
  margin: 0;
  color: var(--zk-muted);
  font-size: 0.92rem;
}

.zk-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--zk-green-btn);
  color: #08110a !important;
  font-weight: 750;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease;
}

.zk-cta-btn:hover {
  background: var(--zk-green);
  transform: translateY(-1px);
}

/* Homepage chrome: dark nav over hero */
body:has(.zk-home) {
  background: #070a08;
}

body:has(.zk-home) .site-navbar-wrap {
  position: absolute;
  top: var(--banner-height, 0);
  left: 0;
  right: 0;
}

body:has(.zk-home) .site-navbar {
  --nav-surface: rgba(7, 10, 8, 0.28);
  --nav-surface-solid: rgba(7, 10, 8, 0.82);
  --nav-border: rgba(255, 255, 255, 0.06);
  background: var(--nav-surface);
}

body:has(.zk-home) .site-footer {
  --footer-bg: #050805;
  background: #050805;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body:has(.zk-home) .site-footer-tagline {
  color: rgba(244, 247, 241, 0.62);
}

/* Auth buttons on homepage nav */
.zk-nav-login,
.zk-nav-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.zk-nav-login {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff !important;
  background: transparent;
}

.zk-nav-signup {
  background: var(--zk-green-btn, #68b824);
  color: #08110a !important;
}

.zk-nav-login:hover {
  background: rgba(255, 255, 255, 0.08);
}

.zk-nav-signup:hover {
  background: #7ed321;
}

/* Responsive */
@media (max-width: 1100px) {
  .zk-continue-grid,
  .zk-triad-grid {
    grid-template-columns: 1fr 1fr;
  }

  .zk-interest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .zk-hero {
    min-height: 560px;
    padding-top: 6rem;
  }

  .zk-hero-collage {
    grid-template-columns: repeat(3, 1fr);
  }

  .zk-hero-slice:nth-child(4),
  .zk-hero-slice:nth-child(5) {
    display: none;
  }

  .zk-search {
    flex-direction: column;
    border-radius: 1.25rem;
    padding: 0.55rem;
  }

  .zk-search-ai {
    justify-content: center;
  }

  .zk-continue-grid,
  .zk-triad-grid,
  .zk-interest-grid {
    grid-template-columns: 1fr;
  }

  .zk-interest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .zk-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .zk-cta-btn {
    width: 100%;
  }
}
