/* =====================================================================
   Verkaufsseite heremysocials.com
   Baut auf den Tokens aus style.css auf — keine zweite Farbwelt, keine
   zweite Schrift. Was hier steht, ist nur der Massstab: das Panel ist
   dicht (13px), eine Verkaufsseite braucht Luft.
   Alles haengt an .landing, damit nichts davon ins Panel zurueckschlaegt.
   ===================================================================== */

body.landing {
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Der Lichtschein aus dem Panel sitzt fix ueber dem gesamten Fenster und
   wuerde hier ueber dem Globus liegen. */
body.landing::before { display: none; }

.landing ::selection { background: var(--accent-soft); }

.lp-wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

.landing h1, .landing h2, .landing h3 { letter-spacing: -0.025em; line-height: 1.12; margin: 0; }
.landing h1 { font-size: clamp(34px, 7.2vw, 62px); font-weight: 700; }
.landing h2 { font-size: clamp(27px, 4.6vw, 40px); font-weight: 680; }
.landing h3 { font-size: 18px; font-weight: 640; letter-spacing: -0.015em; }
.landing p { margin: 0; }

.lp-section { padding: clamp(64px, 9vw, 112px) 0; position: relative; }
.lp-section + .lp-section { border-top: 1px solid var(--border); }
.lp-head { max-width: 680px; margin-bottom: clamp(32px, 5vw, 56px); }
.lp-head p { color: var(--muted); font-size: clamp(15px, 2vw, 18px); margin-top: 14px; }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 650; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--accent-text); margin-bottom: 16px;
}
.lp-eyebrow::before {
  content: ''; width: 18px; height: 1px; background: var(--accent); opacity: 0.7;
}

/* Schaltflaechen: gleiche Klassen wie im Panel, nur groesser. */
.landing .btn { font-size: 14px; padding: 11px 18px; border-radius: var(--radius); }
.landing .btn-lg { font-size: 15.5px; padding: 14px 26px; font-weight: 600; border-radius: 12px; }
.landing .btn-primary { box-shadow: 0 6px 24px rgba(99, 102, 241, 0.35); }
.landing .btn-primary:hover { box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45); }
.landing .btn-ghost { background: transparent; border-color: var(--border-light); }
.landing .btn-ghost:hover { background: var(--hover-tint); }

.lp-link {
  color: var(--accent-text); text-decoration: none; font-weight: 550;
  border-bottom: 1px solid rgba(165, 180, 252, 0.3); padding-bottom: 1px;
}
.lp-link:hover { border-bottom-color: var(--accent-text); }

/* ---------------------------------------------------------------------
   Kopfzeile
   --------------------------------------------------------------------- */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: var(--sp-5);
  padding: 12px max(20px, env(safe-area-inset-left));
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transform: translateY(-100%);
  /* Ohne visibility bliebe der Schatten der Schaltflaeche als Schimmer am
     oberen Rand stehen, obwohl die Leiste ausgefahren ist. */
  visibility: hidden;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms, visibility 0s linear 260ms;
}
.lp-nav.visible {
  transform: none; visibility: visible; border-bottom-color: var(--border);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms, visibility 0s;
}
.lp-nav .brand { display: flex; align-items: center; gap: var(--sp-2); text-decoration: none; color: var(--text); }
.lp-nav .brand img { width: 28px; height: 28px; filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.28)); }
.lp-nav-links { display: flex; gap: 22px; margin-left: auto; }
.lp-nav-links a { color: var(--muted-2); text-decoration: none; font-size: 14px; transition: color var(--transition); }
.lp-nav-links a:hover { color: var(--text); }
.lp-nav .nav-cta { display: flex; align-items: center; gap: 10px; }

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.lp-hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 96px 20px 56px;
  text-align: center;
  overflow: hidden;
}

.lp-globe {
  position: absolute; z-index: 0; pointer-events: none;
  top: 50%; left: 50%; transform: translate(-50%, -52%);
  width: min(880px, 128vw); aspect-ratio: 1;
  opacity: 0; transition: opacity 900ms ease;
}
.lp-globe.ready { opacity: 1; }
.lp-globe canvas, .lp-globe img { width: 100%; height: 100%; display: block; }
.lp-globe img { object-fit: contain; opacity: 0.85; }

/* Der Verlauf sitzt zwischen Globus und Text: ohne ihn steht heller Text
   auf hellen Punkten. */
.lp-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(68% 48% at 50% 45%, rgba(11, 15, 30, 0.8) 0%, rgba(11, 15, 30, 0.4) 55%, transparent 100%),
    linear-gradient(180deg, var(--bg) 0%, transparent 22%, transparent 62%, var(--bg) 100%);
}

.lp-hero-inner { position: relative; z-index: 2; width: 100%; max-width: 860px; }

.lp-hero .brand-lockup { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 30px; }
.lp-hero .brand-lockup img { width: 44px; height: 44px; filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.32)); }
.lp-hero .wordmark { font-size: 24px; }

.lp-hero h1 { margin-bottom: 20px; }
.lp-hero h1 .hl {
  background: linear-gradient(94deg, var(--brand), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-sub {
  color: var(--muted); font-size: clamp(15px, 2.3vw, 19px);
  max-width: 620px; margin: 0 auto 32px;
}

.lp-cta-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.lp-microtrust {
  margin-top: 22px; color: var(--muted-2); font-size: 12.5px;
  display: flex; align-items: center; justify-content: center; gap: 8px 14px; flex-wrap: wrap;
}
.lp-microtrust span { display: inline-flex; align-items: center; gap: 6px; }
.lp-microtrust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(34, 197, 94, 0.7); }

/* Video */
.lp-video { position: relative; z-index: 2; width: 100%; max-width: 780px; margin: clamp(36px, 6vw, 60px) auto 0; }
.lp-video-frame {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-light);
  background: linear-gradient(160deg, var(--card) 0%, var(--card-end) 100%);
  box-shadow: var(--shadow-lg);
}
.lp-video-frame video, .lp-video-frame img.poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-video-frame .placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 10px;
  color: var(--muted-2); font-size: 13px; text-align: center; padding: 20px;
}
.lp-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(11, 15, 30, 0.35); border: 0; cursor: pointer; width: 100%; padding: 0;
  transition: background var(--transition);
}
.lp-play:hover { background: rgba(11, 15, 30, 0.2); }
.lp-play .disc {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 34px rgba(99, 102, 241, 0.5);
  transition: transform var(--transition);
}
.lp-play:hover .disc { transform: scale(1.06); }
.lp-play svg { width: 26px; height: 26px; fill: currentColor; stroke: none; margin-left: 3px; }
.lp-video-note { color: var(--muted-2); font-size: 12px; text-align: center; margin-top: 12px; }

/* ---------------------------------------------------------------------
   Zahlenleiste
   --------------------------------------------------------------------- */
.lp-proof { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--sunken); }
.lp-proof .lp-wrap { padding-top: 34px; padding-bottom: 34px; }
.lp-proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4);
  text-align: center;
}
.lp-proof .num {
  font-size: clamp(22px, 3.4vw, 30px); font-weight: 700; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, var(--brand), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-proof .cap { font-size: 11.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }
.lp-proof-line { text-align: center; color: var(--muted); font-size: 14px; margin-top: 26px; }

/* ---------------------------------------------------------------------
   Problem
   --------------------------------------------------------------------- */
.lp-problem-copy { max-width: 680px; color: var(--muted); font-size: clamp(15px, 2vw, 18px); display: grid; gap: 18px; }
.lp-problem-copy strong { color: var(--text); font-weight: 600; }
.lp-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); margin-top: clamp(32px, 5vw, 48px); }
.lp-pain { padding: var(--sp-5); border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); }
.lp-pain .icon-wrap {
  width: 40px; height: 40px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--red-soft); color: var(--red-text); margin-bottom: 14px;
}
.lp-pain h3 { margin-bottom: 7px; font-size: 16px; }
.lp-pain p { color: var(--muted-2); font-size: 14px; }

/* ---------------------------------------------------------------------
   Loesung
   --------------------------------------------------------------------- */
.lp-usp { display: grid; gap: clamp(56px, 8vw, 96px); }
.lp-usp-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.lp-usp-row.flip .lp-usp-visual { order: -1; }
.lp-usp-copy p { color: var(--muted); font-size: clamp(15px, 1.8vw, 17px); margin-top: 18px; }
.lp-usp-copy h2 { margin-bottom: 4px; }
.lp-promise {
  margin-top: 24px; padding: 16px 18px; border-radius: var(--radius);
  background: var(--accent-soft); border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--text); font-size: 15px; font-weight: 550;
}
.lp-foot-note { color: var(--muted-2); font-size: 12.5px; margin-top: 18px; line-height: 1.55; }

/* Zwei Telefone nebeneinander: links die Falle, rechts der echte Browser */
.lp-phones { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lp-phone {
  border-radius: 22px; border: 1px solid var(--border-light); overflow: hidden;
  background: linear-gradient(160deg, var(--card) 0%, var(--card-end) 100%);
  box-shadow: var(--shadow);
}
.lp-phone.good { border-color: rgba(99, 102, 241, 0.45); box-shadow: 0 12px 40px rgba(99, 102, 241, 0.18); }
.lp-phone-bar {
  display: flex; align-items: center; gap: 6px; padding: 9px 11px;
  border-bottom: 1px solid var(--border); font-size: 10.5px; color: var(--muted-2);
  background: var(--bg-elevated);
}
.lp-phone-bar .pill {
  flex: 1; background: var(--sunken); border-radius: 999px; padding: 3px 9px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.lp-phone-body { padding: 16px 14px 20px; display: grid; gap: 10px; }
.lp-phone-title { font-size: 13px; font-weight: 600; }
.lp-fake-field {
  height: 30px; border-radius: 8px; border: 1px solid var(--border-light); background: var(--bg-elevated);
  display: flex; align-items: center; padding: 0 10px; font-size: 11px; color: var(--placeholder);
}
.lp-fake-field.filled { color: var(--muted); border-color: rgba(99, 102, 241, 0.4); background: var(--accent-soft); }
.lp-fake-btn {
  height: 32px; border-radius: 8px; display: grid; place-items: center;
  font-size: 11.5px; font-weight: 600; color: #fff; background: var(--accent);
}
.lp-fake-btn.dead { background: var(--track); color: var(--muted-2); }
.lp-phone-tag {
  display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.lp-phone-tag.bad { color: var(--red-text); }
.lp-phone-tag.good { color: var(--green-text); }
.lp-phone-note { font-size: 11.5px; color: var(--muted-2); line-height: 1.5; }

/* Ablauf des Sprungs aus der App */
.lp-flow { display: grid; gap: 12px; }
.lp-flow-step {
  display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start;
  padding: 16px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card);
}
.lp-flow-step .n {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-text); font-weight: 700; font-size: 14px;
}
.lp-flow-step h4 { margin: 0 0 4px; font-size: 14.5px; font-weight: 600; }
.lp-flow-step p { color: var(--muted-2); font-size: 13.5px; }

/* ---------------------------------------------------------------------
   Funktionen
   --------------------------------------------------------------------- */
.lp-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.lp-feature {
  padding: var(--sp-5); border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--card) 0%, var(--card-end) 100%);
  transition: border-color var(--transition), transform var(--transition);
}
.lp-feature:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.lp-feature .icon-wrap {
  width: 38px; height: 38px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-text); margin-bottom: 14px;
}
.lp-feature h3 { font-size: 15.5px; margin-bottom: 6px; }
.lp-feature p { color: var(--muted-2); font-size: 13.5px; }

/* ---------------------------------------------------------------------
   Ablauf
   --------------------------------------------------------------------- */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); counter-reset: step; }
.lp-step { position: relative; padding-top: 52px; }
/* Die Ziffer als gefuellte Marke statt als Konturschrift: eine dünne
   Outline in 64px liest sich je nach Schriftschnitt wie ein Sonderzeichen. */
.lp-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px; font-weight: 700; line-height: 1;
  color: var(--accent-text);
  background: var(--accent-soft);
  border: 1px solid rgba(99, 102, 241, 0.35);
}
/* Verbindungslinie zwischen den Schritten — endet vor der letzten Ziffer. */
.lp-step:not(:last-child)::after {
  content: ''; position: absolute; top: 19px; left: 46px; right: calc(-1 * var(--sp-5) + 6px);
  height: 1px; background: linear-gradient(90deg, rgba(99, 102, 241, 0.35), transparent);
}
.lp-step h3 { margin-bottom: 8px; position: relative; }
.lp-step p { color: var(--muted-2); font-size: 14.5px; position: relative; }

/* ---------------------------------------------------------------------
   Tarife
   --------------------------------------------------------------------- */
.lp-price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); align-items: stretch; }
.lp-price {
  display: flex; flex-direction: column;
  padding: var(--sp-5); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--card) 0%, var(--card-end) 100%);
  position: relative;
}
.lp-price .tier { font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted-2); font-weight: 600; }
.lp-price .amount { font-size: 38px; font-weight: 700; letter-spacing: -0.035em; margin-top: 12px; line-height: 1; }
.lp-price .amount span { font-size: 15px; font-weight: 500; color: var(--muted-2); letter-spacing: 0; }
.lp-price .links { margin-top: 10px; font-size: 15px; font-weight: 600; }
.lp-price .per { margin-top: 4px; font-size: 12.5px; color: var(--muted-2); font-variant-numeric: tabular-nums; }
.lp-price .blurb { margin-top: 14px; font-size: 13.5px; color: var(--muted-2); flex: 1; }
.lp-price .btn { margin-top: 20px; width: 100%; justify-content: center; }
.lp-price .badge { position: absolute; top: -10px; left: var(--sp-5); }

/* Der 20er-Tarif ist der Anker: er steht hoeher, traegt die Akzentfarbe
   und ist die einzige Karte mit gefuellter Schaltflaeche. */
.lp-price.featured {
  border-color: var(--accent);
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.32), 0 20px 50px rgba(99, 102, 241, 0.16);
  background: linear-gradient(160deg, #182046 0%, var(--card-end) 100%);
  transform: translateY(-10px);
}
.lp-price.value { border-color: rgba(99, 102, 241, 0.35); }
.lp-price .savings { margin-top: 8px; font-size: 12px; font-weight: 600; color: var(--green-text); }
.lp-price.custom { background: var(--card); }
.lp-price.custom .amount { font-size: 26px; color: var(--muted); }

.lp-included {
  margin-top: clamp(28px, 4vw, 44px); padding: var(--sp-5);
  border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--sunken);
}
.lp-included h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted-2); margin-bottom: 16px; }
.lp-included ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 22px; }
.lp-included li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--muted); }
.lp-included .icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ---------------------------------------------------------------------
   Vergleich
   --------------------------------------------------------------------- */
.lp-table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.lp-compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--card); }
.lp-compare th, .lp-compare td { padding: 14px 16px; text-align: left; font-size: 13.5px; border-bottom: 1px solid var(--row-border); white-space: normal; }
.lp-compare thead th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); background: var(--bg-elevated); position: static; }
.lp-compare thead th.us { color: var(--accent-text); }
.lp-compare tbody tr:last-child td { border-bottom: 0; }
.lp-compare td.us { background: rgba(99, 102, 241, 0.07); color: var(--text); font-weight: 550; }
.lp-compare td.them { color: var(--muted-2); }
.lp-compare .row-label { font-weight: 550; color: var(--text); }

/* ---------------------------------------------------------------------
   Fragen
   --------------------------------------------------------------------- */
.lp-faq { display: grid; gap: 10px; max-width: 820px; }
.lp-faq details {
  border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--card);
  transition: border-color var(--transition);
}
.lp-faq details[open] { border-color: var(--border-light); }
.lp-faq summary {
  cursor: pointer; list-style: none; padding: 18px 20px;
  font-size: 15.5px; font-weight: 600; display: flex; align-items: center; gap: 14px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: ''; margin-left: auto; flex-shrink: 0;
  width: 9px; height: 9px; border-right: 2px solid var(--muted-2); border-bottom: 2px solid var(--muted-2);
  transform: rotate(45deg) translateY(-2px); transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.lp-faq .answer { padding: 0 20px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------------------------------------------------------------------
   Abschluss und Fusszeile
   --------------------------------------------------------------------- */
.lp-final { text-align: center; }
.lp-final-box {
  padding: clamp(40px, 6vw, 72px) var(--sp-5);
  border: 1px solid rgba(99, 102, 241, 0.35); border-radius: var(--radius-xl);
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(99, 102, 241, 0.18) 0%, transparent 65%),
    linear-gradient(160deg, var(--card) 0%, var(--card-end) 100%);
}
.lp-final h2 { margin-bottom: 16px; }
.lp-final p { color: var(--muted); font-size: clamp(15px, 2vw, 18px); margin-bottom: 30px; }
.lp-final .fineprint { font-size: 12.5px; color: var(--muted-2); margin: 18px 0 0; }

.lp-footer { border-top: 1px solid var(--border); padding: 44px 0 max(44px, env(safe-area-inset-bottom)); }
.lp-footer-top { display: flex; justify-content: space-between; gap: var(--sp-5); flex-wrap: wrap; }
.lp-footer .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.lp-footer .brand img { width: 26px; height: 26px; filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.28)); }
.lp-footer .tagline { color: var(--muted-2); font-size: 13px; margin-top: 12px; max-width: 360px; }
.lp-footer nav { display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-start; }
.lp-footer nav a { color: var(--muted-2); font-size: 13.5px; text-decoration: none; }
.lp-footer nav a:hover { color: var(--text); }
.lp-footer .copy { color: var(--muted-2); font-size: 12px; margin-top: 32px; }

/* Feste Leiste am unteren Rand, nur auf dem Telefon */
.lp-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: none; align-items: center; gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transform: translateY(110%); transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-sticky.visible { transform: none; }
.lp-sticky .price { font-size: 13px; color: var(--muted-2); line-height: 1.3; }
.lp-sticky .price b { color: var(--text); font-size: 15px; display: block; font-weight: 650; }
.lp-sticky .btn { margin-left: auto; }

/* ---------------------------------------------------------------------
   Einblenden beim Scrollen
   --------------------------------------------------------------------- */
/* Versteckt wird nur, wenn landing.js laeuft und den Beobachter wirklich
   aufsetzt (html.js-reveal). Ohne Skript ist die Seite vollstaendig da. */
.js-reveal .reveal { opacity: 0; transform: translateY(14px); }
.js-reveal .reveal.in { opacity: 1; transform: none; transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1), transform 420ms cubic-bezier(0.16, 1, 0.3, 1); }

/* ---------------------------------------------------------------------
   Bestellung
   --------------------------------------------------------------------- */
.lp-order { min-height: 100svh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.lp-order-box { width: 440px; max-width: 100%; }
.lp-order-card {
  padding: var(--sp-6); border-radius: var(--radius-xl);
  border: 1px solid var(--border); background: linear-gradient(160deg, var(--card) 0%, var(--card-end) 100%);
  box-shadow: var(--shadow-lg);
}
.lp-order .brand-lockup { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 26px; }
.lp-order .brand-lockup img { width: 34px; height: 34px; filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.3)); }
.lp-order h1 { font-size: 22px; margin-bottom: 8px; }
.lp-order .sub { color: var(--muted-2); font-size: 13.5px; margin-bottom: 24px; }
.lp-order-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius); background: var(--accent-soft);
  border: 1px solid rgba(99, 102, 241, 0.3); margin-bottom: 22px;
}
.lp-order-summary .what { font-size: 14px; font-weight: 600; }
.lp-order-summary .per { font-size: 12px; color: var(--muted-2); margin-top: 2px; }
.lp-order-summary .amount { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; }
.lp-order-summary .amount span { font-size: 12px; font-weight: 500; color: var(--muted-2); }
.lp-order .field { margin-bottom: 14px; }
.lp-order label { display: block; font-size: 12.5px; color: var(--muted-2); margin-bottom: 6px; }
.lp-order input { width: 100%; padding: 10px 12px; font-size: 14px; }
.lp-order .hint { font-size: 11.5px; color: var(--muted-2); margin-top: 6px; }
.lp-order .btn { width: 100%; justify-content: center; margin-top: 8px; }
.lp-order .error { color: var(--red-text); font-size: 13px; margin-top: 12px; min-height: 18px; }
.lp-order .legal { font-size: 11.5px; color: var(--muted-2); margin-top: 18px; text-align: center; line-height: 1.5; }
.lp-order .legal a { color: var(--accent-text); }
.lp-honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.lp-status-icon {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 20px;
  background: var(--accent-soft); color: var(--accent-text);
}
.lp-status-icon.done { background: var(--green-soft); color: var(--green-text); }
.lp-status-icon .spinning { animation: spin 900ms linear infinite; }
.lp-order-steps { display: grid; gap: 10px; margin: 22px 0 0; text-align: left; }
.lp-order-steps li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted-2); list-style: none; }

/* ---------------------------------------------------------------------
   Schmale Fenster
   --------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .lp-feature-grid, .lp-included ul { grid-template-columns: repeat(2, 1fr); }
  .lp-price-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-price.featured { transform: none; }
  .lp-usp-row { grid-template-columns: 1fr; }
  .lp-usp-row.flip .lp-usp-visual { order: 0; }
}

@media (max-width: 760px) {
  .lp-nav-links { display: none; }
  .lp-nav { padding: 10px 16px; }
  .lp-pain-grid, .lp-steps { grid-template-columns: 1fr; }
  .lp-proof-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5) var(--sp-4); }
  .lp-feature-grid, .lp-included ul, .lp-price-grid { grid-template-columns: 1fr; }
  .lp-sticky { display: flex; }
  .lp-hero { padding-top: 72px; }
  .lp-section:last-of-type { padding-bottom: 120px; }
  .lp-footer { padding-bottom: 110px; }
  .lp-globe { width: 190vw; transform: translate(-50%, -56%); }
  .lp-phones { grid-template-columns: 1fr; }
  .landing .btn-lg { width: 100%; justify-content: center; }
  .lp-cta-row { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal, .js-reveal .reveal.in { opacity: 1; transform: none; transition: none; }
  .lp-nav, .lp-sticky { transition: none; }
}
