/* ZombiDomains — Coming Soon */

:root {
  --bg: #050505;
  --bg-card: rgba(18, 18, 18, 0.82);
  --border: rgba(57, 255, 20, 0.18);
  --green: #39ff14;
  --green-dim: #22c55e;
  --green-glow: rgba(57, 255, 20, 0.35);
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --danger: #f87171;
  --success: #4ade80;
  --radius: 16px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.04) 0%, transparent 45%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bg-test-12-scaled-1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.015) 80px,
    rgba(255, 255, 255, 0.015) 81px
  );
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.site-header .site-nav {
  flex: 1 1 100%;
  order: 3;
}

.logo img {
  width: min(220px, 52vw);
  filter: drop-shadow(0 0 18px var(--green-glow));
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-switch a {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.lang-switch a:hover,
.lang-switch a[aria-current="true"] {
  color: var(--green);
  border-color: var(--border);
  background: rgba(57, 255, 20, 0.08);
  text-decoration: none;
}

.hero {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 4rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "intro"
    "visual"
    "signup";
}

.hero-intro {
  grid-area: intro;
}

.hero-signup {
  grid-area: signup;
}

.visual {
  grid-area: visual;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.06);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.features li::before {
  content: "◆";
  margin-right: 0.45rem;
  color: var(--green);
  font-size: 0.65rem;
  vertical-align: middle;
}

.waitlist-card {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.06);
}

.waitlist-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.waitlist-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.waitlist-form {
  display: grid;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: end;
}

.form-row__action {
  align-self: end;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
}

input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--text);
  font: inherit;
}

input[type="email"]:focus {
  outline: 2px solid rgba(57, 255, 20, 0.35);
  border-color: var(--green-dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dim) 100%);
  color: #041004;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 0 24px var(--green-glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(57, 255, 20, 0.45);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.form-message {
  min-height: 1.25rem;
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
}

.form-message.is-error {
  color: var(--danger);
}

.form-message.is-success {
  color: var(--success);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Hero visuals — bento layout (matches WP overlap style) */

.visual-bento {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  aspect-ratio: 10 / 11;
  min-height: clamp(320px, 72vw, 480px);
}

.visual-card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.visual-card--main {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2.8vw, 1.5rem);
  overflow: hidden;
}

.stat {
  position: relative;
  z-index: 4;
  max-width: 52%;
  padding-right: 0.25rem;
}

.stat-value {
  font-size: clamp(1.85rem, 5.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: clamp(0.82rem, 2.2vw, 0.95rem);
  line-height: 1.35;
}

.visual-card__grave {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 clamp(0.5rem, 2vw, 1rem) clamp(3.5rem, 14%, 4.75rem);
}

.grave-img {
  width: clamp(150px, 56%, 270px);
  max-width: 100%;
  margin-inline: auto;
  filter: drop-shadow(0 0 28px var(--green-glow));
}

.visual-card--lady {
  position: absolute;
  top: clamp(0.5rem, 2.5vw, 1.15rem);
  right: 0;
  z-index: 3;
  width: clamp(38%, 42vw, 44%);
  border-radius: 18px;
  overflow: hidden;
}

.visual-card--lady img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.visual-card--badge {
  position: absolute;
  left: clamp(0.65rem, 3vw, 1.15rem);
  bottom: clamp(0.65rem, 3vw, 1.15rem);
  z-index: 3;
  width: clamp(46%, 48vw, 54%);
  padding: clamp(0.75rem, 2.5vw, 1.05rem) clamp(0.85rem, 2.8vw, 1.15rem);
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "intro visual"
      "signup visual";
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
  }

  .visual-bento {
    max-width: none;
    margin-inline: 0 0 auto;
    min-height: 440px;
    aspect-ratio: 4 / 5;
  }

  .hero-signup {
    align-self: start;
  }
}

@media (max-width: 1023px) {
  .hero {
    padding-top: 0.25rem;
  }

  .visual-bento {
    max-width: min(520px, 100%);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
  }

  .hero {
    padding-bottom: 2.5rem;
  }

  .visual-bento {
    min-height: clamp(300px, 88vw, 380px);
    aspect-ratio: 10 / 12;
  }

  .visual-card__grave {
    padding-bottom: clamp(3rem, 16%, 4rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .features {
    flex-direction: column;
    gap: 0.55rem;
  }
}

@media (max-width: 380px) {
  .visual-card--lady {
    width: 44%;
  }

  .visual-card--badge {
    width: 52%;
  }

  .stat {
    max-width: 52%;
  }
}

/* Custom cursor — desktop only, respects reduced motion via JS */

@media (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor label {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring,
  .cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
  }

  .cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green-glow);
  }

  .cursor-ring {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(57, 255, 20, 0.55);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15);
    transition: transform 0.15s ease, width 0.15s ease, height 0.15s ease;
  }

  .cursor-trail {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.7) 0%, transparent 70%);
  }
}

/* Keyword / content pages */

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green);
  text-decoration: none;
}

.page-main {
  padding: 1.5rem 0 4rem;
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--text-muted);
  opacity: 0.5;
}

.page-intro {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.content-section {
  margin: 0 0 2rem;
}

.content-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.content-section p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
}

.content-section ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.content-section li {
  margin-bottom: 0.4rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 2rem;
}

.related-card {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(57, 255, 20, 0.04);
}

.related-card a {
  font-weight: 600;
  text-decoration: none;
}

.related-card a:hover {
  text-decoration: underline;
}

.footer-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.5rem;
}

.footer-topics a {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cta-banner {
  margin: 2rem 0;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), rgba(18, 18, 18, 0.9));
}

.cta-banner h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.cta-banner p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content ul {
  padding-left: 1.2rem;
}

.impressum-details .impressum-row {
  margin: 0.65rem 0;
  line-height: 1.6;
}

.impressum-details .impressum-row strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .site-header {
    gap: 0.75rem;
  }

  .site-nav {
    width: 100%;
  }
}
