/* ──────────────────────────────────────────────────────────────
   salesclub — Shared Style (CI v1, identisch über alle Pages)
   ────────────────────────────────────────────────────────────── */

:root {
  --mint:    #52D9A4;
  --mint-d:  #2EC58A;
  --navy:    #0A2540;
  --navy-d:  #071828;
  --cyan:    #00C7BE;
  --violet:  #7B2FBE;
  --violet-d:#2A1050;
  --white:   #FFFFFF;
  --paper:   #FAFAF7;
  --warm:    #F0EDE5;
  --ink:     #0B0B0E;
  --ink-2:   #2A2A2E;
  --ink-3:   #6E6E73;
  --ink-4:   #B0B0B5;
  --line:    rgba(11,11,14,0.08);
  --line-2:  rgba(11,11,14,0.04);
  --surface: #F2F2F3;

  --grad-sc: linear-gradient(135deg, #071828 0%, #0D3D6B 45%, #52D9A4 100%);
  --grad-d:  linear-gradient(135deg, #2EC58A 0%, #52D9A4 50%, #00C7BE 100%);
  --grad-os: linear-gradient(135deg, #080E1C 0%, #2A1050 45%, #7B2FBE 100%);

  --font: -apple-system, "SF Pro Display", "SF Pro Text", BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --serif: "Tiempos Headline", "Times New Roman", "GT Sectra", Georgia, serif;
  --mono: "SF Mono", "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  cursor: none;
}
::selection { background: var(--mint); color: var(--navy-d); }
img { max-width: 100%; }

/* ──── CURSOR ──── */
.cursor-dot, .cursor-ring {
  position: fixed; top:0; left:0; pointer-events:none; z-index:9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
.cursor-dot { width:6px; height:6px; background:#fff; border-radius:50%; transition: transform 0.05s ease; }
.cursor-ring {
  width:36px; height:36px;
  border:1.2px solid rgba(255,255,255,0.55);
  border-radius:50%;
  transition: transform 0.16s cubic-bezier(0.34,1.56,0.64,1), width 0.18s, height 0.18s, background 0.2s, border-color 0.2s;
}
.cursor-ring.active { width:62px; height:62px; background:rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.92); }
@media (max-width:980px), (pointer:coarse) { body { cursor:auto; } .cursor-dot, .cursor-ring { display:none; } }

/* ──── SCROLL PROGRESS ──── */
.scroll-progress {
  position: fixed; top:0; left:0;
  height:2px; width:0%;
  background: var(--grad-d);
  z-index:200; box-shadow: 0 0 12px rgba(82,217,164,0.6);
  transition: width 0.08s linear;
}

/* ──── NAV ──── */
.nav-wrap {
  position: fixed; top:18px; left:0; right:0;
  z-index:100; display:flex; justify-content:center; pointer-events:none;
}
nav {
  pointer-events:auto;
  display:flex; align-items:center; gap:6px;
  padding: 8px 8px 8px 22px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  border: 0.5px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(11,11,14,0.06);
  transition: transform 0.3s, padding 0.3s;
}
nav.compact { transform: scale(0.97); padding: 6px 6px 6px 18px; }
/* ── LOGO ── jetzt als <img> im Markup, kein CSS-Background mehr. */
.nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding-right: 18px;
  border-right: 0.5px solid var(--line);
  margin-right: 10px;
  transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.7; }
footer .nav-brand {
  padding-right: 0;
  border-right: none;
  margin-right: 0;
}
@keyframes shimmer { 0%, 100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }
.nav-links { display:flex; gap:2px; list-style:none; align-items:center; }
.nav-links a {
  text-decoration:none; color:var(--ink-2);
  font-size:14px; font-weight:500;
  padding:9px 16px; border-radius:999px;
  transition: background 0.15s, color 0.15s;
  cursor:none;
}
.nav-links a:hover { background: rgba(11,11,14,0.05); color: var(--ink); }
.nav-links a.active { background: rgba(82,217,164,0.16); color: var(--ink); }
.nav-cta {
  text-decoration:none;
  background: var(--ink);
  color:#fff;
  font-size:14px; font-weight:600;
  padding:10px 20px; border-radius:999px;
  margin-left:6px;
  transition: background 0.15s;
  cursor:none;
}
.nav-cta:hover { background: var(--navy); }

/* ──── LAYOUT ──── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; }

/* ──── BUTTONS ──── */
.btn-primary {
  display:inline-flex; align-items:center; justify-content:center;
  background: var(--ink); color:#fff;
  padding: 18px 32px; border-radius: 999px;
  font-size: 16px; font-weight: 600;
  text-decoration: none; line-height: 1;
  transition: background 0.18s;
  cursor: none;
  box-shadow: 0 12px 32px rgba(11,11,14,0.18);
}
.btn-primary:hover { background: var(--navy); }
.btn-secondary {
  display:inline-flex; align-items:center; justify-content:center;
  padding: 18px 26px; border-radius: 999px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  border: 0.5px solid var(--line);
  color: var(--ink);
  font-size: 16px; font-weight: 600;
  text-decoration: none; line-height: 1;
  transition: background 0.15s, border-color 0.15s;
  cursor: none;
}
.btn-secondary:hover { background: #fff; border-color: rgba(11,11,14,0.2); }

/* ──── ANIMATIONEN ──── */
@keyframes meshFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-2%, 1.5%) scale(1.04); }
  66% { transform: translate(1.5%, -1.5%) scale(0.98); }
}
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes pulse { 0%, 100% { opacity:1; transform:scale(1);} 50% { opacity:0.45; transform:scale(0.8);} }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px);} to { opacity:1; transform:translateY(0);} }
@keyframes lineUp { from { opacity:0; transform:translateY(28px);} to { opacity:1; transform:translateY(0);} }

/* ──── SECTION GRUNDLAYOUT ──── */
section { padding: 140px 0; position: relative; }
section.warm { background: var(--warm); }
section.dark { background: var(--navy-d); color: #fff; }

.sec-meta {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  margin-bottom: 72px;
  align-items: start;
}
.sec-num {
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  padding-top: 14px;
  border-top: 1.5px solid var(--ink);
  text-transform: uppercase;
}
section.dark .sec-num { color: rgba(255,255,255,0.7); border-top-color: var(--mint); }

.sec-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.036em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 900px;
}
section.dark .sec-head h2 { color: #fff; }
h2 .grad {
  background: var(--grad-sc);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color: transparent;
}
section.dark h2 .grad {
  background: var(--grad-d);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color: transparent;
}
.sec-head .lead {
  font-size: 18.5px;
  color: var(--ink-2);
  max-width: 620px;
  line-height: 1.55;
  letter-spacing: -0.008em;
}
section.dark .sec-head .lead { color: rgba(255,255,255,0.72); }

/* ──── CTA BAND ──── */
.cta-band {
  padding: 160px 0;
  background: var(--navy-d);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 22% 35%, rgba(82,217,164,0.2), transparent 50%),
    radial-gradient(circle at 78% 70%, rgba(0,199,190,0.16), transparent 50%),
    radial-gradient(circle at 50% 12%, rgba(123,47,190,0.12), transparent 50%);
  animation: meshFloat 24s ease-in-out infinite;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  color: #fff;
  margin: 0 auto 26px;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 920px;
}
.cta-band h2 .grad {
  background: var(--grad-d);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-band p {
  font-size: 19px;
  color: rgba(255,255,255,0.74);
  margin: 0 auto 40px;
  max-width: 580px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.cta-band .btn-primary {
  background: #fff; color: var(--ink);
  padding: 20px 36px; font-size: 17px;
}
.cta-band .btn-primary:hover { background: var(--mint); color: var(--navy-d); }
.cta-meta {
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ──── FOOTER ──── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.62);
  padding: 80px 0 32px;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-brand { max-width: 340px; }
.foot-brand .nav-brand { color: #fff; padding: 0; border: none; margin: 0 0 16px; }
.foot-brand p { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.55); }
.foot-grid h5 {
  color: #fff;
  font-family: var(--mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-grid h5 + h5 { margin-top: 28px; }
.foot-grid ul { list-style: none; }
.foot-grid ul li { margin-bottom: 10px; font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.62); }
.foot-grid a { color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.15s; }
.foot-grid a:hover { color: var(--mint); }
.foot-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}
@media (max-width: 800px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: span 2; max-width: none; }
}

/* ──── TRUST-STRIP — zentral, einheitlich auf allen Sub-Pages ──── */
.trust-strip {
  padding: 72px 0;
  background: var(--paper);
  border-bottom: 0.5px solid var(--line-2);
}
.trust-label {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.trust-item {
  background: var(--white);
  border: 0.5px solid var(--line);
  border-radius: 18px;
  padding: 22px 22px 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.25s;
  display: flex; flex-direction: column;
  gap: 10px;
  min-height: 132px;
}
.trust-item:hover {
  border-color: rgba(82,217,164,0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11,11,14,0.06);
}
.trust-num {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.026em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.trust-num .grad {
  background: var(--grad-sc);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-meta {
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.35;
  margin-top: 4px;
}
.trust-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-top: auto;
}
.trust-foot {
  margin-top: 24px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-foot a { color: var(--mint-d); text-decoration: none; font-weight: 700; }
@media (max-width: 720px) {
  .trust-strip { padding: 48px 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 8px; }
}


.cta-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn-primary, .cta-actions .btn-secondary { width: 100%; }
}

/* ──── REVEAL ──── */
.reveal { opacity:0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(0.2,0.8,0.2,1), transform 0.7s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.visible { opacity:1; transform: translateY(0); }
.reveal-stagger > * { opacity:0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.2,0.8,0.2,1), transform 0.6s cubic-bezier(0.2,0.8,0.2,1); }
.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: 0.13s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: 0.21s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: 0.29s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay: 0.37s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay: 0.45s; }

/* ──── PAGE-HERO Variante (für Unterseiten) ──── */
.page-hero {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
  background: var(--paper);
}
.page-hero-mesh {
  position: absolute; inset: -20%;
  z-index: 0;
  filter: blur(60px);
  animation: meshFloat 28s ease-in-out infinite;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px);
  border: 0.5px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-2);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s 0.1s ease forwards;
}
.page-hero-eyebrow .icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 12px;
  letter-spacing: -0.04em;
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.2);
}
.page-hero-eyebrow .icon.s { background: var(--grad-sc); }
.page-hero-eyebrow .icon.d { background: var(--grad-d); }
.page-hero-eyebrow .icon.os { background: var(--grad-os); }
.page-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.042em;
  color: var(--ink);
  max-width: 1000px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1s 0.25s ease forwards;
}
.page-hero h1 .grad {
  background: var(--grad-sc);
  background-size: 220% 220%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 9s ease-in-out infinite;
}
.page-hero-sub {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 640px;
  letter-spacing: -0.012em;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 1s 0.45s ease forwards;
}
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s 0.65s ease forwards; }
.page-hero-foot {
  margin-top: 70px;
  padding-top: 26px;
  border-top: 0.5px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 0.85s ease forwards;
}
.page-hero-foot strong { color: var(--ink); font-weight: 700; }

/* ──── BACKLINK ──── */
.backlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 600;
  color: var(--ink-3);
  text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: color 0.15s;
}
.backlink:hover { color: var(--ink); }

/* ──── RESPONSIVE ──── */
@media (max-width: 980px) {
  body { cursor:auto; }
  .nav-wrap { top: 12px; }
  nav { padding: 6px 6px 6px 16px; }
  .nav-links { display: none; }
  .wrap { padding: 0 22px; }
  section { padding: 80px 0; }
  .sec-meta { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .page-hero { padding: 110px 0 70px; }
  .page-hero h1 { font-size: clamp(38px, 9vw, 56px); }
  .page-hero-foot { font-size: 11px; }
  .cta-band { padding: 90px 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
