/* =================================================================
   ELEVATEM · SHOPAMIN LEAD-MAGNET LP
   Nutzt die zentralen Brand-Variablen aus variables.css
   ================================================================= */

.sho-body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============ ANNOUNCEMENT-BAR (sticky oben) ============ */
.sho-announce {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--color-accent);
  color: var(--color-bg);
}
.sho-announce-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.55rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: center;
}
.sho-announce-msg { display: inline-flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
.sho-announce-flag { font-weight: 700; }
.sho-announce-price { display: inline-flex; align-items: baseline; gap: 0.4rem; }
.sho-announce-price s { opacity: 0.6; font-weight: 600; }
.sho-announce-now { font-weight: 800; }
.sho-announce-timer { display: inline-flex; align-items: center; font-weight: 600; }
.sho-countdown {
  font-family: var(--font-display);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  padding: 0.05em 0.45em;
  background: rgba(30, 28, 28, 0.14);
  border-radius: var(--radius-sm);
  min-width: 4.7em;
  text-align: center;
}

/* ---- Lime-Check-Icon (kein Emoji, brand-konform) ---- */
.sho-li {
  position: relative;
  padding-left: 2rem;
  list-style: none;
}
.sho-li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.35rem;
  height: 1.35rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E6FF4B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ============ 01 · HERO ============ */
.sho-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 7vw, 5.5rem) var(--gutter) clamp(3rem, 8vw, 6rem);
  flex: 1 0 auto;
}
.sho-hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.sho-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.sho-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.sho-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-5xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin: 0 0 var(--space-4);
}
.sho-sub {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  max-width: 30em;
  margin: 0 0 var(--space-6);
}

/* ---- Form ---- */
.sho-form { max-width: 440px; }
.sho-field { margin-bottom: var(--space-4); }
.sho-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.sho-req { color: var(--color-accent); font-weight: 700; }
.sho-form input[type="text"],
.sho-form input[type="email"] {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--color-text);
  background: var(--color-bg-elevated);
  border: var(--border-strong);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.sho-form input::placeholder { color: var(--color-text-faint); }
.sho-form input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.sho-form button.sho-submit {
  width: 100%;
  margin-top: var(--space-2);
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--color-bg);
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}
.sho-form button.sho-submit:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.sho-form button.sho-submit:active { transform: translateY(0); }
.sho-form button.sho-submit:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.sho-form button.sho-submit:disabled,
.sho-form button.sho-submit.is-disabled {
  background: var(--color-bg-elevated);
  color: var(--color-text-faint);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.sho-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  margin: var(--space-4) 0 var(--space-5);
  padding: 0;
}
.sho-trust .sho-li {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  padding-left: 1.6rem;
}
.sho-trust .sho-li::before { width: 1.1rem; height: 1.1rem; }

.sho-consent {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
  color: var(--color-text-subtle);
}
.sho-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--color-accent);
}
.sho-consent a { color: var(--color-accent); }

.sho-formerror {
  background: rgba(255, 90, 90, 0.12);
  border: 1px solid rgba(255, 90, 90, 0.4);
  color: #ffb3b3;
  font-size: var(--fs-sm);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}

/* Honeypot — für Menschen komplett unsichtbar */
.sho-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- Cover als CSS-3D-Buch (Vorderseite + Ruecken + Seiten) ---- */
.sho-hero-cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2000px;
  padding: var(--space-5) 0;
}
.sho-cover-glow {
  position: absolute;
  inset: 8% 12%;
  background: radial-gradient(ellipse at center, var(--color-accent-glow) 0%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
}
/* Bodenschatten getrennt vom 3D-Koerper (filter wuerde preserve-3d flach machen) */
.sho-hero-cover::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 7%;
  left: 50%;
  width: 60%;
  height: 30px;
  transform: translateX(-52%);
  background: rgba(0, 0, 0, 0.5);
  filter: blur(22px);
  border-radius: 50%;
}
.sho-book {
  --bw: clamp(190px, 26vw, 300px);   /* Breite der Vorderseite */
  --bd: 34px;                        /* Buchdicke (Ruecken) */
  --r: 4px;
  position: relative;
  z-index: 1;
  width: var(--bw);
  aspect-ratio: 2 / 3;
  transform-style: preserve-3d;
  transform: rotateX(4deg) rotateY(-26deg);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sho-book:hover { transform: rotateX(2deg) rotateY(-14deg); }
.sho-book__face { position: absolute; }
.sho-book__cover,
.sho-book__back { inset: 0; overflow: hidden; }
.sho-book__cover {
  transform: translateZ(calc(var(--bd) / 2));
  background: #0e1316;
  border-radius: 2px var(--r) var(--r) 2px;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.28), inset 6px 0 14px rgba(0, 0, 0, 0.45);
}
.sho-book__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sho-book__back {
  transform: rotateY(180deg) translateZ(calc(var(--bd) / 2));
  border-radius: var(--r) 2px 2px var(--r);
  background: linear-gradient(135deg, #12181c, #0a0e10);
}
.sho-book__spine {
  width: var(--bd);
  height: 100%;
  left: 50%;
  top: 0;
  margin-left: calc(var(--bd) / -2);
  transform: translateX(calc(var(--bw) / -2)) rotateY(-90deg);
  background: linear-gradient(180deg, #171c1f 0%, #0d1113 100%);
  border-radius: 2px 0 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sho-book__spine span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  white-space: nowrap;
}
.sho-book__pages {
  width: var(--bd);
  height: 96%;
  top: 2%;
  left: 50%;
  margin-left: calc(var(--bd) / -2);
  transform: translateX(calc(var(--bw) / 2)) rotateY(90deg);
  background: repeating-linear-gradient(90deg, #efede4 0 1px, #d3d0c4 1px 3px);
  border-radius: 0 1px 1px 0;
}

/* ============ 02 · BULLET-BLOCK ============ */
.sho-bullets {
  padding: clamp(2rem, 6vw, 4rem) var(--gutter) clamp(3rem, 7vw, 5rem);
}
.sho-bullet-list {
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.sho-li-lg {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--color-text);
  padding-left: 2.4rem;
}
.sho-li-lg::before { top: 0.1em; width: 1.6rem; height: 1.6rem; }

/* ============ 03 · MINI-FOOTER ============ */
.sho-footer {
  flex: 0 0 auto;
  border-top: var(--border-thin);
  padding: var(--space-5) var(--gutter);
}
.sho-footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3) var(--space-5);
  font-size: var(--fs-sm);
  color: var(--color-text-subtle);
}
.sho-footer-legal { display: flex; gap: var(--space-5); }
.sho-footer-legal a,
.sho-footer-brand a { color: var(--color-text-muted); }
.sho-footer-legal a:hover { color: var(--color-accent); }
.sho-footer-copy { color: var(--color-text-faint); }

/* ============ STICKY-CTA (nur Mobile) ============ */
.sho-sticky-cta { display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .sho-hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  /* Mobile: Cover oben, Text/Form drunter (Briefing) */
  .sho-hero-cover { order: -1; padding: var(--space-4) 0; }
  .sho-book {
    --bw: 210px;
    --bd: 30px;
    transform: rotateX(3deg) rotateY(-18deg);
  }
  .sho-form { max-width: 100%; }

  /* Sticky-CTA einblenden */
  .sho-sticky-cta {
    display: block;
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    z-index: var(--z-nav);
    padding: 0.85rem 1.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-base);
    color: var(--color-bg);
    background: var(--color-accent);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .sho-sticky-cta.is-hidden {
    opacity: 0;
    transform: translate(-50%, 160%);
    pointer-events: none;
  }
}

@media (max-width: 600px) {
  .sho-bullets { padding-top: clamp(1.25rem, 5vw, 2.25rem); }
  .sho-bullet-list { gap: var(--space-3); max-width: 28rem; }
  .sho-li-lg { font-size: var(--fs-base); padding-left: 1.95rem; line-height: 1.4; }
  .sho-li-lg::before { width: 1.25rem; height: 1.25rem; top: 0.12em; }
  .sho-announce-inner { font-size: var(--fs-xs); padding: 0.5rem var(--gutter); gap: 0.3rem 0.8rem; }
  .sho-countdown { min-width: 4.4em; }
}

@media (max-width: 480px) {
  .sho-book { --bw: 168px; --bd: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .sho-book { transition: none; }
}
