:root {
  --glass-bg: rgba(255,255,255,0.12);
  --glass-border: rgba(255,255,255,0.25);
  --glass-shadow: 0 8px 40px rgba(0,0,0,0.18);
  --blur: blur(22px);
  --accent: #a78bfa;
  --accent2: #38bdf8;
  --text: #f0f4ff;
  --text-muted: rgba(240,244,255,0.6);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0d0221 0%, #0a1628 35%, #0c2340 60%, #1a0533 100%);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Ambient orbs ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}
.orb1 { width: 600px; height: 600px; background: radial-gradient(circle, #7c3aed, transparent 70%); top: -120px; left: -100px; animation-delay: 0s; }
.orb2 { width: 500px; height: 500px; background: radial-gradient(circle, #0ea5e9, transparent 70%); top: 30%; right: -80px; animation-delay: -6s; }
.orb3 { width: 400px; height: 400px; background: radial-gradient(circle, #6d28d9, transparent 70%); bottom: 0; left: 30%; animation-delay: -12s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

/* ── Glass ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ── Navbar ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(10,10,30,0.55);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #c4b5fd, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo span { font-weight: 300; }

nav ul { list-style: none; display: flex; gap: 32px; }
nav ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--text); }

.nav-actions { display: flex; gap: 12px; align-items: center; }

/* ── Buttons ── */
.btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(124,58,237,0.55); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 80px;
}
.hero-text { flex: 1; max-width: 580px; }

/* Zentrierte Hero-Variante */
.hero-centered {
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  min-height: 70vh;
}
.hero-text-centered {
  max-width: 720px;
  flex: none;
}
.hero-text-centered h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero-text-centered .hero-sub {
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 36px;
}
.hero-cta-centered {
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.4);
  font-size: 0.78rem;
  font-weight: 600;
  color: #c4b5fd;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge::before { content: '●'; font-size: 0.6em; }

h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
h1 .gradient {
  background: linear-gradient(90deg, #c4b5fd 0%, #7dd3fc 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn { padding: 13px 28px; font-size: 1rem; }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 52px;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #c4b5fd, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-lbl { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* Hero visual */
.hero-visual { flex: 0 0 420px; position: relative; height: 480px; }
.hero-card { position: absolute; padding: 28px; width: 320px; }
.hero-card.main  { top: 20px; left: 0; }
.hero-card.float1 { top: -10px; right: -20px; width: 200px; padding: 18px; }
.hero-card.float2 { bottom: 30px; right: 10px; width: 220px; padding: 18px; }

.peptide-img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(14,165,233,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}
.card-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.card-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.card-price {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #c4b5fd, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-purity { font-size: 0.78rem; color: #4ade80; font-weight: 600; margin-top: 4px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.card-mg { font-size: 0.72rem; color: var(--text-muted); }

.float-badge { display: flex; align-items: center; gap: 10px; }
.float-icon { font-size: 1.6rem; }
.float-title { font-size: 0.82rem; font-weight: 700; }
.float-sub { font-size: 0.72rem; color: var(--text-muted); }

/* ── Sections ── */
section { padding: 100px 48px; position: relative; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a78bfa;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 500px; line-height: 1.7; margin-bottom: 52px; }
.section-center { text-align: center; max-width: 600px; margin: 0 auto 52px; }

/* ── Products ── */
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }

.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  transition: all 0.2s;
}
.pill.active,
.pill:hover {
  background: rgba(124,58,237,0.25);
  border-color: rgba(124,58,237,0.5);
  color: #c4b5fd;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-card {
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.22);
}
.product-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(14,165,233,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.product-img--blue   { background: linear-gradient(135deg, rgba(14,165,233,0.3),  rgba(124,58,237,0.2)); }
.product-img--green  { background: linear-gradient(135deg, rgba(74,222,128,0.2),  rgba(14,165,233,0.2)); }
.product-img--yellow { background: linear-gradient(135deg, rgba(251,191,36,0.2),  rgba(124,58,237,0.2)); }
.product-img--red    { background: linear-gradient(135deg, rgba(239,68,68,0.18),  rgba(124,58,237,0.2)); }
.product-img--gold   { background: linear-gradient(135deg, rgba(124,58,237,0.3),  rgba(251,191,36,0.15)); }

.product-body { padding: 20px 22px; }
.product-category { font-size: 0.7rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.product-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.product-cas { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; font-family: 'SF Mono', 'Consolas', monospace; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #c4b5fd, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-purity {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
  font-weight: 600;
}
.add-btn {
  margin-top: 14px;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.35);
  color: #c4b5fd;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}
.add-btn:hover { background: rgba(124,58,237,0.4); }

/* ── COA Banner ── */
.coa-banner {
  margin: 0 48px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.coa-text { flex: 1; }
.coa-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.coa-sub { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.coa-cta { margin-top: 24px; }

.coa-chart {
  flex: 0 0 200px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 10px;
}
.bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, rgba(124,58,237,0.6), rgba(14,165,233,0.4));
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── Features ── */
.features { background: rgba(255,255,255,0.02); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card { padding: 28px 26px; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(14,165,233,0.2));
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── Footer ── */
footer {
  padding: 60px 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { font-size: 1.1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; margin-top: 14px; max-width: 260px; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(240,244,255,0.7); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  padding: 24px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.disclaimer {
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.78rem;
  color: rgba(251,191,36,0.8);
  margin-top: 16px;
  line-height: 1.5;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.4); border-radius: 3px; }

/* ── Logo image ── */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
/* keep text fallback class for footer */
.logo-name { font-weight: 700; }

/* ── Shared section center ── */
.section-center { text-align: center; max-width: 600px; margin: 0 auto 52px; }

/* ── Nav logo link ── */
a.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { height: 46px; width: auto; display: block; }

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  padding: 16px 48px;
  background: rgba(8, 5, 22, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-info { display: flex; align-items: flex-start; gap: 14px; flex: 1; }
.cookie-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.cookie-text { font-size: 0.82rem; color: rgba(240,244,255,0.65); line-height: 1.6; }
.cookie-text strong { color: rgba(240,244,255,0.9); }
.cookie-text a { color: #a78bfa; text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-accept {
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(124,58,237,0.35);
}
.cookie-accept:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(124,58,237,0.5); }
.cookie-essential {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(240,244,255,0.7);
}
.cookie-essential:hover { background: rgba(255,255,255,0.13); }
