/* ═══ LAYER 1: TOKENS + PREBUILT ═══ */
:root {
  /* Colors */
  --t-primary: #0F172A;
  --t-secondary: #1a2332;
  --t-accent: #10B981;
  --t-accent-hover: #10B981;
  --t-bg: #ffffff;
  --t-surface: #f8fafb;
  --t-text: #1e293b;
  --t-text-light: #ffffff;
  --t-heading: #0F172A;
  --t-muted: #64748b;
  --t-border: #e2e8f0;
  --t-dark-bg: #0F172A;
  --t-glass-bg: rgba(255,255,255,0.02);
  --t-glass-border: rgba(255,255,255,0.06);
  --t-gradient-start: #0F172A;
  --t-gradient-end: #0f5048;
  --t-success: #22c55e;
  --t-rating: #f59e0b;
  --t-error: #ef4444;

  /* Typography */
  --t-heading-font: 'Inter', system-ui, -apple-system, sans-serif;
  --t-body-font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Surfaces */
  --t-radius-sm: 6px;
  --t-radius-md: 12px;
  --t-radius-lg: 16px;
  --t-radius-xl: 28px;
  --t-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --t-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --t-shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }


/* ═══ PRESET BASE ═══ */
/* ═══════════════════════════════════════════════════════════════
   PRESET BASE — Shared structure for all style presets
   Applied AFTER prebuilt CSS, BEFORE specific preset CSS
   ═══════════════════════════════════════════════════════════════ */

/* Section theming — data-section-theme on each block wrapper */
[data-section-theme="dark"] {
  --_section-bg: var(--t-primary);
  --_section-text: #f1f5f9;
  --_section-heading: #ffffff;
  --_section-muted: #94a3b8;
  --_section-border: rgba(255,255,255,0.1);
  --_section-surface: rgba(255,255,255,0.04);
  background: var(--_section-bg);
  color: var(--_section-text);
}

[data-section-theme="light"] {
  --_section-bg: var(--t-bg, #ffffff);
  --_section-text: var(--t-text);
  --_section-heading: var(--t-heading);
  --_section-muted: var(--t-muted);
  --_section-border: var(--t-border);
  --_section-surface: var(--t-surface);
  background: var(--_section-bg);
  color: var(--_section-text);
}

[data-section-theme="surface"] {
  --_section-bg: var(--t-surface, #f8fafb);
  --_section-text: var(--t-text);
  --_section-heading: var(--t-heading);
  --_section-muted: var(--t-muted);
  --_section-border: var(--t-border);
  --_section-surface: #ffffff;
  background: var(--_section-bg);
  color: var(--_section-text);
}

/* Section theme headings inherit section color */
[data-section-theme] h1,
[data-section-theme] h2,
[data-section-theme] h3 {
  color: var(--_section-heading);
}

/* Overline/badge overflow protection — never clip labels */
[class*="__overline"],
[class*="__badge"],
[class*="__label"] {
  overflow: visible;
  white-space: normal;
  text-overflow: initial;
}

/* Consistent inner containers */
[class*="__inner"] {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Progressive enhancement — scroll animations only when JS confirms */
.t-animate-ready [data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.t-animate-ready [data-animate].t-visible {
  opacity: 1;
  transform: translateY(0);
}
.t-animate-ready [data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.t-animate-ready [data-animate-stagger].t-visible > *:nth-child(1) { transition-delay: 0ms; }
.t-animate-ready [data-animate-stagger].t-visible > *:nth-child(2) { transition-delay: 60ms; }
.t-animate-ready [data-animate-stagger].t-visible > *:nth-child(3) { transition-delay: 120ms; }
.t-animate-ready [data-animate-stagger].t-visible > *:nth-child(4) { transition-delay: 180ms; }
.t-animate-ready [data-animate-stagger].t-visible > *:nth-child(5) { transition-delay: 240ms; }
.t-animate-ready [data-animate-stagger].t-visible > *:nth-child(6) { transition-delay: 300ms; }
.t-animate-ready [data-animate-stagger].t-visible > *:nth-child(7) { transition-delay: 360ms; }
.t-animate-ready [data-animate-stagger].t-visible > *:nth-child(8) { transition-delay: 420ms; }
.t-animate-ready [data-animate-stagger].t-visible > * {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-animate], [data-animate-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Fluid section padding */
section[class^="block-"],
section[class*=" block-"] {
  padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 24px);
}

/* Smooth scrollbar */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══ PRESET: dark-premium ═══ */
/* ═══════════════════════════════════════════════════════════════
   DARK PREMIUM PRESET — Stripe/Linear inspired dark theme
   Cascades OVER prebuilt CSS via .preset-dark-premium wrapper
   Uses --t-* tokens from project config.json
   ═══════════════════════════════════════════════════════════════ */

/* ── Dark Section Styling ── */
.preset-dark-premium [data-section-theme="dark"] {
  background: linear-gradient(180deg, var(--t-primary) 0%, var(--t-secondary, var(--t-primary)) 100%);
  color: #f0f0f5;
  position: relative;
}
.preset-dark-premium [data-section-theme="dark"] h1,
.preset-dark-premium [data-section-theme="dark"] h2,
.preset-dark-premium [data-section-theme="dark"] h3 {
  color: #ffffff;
}
.preset-dark-premium [data-section-theme="dark"] p,
.preset-dark-premium [data-section-theme="dark"] span,
.preset-dark-premium [data-section-theme="dark"] li {
  color: #b4b4c0;
}

/* ── Light Section Styling ── */
.preset-dark-premium [data-section-theme="light"] {
  background: var(--t-bg, #ffffff);
}

/* ── Surface Section Styling ── */
.preset-dark-premium [data-section-theme="surface"] {
  background: var(--t-surface, #f8fafb);
}

/* ── Section Transitions (gradient fade between sections) ── */
.preset-dark-premium [data-section-theme="dark"] + [data-section-theme="light"],
.preset-dark-premium [data-section-theme="dark"] + [data-section-theme="surface"] {
  border-top: 1px solid rgba(0,0,0,0.06);
}
.preset-dark-premium [data-section-theme="light"] + [data-section-theme="dark"],
.preset-dark-premium [data-section-theme="surface"] + [data-section-theme="dark"] {
  border-top: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

/* ═══ NAV — Dark transparent with blur ═══ */
.preset-dark-premium .block-nav.block-nav {
  background: rgba(10, 15, 26, 0.8);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.preset-dark-premium .block-nav.block-nav.nav--scrolled {
  background: rgba(10, 15, 26, 0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.preset-dark-premium .nav__link {
  color: #b4b4c0;
  transition: color 0.2s ease;
}
.preset-dark-premium .nav__link:hover {
  color: #ffffff;
}
.preset-dark-premium .nav__cta {
  background: var(--t-accent);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.2);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.preset-dark-premium .nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}

/* ═══ HERO — Gradient mesh with glow orbs ═══ */
.preset-dark-premium .block-hero-gradient {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.preset-dark-premium .hero__heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.preset-dark-premium .hero__heading-accent {
  background: linear-gradient(135deg, var(--t-accent) 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.preset-dark-premium .hero__subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.7;
  color: #94a3b8;
  max-width: 600px;
}
.preset-dark-premium .hero__btn--primary {
  background: var(--t-accent);
  color: #ffffff;
  padding: 16px 32px;
  font-weight: 600;
  border-radius: var(--t-radius-md, 12px);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.25), 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.preset-dark-premium .hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.4), 0 8px 24px rgba(0,0,0,0.3);
}
.preset-dark-premium .hero__btn--ghost {
  color: #f0f0f5;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 32px;
  border-radius: var(--t-radius-md, 12px);
  transition: all 0.3s ease;
}
.preset-dark-premium .hero__btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
}
/* Hero orbs glow */
.preset-dark-premium .hero__orb {
  filter: blur(80px);
  opacity: 0.15;
}
.preset-dark-premium .hero__orb--1 { background: var(--t-accent); }
.preset-dark-premium .hero__orb--2 { background: var(--t-gradient-end, #164e3a); }
.preset-dark-premium .hero__orb--3 { background: #818cf8; }

/* Hero stats row */
.preset-dark-premium .hero__stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.preset-dark-premium .hero__stat-label {
  color: #64748b;
  font-size: 0.85rem;
}

/* ═══ STATS ROW — Dark with accent numbers ═══ */
.preset-dark-premium [data-section-theme="dark"] .stats__num {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
}
.preset-dark-premium [data-section-theme="dark"] .stats__num-accent {
  color: var(--t-accent);
}
.preset-dark-premium [data-section-theme="dark"] .stats__label {
  color: #94a3b8;
}

/* ═══ CARDS — Glassmorphism on light, solid on dark ═══ */
.preset-dark-premium [data-section-theme="light"] .cards__card,
.preset-dark-premium [data-section-theme="surface"] .cards__card {
  background: #ffffff;
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: var(--t-radius-lg, 16px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.preset-dark-premium [data-section-theme="light"] .cards__card:hover,
.preset-dark-premium [data-section-theme="surface"] .cards__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(34, 197, 94, 0.1);
}
.preset-dark-premium .cards__icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.preset-dark-premium .cards__card:hover .cards__icon {
  background: rgba(34, 197, 94, 0.15);
  transform: scale(1.05);
}
.preset-dark-premium .cards__icon svg {
  stroke: var(--t-accent);
  fill: none;
  stroke-width: 2;
  width: 24px;
  height: 24px;
}

/* ═══ CONTENT-SPLIT — Image badge glow ═══ */
.preset-dark-premium .cs__img-badge {
  background: var(--t-accent);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.3);
}
.preset-dark-premium .cs__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--t-accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.preset-dark-premium .cs__badge svg {
  fill: var(--t-accent);
  width: 18px;
  height: 18px;
}
.preset-dark-premium .cs__feat-icon {
  stroke: var(--t-accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.preset-dark-premium .cs__link {
  color: var(--t-accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.preset-dark-premium .cs__link:hover {
  gap: 10px;
}

/* ═══ RESEARCH EVIDENCE — Filter pills + card effects ═══ */
.preset-dark-premium .re__filter-btn {
  background: transparent;
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: 100px;
  padding: 8px 20px;
  font-weight: 500;
  color: var(--t-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}
.preset-dark-premium .re__filter-btn:hover {
  border-color: var(--t-accent);
  color: var(--t-accent);
}
.preset-dark-premium .re__filter-btn--active {
  background: var(--t-accent);
  border-color: var(--t-accent);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}
.preset-dark-premium .re__card {
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: var(--t-radius-lg, 16px);
  padding: 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.preset-dark-premium .re__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: rgba(34, 197, 94, 0.2);
}
.preset-dark-premium .re__card-badge {
  background: rgba(34, 197, 94, 0.08);
  color: var(--t-accent);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 4px 10px;
}

/* ═══ CERTIFICATIONS — Badge hover glow ═══ */
.preset-dark-premium .cb__badge {
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: var(--t-radius-md, 12px);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.preset-dark-premium .cb__badge:hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.preset-dark-premium .cb__badge-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.preset-dark-premium .cb__badge:hover .cb__badge-icon {
  opacity: 1;
}

/* ═══ TESTIMONIALS — Card with subtle border ═══ */
.preset-dark-premium .tc__card {
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: var(--t-radius-lg, 16px);
  transition: all 0.3s ease;
}
.preset-dark-premium .tc__card:hover {
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.preset-dark-premium .tc__stars svg {
  fill: var(--t-rating, #f59e0b);
  width: 16px;
  height: 16px;
}
.preset-dark-premium .tc__nav-btn {
  background: #ffffff;
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.preset-dark-premium .tc__nav-btn:hover {
  background: var(--t-accent);
  border-color: var(--t-accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}
.preset-dark-premium .tc__nav-btn:hover svg {
  stroke: #ffffff;
}

/* ═══ FAQ — Accordion styling ═══ */
.preset-dark-premium .faq__item {
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: var(--t-radius-md, 12px);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.preset-dark-premium .faq__item.faq--open {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.preset-dark-premium .faq__question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--t-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}
.preset-dark-premium .faq__question:hover {
  color: var(--t-accent);
}
.preset-dark-premium .faq__chevron {
  transition: transform 0.3s ease;
  stroke: var(--t-muted);
  flex-shrink: 0;
}
.preset-dark-premium .faq--open .faq__chevron {
  transform: rotate(180deg);
  stroke: var(--t-accent);
}

/* ═══ PRICING — Highlighted card with glow ═══ */
.preset-dark-premium .pr__card {
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: var(--t-radius-lg, 16px);
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.preset-dark-premium .pr__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.preset-dark-premium .pr__card--popular {
  border-color: var(--t-accent);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.12);
  position: relative;
}
.preset-dark-premium .pr__card--popular::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t-accent), #4ade80);
  border-radius: var(--t-radius-lg, 16px) var(--t-radius-lg, 16px) 0 0;
}
.preset-dark-premium .pr__btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--t-radius-md, 12px);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.preset-dark-premium .pr__card--popular .pr__btn {
  background: var(--t-accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}
.preset-dark-premium .pr__card--popular .pr__btn:hover {
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
  transform: translateY(-1px);
}
.preset-dark-premium .pr__card:not(.pr__card--popular) .pr__btn {
  background: transparent;
  border: 1px solid var(--t-border, #e2e8f0);
  color: var(--t-heading);
}
.preset-dark-premium .pr__card:not(.pr__card--popular) .pr__btn:hover {
  background: var(--t-surface, #f8fafb);
  border-color: var(--t-accent);
  color: var(--t-accent);
}
.preset-dark-premium .pr__badge {
  background: rgba(34, 197, 94, 0.08);
  color: var(--t-accent);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}

/* ═══ CTA FULL — Dark with gradient mesh ═══ */
.preset-dark-premium [data-section-theme="dark"].block-cta-full {
  position: relative;
  overflow: hidden;
}
.preset-dark-premium [data-section-theme="dark"].block-cta-full::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; right: -50%; bottom: -50%;
  background:
    radial-gradient(ellipse 600px 400px at 30% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 70% 30%, rgba(74, 222, 128, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.preset-dark-premium [data-section-theme="dark"].block-cta-full > * {
  position: relative;
  z-index: 1;
}

/* ═══ FOOTER — Dark with muted links ═══ */
.preset-dark-premium .block-footer {
  background: var(--t-primary, #0a0f1a);
  color: #94a3b8;
}
.preset-dark-premium .footer__heading {
  color: #f0f0f5;
  font-weight: 600;
}
.preset-dark-premium .footer__link {
  color: #94a3b8;
  transition: color 0.2s ease;
  text-decoration: none;
}
.preset-dark-premium .footer__link:hover {
  color: var(--t-accent);
}
.preset-dark-premium .footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #64748b;
}

/* ═══ FORM NEWSLETTER — Surface with accent focus ═══ */
.preset-dark-premium .fn__input {
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: var(--t-radius-md, 12px);
  padding: 14px 18px;
  font-size: 1rem;
  transition: all 0.25s ease;
  outline: none;
}
.preset-dark-premium .fn__input:focus {
  border-color: var(--t-accent);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
.preset-dark-premium .fn__btn {
  background: var(--t-accent);
  color: #ffffff;
  border: none;
  border-radius: var(--t-radius-md, 12px);
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.preset-dark-premium .fn__btn:hover {
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
  transform: translateY(-1px);
}

/* ═══ BACK-TOP — Accent ring ═══ */
.preset-dark-premium .bt__btn {
  background: var(--t-primary, #0a0f1a);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.preset-dark-premium .bt__ring-fg {
  stroke: var(--t-accent);
}

/* ═══ COMPARISON TABLE — Clean with highlight column ═══ */
.preset-dark-premium .cmp__th--highlight {
  background: rgba(34, 197, 94, 0.08);
  color: var(--t-accent);
}
.preset-dark-premium .cmp__td--highlight {
  background: rgba(34, 197, 94, 0.03);
}
.preset-dark-premium .cmp__check svg {
  stroke: var(--t-accent);
  stroke-width: 2.5;
}

/* ═══ DOSAGE GUIDE — Timeline accent ═══ */
.preset-dark-premium .dg__step-number {
  background: var(--t-accent);
  color: #ffffff;
  font-weight: 700;
}
.preset-dark-premium .dg__tip {
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: var(--t-radius-md, 12px);
  padding: 20px;
  transition: all 0.3s ease;
}
.preset-dark-premium .dg__tip:hover {
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* ═══ GLOBAL TYPOGRAPHY ═══ */
.preset-dark-premium h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.preset-dark-premium h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.preset-dark-premium h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
}

/* ═══ CUSTOM SCROLLBAR ═══ */
.preset-dark-premium ::-webkit-scrollbar { width: 8px; }
.preset-dark-premium ::-webkit-scrollbar-track { background: transparent; }
.preset-dark-premium ::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 4px;
}
.preset-dark-premium ::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.25);
}

/* ═══ GLOBAL LINK UNDERLINE ANIMATION ═══ */
.preset-dark-premium a:not([class]) {
  color: var(--t-accent);
  text-decoration: none;
  background-image: linear-gradient(var(--t-accent), var(--t-accent));
  background-size: 0% 1px;
  background-position: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.preset-dark-premium a:not([class]):hover {
  background-size: 100% 1px;
}

/* ═══ SVG ICON DEFAULTS ═══ */
.preset-dark-premium svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══ ANIMATION SYSTEM ═══ */
/* ═══════════════════════════════════════════════════════════════════════
   ANIMATION SYSTEM — Premium Motion Design Infrastructure
   ═══════════════════════════════════════════════════════════════════════
   Gebaseerd op research van 50+ premium design bronnen:
   Motion.dev, react-spring, Framer, Awwwards, Stripe, Linear, Vercel

   Principes:
   1. Custom easing per animatietype (nooit `ease` of `linear`)
   2. Stagger choreografie (60-100ms per element, sequentieel)
   3. Scroll-triggered reveals (IntersectionObserver, fire-once)
   4. Spring physics (overshoot+settle via cubic-bezier)
   5. Subtiele bewegingen (20-40px translate, 0.97-1.05 scale)
   6. Alleen transform + opacity (GPU-accelerated)
   7. prefers-reduced-motion altijd gerespecteerd
   ═══════════════════════════════════════════════════════════════════════ */

/* ═══ DESIGN TOKENS ═══ */
:root {
  /* Easing curves — de 5 premium standaarden */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);       /* Reveals, entries — fast in, gentle settle */
  --ease-snappy: cubic-bezier(0.165, 0.84, 0.44, 1);   /* Hover, micro-interactions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);    /* Overshoot/spring bounce */
  --ease-gentle: cubic-bezier(0.4, 0, 0.2, 1);         /* Background/decorative */
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);         /* Dramatic hero reveals */
  --ease-power: cubic-bezier(0.77, 0, 0.175, 1);       /* Clip-path reveals */

  /* Duration scale */
  --dur-micro: 150ms;    /* Hover, focus, active */
  --dur-fast: 250ms;     /* Tooltips, toggles */
  --dur-normal: 400ms;   /* Cards, buttons */
  --dur-reveal: 600ms;   /* Scroll reveal entry */
  --dur-slow: 800ms;     /* Hero, dramatic */
  --dur-epic: 1200ms;    /* Page transitions */

  /* Stagger */
  --stagger-step: 80ms;  /* Delay between items */
  --stagger-max: 600ms;  /* Max total stagger */
}


/* ═══ SCROLL REVEAL SYSTEM ═══
   Elementen met [data-reveal] zijn onzichtbaar tot JS ze triggert.
   Fire-once: eenmaal zichtbaar, altijd zichtbaar.
   ═══════════════════════════════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--dur-reveal) var(--ease-smooth),
    transform var(--dur-reveal) var(--ease-smooth);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="up-scale"] {
  transform: translateY(30px) scale(0.95);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}


/* ═══ STAGGER CHILDREN ═══
   Container met [data-reveal-stagger] activeert cascade op children.
   JS zet --stagger-i op elk kind-element.
   ═══════════════════════════════════════════════════════════════ */

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--dur-reveal) var(--ease-smooth),
    transform var(--dur-reveal) var(--ease-smooth);
  transition-delay: calc(var(--stagger-i, 0) * var(--stagger-step));
}

[data-reveal-stagger].is-revealed > * {
  opacity: 1;
  transform: none;
}


/* ═══ SPLIT TEXT REVEAL ═══
   Woorden animeren individueel in met stagger.
   JS splitst text in spans met .split-word en --word-i.
   ═══════════════════════════════════════════════════════════════ */

.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s var(--ease-smooth),
    transform 0.5s var(--ease-smooth);
  transition-delay: calc(var(--word-i, 0) * 60ms);
}

.is-revealed .split-word {
  opacity: 1;
  transform: none;
}


/* ═══ 3D TILT + GLARE OVERLAY ═══
   Cards met [data-tilt-premium] krijgen cursor-responsive 3D rotatie.
   ::after toont een radial gradient glare die de cursor volgt.
   ═══════════════════════════════════════════════════════════════ */

[data-tilt-premium] {
  transition: transform var(--dur-micro) ease-out;
  transform-style: preserve-3d;
  position: relative;
}

[data-tilt-premium]::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--glare-x, 50%) var(--glare-y, 50%),
    rgba(255,255,255,0.18) 0%,
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease-snappy);
  z-index: 2;
}

[data-tilt-premium]:hover::after {
  opacity: 1;
}


/* ═══ MAGNETIC BUTTONS ═══
   Knoppen met [data-magnetic] driften subtiel naar de cursor.
   JS doet de transformatie, CSS handelt de return-spring af.
   ═══════════════════════════════════════════════════════════════ */

[data-magnetic] {
  will-change: transform;
}

[data-magnetic]:active {
  transform: scale(0.97) !important;
  transition: transform 0.1s ease !important;
}


/* ═══ SELECTIVE FOCUS ═══
   Hover op één card dimt alle andere (moderne :has() selector).
   ═══════════════════════════════════════════════════════════════ */

[data-selective-focus]:has(> *:hover) > *:not(:hover) {
  opacity: 0.5;
  filter: blur(1px);
  transform: scale(0.98);
  transition:
    opacity 0.4s var(--ease-smooth),
    filter 0.4s var(--ease-smooth),
    transform 0.4s var(--ease-smooth);
}

[data-selective-focus] > * {
  transition:
    opacity 0.4s var(--ease-smooth),
    filter 0.4s var(--ease-smooth),
    transform 0.4s var(--ease-smooth);
}


/* ═══ CURSOR GLOW ═══
   Secties met [data-cursor-glow] tonen een subtiele radial glow
   die de cursor volgt (CSS custom properties gezet via JS).
   ═══════════════════════════════════════════════════════════════ */

[data-cursor-glow] {
  position: relative;
}

[data-cursor-glow]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--cursor-x, 50%) var(--cursor-y, 50%),
    rgba(34,197,94,0.04) 0%,
    transparent 40%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}

[data-cursor-glow]:hover::before {
  opacity: 1;
}


/* ═══ IMAGE REVEAL ═══
   Images met .reveal-image clippen van rechts naar links.
   ═══════════════════════════════════════════════════════════════ */

.reveal-image {
  clip-path: inset(0 100% 0 0);
  transition: clip-path var(--dur-slow) var(--ease-power);
}

.is-revealed .reveal-image {
  clip-path: inset(0 0 0 0);
}


/* ═══ PREMIUM HOVER PATTERNS ═══
   Herbruikbare hover-klassen voor cards en interactieve elementen.
   ═══════════════════════════════════════════════════════════════ */

/* Multi-layer shadow lift */
.hover-lift {
  transition:
    transform var(--dur-normal) var(--ease-snappy),
    box-shadow var(--dur-normal) var(--ease-snappy);
  will-change: transform;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 6px rgba(0,0,0,0.03),
    0 10px 20px rgba(0,0,0,0.05),
    0 20px 40px rgba(0,0,0,0.04),
    0 40px 80px rgba(0,0,0,0.02);
}

/* Spring scale bounce */
.hover-spring {
  transition: transform var(--dur-normal) var(--ease-spring);
}

.hover-spring:hover {
  transform: scale(1.04);
}


/* ═══ COUNTER ANIMATION ═══
   Stats met [data-count-target] tellen op bij scroll-entry.
   Animatie wordt afgehandeld door JS, CSS doet de presentatie.
   ═══════════════════════════════════════════════════════════════ */

[data-count-target] {
  font-variant-numeric: tabular-nums;
}


/* ═══ FILM GRAIN TEXTURE ═══
   Subtiele grain overlay op dark hero secties.
   ═══════════════════════════════════════════════════════════════ */

[data-grain]::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: overlay;
  opacity: 0.5;
}


/* ═══ ACCESSIBILITY ═══
   Bij reduced-motion: geen animaties, instant zichtbaar.
   ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-stagger] > *,
  .split-word,
  .reveal-image {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    clip-path: none !important;
  }

  .hover-lift,
  .hover-spring,
  [data-tilt-premium],
  [data-magnetic] {
    transition: none !important;
  }

  [data-tilt-premium]::after,
  [data-cursor-glow]::before,
  [data-grain]::after {
    display: none !important;
  }
}

/* ═══ LAYER 3: PER-BLOCK OVERRIDES ═══ */

/* ═══ BLOCK: about-counter ═══ */
/* ═══════════════════════════════════════════════════════════════
   ABOUT-COUNTER — Emerald Gradient Stats + Surface BG
   Project: creatine-de
   Theme: surface (#f8fafb)
   ═══════════════════════════════════════════════════════════════ */

/* Section base — surface background */
[data-project="creatine-de"] .block-about-counter.block-about-counter {
  background: var(--_surface, #f8fafb);
  color: var(--_text, #1e293b);
  overflow: visible;
  position: relative;
}

/* Inner container */
[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── Header ─── */
[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__header {
  text-align: center;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--_accent, #10B981);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__title {
  font-family: var(--_font-heading, 'Inter', system-ui, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--_heading, #0F172A);
  margin: 0 0 12px;
}

[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--_muted, #64748b);
  max-width: 540px;
  margin: 0 auto;
}

/* ─── Counter grid — 4 columns ─── */
[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

/* ─── Stat card ─── */
[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__stat {
  text-align: center;
  padding: 32px 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--_border, #e2e8f0);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06),
              0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Accent top border on hover */
[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, var(--_accent, #10B981), #58cea7);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__stat:hover::before {
  opacity: 1;
}

/* ─── Counter number — gradient text ─── */
[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__number {
  display: block;
  font-family: var(--_font-heading, 'Inter', system-ui, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #10B981 0%, #58cea7 50%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

/* ─── Counter label ─── */
[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--_muted, #64748b);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* ─── Content paragraph ─── */
[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

[data-project="creatine-de"] .block-about-counter.block-about-counter .ac__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--_text, #1e293b);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__stat {
    padding: 24px 12px;
  }

  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__number {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__header {
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__content {
    margin-top: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__stat {
    padding: 20px 8px;
  }

  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__number {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__label {
    font-size: 0.78rem;
  }

  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__text {
    font-size: 0.9rem;
    text-align: left;
  }

  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__subtitle {
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__stat {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-about-counter.block-about-counter .ac__stat::before {
    transition: none !important;
  }
}
/* ═══ BLOCK: about-counter-dark ═══ */
/* ═══════════════════════════════════════════════════════════════
   ABOUT-COUNTER — Emerald Gradient Stats + Surface BG
   Project: creatine-de
   Theme: surface (#f8fafb)
   ═══════════════════════════════════════════════════════════════ */

/* Section base — surface background */
[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark {
  background: var(--_surface, #f8fafb);
  color: var(--_text, #1e293b);
  overflow: visible;
  position: relative;
}

/* Inner container */
[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── Header ─── */
[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__header {
  text-align: center;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--_accent, #10B981);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__title {
  font-family: var(--_font-heading, 'Inter', system-ui, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--_heading, #0F172A);
  margin: 0 0 12px;
}

[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--_muted, #64748b);
  max-width: 540px;
  margin: 0 auto;
}

/* ─── Counter grid — 4 columns ─── */
[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

/* ─── Stat card ─── */
[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__stat {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid var(--_border, rgba(255, 255, 255, 0.08));
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08),
              0 2px 8px rgba(255, 255, 255, 0.08);
}

/* Accent top border on hover */
[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, var(--_accent, #10B981), #58cea7);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__stat:hover::before {
  opacity: 1;
}

/* ─── Counter number — gradient text ─── */
[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__number {
  display: block;
  font-family: var(--_font-heading, 'Inter', system-ui, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #10B981 0%, #58cea7 50%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

/* ─── Counter label ─── */
[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--_muted, #64748b);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* ─── Content paragraph ─── */
[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

[data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--_text, #1e293b);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__stat {
    padding: 24px 12px;
  }

  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__number {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__header {
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__content {
    margin-top: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__stat {
    padding: 20px 8px;
  }

  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__number {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__label {
    font-size: 0.78rem;
  }

  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__text {
    font-size: 0.9rem;
    text-align: left;
  }

  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__subtitle {
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__stat {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-about-counter-dark.block-about-counter-dark .ac__stat::before {
    transition: none !important;
  }
}

/* ═══ BLOCK: accordion-cards ═══ */
/* ============================================================
   ACCORDION-CARDS — Creatine-DE
   Layer 3: Per-block premium overrides
   Expandable FAQ cards with glassmorphism, glow hover,
   staggered scroll-reveal, smooth accordion animation.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glows + grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__glow--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: acGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__glow--2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: acGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes acGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.12); }
}

@keyframes acGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   CARD GRID — single column stack
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card.ac--visible {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card:hover {
  border-color: rgba(16, 185, 129, 0.20);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.08),
              0 4px 24px rgba(16, 185, 129, 0.06);
  background: rgba(255, 255, 255, 0.05);
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card.ac--open {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.12),
              0 8px 32px rgba(16, 185, 129, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

/* ── Trigger button ── */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__trigger:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: -2px;
  border-radius: 12px;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.10);
  color: var(--t-accent, #10B981);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card.ac--open .ac__card-icon {
  background: rgba(16, 185, 129, 0.18);
  transform: scale(1.05);
}

/* ── Card head ── */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card-head {
  flex: 1;
  min-width: 0;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  line-height: 1.5;
}

/* ── Chevron ── */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card.ac--open .ac__chevron {
  transform: rotate(180deg);
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
}

/* ══════════════════════════════════════
   BODY — accordion panel
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__body-inner {
  padding: 0 28px 28px 92px;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__body-inner p {
  font-size: clamp(0.9375rem, 1.05vw, 1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__body-inner strong {
  color: var(--t-text-light, #ffffff);
  font-weight: 600;
}

/* divider between trigger and body */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card.ac--open .ac__trigger {
  padding-bottom: 16px;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card.ac--open .ac__body-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════ */
@keyframes acFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes acSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes acPulseRing {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.15); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* header stagger */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__header [data-ac-item] {
  opacity: 0;
  transform: translateY(16px);
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__header.ac--header-visible [data-ac-item] {
  animation: acSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__header.ac--header-visible [data-ac-item]:nth-child(1) { animation-delay: 0.05s; }
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__header.ac--header-visible [data-ac-item]:nth-child(2) { animation-delay: 0.15s; }
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__header.ac--header-visible [data-ac-item]:nth-child(3) { animation-delay: 0.25s; }

/* active card icon pulse */
[data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card.ac--open .ac__card-icon {
  animation: acPulseRing 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__trigger {
    padding: 20px 20px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card-icon svg {
    width: 20px;
    height: 20px;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__body-inner {
    padding: 0 20px 20px 72px;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card.ac--open .ac__body-inner {
    padding-top: 16px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__trigger {
    padding: 16px 16px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card-icon {
    width: 36px;
    height: 36px;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__body-inner {
    padding: 0 16px 16px 16px;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card-tag {
    font-size: 0.625rem;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__chevron {
    width: 28px;
    height: 28px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__glow--1,
  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card {
    opacity: 1;
    transform: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__header [data-ac-item] {
    opacity: 1;
    transform: none;
    animation: none;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__body {
    transition: max-height 0.3s ease;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__chevron {
    transition: transform 0.2s ease;
  }

  [data-project="creatine-de"] .block-accordion-cards.block-accordion-cards .ac__card.ac--open .ac__card-icon {
    animation: none;
  }
}
/* ═══ BLOCK: accordion-cards-light ═══ */
/* ============================================================
   ACCORDION-CARDS — Creatine-DE
   Layer 3: Per-block premium overrides
   Expandable FAQ cards with glassmorphism, glow hover,
   staggered scroll-reveal, smooth accordion animation.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glows + grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__glow--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: acGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__glow--2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: acGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes acGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.12); }
}

@keyframes acGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   CARD GRID — single column stack
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card {
  position: relative;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card.ac--visible {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card:hover {
  border-color: rgba(16, 185, 129, 0.20);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.08),
              0 4px 24px rgba(16, 185, 129, 0.06);
  background: rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card.ac--open {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.12),
              0 8px 32px rgba(16, 185, 129, 0.08);
  background: rgba(0, 0, 0, 0.06);
}

/* ── Trigger button ── */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__trigger:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: -2px;
  border-radius: 12px;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.10);
  color: var(--t-accent, #10B981);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card.ac--open .ac__card-icon {
  background: rgba(16, 185, 129, 0.18);
  transform: scale(1.05);
}

/* ── Card head ── */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card-head {
  flex: 1;
  min-width: 0;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  line-height: 1.5;
}

/* ── Chevron ── */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: rgba(0, 0, 0, 0.40);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card.ac--open .ac__chevron {
  transform: rotate(180deg);
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
}

/* ══════════════════════════════════════
   BODY — accordion panel
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__body-inner {
  padding: 0 28px 28px 92px;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__body-inner p {
  font-size: clamp(0.9375rem, 1.05vw, 1rem);
  line-height: 1.75;
  color: var(--t-muted, #64748b);
  margin: 0;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__body-inner strong {
  color: var(--t-text-light, #ffffff);
  font-weight: 600;
}

/* divider between trigger and body */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card.ac--open .ac__trigger {
  padding-bottom: 16px;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card.ac--open .ac__body-inner {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════ */
@keyframes acFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes acSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes acPulseRing {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.15); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* header stagger */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__header [data-ac-item] {
  opacity: 0;
  transform: translateY(16px);
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__header.ac--header-visible [data-ac-item] {
  animation: acSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__header.ac--header-visible [data-ac-item]:nth-child(1) { animation-delay: 0.05s; }
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__header.ac--header-visible [data-ac-item]:nth-child(2) { animation-delay: 0.15s; }
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__header.ac--header-visible [data-ac-item]:nth-child(3) { animation-delay: 0.25s; }

/* active card icon pulse */
[data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card.ac--open .ac__card-icon {
  animation: acPulseRing 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__trigger {
    padding: 20px 20px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card-icon svg {
    width: 20px;
    height: 20px;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__body-inner {
    padding: 0 20px 20px 72px;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card.ac--open .ac__body-inner {
    padding-top: 16px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__trigger {
    padding: 16px 16px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card-icon {
    width: 36px;
    height: 36px;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__body-inner {
    padding: 0 16px 16px 16px;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card-tag {
    font-size: 0.625rem;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__chevron {
    width: 28px;
    height: 28px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__glow--1,
  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card {
    opacity: 1;
    transform: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__header [data-ac-item] {
    opacity: 1;
    transform: none;
    animation: none;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__body {
    transition: max-height 0.3s ease;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__chevron {
    transition: transform 0.2s ease;
  }

  [data-project="creatine-de"] .block-accordion-cards-light.block-accordion-cards-light .ac__card.ac--open .ac__card-icon {
    animation: none;
  }
}

/* ═══ BLOCK: atp-kreislauf ═══ */
/* ATP-KREISLAUF — creatine-de */
[data-project="creatine-de"] .block-atp-kreislauf.block-atp-kreislauf { padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 40px); background: #0F172A; color: #fff; }
[data-project="creatine-de"] .block-atp-kreislauf.block-atp-kreislauf .atp__inner { max-width: 900px; margin: 0 auto; text-align: center; }
[data-project="creatine-de"] .block-atp-kreislauf.block-atp-kreislauf .atp__heading { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; margin: 0 0 40px; color: #fff; }
[data-project="creatine-de"] .block-atp-kreislauf.block-atp-kreislauf .atp__viz { padding: 20px 0; }
[data-project="creatine-de"] .block-atp-kreislauf.block-atp-kreislauf .atp__viz svg { width: 100%; max-width: 800px; height: auto; margin: 0 auto; display: block; }
[data-project="creatine-de"] .block-atp-kreislauf.block-atp-kreislauf .atp__caption { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 20px; }
/* ═══ BLOCK: back-top ═══ */
/* ============================================================
   BACK-TOP — Creatine-DE
   Layer 3: Per-block premium overrides
   Floating FAB with progress ring, smooth reveal on scroll.
   Matches prebuilt-all.js class names exactly.
   ============================================================ */

/* ── Container — fixed bottom-right ── */
[data-project="creatine-de"] .block-back-top.block-back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9990;
  background: transparent;
  padding: 0;
  pointer-events: none;
}

/* ── Button ── */
[data-project="creatine-de"] .block-back-top.block-back-top .bt__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 50%;
  background: rgba(13, 17, 23, 0.9);
  color: #ffffff;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Visible state — toggled by prebuilt JS */
[data-project="creatine-de"] .block-back-top.block-back-top .bt__btn.bt--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover */
[data-project="creatine-de"] .block-back-top.block-back-top .bt__btn:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 4px 16px rgba(16, 185, 129, 0.25),
    0 12px 32px rgba(16, 185, 129, 0.1);
}

/* Active */
[data-project="creatine-de"] .block-back-top.block-back-top .bt__btn:active {
  transform: translateY(0) scale(0.95);
  transition-duration: 0.1s;
}

/* Focus */
[data-project="creatine-de"] .block-back-top.block-back-top .bt__btn:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 3px;
}

/* ── Arrow icon ── */
[data-project="creatine-de"] .block-back-top.block-back-top .bt__btn svg:not(.bt__ring) {
  position: relative;
  z-index: 2;
  stroke: var(--t-accent, #10B981);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-back-top.block-back-top .bt__btn:hover svg:not(.bt__ring) {
  transform: translateY(-1px);
}

/* ── Progress ring ── */
[data-project="creatine-de"] .block-back-top.block-back-top .bt__ring {
  position: absolute;
  inset: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  transform: rotate(-90deg);
  z-index: 1;
  pointer-events: none;
}

[data-project="creatine-de"] .block-back-top.block-back-top .bt__ring-bg {
  fill: none;
  stroke: rgba(16, 185, 129, 0.08);
  stroke-width: 2;
}

[data-project="creatine-de"] .block-back-top.block-back-top .bt__ring-progress {
  fill: none;
  stroke: var(--t-accent, #10B981);
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.15s linear;
  filter: drop-shadow(0 0 3px rgba(16, 185, 129, 0.3));
}

[data-project="creatine-de"] .block-back-top.block-back-top .bt__btn:hover .bt__ring-progress {
  stroke: rgba(255, 255, 255, 0.5);
}

/* ── Ripple on click ── */
[data-project="creatine-de"] .block-back-top.block-back-top .bt__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  transform: scale(0);
  opacity: 0;
  z-index: 3;
}

[data-project="creatine-de"] .block-back-top.block-back-top .bt__btn:active::after {
  animation: btRippleCreatineDe 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes btRippleCreatineDe {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ── Tablet ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-back-top.block-back-top {
    bottom: 24px;
    right: 24px;
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-back-top.block-back-top {
    bottom: 20px;
    right: 16px;
  }

  [data-project="creatine-de"] .block-back-top.block-back-top .bt__btn {
    width: 44px;
    height: 44px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-back-top.block-back-top .bt__btn {
    transition: opacity 0.2s ease, background 0.2s ease;
  }

  [data-project="creatine-de"] .block-back-top.block-back-top .bt__btn.bt--visible {
    transform: none;
  }

  [data-project="creatine-de"] .block-back-top.block-back-top .bt__btn:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-back-top.block-back-top .bt__btn::after {
    animation: none;
  }
}
/* ═══ BLOCK: banner-announcement ═══ */
/* ============================================================
   BANNER-ANNOUNCEMENT — Creatine-DE
   Layer 3: Per-block premium overrides
   Slim top-bar announcement with pulse badge, CTA arrow,
   dismissible close button. Dark background, accent glow.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1100;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

/* Subtle accent gradient line at bottom */
[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--t-accent, #10B981) 30%,
    var(--t-accent, #10B981) 70%,
    transparent 100%
  );
  opacity: 0.4;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

/* ── Content row ── */
[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Badge with pulse dot ── */
[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: baDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes baDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

/* ── Text ── */
[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  text-align: center;
}

[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__highlight {
  color: #ffffff;
  font-weight: 600;
}

/* ── CTA link ── */
[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--t-accent, #10B981);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              gap 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__cta:hover {
  color: #34d399;
  gap: 8px;
}

[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__cta-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__cta:hover .ba__cta-arrow {
  transform: translateX(3px);
}

/* ── Close button ── */
[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__close svg {
  width: 12px;
  height: 12px;
}

/* ── Hidden state (after dismiss) ── */
[data-project="creatine-de"] .block-banner-announcement.block-banner-announcement.ba--hidden {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  border-bottom-color: transparent;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__inner {
    padding: 10px 48px 10px 16px;
  }

  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__content {
    gap: 8px;
  }

  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__text {
    font-size: 0.76rem;
  }

  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__cta {
    font-size: 0.76rem;
  }

  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__close {
    right: 10px;
    width: 26px;
    height: 26px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__inner {
    padding: 8px 40px 8px 12px;
  }

  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__badge {
    display: none;
  }

  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__text {
    font-size: 0.72rem;
  }

  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__cta {
    font-size: 0.72rem;
  }

  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__close {
    right: 6px;
    width: 24px;
    height: 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__cta,
  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__cta-arrow,
  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement .ba__close,
  [data-project="creatine-de"] .block-banner-announcement.block-banner-announcement.ba--hidden {
    transition: none;
  }
}
/* ═══ BLOCK: banner-announcement-light ═══ */
/* ============================================================
   BANNER-ANNOUNCEMENT — Creatine-DE
   Layer 3: Per-block premium overrides
   Slim top-bar announcement with pulse badge, CTA arrow,
   dismissible close button. Dark background, accent glow.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1100;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

/* Subtle accent gradient line at bottom */
[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--t-accent, #10B981) 30%,
    var(--t-accent, #10B981) 70%,
    transparent 100%
  );
  opacity: 0.4;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

/* ── Content row ── */
[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Badge with pulse dot ── */
[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: baDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes baDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

/* ── Text ── */
[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--t-muted, #64748b);
  margin: 0;
  text-align: center;
}

[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__highlight {
  color: var(--t-heading, #0F172A);
  font-weight: 600;
}

/* ── CTA link ── */
[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--t-accent, #10B981);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              gap 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__cta:hover {
  color: #34d399;
  gap: 8px;
}

[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__cta-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__cta:hover .ba__cta-arrow {
  transform: translateX(3px);
}

/* ── Close button ── */
[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.40);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--t-text, #1e293b);
}

[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__close svg {
  width: 12px;
  height: 12px;
}

/* ── Hidden state (after dismiss) ── */
[data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light.ba--hidden {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  border-bottom-color: transparent;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__inner {
    padding: 10px 48px 10px 16px;
  }

  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__content {
    gap: 8px;
  }

  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__text {
    font-size: 0.76rem;
  }

  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__cta {
    font-size: 0.76rem;
  }

  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__close {
    right: 10px;
    width: 26px;
    height: 26px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__inner {
    padding: 8px 40px 8px 12px;
  }

  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__badge {
    display: none;
  }

  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__text {
    font-size: 0.72rem;
  }

  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__cta {
    font-size: 0.72rem;
  }

  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__close {
    right: 6px;
    width: 24px;
    height: 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__cta,
  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__cta-arrow,
  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light .ba__close,
  [data-project="creatine-de"] .block-banner-announcement-light.block-banner-announcement-light.ba--hidden {
    transition: none;
  }
}

/* ═══ BLOCK: bento-grid ═══ */
/* ============================================================
   BENTO-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   Asymmetric bento-style card grid with glassmorphism,
   animated meter, counter stats, staggered scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Backdrop ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.025;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__glow--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: bgGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__glow--2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: bgGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes bgGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.12); }
}

@keyframes bgGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

/* ── Inner ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ── Grid — Bento layout ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

/* ── Card base ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card {
  position: relative;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.08), 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Card shine — glassmorphism hover highlight */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(16, 185, 129, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card:hover .bg__card-shine {
  opacity: 1;
}

/* Card content */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card-content {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 3vw, 40px);
}

/* ── Card sizes ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card--lg {
  grid-column: span 2;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card--wide {
  grid-column: span 2;
}

/* ── Icon wrap ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  margin-bottom: 24px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__icon {
  width: 24px;
  height: 24px;
}

/* ── Card typography ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card-stat {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.1;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 12px;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ── Meter (Card 1) ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__meter-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__meter-track {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__meter-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__meter-fill.is-animated {
  width: var(--meter-target, 0%);
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__meter-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  min-width: 36px;
  text-align: right;
}

/* ── Stats row (Card 4) ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__stats-row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 24px;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__stat-block {
  flex: 1;
  text-align: center;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__stat-number {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-text-light, #ffffff);
  line-height: 1;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__stat-suffix {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__stat-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ── Badges (Card 5) ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card-badges {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--t-accent, #10B981);
}

/* ── Tags (Card 6) ── */
[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card-tags {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__glow--1,
  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card {
    opacity: 1;
    transform: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__meter-fill {
    transition: none;
    width: var(--meter-target, 0%);
  }
}

/* ── Tablet ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card--lg,
  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card--wide {
    grid-column: span 2;
  }

  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card-content {
    padding: clamp(24px, 3vw, 32px);
  }

  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__stats-row {
    gap: 16px;
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__grid {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card--lg,
  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card--wide {
    grid-column: span 1;
  }

  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__stats-row {
    flex-direction: column;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__stat-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-bento-grid.block-bento-grid .bg__card-stat {
    font-size: 2.25rem;
  }
}
/* ═══ BLOCK: bento-grid-light ═══ */
/* ============================================================
   BENTO-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   Asymmetric bento-style card grid with glassmorphism,
   animated meter, counter stats, staggered scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Backdrop ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.025;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__glow--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: bgGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__glow--2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: bgGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes bgGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.12); }
}

@keyframes bgGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

/* ── Inner ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ── Grid — Bento layout ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

/* ── Card base ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card {
  position: relative;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.08), 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Card shine — glassmorphism hover highlight */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(16, 185, 129, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card:hover .bg__card-shine {
  opacity: 1;
}

/* Card content */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card-content {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 3vw, 40px);
}

/* ── Card sizes ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card--lg {
  grid-column: span 2;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card--wide {
  grid-column: span 2;
}

/* ── Icon wrap ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  margin-bottom: 24px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__icon {
  width: 24px;
  height: 24px;
}

/* ── Card typography ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card-stat {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.1;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 12px;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ── Meter (Card 1) ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__meter-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__meter-track {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__meter-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__meter-fill.is-animated {
  width: var(--meter-target, 0%);
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__meter-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  min-width: 36px;
  text-align: right;
}

/* ── Stats row (Card 4) ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__stats-row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 24px;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__stat-block {
  flex: 1;
  text-align: center;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__stat-number {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-text-light, #ffffff);
  line-height: 1;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__stat-suffix {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__stat-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  margin-top: 8px;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

/* ── Badges (Card 5) ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card-badges {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--t-accent, #10B981);
}

/* ── Tags (Card 6) ── */
[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card-tags {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--t-muted, #64748b);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__glow--1,
  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card {
    opacity: 1;
    transform: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__meter-fill {
    transition: none;
    width: var(--meter-target, 0%);
  }
}

/* ── Tablet ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card--lg,
  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card--wide {
    grid-column: span 2;
  }

  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card-content {
    padding: clamp(24px, 3vw, 32px);
  }

  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__stats-row {
    gap: 16px;
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__grid {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card--lg,
  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card--wide {
    grid-column: span 1;
  }

  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__stats-row {
    flex-direction: column;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__stat-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-bento-grid-light.block-bento-grid-light .bg__card-stat {
    font-size: 2.25rem;
  }
}

/* ═══ BLOCK: blog-featured ═══ */
/* ============================================================
   BLOG-FEATURED — Creatine-DE
   Layer 3: Per-block premium overrides
   Featured article hero + 2 secondary cards, magazine layout.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-blog-featured.block-blog-featured {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__header {
  text-align: center;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__subheading {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   FEATURED ARTICLE (hero card)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__featured {
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__featured-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__featured-link:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 16px 48px rgba(0, 0, 0, 0.1);
}

/* ── Image ── */
[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__featured-link:hover .bf__image {
  transform: scale(1.04);
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__category-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-radius: 6px;
  z-index: 1;
}

/* ── Body ── */
[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__meta-sep {
  color: #cbd5e1;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  transition: gap 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__featured-link:hover .bf__read-more {
  gap: 14px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__arrow {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__featured-link:hover .bf__arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   SECONDARY CARDS (2-column)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-link:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.1);
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-link:hover .bf__card-img {
  transform: scale(1.04);
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--t-primary, #0F172A);
  margin: 0 0 auto;
  padding-bottom: 16px;
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-read {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-link:hover .bf__card-read {
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__featured-link {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__image-wrap {
    aspect-ratio: 16 / 9;
  }

  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__secondary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__header {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-blog-featured.block-blog-featured {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__body {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-body {
    padding: 18px;
  }

  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__heading {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__featured-link,
  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-link,
  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__image,
  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-img,
  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__read-more,
  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__arrow,
  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-read {
    transition: none;
  }

  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__featured-link:hover,
  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-link:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__featured-link:hover .bf__image,
  [data-project="creatine-de"] .block-blog-featured.block-blog-featured .bf__card-link:hover .bf__card-img {
    transform: none;
  }
}
/* ═══ BLOCK: blog-featured-dark ═══ */
/* ============================================================
   BLOG-FEATURED — Creatine-DE
   Layer 3: Per-block premium overrides
   Featured article hero + 2 secondary cards, magazine layout.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__header {
  text-align: center;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__subheading {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   FEATURED ARTICLE (hero card)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__featured {
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__featured-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__featured-link:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.30);
}

/* ── Image ── */
[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__featured-link:hover .bf__image {
  transform: scale(1.04);
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.08) 100%);
  pointer-events: none;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__category-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-radius: 6px;
  z-index: 1;
}

/* ── Body ── */
[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__meta-sep {
  color: #cbd5e1;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  transition: gap 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__featured-link:hover .bf__read-more {
  gap: 14px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__arrow {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__featured-link:hover .bf__arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   SECONDARY CARDS (2-column)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-link:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.30);
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-link:hover .bf__card-img {
  transform: scale(1.04);
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--t-primary, #0F172A);
  margin: 0 0 auto;
  padding-bottom: 16px;
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-read {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-link:hover .bf__card-read {
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__featured-link {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__image-wrap {
    aspect-ratio: 16 / 9;
  }

  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__secondary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__header {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__body {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-body {
    padding: 18px;
  }

  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__heading {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__featured-link,
  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-link,
  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__image,
  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-img,
  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__read-more,
  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__arrow,
  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-read {
    transition: none;
  }

  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__featured-link:hover,
  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-link:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__featured-link:hover .bf__image,
  [data-project="creatine-de"] .block-blog-featured-dark.block-blog-featured-dark .bf__card-link:hover .bf__card-img {
    transform: none;
  }
}

/* ═══ BLOCK: blog-grid ═══ */
/* ============================================================
   BLOG-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   Filterable 3-column article grid, magazine-style cards
   with hover lift, tag badges, stagger reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-blog-grid.block-blog-grid {
  position: relative;
  background: #ffffff;
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__header {
  text-align: center;
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 14px;
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__subheading {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   FILTER BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  background: var(--t-surface, #f8fafb);
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  cursor: pointer;
  transition:
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__filter-btn:hover {
  color: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__filter-btn--active {
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

/* ══════════════════════════════════════
   ARTICLE GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.1);
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* ── Card image ── */
[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card:hover .bg__card-image img {
  transform: scale(1.05);
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-radius: 100px;
  z-index: 1;
}

/* ── Card body ── */
[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 28px;
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__meta-dot {
  color: #cbd5e1;
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card:hover .bg__title {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ══════════════════════════════════════
   LOAD MORE BUTTON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__load-more {
  text-align: center;
  margin-top: 56px;
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__load-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__load-btn:hover {
  transform: translateY(-2px);
  color: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__load-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__load-btn:hover .bg__load-icon {
  transform: translateY(3px);
}

/* ══════════════════════════════════════
   CARD HIDDEN STATE (for filter)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card--hidden {
  display: none;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__heading {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__filter {
    gap: 8px;
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__filter-btn {
    padding: 6px 16px;
    font-size: 0.8125rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card-body {
    padding: 20px 20px 24px;
  }

  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__title {
    font-size: 1rem;
  }

  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__load-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card,
  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card-image img,
  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__filter-btn,
  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__load-btn,
  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__load-icon,
  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__title {
    transition: none;
  }

  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-blog-grid.block-blog-grid .bg__card:hover .bg__card-image img {
    transform: none;
  }
}
/* ═══ BLOCK: blog-grid-dark ═══ */
/* ============================================================
   BLOG-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   Filterable 3-column article grid, magazine-style cards
   with hover lift, tag badges, stagger reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark {
  position: relative;
  background: #0F172A;
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__header {
  text-align: center;
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 14px;
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__subheading {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   FILTER BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  cursor: pointer;
  transition:
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__filter-btn:hover {
  color: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__filter-btn--active {
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

/* ══════════════════════════════════════
   ARTICLE GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.30);
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* ── Card image ── */
[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card:hover .bg__card-image img {
  transform: scale(1.05);
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-radius: 100px;
  z-index: 1;
}

/* ── Card body ── */
[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 28px;
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__meta-dot {
  color: #cbd5e1;
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card:hover .bg__title {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ══════════════════════════════════════
   LOAD MORE BUTTON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__load-more {
  text-align: center;
  margin-top: 56px;
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__load-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 2px 8px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__load-btn:hover {
  transform: translateY(-2px);
  color: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  box-shadow:
    0 2px 6px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__load-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__load-btn:hover .bg__load-icon {
  transform: translateY(3px);
}

/* ══════════════════════════════════════
   CARD HIDDEN STATE (for filter)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card--hidden {
  display: none;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__heading {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__filter {
    gap: 8px;
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__filter-btn {
    padding: 6px 16px;
    font-size: 0.8125rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card-body {
    padding: 20px 20px 24px;
  }

  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__title {
    font-size: 1rem;
  }

  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__load-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card,
  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card-image img,
  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__filter-btn,
  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__load-btn,
  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__load-icon,
  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__title {
    transition: none;
  }

  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-blog-grid-dark.block-blog-grid-dark .bg__card:hover .bg__card-image img {
    transform: none;
  }
}

/* ═══ BLOCK: blog-sidebar ═══ */
/* ============================================================
   BLOG-SIDEBAR — Creatine-DE
   Layer 3: Per-block premium overrides
   Sticky sidebar with search, categories, popular articles,
   newsletter CTA, tag cloud, and product CTA card.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__inner {
  max-width: 380px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ══════════════════════════════════════
   WIDGET BASE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__widget {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__widget:hover {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.10);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__widget-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

/* ══════════════════════════════════════
   SEARCH WIDGET
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__search-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__search-field {
  display: flex;
  align-items: center;
  background: var(--t-surface, #f8fafb);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__search-field:focus-within {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__search-input {
  flex: 1;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--t-primary, #0F172A);
  background: transparent;
  border: none;
  outline: none;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__search-input::placeholder {
  color: #94a3b8;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__search-btn:hover {
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   CATEGORIES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cat-item {
  border-bottom: 1px solid #f1f5f9;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cat-item:last-child {
  border-bottom: none;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  text-decoration: none;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cat-link:hover {
  color: var(--t-accent, #10B981);
  padding-left: 6px;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 100px;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cat-link:hover .bs__cat-count {
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   POPULAR ARTICLES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-item {
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-item:last-child {
  margin-bottom: 0;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  margin: -10px;
  border-radius: 8px;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-link:hover {
  background: #f8fafb;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-rank {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #e2e8f0;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 2px;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-link:hover .bs__pop-rank {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-title {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--t-primary, #0F172A);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-meta {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 400;
}

/* ══════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__newsletter {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  overflow: hidden;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 10px;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-input {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.875rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-input:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 20px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-btn:hover {
  background: #059669;
  transform: translateY(-1px);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-privacy {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 10px 0 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   TAG CLOUD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  background: #f1f5f9;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__tag:hover {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   CTA CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cta-card {
  position: relative;
  background: linear-gradient(135deg, #0d1117 0%, #1a2332 100%);
  color: var(--t-text-light, #ffffff);
  text-align: center;
  overflow: hidden;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cta-accent {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cta-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 10px;
  position: relative;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cta-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px;
  position: relative;
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cta-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__inner {
    max-width: 100%;
    gap: 24px;
  }

  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__widget {
    padding: 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar {
    padding: clamp(48px, 7vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__widget {
    padding: 18px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-rank {
    font-size: 1.25rem;
  }

  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__tag {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__widget,
  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cat-link,
  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__pop-link,
  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__tag,
  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__nl-btn,
  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__cta-btn,
  [data-project="creatine-de"] .block-blog-sidebar.block-blog-sidebar .bs__search-field {
    transition: none;
  }
}
/* ═══ BLOCK: blog-sidebar-dark ═══ */
/* ============================================================
   BLOG-SIDEBAR — Creatine-DE
   Layer 3: Per-block premium overrides
   Sticky sidebar with search, categories, popular articles,
   newsletter CTA, tag cloud, and product CTA card.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__inner {
  max-width: 380px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ══════════════════════════════════════
   WIDGET BASE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__widget {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 24px;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__widget:hover {
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 28px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__widget-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ══════════════════════════════════════
   SEARCH WIDGET
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__search-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__search-field {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__search-field:focus-within {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__search-input {
  flex: 1;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--t-primary, #0F172A);
  background: transparent;
  border: none;
  outline: none;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__search-input::placeholder {
  color: #94a3b8;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__search-btn:hover {
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   CATEGORIES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cat-item {
  border-bottom: 1px solid #f1f5f9;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cat-item:last-child {
  border-bottom: none;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  text-decoration: none;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cat-link:hover {
  color: var(--t-accent, #10B981);
  padding-left: 6px;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: #f1f5f9;
  border-radius: 100px;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cat-link:hover .bs__cat-count {
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   POPULAR ARTICLES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-item {
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-item:last-child {
  margin-bottom: 0;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  margin: -10px;
  border-radius: 8px;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-link:hover {
  background: rgba(255, 255, 255, 0.03);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-rank {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 2px;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-link:hover .bs__pop-rank {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-title {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--t-primary, #0F172A);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-meta {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 400;
}

/* ══════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__newsletter {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  overflow: hidden;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 10px;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-input {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.875rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-input:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 20px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-btn:hover {
  background: #059669;
  transform: translateY(-1px);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-privacy {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 10px 0 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   TAG CLOUD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  background: #f1f5f9;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__tag:hover {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   CTA CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cta-card {
  position: relative;
  background: linear-gradient(135deg, #0d1117 0%, #1a2332 100%);
  color: var(--t-text-light, #ffffff);
  text-align: center;
  overflow: hidden;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cta-accent {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cta-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 10px;
  position: relative;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cta-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px;
  position: relative;
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cta-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__inner {
    max-width: 100%;
    gap: 24px;
  }

  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__widget {
    padding: 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark {
    padding: clamp(48px, 7vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__widget {
    padding: 18px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-rank {
    font-size: 1.25rem;
  }

  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__tag {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__widget,
  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cat-link,
  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__pop-link,
  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__tag,
  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__nl-btn,
  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__cta-btn,
  [data-project="creatine-de"] .block-blog-sidebar-dark.block-blog-sidebar-dark .bs__search-field {
    transition: none;
  }
}

/* ═══ BLOCK: breadcrumbs ═══ */
/* ============================================================
   BREADCRUMBS — Creatine-DE
   Layer 3: Per-block premium overrides
   Minimal, elegant breadcrumb trail with subtle hover effects,
   SVG chevron separators, and accent-tinted active state.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs {
  background: var(--t-surface, #f8fafb);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* Subtle top border accent */
[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.1) 30%,
    rgba(16, 185, 129, 0.15) 50%,
    rgba(16, 185, 129, 0.1) 70%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
}

/* ── Ordered list reset ── */
[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Breadcrumb item ── */
[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

/* ── Separator chevron ── */
[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__separator {
  margin: 0 10px;
  color: rgba(15, 23, 42, 0.25);
  flex-shrink: 0;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Link styles ── */
[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.5);
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: 4px 8px;
  border-radius: 6px;
  transition:
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__link:hover {
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.06);
}

/* ── Home icon ── */
[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__home-icon {
  width: 15px;
  height: 15px;
  color: currentColor;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__link--home:hover .bc__home-icon {
  transform: scale(1.1);
}

/* ── Active / current page ── */
[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__current {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
  padding: 4px 8px;
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Accent dot before active item */
[data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__item--active::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
  margin-right: 8px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   TABLET — 768px
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__inner {
    padding: 12px 20px;
  }

  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__current {
    max-width: 280px;
  }

  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__separator {
    margin: 0 6px;
  }
}

/* ══════════════════════════════════════
   MOBILE — 480px
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__inner {
    padding: 10px 16px;
  }

  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__link {
    font-size: 0.75rem;
    padding: 3px 6px;
  }

  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__current {
    font-size: 0.75rem;
    max-width: 180px;
    padding: 3px 6px;
  }

  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__separator {
    margin: 0 4px;
  }

  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__home-icon {
    width: 13px;
    height: 13px;
  }

  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__item--active::before {
    width: 4px;
    height: 4px;
    margin-right: 6px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__link,
  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__home-icon,
  [data-project="creatine-de"] .block-breadcrumbs.block-breadcrumbs .bc__separator {
    transition: none;
  }
}
/* ═══ BLOCK: breadcrumbs-hero ═══ */
/* ============================================================
   BREADCRUMBS-HERO — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark hero section with integrated breadcrumbs, accent glow,
   stat highlights, dual CTAs. Premium dark theme with subtle
   grid pattern and radial accent glow.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark hero ── */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0 clamp(80px, 10vw, 128px);
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* Top accent border */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.25) 30%,
    rgba(16, 185, 129, 0.4) 50%,
    rgba(16, 185, 129, 0.25) 70%,
    transparent 100%
  );
  z-index: 2;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════
   BREADCRUMBS — integrated top nav
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__breadcrumbs {
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-item {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition:
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-link:hover {
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-home {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-link:hover .bh__bc-home {
  transform: scale(1.1);
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-current {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
}

/* Active dot */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-item--active::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  margin-right: 6px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   HERO CONTENT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__content {
  max-width: 760px;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  padding: 6px 16px 6px 12px;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: bhDotPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes bhDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
  50% { opacity: 0.4; box-shadow: 0 0 3px rgba(16, 185, 129, 0.2); }
}

/* ── Title ── */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__title-accent {
  display: block;
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px 0;
  max-width: 620px;
  font-weight: 400;
}

/* ══════════════════════════════════════
   STATS ROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 44px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  line-height: 1.35;
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   CTA BUTTONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary CTA */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: -0.01em;
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.3),
    0 4px 16px rgba(16, 185, 129, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-primary:hover {
  transform: translateY(-2px);
  background: #0ea572;
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.35),
    0 8px 24px rgba(16, 185, 129, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-primary:hover .bh__cta-arrow {
  transform: translateX(3px);
}

/* Secondary CTA */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   DECORATIVE ELEMENTS
   ══════════════════════════════════════ */

/* Radial accent glow */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0.08) 0%,
    rgba(16, 185, 129, 0.03) 40%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid pattern */
[data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

/* ══════════════════════════════════════
   TABLET — 768px
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero {
    padding: clamp(56px, 8vw, 80px) 0 clamp(64px, 9vw, 96px);
    min-height: 420px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__inner {
    padding: 0 20px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__breadcrumbs {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stats {
    gap: 20px;
    padding: 20px 22px;
    flex-wrap: wrap;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stat {
    flex: 1 1 auto;
    min-width: 120px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stat-divider {
    display: none;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stat-value {
    font-size: 1.3rem;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__glow {
    width: 400px;
    height: 400px;
    top: -10%;
    right: -20%;
  }
}

/* ══════════════════════════════════════
   MOBILE — 480px
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero {
    padding: 48px 0 56px;
    min-height: 380px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__breadcrumbs {
    margin-bottom: 24px;
  }

  /* Hide middle breadcrumb on very small screens */
  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-item:nth-child(2) {
    display: none;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-link {
    font-size: 0.75rem;
    padding: 3px 6px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-current {
    font-size: 0.75rem;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__badge {
    font-size: 0.65rem;
    padding: 5px 12px 5px 10px;
    margin-bottom: 20px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stats {
    gap: 16px;
    padding: 18px 16px;
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stat-value {
    font-size: 1.15rem;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__stat-label {
    font-size: 0.72rem;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__actions {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-primary,
  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__glow {
    width: 280px;
    height: 280px;
    top: 0;
    right: -30%;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-primary,
  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-secondary,
  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__cta-arrow,
  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-link,
  [data-project="creatine-de"] .block-breadcrumbs-hero.block-breadcrumbs-hero .bh__bc-home {
    transition: none;
  }
}
/* ═══ BLOCK: cards-3d-tilt ═══ */
/* ============================================================
   CARDS-3D-TILT — Creatine-DE
   Layer 3: Per-block premium overrides
   Interactive 3D tilt cards with glassmorphism, gradient
   accents, ambient glow backdrop, and staggered reveals.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 24px;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: 10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: ctGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: 5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: ctGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ctGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes ctGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  position: relative;
  padding: 0 0 8px;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ══════════════════════════════════════
   CARD — glassmorphism + 3D tilt
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card {
  position: relative;
  border-radius: 16px;
  padding: 2px;
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card-border {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card:hover .ct__card-border {
  border-color: rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card-shine {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    600px circle at var(--ct-mouse-x, 50%) var(--ct-mouse-y, 50%),
    rgba(16, 185, 129, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card:hover .ct__card-shine {
  opacity: 1;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card-content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px 32px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--t-accent, #10B981);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card:hover .ct__icon-wrap {
  background: rgba(16, 185, 129, 0.18);
  transform: scale(1.05);
}

/* ── Card typography ── */
[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 auto;
  padding-bottom: 24px;
}

/* ── Card stat pill ── */
[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

/* ══════════════════════════════════════
   SCROLL REVEAL STATES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt [data-ct-item] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt [data-ct-item].ct--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt {
    padding: clamp(56px, 8vw, 80px) 20px;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__header {
    margin-bottom: 48px;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card-content {
    padding: 32px 24px 28px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__subtitle {
    font-size: 0.9375rem;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__glow--1,
  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt [data-ct-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt.block-cards-3d-tilt .ct__card-shine {
    display: none;
  }
}
/* ═══ BLOCK: cards-3d-tilt-light ═══ */
/* ============================================================
   CARDS-3D-TILT — Creatine-DE
   Layer 3: Per-block premium overrides
   Interactive 3D tilt cards with glassmorphism, gradient
   accents, ambient glow backdrop, and staggered reveals.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 24px;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: 10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: ctGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: 5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: ctGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ctGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes ctGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  position: relative;
  padding: 0 0 8px;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ══════════════════════════════════════
   CARD — glassmorphism + 3D tilt
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card {
  position: relative;
  border-radius: 16px;
  padding: 2px;
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card-border {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card:hover .ct__card-border {
  border-color: rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card-shine {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    600px circle at var(--ct-mouse-x, 50%) var(--ct-mouse-y, 50%),
    rgba(16, 185, 129, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card:hover .ct__card-shine {
  opacity: 1;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px 32px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--t-accent, #10B981);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card:hover .ct__icon-wrap {
  background: rgba(16, 185, 129, 0.18);
  transform: scale(1.05);
}

/* ── Card typography ── */
[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 auto;
  padding-bottom: 24px;
}

/* ── Card stat pill ── */
[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__stat-label {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.40);
  font-weight: 500;
}

/* ══════════════════════════════════════
   SCROLL REVEAL STATES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light [data-ct-item] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light [data-ct-item].ct--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light {
    padding: clamp(56px, 8vw, 80px) 20px;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__header {
    margin-bottom: 48px;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card-content {
    padding: 32px 24px 28px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__subtitle {
    font-size: 0.9375rem;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__glow--1,
  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light [data-ct-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-cards-3d-tilt-light.block-cards-3d-tilt-light .ct__card-shine {
    display: none;
  }
}

/* ═══ BLOCK: cards-feature ═══ */
/* ============================================================
   CARDS-FEATURE — Creatine-DE
   Layer 3: Per-block premium overrides
   4-card feature grid with glassmorphism borders, glow hover,
   stat chips, staggered scroll-reveal on dark background.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* ambient glow */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__overline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ── Grid ── */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card {
  position: relative;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.10), 0 2px 8px rgba(0, 0, 0, 0.20);
}

/* glow on hover */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(16, 185, 129, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card:hover .cards__card-glow {
  opacity: 1;
}

/* inner card surface */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card-inner {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: clamp(28px, 3.5vw, 40px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card:hover .cards__icon {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.30);
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__icon-svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ── Typography ── */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.125rem, 1.4vw, 1.3125rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 12px;
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 auto;
  padding-bottom: 24px;
}

/* ── Stat chip ── */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.40);
  font-weight: 500;
}

/* ── Scroll reveal ── */
[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card[data-cf-visible] {
  animation: cfFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card[data-cf-visible]:nth-child(2) {
  animation-delay: 0.1s;
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card[data-cf-visible]:nth-child(3) {
  animation-delay: 0.2s;
}

[data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card[data-cf-visible]:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes cfFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive: Tablet ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card-inner {
    padding: 28px 24px;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cards-feature.block-cards-feature {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__header {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card-inner {
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card[data-cf-visible] {
    animation: none;
    opacity: 1;
  }

  [data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__icon {
    transition: none;
  }

  [data-project="creatine-de"] .block-cards-feature.block-cards-feature .cards__card-glow {
    transition: none;
  }
}
/* ═══ BLOCK: cards-feature-light ═══ */
/* ============================================================
   CARDS-FEATURE — Creatine-DE
   Layer 3: Per-block premium overrides
   4-card feature grid with glassmorphism borders, glow hover,
   stat chips, staggered scroll-reveal on dark background.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* ambient glow */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__overline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ── Grid ── */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card {
  position: relative;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.06) 100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.10), 0 2px 8px rgba(0, 0, 0, 0.20);
}

/* glow on hover */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(16, 185, 129, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card:hover .cards__card-glow {
  opacity: 1;
}

/* inner card surface */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card-inner {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: clamp(28px, 3.5vw, 40px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card:hover .cards__icon {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.30);
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__icon-svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ── Typography ── */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.125rem, 1.4vw, 1.3125rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 12px;
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 auto;
  padding-bottom: 24px;
}

/* ── Stat chip ── */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__stat-label {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.40);
  font-weight: 500;
}

/* ── Scroll reveal ── */
[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card[data-cf-visible] {
  animation: cfFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card[data-cf-visible]:nth-child(2) {
  animation-delay: 0.1s;
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card[data-cf-visible]:nth-child(3) {
  animation-delay: 0.2s;
}

[data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card[data-cf-visible]:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes cfFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive: Tablet ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card-inner {
    padding: 28px 24px;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__header {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card-inner {
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card[data-cf-visible] {
    animation: none;
    opacity: 1;
  }

  [data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__icon {
    transition: none;
  }

  [data-project="creatine-de"] .block-cards-feature-light.block-cards-feature-light .cards__card-glow {
    transition: none;
  }
}

/* ═══ BLOCK: case-study ═══ */
/* ============================================================
   CASE-STUDY — Creatine-DE
   Layer 3: Per-block premium overrides
   Athlete success story with profile card, timeline,
   animated metrics, trust bar. Light section.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-case-study.block-case-study {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study.block-case-study .cs__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: var(--t-accent, #10B981);
  opacity: 0.06;
  animation: csGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -12%;
  left: -5%;
  background: var(--t-accent, #10B981);
  opacity: 0.04;
  animation: csGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes csGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes csGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.06); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-case-study.block-case-study .cs__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study.block-case-study .cs__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: csBadgePulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes csBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   2-COLUMN LAYOUT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study.block-case-study .cs__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 64px);
}

/* ══════════════════════════════════════
   PROFILE CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study.block-case-study .cs__profile-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__profile-card:hover {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__verified-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--t-accent, #10B981);
  opacity: 0.4;
  animation: csRingPulse 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes csRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.06); opacity: 0.15; }
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__name {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__role {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: #94a3b8;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__location svg {
  flex-shrink: 0;
}

/* Stars */
[data-project="creatine-de"] .block-case-study.block-case-study .cs__stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__star {
  color: #f59e0b;
}

/* Supplement info */
[data-project="creatine-de"] .block-case-study.block-case-study .cs__supplement-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  text-align: left;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__supplement-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__supplement-value {
  font-size: 0.875rem;
  color: var(--t-primary, #0F172A);
  font-weight: 500;
}

/* ══════════════════════════════════════
   STORY COLUMN
   ══════════════════════════════════════ */

/* Quote block */
[data-project="creatine-de"] .block-case-study.block-case-study .cs__quote-block {
  position: relative;
  margin-bottom: clamp(36px, 4vw, 48px);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__quote-icon {
  color: var(--t-accent, #10B981);
  opacity: 0.2;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__quote {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  line-height: 1.7;
  color: var(--t-primary, #0F172A);
  font-style: italic;
  padding: 0;
  margin: 0;
  border: none;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study.block-case-study .cs__timeline {
  position: relative;
  padding-left: 32px;
  margin-bottom: clamp(36px, 4vw, 48px);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__timeline-line {
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--t-accent, #10B981) 0%,
    rgba(16, 185, 129, 0.2) 100%
  );
  border-radius: 2px;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__phase {
  position: relative;
  padding-bottom: 28px;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__phase:last-child {
  padding-bottom: 0;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__phase-marker {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__phase-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__phase-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__phase-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   METRICS GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study.block-case-study .cs__metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__metric {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__metric-value {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.03em;
  line-height: 1;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__metric-unit {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 600;
  color: var(--t-accent, #10B981);
  opacity: 0.7;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__metric-label {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #64748b;
  margin-top: 8px;
  font-weight: 500;
}

/* ══════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study.block-case-study .cs__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 32px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__trust-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-case-study.block-case-study .cs__trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.08);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-case-study.block-case-study .cs__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  [data-project="creatine-de"] .block-case-study.block-case-study .cs__profile-card {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-case-study.block-case-study .cs__metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-project="creatine-de"] .block-case-study.block-case-study .cs__trust-bar {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-case-study.block-case-study .cs__trust-divider {
    width: 40px;
    height: 1px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-case-study.block-case-study .cs__metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  [data-project="creatine-de"] .block-case-study.block-case-study .cs__metric {
    padding: 20px 12px;
  }

  [data-project="creatine-de"] .block-case-study.block-case-study .cs__timeline {
    padding-left: 24px;
  }

  [data-project="creatine-de"] .block-case-study.block-case-study .cs__phase-marker {
    left: -24px;
  }

  [data-project="creatine-de"] .block-case-study.block-case-study .cs__quote {
    padding-left: 16px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-case-study.block-case-study .cs__glow--1,
  [data-project="creatine-de"] .block-case-study.block-case-study .cs__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-case-study.block-case-study .cs__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-case-study.block-case-study .cs__verified-ring {
    animation: none;
  }

  [data-project="creatine-de"] .block-case-study.block-case-study .cs__profile-card,
  [data-project="creatine-de"] .block-case-study.block-case-study .cs__metric {
    transition: none;
  }
}
/* ═══ BLOCK: case-study-dark ═══ */
/* ============================================================
   CASE-STUDY — Creatine-DE
   Layer 3: Per-block premium overrides
   Athlete success story with profile card, timeline,
   animated metrics, trust bar. Light section.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: var(--t-accent, #10B981);
  opacity: 0.06;
  animation: csGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -12%;
  left: -5%;
  background: var(--t-accent, #10B981);
  opacity: 0.04;
  animation: csGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes csGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes csGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.06); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: csBadgePulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes csBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   2-COLUMN LAYOUT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 64px);
}

/* ══════════════════════════════════════
   PROFILE CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__profile-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 100px;
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__profile-card:hover {
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08),
    0 24px 48px rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.30);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__verified-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--t-accent, #10B981);
  opacity: 0.4;
  animation: csRingPulse 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes csRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.06); opacity: 0.15; }
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__name {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: #94a3b8;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__location svg {
  flex-shrink: 0;
}

/* Stars */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__star {
  color: #f59e0b;
}

/* Supplement info */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__supplement-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  text-align: left;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__supplement-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__supplement-value {
  font-size: 0.875rem;
  color: var(--t-primary, #0F172A);
  font-weight: 500;
}

/* ══════════════════════════════════════
   STORY COLUMN
   ══════════════════════════════════════ */

/* Quote block */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__quote-block {
  position: relative;
  margin-bottom: clamp(36px, 4vw, 48px);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__quote-icon {
  color: var(--t-accent, #10B981);
  opacity: 0.2;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__quote {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  line-height: 1.7;
  color: var(--t-primary, #0F172A);
  font-style: italic;
  padding: 0;
  margin: 0;
  border: none;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__timeline {
  position: relative;
  padding-left: 32px;
  margin-bottom: clamp(36px, 4vw, 48px);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__timeline-line {
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--t-accent, #10B981) 0%,
    rgba(16, 185, 129, 0.2) 100%
  );
  border-radius: 2px;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__phase {
  position: relative;
  padding-bottom: 28px;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__phase:last-child {
  padding-bottom: 0;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__phase-marker {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__phase-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__phase-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__phase-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   METRICS GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__metric {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08), 0 8px 24px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__metric-value {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.03em;
  line-height: 1;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__metric-unit {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 600;
  color: var(--t-accent, #10B981);
  opacity: 0.7;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__metric-label {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  font-weight: 500;
}

/* ══════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__trust-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__profile-card {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__trust-bar {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__trust-divider {
    width: 40px;
    height: 1px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__metric {
    padding: 20px 12px;
  }

  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__timeline {
    padding-left: 24px;
  }

  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__phase-marker {
    left: -24px;
  }

  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__quote {
    padding-left: 16px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__glow--1,
  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__verified-ring {
    animation: none;
  }

  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__profile-card,
  [data-project="creatine-de"] .block-case-study-dark.block-case-study-dark .cs__metric {
    transition: none;
  }
}

/* ═══ BLOCK: category-filter ═══ */
/* ============================================================
   CATEGORY-FILTER — Creatine-DE
   Layer 3: Per-block premium overrides
   Interactive category explorer with search, card grid,
   hover animations, and stats bar.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-category-filter.block-category-filter {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* subtle top-border accent line */
[data-project="creatine-de"] .block-category-filter.block-category-filter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--t-accent, #10B981);
  border-radius: 0 0 6px 6px;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__header {
  text-align: center;
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 14px;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__subheading {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   SEARCH BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__search {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__search-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition:
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__search-input:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow:
    0 0 0 3px rgba(16, 185, 129, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__search-input::placeholder {
  color: #94a3b8;
}

/* ══════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card:hover {
  transform: translateY(-4px);
  border-color: var(--t-accent, #10B981);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 12px 32px rgba(16, 185, 129, 0.10);
}

/* hidden by search filter */
[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card--hidden {
  display: none;
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card:hover .cf__card-icon {
  background: rgba(16, 185, 129, 0.14);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-body {
  flex: 1;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 8px;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* ── Card footer ── */
[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-arrow {
  color: #cbd5e1;
  transition:
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card:hover .cf__card-arrow {
  color: var(--t-accent, #10B981);
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 32px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.03);
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__stat {
  text-align: center;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
  line-height: 1.2;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__stat-label {
  display: block;
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 4px;
}

[data-project="creatine-de"] .block-category-filter.block-category-filter .cf__stat-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-category-filter.block-category-filter [data-cf-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter.block-category-filter [data-cf-reveal].cf--visible {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-category-filter.block-category-filter [data-cf-card] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter.block-category-filter [data-cf-card].cf--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card {
    padding: 24px 20px 16px;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__stats {
    gap: 20px;
    padding: 20px 24px;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__stat-value {
    font-size: 1.25rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 16px;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    margin-bottom: 0;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-body {
    margin-bottom: 8px;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-footer {
    border-top: none;
    padding-top: 0;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-desc {
    display: none;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__stat-divider {
    width: 60px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__search-input {
    font-size: 1rem;
    padding: 12px 16px 12px 46px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-category-filter.block-category-filter [data-cf-reveal],
  [data-project="creatine-de"] .block-category-filter.block-category-filter [data-cf-card] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card-arrow {
    transition: color 0.2s ease;
  }

  [data-project="creatine-de"] .block-category-filter.block-category-filter .cf__card:hover .cf__card-arrow {
    transform: none;
  }
}
/* ═══ BLOCK: category-filter-dark ═══ */
/* ============================================================
   CATEGORY-FILTER — Creatine-DE
   Layer 3: Per-block premium overrides
   Interactive category explorer with search, card grid,
   hover animations, and stats bar.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* subtle top-border accent line */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--t-accent, #10B981);
  border-radius: 0 0 6px 6px;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__header {
  text-align: center;
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 14px;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__subheading {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   SEARCH BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__search {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__search-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  outline: none;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__search-input:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow:
    0 0 0 3px rgba(16, 185, 129, 0.12),
    0 4px 12px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__search-input::placeholder {
  color: #94a3b8;
}

/* ══════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card:hover {
  transform: translateY(-4px);
  border-color: var(--t-accent, #10B981);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(16, 185, 129, 0.10);
}

/* hidden by search filter */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card--hidden {
  display: none;
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card:hover .cf__card-icon {
  background: rgba(16, 185, 129, 0.14);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-body {
  flex: 1;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 8px;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ── Card footer ── */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-arrow {
  color: #cbd5e1;
  transition:
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card:hover .cf__card-arrow {
  color: var(--t-accent, #10B981);
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 2px 8px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__stat {
  text-align: center;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
  line-height: 1.2;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__stat-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark [data-cf-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark [data-cf-reveal].cf--visible {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark [data-cf-card] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark [data-cf-card].cf--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card {
    padding: 24px 20px 16px;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__stats {
    gap: 20px;
    padding: 20px 24px;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__stat-value {
    font-size: 1.25rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 16px;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    margin-bottom: 0;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-body {
    margin-bottom: 8px;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-footer {
    border-top: none;
    padding-top: 0;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-desc {
    display: none;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__stat-divider {
    width: 60px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__search-input {
    font-size: 1rem;
    padding: 12px 16px 12px 46px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark [data-cf-reveal],
  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark [data-cf-card] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card-arrow {
    transition: color 0.2s ease;
  }

  [data-project="creatine-de"] .block-category-filter-dark.block-category-filter-dark .cf__card:hover .cf__card-arrow {
    transform: none;
  }
}

/* ═══ BLOCK: certifications-badges ═══ */
/* ============================================================
   CERTIFICATIONS-BADGES — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark trust section with glassmorphism certification cards,
   ambient glow backdrop, staggered reveals, trust stat bar.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 30%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: cbGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: cbGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes cbGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes cbGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-35px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__subtitle {
  font-size: clamp(0.938rem, 1.5vw, 1.063rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   CARD GRID — 3 columns, 6 items
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

/* ── Card ── */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px 28px;
  text-align: center;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 8px 32px rgba(16, 185, 129, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Card shine overlay on hover */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge:hover .cb__badge-shine {
  opacity: 1;
}

/* ── Icon wrapper ── */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.12);
  transition:
    background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge:hover .cb__icon-wrap {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__icon-wrap img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge:hover .cb__icon-wrap img {
  opacity: 1;
}

/* ── Card title ── */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0 0 10px;
}

/* ── Card description ── */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 16px;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ══════════════════════════════════════
   TRUST BAR — bottom stat strip
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 28px 32px;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__stat-value {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__stat-suffix {
  font-size: 0.7em;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__stat-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__trust-bar {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__stat {
    flex: 0 0 calc(50% - 12px);
    padding: 0;
  }

  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__stat-divider {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge {
    padding: 24px 20px 22px;
  }

  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__stat {
    flex: 0 0 100%;
  }

  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__trust-bar {
    gap: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__glow--1,
  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge {
    transition: none;
  }

  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__badge-shine {
    transition: none;
  }

  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__icon-wrap {
    transition: none;
  }

  [data-project="creatine-de"] .block-certifications-badges.block-certifications-badges .cb__icon-wrap img {
    transition: none;
  }
}
/* ═══ BLOCK: certifications-badges-light ═══ */
/* ============================================================
   CERTIFICATIONS-BADGES — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark trust section with glassmorphism certification cards,
   ambient glow backdrop, staggered reveals, trust stat bar.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 30%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: cbGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: cbGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes cbGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes cbGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-35px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__subtitle {
  font-size: clamp(0.938rem, 1.5vw, 1.063rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   CARD GRID — 3 columns, 6 items
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

/* ── Card ── */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge {
  position: relative;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px 28px 28px;
  text-align: center;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(0, 0, 0, 0.06);
  box-shadow:
    0 8px 32px rgba(16, 185, 129, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Card shine overlay on hover */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(0, 0, 0, 0.06) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge:hover .cb__badge-shine {
  opacity: 1;
}

/* ── Icon wrapper ── */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.12);
  transition:
    background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge:hover .cb__icon-wrap {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__icon-wrap img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge:hover .cb__icon-wrap img {
  opacity: 1;
}

/* ── Card title ── */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 10px;
}

/* ── Card description ── */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0 0 16px;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ══════════════════════════════════════
   TRUST BAR — bottom stat strip
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 32px;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__stat-value {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  line-height: 1.2;
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__stat-suffix {
  font-size: 0.7em;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__stat-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__trust-bar {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__stat {
    flex: 0 0 calc(50% - 12px);
    padding: 0;
  }

  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__stat-divider {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge {
    padding: 24px 20px 22px;
  }

  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__stat {
    flex: 0 0 100%;
  }

  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__trust-bar {
    gap: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__glow--1,
  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge {
    transition: none;
  }

  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__badge-shine {
    transition: none;
  }

  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__icon-wrap {
    transition: none;
  }

  [data-project="creatine-de"] .block-certifications-badges-light.block-certifications-badges-light .cb__icon-wrap img {
    transition: none;
  }
}

/* ═══ BLOCK: clients-marquee ═══ */
/* ============================================================
   CLIENTS-MARQUEE — Creatine-DE
   Layer 3: Per-block premium overrides
   Dual-row infinite marquee with logo cards, trust-stat bar,
   glassmorphism hover effects, and ambient motion.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(240px, 30%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 64px);
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__subtitle {
  font-size: clamp(0.938rem, 1.5vw, 1.063rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   MARQUEE — infinite scroll animation
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: cmScroll 35s linear infinite;
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__track--reverse {
  animation: cmScrollReverse 40s linear infinite;
}

@keyframes cmScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes cmScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Marquee item ── */
[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

/* ── Logo card — glassmorphism ── */
[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__logo-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow:
    0 4px 16px rgba(16, 185, 129, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--_brand, #ffffff);
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__logo-card:hover .cm__logo-text {
  opacity: 1;
}

/* ── Logo name label ── */
[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__name {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__item:hover .cm__name {
  color: rgba(255, 255, 255, 0.65);
}

/* ══════════════════════════════════════
   TRUST BAR — stats row
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(24px, 3vw, 36px) clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__trust-bar {
    flex-wrap: wrap;
    gap: 20px 32px;
  }

  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__stat-divider {
    display: none;
  }

  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__stat {
    min-width: calc(50% - 20px);
  }

  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__logo-card {
    width: 160px;
    height: 70px;
    padding: 12px 20px;
  }

  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__item {
    min-width: 160px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__trust-bar {
    padding: 20px 16px;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__stat {
    min-width: calc(50% - 12px);
  }

  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__stat-value {
    font-size: 1.125rem;
  }

  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__logo-card {
    width: 140px;
    height: 60px;
    padding: 10px 16px;
  }

  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__track {
    gap: 16px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__track,
  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__track--reverse {
    animation: none;
  }

  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__logo-card {
    transition: none;
  }

  [data-project="creatine-de"] .block-clients-marquee.block-clients-marquee .cm__logo-text {
    transition: none;
  }
}
/* ═══ BLOCK: clients-marquee-light ═══ */
/* ============================================================
   CLIENTS-MARQUEE — Creatine-DE
   Layer 3: Per-block premium overrides
   Dual-row infinite marquee with logo cards, trust-stat bar,
   glassmorphism hover effects, and ambient motion.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(240px, 30%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 64px);
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__subtitle {
  font-size: clamp(0.938rem, 1.5vw, 1.063rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   MARQUEE — infinite scroll animation
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: cmScroll 35s linear infinite;
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__track--reverse {
  animation: cmScrollReverse 40s linear infinite;
}

@keyframes cmScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes cmScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Marquee item ── */
[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

/* ── Logo card — glassmorphism ── */
[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__logo-card:hover {
  transform: translateY(-4px);
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow:
    0 4px 16px rgba(16, 185, 129, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--_brand, #ffffff);
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__logo-card:hover .cm__logo-text {
  opacity: 1;
}

/* ── Logo name label ── */
[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__name {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.02em;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__item:hover .cm__name {
  color: var(--t-muted, #64748b);
}

/* ══════════════════════════════════════
   TRUST BAR — stats row
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(24px, 3vw, 36px) clamp(24px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__trust-bar {
    flex-wrap: wrap;
    gap: 20px 32px;
  }

  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__stat-divider {
    display: none;
  }

  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__stat {
    min-width: calc(50% - 20px);
  }

  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__logo-card {
    width: 160px;
    height: 70px;
    padding: 12px 20px;
  }

  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__item {
    min-width: 160px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__trust-bar {
    padding: 20px 16px;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__stat {
    min-width: calc(50% - 12px);
  }

  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__stat-value {
    font-size: 1.125rem;
  }

  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__logo-card {
    width: 140px;
    height: 60px;
    padding: 10px 16px;
  }

  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__track {
    gap: 16px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__track,
  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__track--reverse {
    animation: none;
  }

  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__logo-card {
    transition: none;
  }

  [data-project="creatine-de"] .block-clients-marquee-light.block-clients-marquee-light .cm__logo-text {
    transition: none;
  }
}

/* ═══ BLOCK: comparison ═══ */
/* ============================================================
   COMPARISON — Creatine-DE
   Layer 3: Per-block premium overrides
   Two-column product comparison with highlighted premium col,
   feature check/cross icons, glassmorphism card effect.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-comparison.block-comparison {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle decorative gradient */
[data-project="creatine-de"] .block-comparison.block-comparison::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* top edge line */
[data-project="creatine-de"] .block-comparison.block-comparison::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--t-border, rgba(15, 23, 42, 0.08)) 30%, var(--t-border, rgba(15, 23, 42, 0.08)) 70%, transparent);
  z-index: 1;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 64px);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__title-accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #475569);
  margin: 0;
}

/* ── Table / Grid ── */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__table-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

/* ── Column base ── */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__col {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.08));
  padding: 36px 32px 32px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__col:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ── Standard column ── */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__col--standard {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* ── Premium column ── */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__col--premium {
  border-color: var(--t-accent, #10B981);
  border-width: 2px;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.08), 0 8px 32px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__col--premium:hover {
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.10), 0 12px 40px rgba(16, 185, 129, 0.18);
}

/* highlight glow on premium */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__col-highlight {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  border-radius: 16px 16px 0 0;
}

/* ── Column header ── */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__col-header {
  text-align: center;
  padding-bottom: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--t-border, rgba(15, 23, 42, 0.08));
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__col-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__col-badge--muted {
  background: var(--t-surface, #f1f5f9);
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__col-badge--accent {
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__col-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 8px;
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__col-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin: 0;
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__col-unit {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--t-muted, #64748b);
}

/* ── Feature list ── */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

/* ── Icons ── */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__icon--positive {
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__icon--negative {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__icon--neutral {
  color: var(--t-muted, #94a3b8);
  background: rgba(148, 163, 184, 0.1);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__feature-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--t-primary, #0F172A);
}

/* premium col: slightly bolder text */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__col--premium .cp__feature-text {
  font-weight: 500;
}

/* ── CTA ── */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__cta-wrap {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--t-border, rgba(15, 23, 42, 0.08));
  text-align: center;
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__cta:hover {
  transform: translateY(-2px);
  background: #059669;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25), 0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-comparison.block-comparison .cp__cta:hover .cp__cta-arrow {
  transform: translateX(3px);
}

/* ── Disclaimer ── */
[data-project="creatine-de"] .block-comparison.block-comparison .cp__disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--t-muted, #94a3b8);
  margin: clamp(32px, 4vw, 48px) auto 0;
  max-width: 560px;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-comparison.block-comparison .cp__table-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-comparison.block-comparison .cp__col {
    padding: 28px 24px 24px;
  }

  /* reorder: premium first on mobile */
  [data-project="creatine-de"] .block-comparison.block-comparison .cp__col--premium {
    order: -1;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-comparison.block-comparison .cp__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-comparison.block-comparison .cp__col {
    padding: 24px 20px 20px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-comparison.block-comparison .cp__col-title {
    font-size: 1.1rem;
  }

  [data-project="creatine-de"] .block-comparison.block-comparison .cp__col-price {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-comparison.block-comparison .cp__feature-text {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-comparison.block-comparison .cp__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-comparison.block-comparison .cp__col,
  [data-project="creatine-de"] .block-comparison.block-comparison .cp__cta,
  [data-project="creatine-de"] .block-comparison.block-comparison .cp__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-comparison.block-comparison .cp__col:hover,
  [data-project="creatine-de"] .block-comparison.block-comparison .cp__cta:hover {
    transform: none;
  }
}
/* ═══ BLOCK: comparison-dark ═══ */
/* ============================================================
   COMPARISON — Creatine-DE
   Layer 3: Per-block premium overrides
   Two-column product comparison with highlighted premium col,
   feature check/cross icons, glassmorphism card effect.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle decorative gradient */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* top edge line */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--t-border, rgba(15, 23, 42, 0.08)) 30%, var(--t-border, rgba(15, 23, 42, 0.08)) 70%, transparent);
  z-index: 1;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 64px);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__title-accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ── Table / Grid ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__table-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

/* ── Column base ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.08));
  padding: 36px 32px 32px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08), 0 8px 24px rgba(255, 255, 255, 0.08);
}

/* ── Standard column ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col--standard {
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(255, 255, 255, 0.08);
}

/* ── Premium column ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col--premium {
  border-color: var(--t-accent, #10B981);
  border-width: 2px;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.08), 0 8px 32px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col--premium:hover {
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.10), 0 12px 40px rgba(16, 185, 129, 0.18);
}

/* highlight glow on premium */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col-highlight {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  border-radius: 16px 16px 0 0;
}

/* ── Column header ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col-header {
  text-align: center;
  padding-bottom: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--t-border, rgba(15, 23, 42, 0.08));
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col-badge--muted {
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col-badge--accent {
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 8px;
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin: 0;
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col-unit {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Feature list ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

/* ── Icons ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__icon--positive {
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__icon--negative {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__icon--neutral {
  color: rgba(255, 255, 255, 0.5);
  background: rgba(148, 163, 184, 0.1);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__feature-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--t-primary, #0F172A);
}

/* premium col: slightly bolder text */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col--premium .cp__feature-text {
  font-weight: 500;
}

/* ── CTA ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__cta-wrap {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--t-border, rgba(15, 23, 42, 0.08));
  text-align: center;
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__cta:hover {
  transform: translateY(-2px);
  background: #059669;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25), 0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__cta:hover .cp__cta-arrow {
  transform: translateX(3px);
}

/* ── Disclaimer ── */
[data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: clamp(32px, 4vw, 48px) auto 0;
  max-width: 560px;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__table-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col {
    padding: 28px 24px 24px;
  }

  /* reorder: premium first on mobile */
  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col--premium {
    order: -1;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col {
    padding: 24px 20px 20px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col-title {
    font-size: 1.1rem;
  }

  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col-price {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__feature-text {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col,
  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__cta,
  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__col:hover,
  [data-project="creatine-de"] .block-comparison-dark.block-comparison-dark .cp__cta:hover {
    transform: none;
  }
}

/* ═══ BLOCK: contact-info ═══ */
/* ============================================================
   CONTACT-INFO — Creatine-DE
   Layer 3: Per-block premium overrides
   Light-surface contact cards with hover interactions,
   icon accents, and trust bar.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-contact-info.block-contact-info {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: ciPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes ciPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ── Card grid ── */
[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  cursor: default;
}

a.ci__card {
  cursor: pointer;
}

[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

/* ── Icon ── */
[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card:hover .ci__icon-wrap {
  background: rgba(16, 185, 129, 0.14);
}

/* ── Card text ── */
[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 6px;
}

[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card-hint {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

/* ── Arrow on clickable cards ── */
[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  color: #cbd5e1;
  transition:
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card:hover .ci__card-arrow {
  color: var(--t-accent, #10B981);
  transform: translateX(4px);
}

/* ── Trust bar ── */
[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
}

[data-project="creatine-de"] .block-contact-info.block-contact-info .ci__trust-item svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card-arrow {
    top: 24px;
    right: 24px;
  }

  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__trust {
    gap: 20px;
  }

  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-contact-info.block-contact-info {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__trust {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__title {
    font-size: 1.75rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__card-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-contact-info.block-contact-info .ci__icon-wrap {
    transition: none;
  }
}
/* ═══ BLOCK: contact-info-dark ═══ */
/* ============================================================
   CONTACT-INFO — Creatine-DE
   Layer 3: Per-block premium overrides
   Light-surface contact cards with hover interactions,
   icon accents, and trust bar.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: ciPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes ciPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ── Card grid ── */
[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  cursor: default;
}

a.ci__card {
  cursor: pointer;
}

[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

/* ── Icon ── */
[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card:hover .ci__icon-wrap {
  background: rgba(16, 185, 129, 0.14);
}

/* ── Card text ── */
[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 6px;
}

[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card-hint {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ── Arrow on clickable cards ── */
[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  color: #cbd5e1;
  transition:
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card:hover .ci__card-arrow {
  color: var(--t-accent, #10B981);
  transform: translateX(4px);
}

/* ── Trust bar ── */
[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__trust-item svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card-arrow {
    top: 24px;
    right: 24px;
  }

  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__trust {
    gap: 20px;
  }

  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__trust {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__title {
    font-size: 1.75rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__card-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-contact-info-dark.block-contact-info-dark .ci__icon-wrap {
    transition: none;
  }
}

/* ═══ BLOCK: content-accordion ═══ */
/* ============================================================
   CONTENT-ACCORDION — Creatine-DE
   Layer 3: Per-block premium overrides
   FAQ-style accordion with animated plus/minus icons,
   smooth expand/collapse, accent highlights on active state.
   Light section (follows dark content-blockquote).
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — light background ── */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion {
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent gradient */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Eyebrow ── */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__eyebrow-line {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--t-accent, #10B981);
  opacity: 0.4;
}

[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px 0;
}

[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   ACCORDION LIST
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ══════════════════════════════════════
   ACCORDION ITEM
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__item {
  background: #ffffff;
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: 12px;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__item:hover {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ── Open state ── */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__item.ca--open {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(16, 185, 129, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.06);
}

/* ══════════════════════════════════════
   QUESTION BUTTON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__question:hover {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__question:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: -2px;
  border-radius: 12px;
}

/* ── Icon — plus/minus circle ── */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__item.ca--open .ca__q-icon {
  background: rgba(16, 185, 129, 0.15);
}

/* Vertical line of plus rotates to form minus */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__icon-v {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__item.ca--open .ca__icon-v {
  transform: rotate(90deg);
  opacity: 0;
}

/* ── Question text ── */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__q-text {
  flex: 1;
}

/* ══════════════════════════════════════
   ANSWER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__item.ca--open .ca__answer {
  opacity: 1;
  transition: max-height 0.5s cubic-bezier(0, 0, 0.2, 1),
              opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__answer-inner {
  padding: 0 22px 22px 70px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #475569;
}

[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__answer-inner p {
  margin: 0;
}

/* ── Divider between items (subtle) ── */
[data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__item + .ca__item {
  margin-top: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-accordion.block-content-accordion {
    padding: clamp(56px, 8vw, 80px) 20px;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__header {
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__question {
    padding: 18px 18px;
    gap: 14px;
    font-size: 0.95rem;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__answer-inner {
    padding: 0 18px 18px 62px;
    font-size: 0.9rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-accordion.block-content-accordion {
    padding: 48px 16px;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__header {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__subtitle {
    font-size: 0.95rem;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__question {
    padding: 16px 14px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__q-icon {
    width: 28px;
    height: 28px;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__q-icon svg {
    width: 16px;
    height: 16px;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__answer-inner {
    padding: 0 14px 16px 54px;
    font-size: 0.88rem;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__list {
    gap: 8px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__answer {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__icon-v {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__item {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__q-icon {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-accordion.block-content-accordion .ca__question {
    transition: none;
  }
}
/* ═══ BLOCK: content-accordion-dark ═══ */
/* ============================================================
   CONTENT-ACCORDION — Creatine-DE
   Layer 3: Per-block premium overrides
   FAQ-style accordion with animated plus/minus icons,
   smooth expand/collapse, accent highlights on active state.
   Light section (follows dark content-blockquote).
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — light background ── */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark {
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent gradient */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Eyebrow ── */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__eyebrow-line {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--t-accent, #10B981);
  opacity: 0.4;
}

[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px 0;
}

[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   ACCORDION LIST
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ══════════════════════════════════════
   ACCORDION ITEM
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__item:hover {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
}

/* ── Open state ── */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__item.ca--open {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(16, 185, 129, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08);
}

/* ══════════════════════════════════════
   QUESTION BUTTON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__question:hover {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__question:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: -2px;
  border-radius: 12px;
}

/* ── Icon — plus/minus circle ── */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__item.ca--open .ca__q-icon {
  background: rgba(16, 185, 129, 0.15);
}

/* Vertical line of plus rotates to form minus */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__icon-v {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__item.ca--open .ca__icon-v {
  transform: rotate(90deg);
  opacity: 0;
}

/* ── Question text ── */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__q-text {
  flex: 1;
}

/* ══════════════════════════════════════
   ANSWER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__item.ca--open .ca__answer {
  opacity: 1;
  transition: max-height 0.5s cubic-bezier(0, 0, 0.2, 1),
              opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__answer-inner {
  padding: 0 22px 22px 70px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #475569;
}

[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__answer-inner p {
  margin: 0;
}

/* ── Divider between items (subtle) ── */
[data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__item + .ca__item {
  margin-top: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark {
    padding: clamp(56px, 8vw, 80px) 20px;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__header {
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__question {
    padding: 18px 18px;
    gap: 14px;
    font-size: 0.95rem;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__answer-inner {
    padding: 0 18px 18px 62px;
    font-size: 0.9rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark {
    padding: 48px 16px;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__header {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__subtitle {
    font-size: 0.95rem;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__question {
    padding: 16px 14px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__q-icon {
    width: 28px;
    height: 28px;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__q-icon svg {
    width: 16px;
    height: 16px;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__answer-inner {
    padding: 0 14px 16px 54px;
    font-size: 0.88rem;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__list {
    gap: 8px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__answer {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__icon-v {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__item {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__q-icon {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-accordion-dark.block-content-accordion-dark .ca__question {
    transition: none;
  }
}

/* ═══ BLOCK: content-blockquote ═══ */
/* ============================================================
   CONTENT-BLOCKQUOTE — Creatine-DE
   Layer 3: Per-block premium overrides
   Editorial blockquote with accent bar, author attribution,
   and supporting context. Dark section for visual rhythm.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark background ── */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent gradient */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.25) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* Radial glow behind quote */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   CONTENT GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

/* ══════════════════════════════════════
   QUOTE WRAPPER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__quote-wrapper {
  position: relative;
  display: flex;
  gap: 0;
}

/* Accent bar — left edge */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__accent-bar {
  width: 3px;
  min-height: 100%;
  background: linear-gradient(
    180deg,
    var(--t-accent, #10B981) 0%,
    rgba(16, 185, 129, 0.3) 100%
  );
  border-radius: 2px;
  flex-shrink: 0;
}

/* Figure */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__figure {
  margin: 0;
  padding: 0 0 0 32px;
}

/* ══════════════════════════════════════
   QUOTE MARK
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__quote-mark {
  color: var(--t-accent, #10B981);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}

/* ══════════════════════════════════════
   QUOTE TEXT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__quote {
  margin: 0;
  padding: 0;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__quote-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  margin: 0;
}

/* ══════════════════════════════════════
   CAPTION / AUTHOR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__caption {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__author-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__author-role {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* Source badge */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 6px;
  width: fit-content;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__source:hover {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__source-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__source-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ══════════════════════════════════════
   CONTEXT COLUMN (RIGHT)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__context {
  padding-top: 8px;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 32px 0;
}

/* ══════════════════════════════════════
   STATS ROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  text-align: center;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__figure {
    padding-left: 24px;
  }

  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__stats {
    gap: 16px;
    padding: 20px 16px;
  }

  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__stat-value {
    font-size: 1.25rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote {
    padding: 56px 16px;
  }

  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__quote-text {
    font-size: 1.0625rem;
  }

  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__stats {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__stat-divider {
    width: 100%;
    height: 1px;
  }

  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__stat {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__author {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__quote-mark svg {
    width: 36px;
    height: 36px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-blockquote.block-content-blockquote .cb__source {
    transition: none;
  }
}
/* ═══ BLOCK: content-blockquote-light ═══ */
/* ============================================================
   CONTENT-BLOCKQUOTE — Creatine-DE
   Layer 3: Per-block premium overrides
   Editorial blockquote with accent bar, author attribution,
   and supporting context. Dark section for visual rhythm.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark background ── */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent gradient */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.25) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* Radial glow behind quote */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   CONTENT GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

/* ══════════════════════════════════════
   QUOTE WRAPPER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__quote-wrapper {
  position: relative;
  display: flex;
  gap: 0;
}

/* Accent bar — left edge */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__accent-bar {
  width: 3px;
  min-height: 100%;
  background: linear-gradient(
    180deg,
    var(--t-accent, #10B981) 0%,
    rgba(16, 185, 129, 0.3) 100%
  );
  border-radius: 2px;
  flex-shrink: 0;
}

/* Figure */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__figure {
  margin: 0;
  padding: 0 0 0 32px;
}

/* ══════════════════════════════════════
   QUOTE MARK
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__quote-mark {
  color: var(--t-accent, #10B981);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}

/* ══════════════════════════════════════
   QUOTE TEXT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__quote {
  margin: 0;
  padding: 0;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__quote-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--t-text, #1e293b);
  font-style: italic;
  margin: 0;
}

/* ══════════════════════════════════════
   CAPTION / AUTHOR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__caption {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__author-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__author-role {
  font-size: 0.8125rem;
  color: var(--t-muted, #64748b);
  line-height: 1.4;
}

/* Source badge */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 6px;
  width: fit-content;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__source:hover {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__source-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__source-text {
  font-size: 0.75rem;
  color: var(--t-muted, #64748b);
  font-style: italic;
}

/* ══════════════════════════════════════
   CONTEXT COLUMN (RIGHT)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__context {
  padding-top: 8px;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px 0;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 32px 0;
}

/* ══════════════════════════════════════
   STATS ROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  text-align: center;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__stat-label {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__figure {
    padding-left: 24px;
  }

  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__stats {
    gap: 16px;
    padding: 20px 16px;
  }

  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__stat-value {
    font-size: 1.25rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light {
    padding: 56px 16px;
  }

  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__quote-text {
    font-size: 1.0625rem;
  }

  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__stats {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__stat-divider {
    width: 100%;
    height: 1px;
  }

  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__stat {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__author {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__quote-mark svg {
    width: 36px;
    height: 36px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-blockquote-light.block-content-blockquote-light .cb__source {
    transition: none;
  }
}

/* ═══ BLOCK: content-checklist ═══ */
/* ============================================================
   CONTENT-CHECKLIST — Creatine-DE
   Layer 3: Per-block premium overrides
   Checklist cards with animated check icons, hover elevation,
   staggered layout. Light surface background.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-checklist.block-content-checklist {
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top border accent */
[data-project="creatine-de"] .block-content-checklist.block-content-checklist::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px 0;
  max-width: 680px;
}

[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   INTRO
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #475569;
  max-width: 720px;
  margin: 0 0 48px 0;
}

/* ══════════════════════════════════════
   GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
}

[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.18);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(16, 185, 129, 0.08);
}

/* ══════════════════════════════════════
   CHECK ICON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.10) 0%, rgba(16, 185, 129, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-accent, #10B981);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__card:hover .cc__check {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0.10) 100%);
}

[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__check-icon {
  width: 20px;
  height: 20px;
}

/* ══════════════════════════════════════
   CARD BODY
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__card-body {
  flex: 1;
  min-width: 0;
}

[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 8px 0;
}

[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__card-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* ══════════════════════════════════════
   FOOTER BADGE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__footer-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

[data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__footer-text {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__card {
    padding: 24px 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-checklist.block-content-checklist {
    padding: clamp(48px, 8vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__card {
    gap: 16px;
    padding: 20px 16px;
  }

  [data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__check {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  [data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__card-title {
    font-size: 0.9375rem;
  }

  [data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__card-text {
    font-size: 0.85rem;
  }

  [data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__footer-badge {
    padding: 10px 18px;
    font-size: 0.8125rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-checklist.block-content-checklist .cc__check {
    transition: none;
  }
}
/* ═══ BLOCK: content-checklist-dark ═══ */
/* ============================================================
   CONTENT-CHECKLIST — Creatine-DE
   Layer 3: Per-block premium overrides
   Checklist cards with animated check icons, hover elevation,
   staggered layout. Light surface background.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark {
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top border accent */
[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px 0;
  max-width: 680px;
}

[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   INTRO
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #475569;
  max-width: 720px;
  margin: 0 0 48px 0;
}

/* ══════════════════════════════════════
   GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.18);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(16, 185, 129, 0.08);
}

/* ══════════════════════════════════════
   CHECK ICON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.10) 0%, rgba(16, 185, 129, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-accent, #10B981);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__card:hover .cc__check {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0.10) 100%);
}

[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__check-icon {
  width: 20px;
  height: 20px;
}

/* ══════════════════════════════════════
   CARD BODY
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__card-body {
  flex: 1;
  min-width: 0;
}

[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 8px 0;
}

[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__card-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ══════════════════════════════════════
   FOOTER BADGE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__footer-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

[data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__footer-text {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__card {
    padding: 24px 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark {
    padding: clamp(48px, 8vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__card {
    gap: 16px;
    padding: 20px 16px;
  }

  [data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__check {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  [data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__card-title {
    font-size: 0.9375rem;
  }

  [data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__card-text {
    font-size: 0.85rem;
  }

  [data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__footer-badge {
    padding: 10px 18px;
    font-size: 0.8125rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-checklist-dark.block-content-checklist-dark .cc__check {
    transition: none;
  }
}

/* ═══ BLOCK: content-cta-card ═══ */
/* ============================================================
   CONTENT-CTA-CARD — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-width CTA card with product visual, benefit list,
   trust indicators, and glassmorphism glow accent.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card {
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent */
[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  justify-content: center;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 16px 48px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.08);
  overflow: hidden;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__card-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   CARD CONTENT (LEFT)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__card-content {
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px 0;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 28px 0;
  max-width: 520px;
}

/* ══════════════════════════════════════
   BENEFITS LIST
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__benefits {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  border-radius: 6px;
  margin-top: 1px;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__benefit-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #334155;
  font-weight: 500;
}

/* ══════════════════════════════════════
   CTA ACTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-primary:hover .cc__cta-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: transparent;
  color: var(--t-primary, #0F172A);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--t-accent, #10B981);
  color: var(--t-accent, #10B981);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

/* ══════════════════════════════════════
   CARD VISUAL (RIGHT)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__card-visual {
  background: var(--t-surface, #f8fafb);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  border-left: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__visual-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__visual-wrap:hover .cc__image {
  transform: scale(1.03);
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__visual-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__badge-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  line-height: 1.2;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__badge-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   TRUST ROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__trust-icon {
  color: var(--t-accent, #10B981);
  display: flex;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__trust-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  white-space: nowrap;
}

[data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(15, 23, 42, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__card-grid {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__card-visual {
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__card-content {
    padding: 36px 28px;
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__card-visual {
    padding: 28px;
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__trust-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__trust-divider {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card {
    padding: 48px 16px;
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__card-content {
    padding: 28px 20px;
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__card-visual {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__actions {
    flex-direction: column;
    width: 100%;
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-primary,
  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__trust-row {
    flex-direction: column;
    gap: 8px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-primary,
  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-secondary,
  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-arrow,
  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__image {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__visual-wrap:hover .cc__image {
    transform: none;
  }

  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-primary:hover,
  [data-project="creatine-de"] .block-content-cta-card.block-content-cta-card .cc__cta-secondary:hover {
    transform: none;
  }
}
/* ═══ BLOCK: content-cta-card-dark ═══ */
/* ============================================================
   CONTENT-CTA-CARD — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-width CTA card with product visual, benefit list,
   trust indicators, and glassmorphism glow accent.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark {
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent */
[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  justify-content: center;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 16px 48px rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.08);
  overflow: hidden;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__card-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   CARD CONTENT (LEFT)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__card-content {
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px 0;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 28px 0;
  max-width: 520px;
}

/* ══════════════════════════════════════
   BENEFITS LIST
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__benefits {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  border-radius: 6px;
  margin-top: 1px;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__benefit-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #334155;
  font-weight: 500;
}

/* ══════════════════════════════════════
   CTA ACTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-primary:hover .cc__cta-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: transparent;
  color: var(--t-primary, #0F172A);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--t-accent, #10B981);
  color: var(--t-accent, #10B981);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

/* ══════════════════════════════════════
   CARD VISUAL (RIGHT)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__card-visual {
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  border-left: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__visual-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__visual-wrap:hover .cc__image {
  transform: scale(1.03);
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__visual-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__badge-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  line-height: 1.2;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__badge-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   TRUST ROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__trust-icon {
  color: var(--t-accent, #10B981);
  display: flex;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__trust-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  white-space: nowrap;
}

[data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(15, 23, 42, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__card-grid {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__card-visual {
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__card-content {
    padding: 36px 28px;
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__card-visual {
    padding: 28px;
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__trust-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__trust-divider {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark {
    padding: 48px 16px;
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__card-content {
    padding: 28px 20px;
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__card-visual {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__actions {
    flex-direction: column;
    width: 100%;
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-primary,
  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__trust-row {
    flex-direction: column;
    gap: 8px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-primary,
  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-secondary,
  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-arrow,
  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__image {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__visual-wrap:hover .cc__image {
    transform: none;
  }

  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-primary:hover,
  [data-project="creatine-de"] .block-content-cta-card-dark.block-content-cta-card-dark .cc__cta-secondary:hover {
    transform: none;
  }
}

/* ═══ BLOCK: content-highlight ═══ */
/* ═══ CONTENT-HIGHLIGHT — Callout/tip box ═══ */

[data-project="creatine-de"] .block-content-highlight.block-content-highlight {
  padding: 0 24px;
  margin: clamp(24px, 3vw, 40px) auto;
  max-width: 840px;
  font-family: var(--t-body-font, 'Inter', sans-serif);
}

[data-project="creatine-de"] .block-content-highlight .ch__inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-left: 4px solid #10B981;
  border-radius: 12px;
  padding: clamp(20px, 3vw, 28px);
  position: relative;
}

[data-project="creatine-de"] .block-content-highlight .ch__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-content-highlight .ch__icon {
  width: 20px;
  height: 20px;
  color: #10B981;
}

[data-project="creatine-de"] .block-content-highlight .ch__content {
  flex: 1;
  min-width: 0;
}

[data-project="creatine-de"] .block-content-highlight .ch__title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--t-heading, #0a0f1a);
  margin: 0 0 8px;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-content-highlight .ch__text {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--t-text, #1e293b);
  margin: 0;
}

[data-project="creatine-de"] .block-content-highlight .ch__text strong {
  font-weight: 600;
  color: var(--t-heading, #0a0f1a);
}

@media (max-width: 640px) {
  [data-project="creatine-de"] .block-content-highlight .ch__inner {
    flex-direction: column;
    gap: 12px;
  }
}

/* ═══ BLOCK: content-highlight-dark ═══ */
/* ═══ CONTENT-HIGHLIGHT — Callout/tip box ═══ */

[data-project="creatine-de"] .block-content-highlight-dark.block-content-highlight-dark {
  padding: 0 24px;
  margin: clamp(24px, 3vw, 40px) auto;
  max-width: 840px;
  font-family: var(--t-body-font, 'Inter', sans-serif);
}

[data-project="creatine-de"] .block-content-highlight-dark .ch__inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-left: 4px solid #10B981;
  border-radius: 12px;
  padding: clamp(20px, 3vw, 28px);
  position: relative;
}

[data-project="creatine-de"] .block-content-highlight-dark .ch__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-content-highlight-dark .ch__icon {
  width: 20px;
  height: 20px;
  color: #10B981;
}

[data-project="creatine-de"] .block-content-highlight-dark .ch__content {
  flex: 1;
  min-width: 0;
}

[data-project="creatine-de"] .block-content-highlight-dark .ch__title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-content-highlight-dark .ch__text {
  font-size: 0.925rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

[data-project="creatine-de"] .block-content-highlight-dark .ch__text strong {
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 640px) {
  [data-project="creatine-de"] .block-content-highlight-dark .ch__inner {
    flex-direction: column;
    gap: 12px;
  }
}


/* ═══ BLOCK: content-img-text ═══ */
/* ============================================================
   CONTENT-IMG-TEXT — Creatine-DE
   Layer 3: Per-block premium overrides
   Split image-text layout with feature list, floating badge,
   accent CTA, and editorial typography. Alternates from
   previous surface-bg block.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-img-text.block-content-img-text {
  background: #ffffff;
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-content-img-text.block-content-img-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   GRID — Two columns
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   IMAGE COLUMN
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__col--media {
  position: relative;
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__image-wrap:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.14);
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 580 / 440;
}

/* Subtle gradient overlay on bottom */
[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.15) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── Floating badge ── */
[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  letter-spacing: 0.02em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__badge-icon {
  width: 14px;
  height: 14px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   TEXT COLUMN
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 28px 0;
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--t-muted, #475569);
  margin: 0 0 32px 0;
}

/* ══════════════════════════════════════
   FEATURE LIST
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__features {
  list-style: none;
  margin: 0 0 36px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--t-surface, #f8fafb);
  border-radius: 10px;
  border: 1px solid var(--t-border, rgba(0, 0, 0, 0.06));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__feature-icon svg {
  width: 18px;
  height: 18px;
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__feature-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__feature-text strong {
  font-weight: 650;
  color: var(--t-primary, #0F172A);
}

/* ══════════════════════════════════════
   CTA ROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.2),
              0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25),
              0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea572;
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__cta-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__cta:hover .ci__cta-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__link:hover {
  border-bottom-color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__col--media {
    order: -1;
  }

  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__title {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
  }

  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__feature {
    padding: 14px 16px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-img-text.block-content-img-text {
    padding: clamp(48px, 8vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__grid {
    gap: 32px;
  }

  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__eyebrow {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__feature {
    padding: 12px 14px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__image-wrap,
  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__feature,
  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__cta,
  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__cta-arrow,
  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__link {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__image-wrap:hover,
  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__feature:hover,
  [data-project="creatine-de"] .block-content-img-text.block-content-img-text .ci__cta:hover {
    transform: none;
  }
}
/* ═══ BLOCK: content-img-text-dark ═══ */
/* ============================================================
   CONTENT-IMG-TEXT — Creatine-DE
   Layer 3: Per-block premium overrides
   Split image-text layout with feature list, floating badge,
   accent CTA, and editorial typography. Alternates from
   previous surface-bg block.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark {
  background: #0F172A;
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   GRID — Two columns
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   IMAGE COLUMN
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__col--media {
  position: relative;
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.30);
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__image-wrap:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 6px rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.42);
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 580 / 440;
}

/* Subtle gradient overlay on bottom */
[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.15) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── Floating badge ── */
[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  letter-spacing: 0.02em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.30);
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__badge-icon {
  width: 14px;
  height: 14px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   TEXT COLUMN
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 28px 0;
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 32px 0;
}

/* ══════════════════════════════════════
   FEATURE LIST
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__features {
  list-style: none;
  margin: 0 0 36px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  border-radius: 10px;
  border: 1px solid var(--t-border, rgba(255, 255, 255, 0.08));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__feature-icon svg {
  width: 18px;
  height: 18px;
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__feature-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__feature-text strong {
  font-weight: 650;
  color: var(--t-primary, #0F172A);
}

/* ══════════════════════════════════════
   CTA ROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.2),
              0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25),
              0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea572;
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__cta-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__cta:hover .ci__cta-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__link:hover {
  border-bottom-color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__col--media {
    order: -1;
  }

  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__title {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
  }

  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__feature {
    padding: 14px 16px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark {
    padding: clamp(48px, 8vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__grid {
    gap: 32px;
  }

  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__eyebrow {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__feature {
    padding: 12px 14px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__image-wrap,
  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__feature,
  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__cta,
  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__cta-arrow,
  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__link {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__image-wrap:hover,
  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__feature:hover,
  [data-project="creatine-de"] .block-content-img-text-dark.block-content-img-text-dark .ci__cta:hover {
    transform: none;
  }
}

/* ═══ BLOCK: content-narrow ═══ */
/* ============================================================
   CONTENT-NARROW — Creatine-DE
   Layer 3: Per-block premium overrides
   Focused reading section with pull-quote highlight,
   generous whitespace, and editorial typography.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-narrow.block-content-narrow {
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top border accent */
[data-project="creatine-de"] .block-content-narrow.block-content-narrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 90%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.15) 30%,
    rgba(16, 185, 129, 0.25) 50%,
    rgba(16, 185, 129, 0.15) 70%,
    transparent 100%
  );
}

/* ── Inner container — narrow reading width ── */
[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__inner {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__eyebrow-line {
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--t-accent, #10B981);
  opacity: 0.4;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  text-align: center;
  margin: 0 0 48px 0;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   BODY TEXT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  color: var(--t-primary, #0F172A);
  font-weight: 400;
  margin: 0;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #334155;
  margin: 0;
}

/* ══════════════════════════════════════
   DIVIDER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  opacity: 0.5;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__divider-dot:nth-child(2) {
  opacity: 0.3;
  width: 3px;
  height: 3px;
}

/* ══════════════════════════════════════
   HIGHLIGHT / BLOCKQUOTE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__highlight {
  margin: 12px 0;
  padding: 32px 36px;
  background: #ffffff;
  border-left: 3px solid var(--t-accent, #10B981);
  border-radius: 0 12px 12px 0;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
}

/* Accent glow on left border */
[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  bottom: 0;
  width: 3px;
  background: var(--t-accent, #10B981);
  box-shadow: -4px 0 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__quote {
  margin: 0;
  padding: 0;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__quote p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--t-primary, #0F172A);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cite {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cite-dash {
  color: var(--t-accent, #10B981);
  font-weight: 600;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cite-source {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

/* ══════════════════════════════════════
   CTA ROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cta-row {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition:
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cta:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cta-icon {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cta:hover .cn__cta-icon {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   SELECTION HIGHLIGHT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow.block-content-narrow ::selection {
  background: rgba(16, 185, 129, 0.15);
  color: var(--t-primary, #0F172A);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-narrow.block-content-narrow {
    padding: clamp(56px, 8vw, 80px) 20px;
  }

  [data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__title {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__highlight {
    padding: 24px 28px;
  }

  [data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cta-row {
    margin-top: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-narrow.block-content-narrow {
    padding: 48px 16px;
  }

  [data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__title {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__body {
    gap: 24px;
  }

  [data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__highlight {
    padding: 20px 20px;
    border-radius: 0 8px 8px 0;
  }

  [data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cta {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__eyebrow-line {
    max-width: 32px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cta,
  [data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cta-icon {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-narrow.block-content-narrow .cn__cta:hover {
    transform: none;
  }
}
/* ═══ BLOCK: content-narrow-dark ═══ */
/* ============================================================
   CONTENT-NARROW — Creatine-DE
   Layer 3: Per-block premium overrides
   Focused reading section with pull-quote highlight,
   generous whitespace, and editorial typography.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark {
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top border accent */
[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 90%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.15) 30%,
    rgba(16, 185, 129, 0.25) 50%,
    rgba(16, 185, 129, 0.15) 70%,
    transparent 100%
  );
}

/* ── Inner container — narrow reading width ── */
[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__inner {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__eyebrow-line {
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--t-accent, #10B981);
  opacity: 0.4;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  text-align: center;
  margin: 0 0 48px 0;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   BODY TEXT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  color: var(--t-primary, #0F172A);
  font-weight: 400;
  margin: 0;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #334155;
  margin: 0;
}

/* ══════════════════════════════════════
   DIVIDER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  opacity: 0.5;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__divider-dot:nth-child(2) {
  opacity: 0.3;
  width: 3px;
  height: 3px;
}

/* ══════════════════════════════════════
   HIGHLIGHT / BLOCKQUOTE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__highlight {
  margin: 12px 0;
  padding: 32px 36px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--t-accent, #10B981);
  border-radius: 0 12px 12px 0;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.08);
  position: relative;
}

/* Accent glow on left border */
[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  bottom: 0;
  width: 3px;
  background: var(--t-accent, #10B981);
  box-shadow: -4px 0 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__quote {
  margin: 0;
  padding: 0;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__quote p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--t-primary, #0F172A);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cite {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cite-dash {
  color: var(--t-accent, #10B981);
  font-weight: 600;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cite-source {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  font-weight: 500;
}

/* ══════════════════════════════════════
   CTA ROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cta-row {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition:
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cta:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cta-icon {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cta:hover .cn__cta-icon {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   SELECTION HIGHLIGHT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark ::selection {
  background: rgba(16, 185, 129, 0.15);
  color: var(--t-primary, #0F172A);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark {
    padding: clamp(56px, 8vw, 80px) 20px;
  }

  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__title {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__highlight {
    padding: 24px 28px;
  }

  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cta-row {
    margin-top: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark {
    padding: 48px 16px;
  }

  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__title {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__body {
    gap: 24px;
  }

  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__highlight {
    padding: 20px 20px;
    border-radius: 0 8px 8px 0;
  }

  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cta {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__eyebrow-line {
    max-width: 32px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cta,
  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cta-icon {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-narrow-dark.block-content-narrow-dark .cn__cta:hover {
    transform: none;
  }
}

/* ═══ BLOCK: content-sidebar ═══ */
/* ============================================================
   CONTENT-SIDEBAR — Creatine-DE
   Layer 3: Per-block premium overrides
   Main content + sticky sidebar layout with dosage info,
   checklist cards, and source attribution.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar {
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
}

/* Top accent gradient */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 56px 0;
  max-width: 700px;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   LAYOUT — Main + Sidebar grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

/* ══════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__section:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
  padding-bottom: 0;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__section-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--t-muted, #475569);
  margin: 0 0 16px 0;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__text:last-child {
  margin-bottom: 0;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__text strong {
  color: var(--t-primary, #0F172A);
  font-weight: 600;
}

/* ── Callout box ── */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__callout {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 12px;
  border-left: 3px solid var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__callout-icon {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__callout-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin-bottom: 6px;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__callout-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--t-muted, #475569);
  margin: 0;
}

/* ══════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Sidebar cards ── */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__sidebar-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__sidebar-card:hover {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* ── Highlight card ── */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__sidebar-card--highlight {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  border: none;
  text-align: center;
  padding: 28px 24px;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__sidebar-card--highlight:hover {
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.25),
    0 12px 32px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* ── Card title ── */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-muted, #475569);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
}

/* ── Checklist ── */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-check {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Dose table ── */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__dose-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__dose-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__dose-phase {
  font-size: 0.875rem;
  color: var(--t-muted, #475569);
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__dose-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__dose-divider {
  height: 1px;
  background: var(--t-border, rgba(15, 23, 42, 0.06));
}

/* ── Source card ── */
[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-source-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--t-muted, #475569);
  margin: 0 0 16px 0;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-link:hover {
  gap: 10px;
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-link svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-link:hover svg {
  transform: translateX(2px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__sidebar-card--highlight {
    grid-column: 1 / -1;
  }

  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__title {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar {
    padding: clamp(48px, 7vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__sidebar {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__section {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-value {
    font-size: 2rem;
  }

  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__callout {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__sidebar-card,
  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-link,
  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__card-link svg {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-sidebar.block-content-sidebar .cs__sidebar-card:hover {
    transform: none;
  }
}
/* ═══ BLOCK: content-sidebar-dark ═══ */
/* ============================================================
   CONTENT-SIDEBAR — Creatine-DE
   Layer 3: Per-block premium overrides
   Main content + sticky sidebar layout with dosage info,
   checklist cards, and source attribution.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark {
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
}

/* Top accent gradient */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 56px 0;
  max-width: 700px;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   LAYOUT — Main + Sidebar grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

/* ══════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__section:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
  padding-bottom: 0;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__section-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px 0;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__text:last-child {
  margin-bottom: 0;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__text strong {
  color: var(--t-primary, #0F172A);
  font-weight: 600;
}

/* ── Callout box ── */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__callout {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 12px;
  border-left: 3px solid var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__callout-icon {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__callout-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin-bottom: 6px;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__callout-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ══════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Sidebar cards ── */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__sidebar-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__sidebar-card:hover {
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ── Highlight card ── */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__sidebar-card--highlight {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  border: none;
  text-align: center;
  padding: 28px 24px;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__sidebar-card--highlight:hover {
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.25),
    0 12px 32px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* ── Card title ── */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
}

/* ── Checklist ── */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-check {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Dose table ── */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__dose-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__dose-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__dose-phase {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__dose-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__dose-divider {
  height: 1px;
  background: var(--t-border, rgba(15, 23, 42, 0.06));
}

/* ── Source card ── */
[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-source-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px 0;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-link:hover {
  gap: 10px;
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-link svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-link:hover svg {
  transform: translateX(2px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__sidebar-card--highlight {
    grid-column: 1 / -1;
  }

  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__title {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark {
    padding: clamp(48px, 7vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__sidebar {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__section {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-value {
    font-size: 2rem;
  }

  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__callout {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__sidebar-card,
  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-link,
  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__card-link svg {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-sidebar-dark.block-content-sidebar-dark .cs__sidebar-card:hover {
    transform: none;
  }
}

/* ═══ BLOCK: content-split ═══ */
/* ============================================================
   CONTENT-SPLIT — Creatine-DE
   Layer 3: Per-block premium overrides
   Split layout: text + features left, image + stats right.
   Premium editorial feel with icon-accented feature list.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-split.block-content-split {
  background: #ffffff;
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-content-split.block-content-split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-split.block-content-split .cs__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ── Grid layout ── */
[data-project="creatine-de"] .block-content-split.block-content-split .cs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   TEXT COLUMN
   ══════════════════════════════════════ */

/* ── Eyebrow ── */
[data-project="creatine-de"] .block-content-split.block-content-split .cs__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__badge-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-content-split.block-content-split .cs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 24px 0;
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ── Lead paragraph ── */
[data-project="creatine-de"] .block-content-split.block-content-split .cs__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--t-muted, #475569);
  margin: 0 0 36px 0;
  max-width: 520px;
}

/* ══════════════════════════════════════
   FEATURE LIST
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-split.block-content-split .cs__feats {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__feat:hover .cs__feat-icon {
  background: rgba(16, 185, 129, 0.14);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__feat-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__feat-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__feat-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--t-muted, #475569);
}

/* ══════════════════════════════════════
   CTA BUTTON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-split.block-content-split .cs__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__link:hover {
  transform: translateY(-2px);
  background: #0ea472;
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__link-arrow {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__link:hover .cs__link-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   MEDIA COLUMN
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-split.block-content-split .cs__img-wrap {
  position: relative;
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 12px 36px rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 7 / 8;
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(15, 23, 42, 0.35) 100%
  );
  pointer-events: none;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-content-split.block-content-split .cs__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__badge-icon {
  display: flex;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-primary, #0F172A);
}

/* ══════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-split.block-content-split .cs__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding: 20px 28px;
  background: var(--t-surface, #f8fafb);
  border-radius: 12px;
  border: 1px solid var(--t-border, rgba(0, 0, 0, 0.06));
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__stat-value {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--t-muted, #475569);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-content-split.block-content-split .cs__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--t-border, rgba(0, 0, 0, 0.08));
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-split.block-content-split .cs__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  [data-project="creatine-de"] .block-content-split.block-content-split .cs__img-wrap {
    order: -1;
  }

  [data-project="creatine-de"] .block-content-split.block-content-split .cs__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-content-split.block-content-split .cs__text {
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-content-split.block-content-split .cs__stats {
    gap: 16px;
    padding: 16px 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-split.block-content-split {
    padding: 56px 16px;
  }

  [data-project="creatine-de"] .block-content-split.block-content-split .cs__feat {
    gap: 12px;
  }

  [data-project="creatine-de"] .block-content-split.block-content-split .cs__feat-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-content-split.block-content-split .cs__stats {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-content-split.block-content-split .cs__stat-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-content-split.block-content-split .cs__link {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-split.block-content-split .cs__link,
  [data-project="creatine-de"] .block-content-split.block-content-split .cs__link-arrow,
  [data-project="creatine-de"] .block-content-split.block-content-split .cs__feat-icon {
    transition: none;
  }
}
/* ═══ BLOCK: content-split-dark ═══ */
/* ============================================================
   CONTENT-SPLIT — Creatine-DE
   Layer 3: Per-block premium overrides
   Split layout: text + features left, image + stats right.
   Premium editorial feel with icon-accented feature list.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark {
  background: #0F172A;
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ── Grid layout ── */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   TEXT COLUMN
   ══════════════════════════════════════ */

/* ── Eyebrow ── */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__badge-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 24px 0;
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ── Lead paragraph ── */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 36px 0;
  max-width: 520px;
}

/* ══════════════════════════════════════
   FEATURE LIST
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__feats {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__feat:hover .cs__feat-icon {
  background: rgba(16, 185, 129, 0.14);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__feat-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__feat-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__feat-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════════
   CTA BUTTON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__link:hover {
  transform: translateY(-2px);
  background: #0ea472;
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__link-arrow {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__link:hover .cs__link-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   MEDIA COLUMN
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__img-wrap {
  position: relative;
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 12px 36px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 7 / 8;
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(15, 23, 42, 0.35) 100%
  );
  pointer-events: none;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 2px 8px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__badge-icon {
  display: flex;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-primary, #0F172A);
}

/* ══════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding: 20px 28px;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  border-radius: 12px;
  border: 1px solid var(--t-border, rgba(255, 255, 255, 0.08));
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__stat-value {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--t-border, rgba(255, 255, 255, 0.08));
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__img-wrap {
    order: -1;
  }

  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__text {
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__stats {
    gap: 16px;
    padding: 16px 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark {
    padding: 56px 16px;
  }

  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__feat {
    gap: 12px;
  }

  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__feat-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__stats {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__stat-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__link {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__link,
  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__link-arrow,
  [data-project="creatine-de"] .block-content-split-dark.block-content-split-dark .cs__feat-icon {
    transition: none;
  }
}

/* ═══ BLOCK: content-steps-numbered ═══ */
/* ============================================================
   CONTENT-STEPS-NUMBERED — Creatine-DE
   Layer 3: Per-block premium overrides
   Vertical numbered timeline with glowing step indicators,
   connector lines, card-based descriptions. Dark section.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 24px;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: csnGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: csnGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes csnGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.1); }
}

@keyframes csnGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.06); }
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__header {
  text-align: center;
  margin-bottom: 64px;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  opacity: 0.5;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ══════════════════════════════════════
   STEP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 24px;
  position: relative;
}

/* ── Step number circle ── */
[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-number {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__number-text {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-accent, #10B981);
  position: relative;
  z-index: 2;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__number-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.06);
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step:hover .csn__number-ring {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.15), 0 0 48px rgba(16, 185, 129, 0.06);
}

/* ── Connector line ── */
[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-connector {
  grid-column: 1;
  grid-row: 2;
  width: 2px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.05) 100%);
  justify-self: center;
  min-height: 24px;
}

/* ── Step card ── */
[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-card {
  grid-column: 2;
  grid-row: 1 / -1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step:hover .csn__step-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 32px rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px 0;
}

/* ── Step meta tag ── */
[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step:hover .csn__step-meta {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__meta-icon {
  width: 16px;
  height: 16px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__meta-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   FOOTER NOTE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__footer {
  margin-top: 48px;
  text-align: center;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__footer-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

[data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__footer-icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered {
    padding: clamp(56px, 8vw, 80px) 20px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__header {
    margin-bottom: 48px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step {
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-number {
    width: 48px;
    height: 48px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__number-text {
    font-size: 1.0625rem;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-card {
    padding: 22px 24px;
    margin-bottom: 16px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-title {
    font-size: 1.125rem;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__footer-note {
    padding: 12px 20px;
    font-size: 0.8125rem;
    border-radius: 12px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered {
    padding: clamp(48px, 7vw, 64px) 16px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step {
    grid-template-columns: 40px 1fr;
    gap: 0 12px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-number {
    width: 40px;
    height: 40px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__number-text {
    font-size: 0.9375rem;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-card {
    padding: 18px 20px;
    margin-bottom: 12px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-title {
    font-size: 1.0625rem;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-desc {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__glow--1 {
    width: 300px;
    height: 300px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__glow--2 {
    width: 250px;
    height: 250px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__glow--1,
  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-card,
  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__number-ring,
  [data-project="creatine-de"] .block-content-steps-numbered.block-content-steps-numbered .csn__step-meta {
    transition: none;
  }
}
/* ═══ BLOCK: content-steps-numbered-light ═══ */
/* ============================================================
   CONTENT-STEPS-NUMBERED — Creatine-DE
   Layer 3: Per-block premium overrides
   Vertical numbered timeline with glowing step indicators,
   connector lines, card-based descriptions. Dark section.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 24px;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: csnGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: csnGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes csnGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.1); }
}

@keyframes csnGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.06); }
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__header {
  text-align: center;
  margin-bottom: 64px;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  opacity: 0.5;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px 0;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ══════════════════════════════════════
   STEP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 24px;
  position: relative;
}

/* ── Step number circle ── */
[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-number {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__number-text {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-accent, #10B981);
  position: relative;
  z-index: 2;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__number-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.06);
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step:hover .csn__number-ring {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.15), 0 0 48px rgba(16, 185, 129, 0.06);
}

/* ── Connector line ── */
[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-connector {
  grid-column: 1;
  grid-row: 2;
  width: 2px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.05) 100%);
  justify-self: center;
  min-height: 24px;
}

/* ── Step card ── */
[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-card {
  grid-column: 2;
  grid-row: 1 / -1;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step:hover .csn__step-card {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 32px rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 16px 0;
}

/* ── Step meta tag ── */
[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step:hover .csn__step-meta {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__meta-icon {
  width: 16px;
  height: 16px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__meta-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   FOOTER NOTE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__footer {
  margin-top: 48px;
  text-align: center;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__footer-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--t-muted, #64748b);
  margin: 0;
}

[data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__footer-icon {
  width: 16px;
  height: 16px;
  color: rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light {
    padding: clamp(56px, 8vw, 80px) 20px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__header {
    margin-bottom: 48px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step {
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-number {
    width: 48px;
    height: 48px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__number-text {
    font-size: 1.0625rem;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-card {
    padding: 22px 24px;
    margin-bottom: 16px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-title {
    font-size: 1.125rem;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__footer-note {
    padding: 12px 20px;
    font-size: 0.8125rem;
    border-radius: 12px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light {
    padding: clamp(48px, 7vw, 64px) 16px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step {
    grid-template-columns: 40px 1fr;
    gap: 0 12px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-number {
    width: 40px;
    height: 40px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__number-text {
    font-size: 0.9375rem;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-card {
    padding: 18px 20px;
    margin-bottom: 12px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-title {
    font-size: 1.0625rem;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-desc {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__glow--1 {
    width: 300px;
    height: 300px;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__glow--2 {
    width: 250px;
    height: 250px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__glow--1,
  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-card,
  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__number-ring,
  [data-project="creatine-de"] .block-content-steps-numbered-light.block-content-steps-numbered-light .csn__step-meta {
    transition: none;
  }
}

/* ═══ BLOCK: content-timeline-horizontal ═══ */
/* ============================================================
   CONTENT-TIMELINE-HORIZONTAL — Creatine-DE
   Layer 3: Per-block premium overrides
   Horizontal scrolling timeline with card milestones,
   animated progress line, and nav controls.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (dark) ── */
[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__glow--1 {
  width: 500px;
  height: 500px;
  top: -25%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  animation: cthGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -20%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: cthGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes cthGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 20px) scale(1.12); }
}

@keyframes cthGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  opacity: 0.5;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   TRACK — horizontal scroll container
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__track-wrap {
  position: relative;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 40px;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__track::-webkit-scrollbar {
  display: none;
}

/* ══════════════════════════════════════
   TIMELINE LINE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__line {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  margin: 0 4px 32px;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  border-radius: 1px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: rgba(16, 185, 129, 0.2);
}

/* Card year header */
[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card-year {
  position: relative;
  padding: 24px 24px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__year-number {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__year-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
  flex-shrink: 0;
}

/* Card body */
[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card-body {
  padding: 0 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 16px 0;
  flex: 1;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 6px;
  padding: 4px 10px;
  align-self: flex-start;
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__nav-btn:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #ffffff;
  transform: scale(1.08);
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__nav-btn:active {
  transform: scale(0.96);
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__nav-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__dot--active {
  width: 24px;
  border-radius: 3px;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__header {
    margin-bottom: 48px;
    padding: 0 20px;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card {
    flex: 0 0 270px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card {
    flex: 0 0 calc(100vw - 64px);
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__year-number {
    font-size: 1.65rem;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card-body {
    padding: 0 20px 20px;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card-year {
    padding: 20px 20px 12px;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__nav-btn {
    width: 40px;
    height: 40px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__glow--1,
  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__nav-btn {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__line-fill {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .cth__dot {
    transition: none;
  }
}
[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .th__timeline:active {
  cursor: grabbing;
}

[data-project="creatine-de"] .block-content-timeline-horizontal.block-content-timeline-horizontal .th__timeline::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, transparent, var(--_bg, #0F172A));
  pointer-events: none;
  z-index: 4;
}

/* ═══ BLOCK: content-timeline-horizontal-light ═══ */
/* ============================================================
   CONTENT-TIMELINE-HORIZONTAL — Creatine-DE
   Layer 3: Per-block premium overrides
   Horizontal scrolling timeline with card milestones,
   animated progress line, and nav controls.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (dark) ── */
[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__glow--1 {
  width: 500px;
  height: 500px;
  top: -25%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  animation: cthGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -20%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: cthGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes cthGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 20px) scale(1.12); }
}

@keyframes cthGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  opacity: 0.5;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px 0;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   TRACK — horizontal scroll container
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__track-wrap {
  position: relative;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 40px;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__track::-webkit-scrollbar {
  display: none;
}

/* ══════════════════════════════════════
   TIMELINE LINE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__line {
  position: relative;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 1px;
  margin: 0 4px 32px;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  border-radius: 1px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: rgba(16, 185, 129, 0.2);
}

/* Card year header */
[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card-year {
  position: relative;
  padding: 24px 24px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__year-number {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__year-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
  flex-shrink: 0;
}

/* Card body */
[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card-body {
  padding: 0 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  margin: 0 0 10px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0 0 16px 0;
  flex: 1;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 6px;
  padding: 4px 10px;
  align-self: flex-start;
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.06);
  color: var(--t-muted, #64748b);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__nav-btn:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #ffffff;
  transform: scale(1.08);
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__nav-btn:active {
  transform: scale(0.96);
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__nav-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__dot--active {
  width: 24px;
  border-radius: 3px;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__header {
    margin-bottom: 48px;
    padding: 0 20px;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card {
    flex: 0 0 270px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card {
    flex: 0 0 calc(100vw - 64px);
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__year-number {
    font-size: 1.65rem;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card-body {
    padding: 0 20px 20px;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card-year {
    padding: 20px 20px 12px;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__nav-btn {
    width: 40px;
    height: 40px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__glow--1,
  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__nav-btn {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__line-fill {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .cth__dot {
    transition: none;
  }
}
[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .th__timeline:active {
  cursor: grabbing;
}

[data-project="creatine-de"] .block-content-timeline-horizontal-light.block-content-timeline-horizontal-light .th__timeline::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: var(--t-surface, #f8fafb);
  pointer-events: none;
  z-index: 4;
}


/* ═══ BLOCK: content-two-col ═══ */
/* ============================================================
   CONTENT-TWO-COL — Creatine-DE
   Layer 3: Per-block premium overrides
   Two-column layout: image + stats left, stacked text blocks
   right. Premium editorial feel with icon accents.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col {
  background: #ffffff;
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent gradient */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 56px 0;
  max-width: 640px;
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   GRID — Two Columns
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ══════════════════════════════════════
   LEFT COLUMN — Media
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__image-wrap:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.12);
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ── Image badge ── */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-primary, #0F172A);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__badge-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ── Stat row below image ── */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--t-surface, #f8fafb);
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__stat {
  text-align: center;
  flex: 1;
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-accent, #10B981);
  line-height: 1.2;
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.55);
  letter-spacing: 0.01em;
  margin-top: 4px;
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RIGHT COLUMN — Text Blocks
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__col--text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__block {
  position: relative;
  padding-left: 40px;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__block-icon {
  position: absolute;
  top: 2px;
  left: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-accent, #10B981);
}

/* ── Block title ── */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__block-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

/* ── Block text ── */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__block-text {
  font-size: 0.925rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.7);
  margin: 0;
}

/* ══════════════════════════════════════
   CTA LINK
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  padding-left: 40px;
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__cta:hover {
  gap: 12px;
  color: #059669;
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__cta:hover .tc__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__stat-row {
    padding: 16px 20px;
  }

  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__stat-value {
    font-size: 1.1rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-two-col.block-content-two-col {
    padding: clamp(48px, 8vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__stat-row {
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
  }

  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__stat-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__block {
    padding-left: 36px;
  }

  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__cta {
    padding-left: 36px;
  }

  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__col--text {
    gap: 28px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__image-wrap,
  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__cta,
  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-two-col.block-content-two-col .tc__image-wrap:hover {
    transform: none;
  }
}
/* ═══ BLOCK: content-two-col-dark ═══ */
/* ============================================================
   CONTENT-TWO-COL — Creatine-DE
   Layer 3: Per-block premium overrides
   Two-column layout: image + stats left, stacked text blocks
   right. Premium editorial feel with icon accents.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark {
  background: #0F172A;
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Subtle top accent gradient */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 25%,
    rgba(16, 185, 129, 0.22) 50%,
    rgba(16, 185, 129, 0.12) 75%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 56px 0;
  max-width: 640px;
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   GRID — Two Columns
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ══════════════════════════════════════
   LEFT COLUMN — Media
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__image-wrap:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 6px rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.36);
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ── Image badge ── */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-primary, #0F172A);
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__badge-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ── Stat row below image ── */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 20px 24px;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__stat {
  text-align: center;
  flex: 1;
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-accent, #10B981);
  line-height: 1.2;
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.55);
  letter-spacing: 0.01em;
  margin-top: 4px;
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RIGHT COLUMN — Text Blocks
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__col--text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__block {
  position: relative;
  padding-left: 40px;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__block-icon {
  position: absolute;
  top: 2px;
  left: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-accent, #10B981);
}

/* ── Block title ── */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__block-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

/* ── Block text ── */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__block-text {
  font-size: 0.925rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.7);
  margin: 0;
}

/* ══════════════════════════════════════
   CTA LINK
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  padding-left: 40px;
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__cta:hover {
  gap: 12px;
  color: #059669;
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__cta:hover .tc__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__stat-row {
    padding: 16px 20px;
  }

  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__stat-value {
    font-size: 1.1rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark {
    padding: clamp(48px, 8vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__stat-row {
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
  }

  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__stat-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__block {
    padding-left: 36px;
  }

  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__cta {
    padding-left: 36px;
  }

  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__col--text {
    gap: 28px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__image-wrap,
  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__cta,
  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-two-col-dark.block-content-two-col-dark .tc__image-wrap:hover {
    transform: none;
  }
}

/* ═══ BLOCK: content-video-text ═══ */
/* ============================================================
   CONTENT-VIDEO-TEXT — Creatine-DE
   Layer 3: Per-block premium overrides
   Video + text split layout with play button overlay,
   key facts checklist, and accent CTA. Dark section for
   visual rhythm (previous block: white bg).
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark background ── */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Top accent gradient line */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.15) 25%,
    rgba(16, 185, 129, 0.3) 50%,
    rgba(16, 185, 129, 0.15) 75%,
    transparent 100%
  );
}

/* Subtle radial glow behind video */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 56px 0;
  max-width: 680px;
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   GRID — two columns
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

/* ══════════════════════════════════════
   VIDEO COLUMN
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0e14;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.25);
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__video-poster {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__video-container:hover .vt__video-poster {
  transform: scale(1.03);
}

/* Play button */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(16, 185, 129, 0.9);
  border: none;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  box-shadow:
    0 4px 16px rgba(16, 185, 129, 0.35),
    0 0 0 0 rgba(16, 185, 129, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(16, 185, 129, 1);
  box-shadow:
    0 6px 24px rgba(16, 185, 129, 0.45),
    0 0 0 8px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__play-btn:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 4px;
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__play-icon {
  width: 48px;
  height: 48px;
  margin-left: 3px;
}

/* Duration badge */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* Caption below video */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__video-caption {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding: 0 4px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__caption-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.35);
}

/* ══════════════════════════════════════
   TEXT COLUMN
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__col--text {
  padding-top: 8px;
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__text-block {
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__subtitle {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ══════════════════════════════════════
   KEY FACTS — checklist
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__key-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__fact {
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__fact-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.005em;
}

/* ══════════════════════════════════════
   CTA BUTTON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: -0.01em;
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__cta:hover {
  transform: translateY(-2px);
  background: #0ea472;
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__cta:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 4px;
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__cta-arrow {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__cta:hover .vt__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__col--text {
    padding-top: 0;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__play-btn {
    width: 60px;
    height: 60px;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__play-icon {
    width: 40px;
    height: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-video-text.block-content-video-text {
    padding: 56px 16px;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__title {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__text-block {
    margin-bottom: 24px;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__subtitle {
    font-size: 1rem;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__text {
    font-size: 0.88rem;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__fact-text {
    font-size: 0.82rem;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__video-container {
    border-radius: 8px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__video-poster,
  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__play-btn,
  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__cta,
  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__video-container:hover .vt__video-poster {
    transform: none;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__cta:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-content-video-text.block-content-video-text .vt__play-btn:hover {
    transform: translate(-50%, -50%);
  }
}
@keyframes cvtKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -0.5%); }
}

/* ═══ BLOCK: content-video-text-light ═══ */
/* ============================================================
   CONTENT-VIDEO-TEXT — Creatine-DE
   Layer 3: Per-block premium overrides
   Video + text split layout with play button overlay,
   key facts checklist, and accent CTA. Dark section for
   visual rhythm (previous block: white bg).
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark background ── */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 24px;
  position: relative;
  overflow: visible;
}

/* Top accent gradient line */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.15) 25%,
    rgba(16, 185, 129, 0.3) 50%,
    rgba(16, 185, 129, 0.15) 75%,
    transparent 100%
  );
}

/* Subtle radial glow behind video */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 56px 0;
  max-width: 680px;
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__title-em {
  font-style: normal;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   GRID — two columns
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

/* ══════════════════════════════════════
   VIDEO COLUMN
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0e14;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.10),
    0 8px 32px rgba(0, 0, 0, 0.25);
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__video-poster {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__video-container:hover .vt__video-poster {
  transform: scale(1.03);
}

/* Play button */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(16, 185, 129, 0.9);
  border: none;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  box-shadow:
    0 4px 16px rgba(16, 185, 129, 0.35),
    0 0 0 0 rgba(16, 185, 129, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(16, 185, 129, 1);
  box-shadow:
    0 6px 24px rgba(16, 185, 129, 0.45),
    0 0 0 8px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__play-btn:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 4px;
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__play-icon {
  width: 48px;
  height: 48px;
  margin-left: 3px;
}

/* Duration badge */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--t-text, #1e293b);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* Caption below video */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__video-caption {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding: 0 4px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.45);
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__caption-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(0, 0, 0, 0.35);
}

/* ══════════════════════════════════════
   TEXT COLUMN
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__col--text {
  padding-top: 8px;
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__text-block {
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__subtitle {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   KEY FACTS — checklist
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__key-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__fact {
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__fact-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--t-text, #1e293b);
  letter-spacing: -0.005em;
}

/* ══════════════════════════════════════
   CTA BUTTON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--t-accent, #10B981);
  color: var(--t-heading, #0F172A);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: -0.01em;
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__cta:hover {
  transform: translateY(-2px);
  background: #0ea472;
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__cta:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 4px;
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__cta-arrow {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__cta:hover .vt__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__col--text {
    padding-top: 0;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__play-btn {
    width: 60px;
    height: 60px;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__play-icon {
    width: 40px;
    height: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light {
    padding: 56px 16px;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__title {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__text-block {
    margin-bottom: 24px;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__subtitle {
    font-size: 1rem;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__text {
    font-size: 0.88rem;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__fact-text {
    font-size: 0.82rem;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__video-container {
    border-radius: 8px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__video-poster,
  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__play-btn,
  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__cta,
  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__video-container:hover .vt__video-poster {
    transform: none;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__cta:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-content-video-text-light.block-content-video-text-light .vt__play-btn:hover {
    transform: translate(-50%, -50%);
  }
}
@keyframes cvtKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -0.5%); }
}


/* ═══ BLOCK: cookie-banner ═══ */
/* ============================================================
   COOKIE-BANNER — Creatine DE
   Bottom-fixed glassmorphism consent bar
   ============================================================ */

[data-project="creatine-de"] .block-cookie-banner.block-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cookie-banner.block-cookie-banner.ck--visible {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-cookie-banner.block-cookie-banner .ck__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  font-family: var(--t-body-font, 'Inter', sans-serif);
}

[data-project="creatine-de"] .block-cookie-banner.block-cookie-banner .ck__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

[data-project="creatine-de"] .block-cookie-banner.block-cookie-banner .ck__link {
  color: var(--t-accent, #10B981);
  text-decoration: underline;
  text-underline-offset: 2px;
}

[data-project="creatine-de"] .block-cookie-banner.block-cookie-banner .ck__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-cookie-banner.block-cookie-banner .ck__btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cookie-banner.block-cookie-banner .ck__btn--accept {
  background: var(--t-accent, #10B981);
  color: #ffffff;
}

[data-project="creatine-de"] .block-cookie-banner.block-cookie-banner .ck__btn--accept:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

[data-project="creatine-de"] .block-cookie-banner.block-cookie-banner .ck__btn--necessary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

[data-project="creatine-de"] .block-cookie-banner.block-cookie-banner .ck__btn--necessary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cookie-banner.block-cookie-banner .ck__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cookie-banner.block-cookie-banner {
    transition: none;
  }
}

/* ═══ BLOCK: credentials-banner ═══ */
/* ============================================================
   CREDENTIALS-BANNER — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark trust section with credential cards, counter animation,
   trust-logo bar, ambient glow, and glassmorphism accents.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 30%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ══════════════════════════════════════
   AMBIENT GLOW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__glow--1 {
  width: 500px;
  height: 500px;
  top: -25%;
  left: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: cbGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -20%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: cbGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes cbGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes cbGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__subtitle {
  font-size: clamp(0.938rem, 1.5vw, 1.063rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   CREDENTIAL CARDS — 4-column grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
              0 0 40px rgba(16, 185, 129, 0.06);
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.10);
  color: var(--t-accent, #10B981);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__card:hover .cb__card-icon {
  background: rgba(16, 185, 129, 0.18);
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__card-value {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1;
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__card-suffix {
  display: block;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 600;
  color: var(--t-accent, #10B981);
  margin-top: 4px;
  margin-bottom: 8px;
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__card-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__card-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ══════════════════════════════════════
   TRUST BAR — certification logos
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: clamp(20px, 3vw, 28px) clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__trust-item img {
  display: block;
  height: 32px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__trust-item:hover img {
  opacity: 0.85;
}

[data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__credentials {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__trust-bar {
    flex-wrap: wrap;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__trust-divider {
    display: none;
  }

  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__trust-item img {
    height: 28px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__credentials {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__card {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__trust-bar {
    padding: 16px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__trust-item img {
    height: 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__glow--1,
  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__card-icon {
    transition: none;
  }

  [data-project="creatine-de"] .block-credentials-banner.block-credentials-banner .cb__trust-item img {
    transition: none;
  }
}
/* ═══ BLOCK: credentials-banner-light ═══ */
/* ============================================================
   CREDENTIALS-BANNER — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark trust section with credential cards, counter animation,
   trust-logo bar, ambient glow, and glassmorphism accents.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 30%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ══════════════════════════════════════
   AMBIENT GLOW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__glow--1 {
  width: 500px;
  height: 500px;
  top: -25%;
  left: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: cbGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -20%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: cbGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes cbGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes cbGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__subtitle {
  font-size: clamp(0.938rem, 1.5vw, 1.063rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   CREDENTIAL CARDS — 4-column grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__card {
  position: relative;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__card:hover {
  transform: translateY(-4px);
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
              0 0 40px rgba(16, 185, 129, 0.06);
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.10);
  color: var(--t-accent, #10B981);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__card:hover .cb__card-icon {
  background: rgba(16, 185, 129, 0.18);
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__card-value {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-heading, #0F172A);
  line-height: 1;
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__card-suffix {
  display: block;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 600;
  color: var(--t-accent, #10B981);
  margin-top: 4px;
  margin-bottom: 8px;
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__card-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-text, #1e293b);
  margin-bottom: 8px;
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__card-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   TRUST BAR — certification logos
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: clamp(20px, 3vw, 28px) clamp(24px, 4vw, 40px);
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__trust-item img {
  display: block;
  height: 32px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__trust-item:hover img {
  opacity: 0.85;
}

[data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__credentials {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__trust-bar {
    flex-wrap: wrap;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__trust-divider {
    display: none;
  }

  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__trust-item img {
    height: 28px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__credentials {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__card {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__trust-bar {
    padding: 16px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__trust-item img {
    height: 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__glow--1,
  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__card-icon {
    transition: none;
  }

  [data-project="creatine-de"] .block-credentials-banner-light.block-credentials-banner-light .cb__trust-item img {
    transition: none;
  }
}

/* ═══ BLOCK: cta-floating ═══ */
/* ============================================================
   CTA-FLOATING — Creatine-DE
   Layer 3: Per-block premium overrides
   Fixed bottom CTA bar with glassmorphism, pulse indicator,
   scroll-triggered reveal, and progress bar.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (invisible, used for structure) ── */
[data-project="creatine-de"] .block-cta-floating.block-cta-floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  pointer-events: none;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

/* ── Bar container ── */
[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__bar {
  position: relative;
  pointer-events: auto;
  background: rgba(13, 17, 23, 0.92);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow:
    0 -2px 8px rgba(0, 0, 0, 0.12),
    0 -8px 32px rgba(0, 0, 0, 0.18),
    0 -1px 0 rgba(255, 255, 255, 0.04) inset;
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__bar.cf__bar--visible {
  transform: translateY(0);
  opacity: 1;
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__bar.cf__bar--hidden {
  transform: translateY(100%);
  opacity: 0;
}

/* ── Inner layout ── */
[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ══════════════════════════════════════
   LEFT — Pulse + Info
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__pulse {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.3);
  animation: cfPulse 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes cfPulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__headline {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ══════════════════════════════════════
   RIGHT — Price + Button + Close
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__price-from {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__price-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* ── Primary button ── */
[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 14px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__btn:hover {
  transform: translateY(-2px);
  background: #0ea472;
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.3),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__btn:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__btn-text {
  line-height: 1;
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__btn-arrow {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__btn:hover .cf__btn-arrow {
  transform: translateX(3px);
}

/* ── Close button ── */
[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ══════════════════════════════════════
   PROGRESS BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

[data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  transition: width 0.15s linear;
  border-radius: 0 1px 1px 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__inner {
    padding: 12px 16px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__sub {
    display: none;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__headline {
    font-size: 0.8125rem;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__price {
    display: none;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__btn {
    padding: 9px 18px;
    font-size: 0.8125rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__inner {
    padding: 10px 12px;
    gap: 10px;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__pulse {
    display: none;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__headline {
    font-size: 0.75rem;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__btn {
    padding: 8px 14px;
    font-size: 0.75rem;
    gap: 6px;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__close {
    width: 28px;
    height: 28px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__bar {
    transition: opacity 0.3s ease;
    transform: none;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__bar.cf__bar--visible {
    transform: none;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__pulse::before {
    animation: none;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__btn:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-cta-floating.block-cta-floating .cf__btn:hover .cf__btn-arrow {
    transform: none;
  }
}
/* ═══ BLOCK: cta-floating-dark ═══ */
/* ============================================================
   CTA-FLOATING — Creatine-DE
   Layer 3: Per-block premium overrides
   Fixed bottom CTA bar with glassmorphism, pulse indicator,
   scroll-triggered reveal, and progress bar.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (invisible, used for structure) ── */
[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  pointer-events: none;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

/* ── Bar container ── */
[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__bar {
  position: relative;
  pointer-events: auto;
  background: rgba(13, 17, 23, 0.92);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow:
    0 -2px 8px rgba(0, 0, 0, 0.36),
    0 -8px 32px rgba(0, 0, 0, 0.50),
    0 -1px 0 rgba(255, 255, 255, 0.04) inset;
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__bar.cf__bar--visible {
  transform: translateY(0);
  opacity: 1;
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__bar.cf__bar--hidden {
  transform: translateY(100%);
  opacity: 0;
}

/* ── Inner layout ── */
[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ══════════════════════════════════════
   LEFT — Pulse + Info
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__pulse {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.3);
  animation: cfPulse 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes cfPulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__headline {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ══════════════════════════════════════
   RIGHT — Price + Button + Close
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__price-from {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__price-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* ── Primary button ── */
[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 14px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__btn:hover {
  transform: translateY(-2px);
  background: #0ea472;
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.3),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__btn:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__btn-text {
  line-height: 1;
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__btn-arrow {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__btn:hover .cf__btn-arrow {
  transform: translateX(3px);
}

/* ── Close button ── */
[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ══════════════════════════════════════
   PROGRESS BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

[data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  transition: width 0.15s linear;
  border-radius: 0 1px 1px 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__inner {
    padding: 12px 16px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__sub {
    display: none;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__headline {
    font-size: 0.8125rem;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__price {
    display: none;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__btn {
    padding: 9px 18px;
    font-size: 0.8125rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__inner {
    padding: 10px 12px;
    gap: 10px;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__pulse {
    display: none;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__headline {
    font-size: 0.75rem;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__btn {
    padding: 8px 14px;
    font-size: 0.75rem;
    gap: 6px;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__close {
    width: 28px;
    height: 28px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__bar {
    transition: opacity 0.3s ease;
    transform: none;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__bar.cf__bar--visible {
    transform: none;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__pulse::before {
    animation: none;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__btn:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-cta-floating-dark.block-cta-floating-dark .cf__btn:hover .cf__btn-arrow {
    transform: none;
  }
}

/* ═══ BLOCK: cta-full ═══ */
/* ============================================================
   CTA-FULL — Creatine DE
   Dark full-width CTA with gradient glow + emerald accent
   ============================================================ */

[data-project="creatine-de"] .block-cta-full.block-cta-full {
  padding: clamp(80px, 10vw, 140px) 24px;
  background: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', sans-serif);
  position: relative;
  overflow: hidden;
  text-align: center;
}

[data-project="creatine-de"] .block-cta-full.block-cta-full::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__badge-icon {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__accent {
  background: linear-gradient(135deg, #10B981 0%, #34d399 50%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 36px;
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3),
              0 1px 3px rgba(0, 0, 0, 0.1);
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4),
              0 2px 6px rgba(0, 0, 0, 0.15);
  filter: brightness(1.1);
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__btn:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 3px;
}

[data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__trust {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__actions {
    flex-direction: column;
    align-items: center;
  }
  [data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cta-full.block-cta-full {
    padding: 64px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cta-full.block-cta-full .ctf__btn {
    transition: none;
  }
}

/* ═══ BLOCK: cta-full-light ═══ */
/* ============================================================
   CTA-FULL — Creatine DE
   Dark full-width CTA with gradient glow + emerald accent
   ============================================================ */

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light {
  padding: clamp(80px, 10vw, 140px) 24px;
  background: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', sans-serif);
  position: relative;
  overflow: hidden;
  text-align: center;
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__badge-icon {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__accent {
  background: linear-gradient(135deg, #10B981 0%, #34d399 50%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 36px;
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3),
              0 1px 3px rgba(0, 0, 0, 0.1);
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4),
              0 2px 6px rgba(0, 0, 0, 0.15);
  filter: brightness(1.1);
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__btn--ghost {
  background: rgba(0, 0, 0, 0.06);
  color: var(--t-text, #1e293b);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__btn:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 3px;
}

[data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__trust {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.35);
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__actions {
    flex-direction: column;
    align-items: center;
  }
  [data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cta-full-light.block-cta-full-light {
    padding: 64px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cta-full-light.block-cta-full-light .ctf__btn {
    transition: none;
  }
}


/* ═══ BLOCK: cta-inline ═══ */
/* ============================================================
   CTA-INLINE — Creatine-DE
   Layer 3: Per-block premium overrides
   Compact inline CTA banner with gradient accent, trust
   signals, and dual action buttons.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-cta-inline.block-cta-inline {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 32px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glows ── */
[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__glow--1 {
  width: 480px;
  height: 480px;
  top: -40%;
  left: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: ciGlow1 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__glow--2 {
  width: 360px;
  height: 360px;
  bottom: -30%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: ciGlow2 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ciGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 20px) scale(1.1); }
}

@keyframes ciGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__badge-icon {
  display: flex;
  align-items: center;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description ── */
[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ── Action buttons ── */
[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__btn--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__btn-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__btn--primary:hover .ci__btn-arrow {
  transform: translateX(3px);
}

/* ── Trust signals ── */
[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

[data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__trust-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cta-inline.block-cta-inline {
    padding: clamp(48px, 10vw, 72px) 20px;
  }

  [data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__actions {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  [data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__trust {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__desc {
    font-size: 0.9375rem;
  }

  [data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__glow--1,
  [data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__btn {
    transition: none;
  }

  [data-project="creatine-de"] .block-cta-inline.block-cta-inline .ci__btn-arrow {
    transition: none;
  }
}
/* ═══ BLOCK: cta-inline-light ═══ */
/* ============================================================
   CTA-INLINE — Creatine-DE
   Layer 3: Per-block premium overrides
   Compact inline CTA banner with gradient accent, trust
   signals, and dual action buttons.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 32px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glows ── */
[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__glow--1 {
  width: 480px;
  height: 480px;
  top: -40%;
  left: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: ciGlow1 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__glow--2 {
  width: 360px;
  height: 360px;
  bottom: -30%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: ciGlow2 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ciGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 20px) scale(1.1); }
}

@keyframes ciGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__badge-icon {
  display: flex;
  align-items: center;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description ── */
[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ── Action buttons ── */
[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__btn--secondary {
  background: rgba(0, 0, 0, 0.06);
  color: var(--t-text, #1e293b);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__btn--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 0, 0, 0.18);
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__btn-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__btn--primary:hover .ci__btn-arrow {
  transform: translateX(3px);
}

/* ── Trust signals ── */
[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--t-muted, #64748b);
  font-weight: 400;
}

[data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__trust-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light {
    padding: clamp(48px, 10vw, 72px) 20px;
  }

  [data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__actions {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  [data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__trust {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__desc {
    font-size: 0.9375rem;
  }

  [data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__glow--1,
  [data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__btn {
    transition: none;
  }

  [data-project="creatine-de"] .block-cta-inline-light.block-cta-inline-light .ci__btn-arrow {
    transition: none;
  }
}

/* ═══ BLOCK: cta-split ═══ */
/* ============================================================
   CTA-SPLIT — Creatine-DE
   Layer 3: Per-block premium overrides
   Split CTA with left content + right product card,
   ambient glows, glassmorphism card, trust signals.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-cta-split.block-cta-split {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 32px);
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   AMBIENT GLOWS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__glow--1 {
  width: 520px;
  height: 520px;
  top: -30%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
  animation: csGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -25%;
  right: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: csGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes csGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes csGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-35px, -20px) scale(1.06); }
}

/* ── Grain overlay ── */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

/* ══════════════════════════════════════
   INNER LAYOUT — Split grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

/* ══════════════════════════════════════
   LEFT COLUMN — Content
   ══════════════════════════════════════ */

/* ── Badge ── */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: csBadgePulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes csBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ── Title ── */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description ── */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__desc {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
  max-width: 540px;
}

/* ── Actions ── */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  color: #ffffff;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__btn-arrow {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__btn--primary:hover .cs__btn-arrow {
  transform: translateX(3px);
}

/* ── Trust signals ── */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__trust-icon {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
  opacity: 0.7;
}

/* ══════════════════════════════════════
   RIGHT COLUMN — Product card
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card {
  position: relative;
  border-radius: 16px;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.05) 50%, rgba(16, 185, 129, 0.2) 100%);
  z-index: 0;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-inner {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(28px, 3vw, 40px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ── Card header ── */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-label {
  display: inline-block;
  padding: 4px 14px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-price {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-period {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* ── Card features ── */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-feature svg {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

/* ── Card CTA button ── */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-btn:hover {
  transform: translateY(-2px);
  background: #0ea472;
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-btn svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-btn:hover svg {
  transform: translateX(3px);
}

/* ── Card note ── */
[data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 14px 0 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__desc {
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__actions {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__trust {
    align-items: center;
  }

  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cta-split.block-cta-split {
    padding: clamp(48px, 8vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__actions {
    flex-direction: column;
  }

  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__btn {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-inner {
    padding: 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__glow--1,
  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__glow--2,
  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__btn,
  [data-project="creatine-de"] .block-cta-split.block-cta-split .cs__card-btn {
    transition: none;
  }
}
/* ═══ BLOCK: cta-split-light ═══ */
/* ============================================================
   CTA-SPLIT — Creatine-DE
   Layer 3: Per-block premium overrides
   Split CTA with left content + right product card,
   ambient glows, glassmorphism card, trust signals.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 32px);
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   AMBIENT GLOWS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__glow--1 {
  width: 520px;
  height: 520px;
  top: -30%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
  animation: csGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -25%;
  right: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: csGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes csGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes csGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-35px, -20px) scale(1.06); }
}

/* ── Grain overlay ── */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

/* ══════════════════════════════════════
   INNER LAYOUT — Split grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

/* ══════════════════════════════════════
   LEFT COLUMN — Content
   ══════════════════════════════════════ */

/* ── Badge ── */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: csBadgePulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes csBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ── Title ── */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description ── */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__desc {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 32px;
  max-width: 540px;
}

/* ── Actions ── */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__btn--secondary {
  background: rgba(0, 0, 0, 0.06);
  color: var(--t-text, #1e293b);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
  color: #ffffff;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__btn-arrow {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__btn--primary:hover .cs__btn-arrow {
  transform: translateX(3px);
}

/* ── Trust signals ── */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__trust-icon {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
  opacity: 0.7;
}

/* ══════════════════════════════════════
   RIGHT COLUMN — Product card
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card {
  position: relative;
  border-radius: 16px;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.05) 50%, rgba(16, 185, 129, 0.2) 100%);
  z-index: 0;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-inner {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: clamp(28px, 3vw, 40px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ── Card header ── */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-label {
  display: inline-block;
  padding: 4px 14px;
  background: var(--t-accent, #10B981);
  color: var(--t-heading, #0F172A);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-price {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-period {
  display: block;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 4px;
}

/* ── Card features ── */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--t-text, #1e293b);
  line-height: 1.4;
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-feature svg {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

/* ── Card CTA button ── */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-btn:hover {
  transform: translateY(-2px);
  background: #0ea472;
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-btn svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-btn:hover svg {
  transform: translateX(3px);
}

/* ── Card note ── */
[data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.35);
  margin: 14px 0 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__desc {
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__actions {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__trust {
    align-items: center;
  }

  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light {
    padding: clamp(48px, 8vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__actions {
    flex-direction: column;
  }

  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__btn {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-inner {
    padding: 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__glow--1,
  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__glow--2,
  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__btn,
  [data-project="creatine-de"] .block-cta-split-light.block-cta-split-light .cs__card-btn {
    transition: none;
  }
}

/* ═══ BLOCK: dienst-detail ═══ */
/* ============================================================
   DIENST-DETAIL — Creatine-DE
   Layer 3: Per-block premium overrides
   Split-layout service detail with numbered steps, visual
   frame, evidence cards, ambient glow on dark background.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__glow--1 {
  width: 550px;
  height: 550px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: ddGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__glow--2 {
  width: 450px;
  height: 450px;
  bottom: -12%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: ddGlow2 24s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ddGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes ddGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-35px, -20px) scale(1.06); }
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ══════════════════════════════════════
   SPLIT LAYOUT — visual + steps
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* ── Visual frame ── */
[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__visual-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__visual-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(13, 17, 23, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__visual-badge svg {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

/* ── Steps ── */
[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__step:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #059669);
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__step-body {
  flex: 1;
  min-width: 0;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__step-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__step-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ══════════════════════════════════════
   EVIDENCE CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__evidence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__evidence-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__evidence-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__evidence-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__evidence-value {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__evidence-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__evidence {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__step {
    padding: 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__evidence {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__evidence-card {
    padding: 20px 16px;
  }

  [data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__step {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  [data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__step-num {
    width: 36px;
    height: 36px;
    font-size: 0.8125rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__glow--1,
  [data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__step,
  [data-project="creatine-de"] .block-dienst-detail.block-dienst-detail .dd__evidence-card {
    transition: none;
  }
}
/* ═══ BLOCK: dienst-detail-light ═══ */
/* ============================================================
   DIENST-DETAIL — Creatine-DE
   Layer 3: Per-block premium overrides
   Split-layout service detail with numbered steps, visual
   frame, evidence cards, ambient glow on dark background.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__glow--1 {
  width: 550px;
  height: 550px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: ddGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__glow--2 {
  width: 450px;
  height: 450px;
  bottom: -12%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: ddGlow2 24s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ddGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes ddGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-35px, -20px) scale(1.06); }
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   SPLIT LAYOUT — visual + steps
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* ── Visual frame ── */
[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__visual-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.10);
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__visual-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(13, 17, 23, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__visual-badge svg {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

/* ── Steps ── */
[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__step:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.10),
    0 0 0 1px rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #059669);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__step-body {
  flex: 1;
  min-width: 0;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__step-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__step-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   EVIDENCE CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__evidence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__evidence-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__evidence-card:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.10),
    0 0 0 1px rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__evidence-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__evidence-value {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-heading, #0F172A);
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__evidence-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__evidence {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__step {
    padding: 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__evidence {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__evidence-card {
    padding: 20px 16px;
  }

  [data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__step {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  [data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__step-num {
    width: 36px;
    height: 36px;
    font-size: 0.8125rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__glow--1,
  [data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__step,
  [data-project="creatine-de"] .block-dienst-detail-light.block-dienst-detail-light .dd__evidence-card {
    transition: none;
  }
}

/* ═══ BLOCK: dosierung-rechner ═══ */
/* DOSIERUNG-RECHNER — creatine-de */
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner { padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 40px); background: #0F172A; color: #fff; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__inner { max-width: 560px; margin: 0 auto; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__heading { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; text-align: center; margin: 0 0 8px; color: #fff; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__subtitle { font-size: 1rem; color: rgba(255,255,255,0.5); text-align: center; margin: 0 0 40px; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 36px; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__input-group { margin-bottom: 28px; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__slider-wrap { display: flex; align-items: center; gap: 16px; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__slider { flex: 1; -webkit-appearance: none; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); outline: none; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #10B981; cursor: pointer; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__slider-val { font-size: 1rem; font-weight: 700; color: #fff; min-width: 55px; text-align: right; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__toggles { display: flex; gap: 8px; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__toggle { padding: 10px 24px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: transparent; color: rgba(255,255,255,0.5); font-size: 0.9rem; cursor: pointer; transition: all 0.2s; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__toggle--active { background: #10B98122; border-color: #10B98166; color: #10B981; font-weight: 600; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__gauge-wrap { display: flex; justify-content: center; padding: 20px 0; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__gauge { width: 200px; height: 120px; }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__gauge-fill { transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
[data-project="creatine-de"] .block-dosierung-rechner.block-dosierung-rechner .drech__result-text { font-size: 0.9rem; color: rgba(255,255,255,0.6); text-align: center; line-height: 1.5; }
/* ═══ BLOCK: download-cta ═══ */
/* ============================================================
   DOWNLOAD-CTA — Creatine-DE
   Layer 3: Per-block premium overrides
   Split layout: left content with form + right PDF preview,
   ambient glows, glassmorphism card, trust highlights.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-download-cta.block-download-cta {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 32px);
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   AMBIENT GLOWS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__glow--1 {
  width: 500px;
  height: 500px;
  top: -30%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: dcGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -25%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: dcGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes dcGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 20px) scale(1.1); }
}

@keyframes dcGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -15px) scale(1.06); }
}

/* ── Grain overlay ── */
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.02;
  mix-blend-mode: multiply;
}

/* ══════════════════════════════════════
   INNER LAYOUT — Split
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ══════════════════════════════════════
   LEFT — Content
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 100px;
  margin-bottom: 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__badge-icon {
  display: flex;
  align-items: center;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__desc {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.7;
  color: #475569;
  margin: 0 0 28px;
  max-width: 600px;
}

/* ── Highlights ── */
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__highlight-text {
  font-weight: 500;
}

/* ══════════════════════════════════════
   FORM
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__form {
  margin: 0;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__form-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__input-wrap {
  flex: 1;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__input:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__input::placeholder {
  color: #94a3b8;
}

/* ── CTA button ── */
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__btn--primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.25), 0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__btn--primary:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__btn--primary:hover .dc__btn-icon {
  transform: translateY(2px);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__form-note {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 10px 0 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   RIGHT — Preview Card
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__preview {
  display: flex;
  justify-content: center;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__preview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__preview-mockup {
  position: relative;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-cover {
  position: relative;
  width: 240px;
  height: 320px;
  background: linear-gradient(160deg, #0d1117 0%, #1a2332 100%);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 24px 48px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__preview-card:hover .dc__mockup-cover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.14),
    0 32px 64px rgba(0, 0, 0, 0.1);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #059669, var(--t-accent, #10B981));
  border-radius: 12px 12px 0 0;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-top: 20px;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  font-weight: 500;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-lines span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-lines span:nth-child(1) { width: 80%; }
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-lines span:nth-child(2) { width: 100%; }
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-lines span:nth-child(3) { width: 65%; }
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-lines span:nth-child(4) { width: 90%; }

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-badge-inner {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.05em;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__preview-shadow {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 24px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Preview meta ── */
[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #64748b;
}

[data-project="creatine-de"] .block-download-cta.block-download-cta .dc__meta-icon {
  display: flex;
  align-items: center;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__desc {
    max-width: none;
  }

  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__highlights {
    align-items: center;
  }

  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__form-row {
    flex-direction: column;
  }

  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__btn--primary {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__preview {
    order: -1;
  }

  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-cover {
    width: 200px;
    height: 270px;
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-download-cta.block-download-cta {
    padding: clamp(48px, 8vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__highlight {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__preview-meta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__mockup-cover,
  [data-project="creatine-de"] .block-download-cta.block-download-cta .dc__btn {
    transition: none;
  }
}
/* ═══ BLOCK: download-cta-dark ═══ */
/* ============================================================
   DOWNLOAD-CTA — Creatine-DE
   Layer 3: Per-block premium overrides
   Split layout: left content with form + right PDF preview,
   ambient glows, glassmorphism card, trust highlights.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 32px);
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   AMBIENT GLOWS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__glow--1 {
  width: 500px;
  height: 500px;
  top: -30%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: dcGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -25%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: dcGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes dcGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 20px) scale(1.1); }
}

@keyframes dcGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -15px) scale(1.06); }
}

/* ── Grain overlay ── */
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.02;
  mix-blend-mode: multiply;
}

/* ══════════════════════════════════════
   INNER LAYOUT — Split
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ══════════════════════════════════════
   LEFT — Content
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 100px;
  margin-bottom: 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__badge-icon {
  display: flex;
  align-items: center;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__desc {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.7;
  color: #475569;
  margin: 0 0 28px;
  max-width: 600px;
}

/* ── Highlights ── */
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__highlight-text {
  font-weight: 500;
}

/* ══════════════════════════════════════
   FORM
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__form {
  margin: 0;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__form-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__input-wrap {
  flex: 1;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__input:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__input::placeholder {
  color: #94a3b8;
}

/* ── CTA button ── */
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__btn--primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.25), 0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__btn--primary:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__btn--primary:hover .dc__btn-icon {
  transform: translateY(2px);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__form-note {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 10px 0 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   RIGHT — Preview Card
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__preview {
  display: flex;
  justify-content: center;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__preview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__preview-mockup {
  position: relative;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-cover {
  position: relative;
  width: 240px;
  height: 320px;
  background: linear-gradient(160deg, #0d1117 0%, #1a2332 100%);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 2px 4px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.30),
    0 24px 48px rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__preview-card:hover .dc__mockup-cover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow:
    0 4px 8px rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.42),
    0 32px 64px rgba(0, 0, 0, 0.30);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #059669, var(--t-accent, #10B981));
  border-radius: 12px 12px 0 0;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-top: 20px;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  font-weight: 500;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-lines span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-lines span:nth-child(1) { width: 80%; }
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-lines span:nth-child(2) { width: 100%; }
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-lines span:nth-child(3) { width: 65%; }
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-lines span:nth-child(4) { width: 90%; }

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-badge-inner {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.05em;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__preview-shadow {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 24px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Preview meta ── */
[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__meta-icon {
  display: flex;
  align-items: center;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__desc {
    max-width: none;
  }

  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__highlights {
    align-items: center;
  }

  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__form-row {
    flex-direction: column;
  }

  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__btn--primary {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__preview {
    order: -1;
  }

  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-cover {
    width: 200px;
    height: 270px;
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark {
    padding: clamp(48px, 8vw, 72px) 16px;
  }

  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__highlight {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__preview-meta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__mockup-cover,
  [data-project="creatine-de"] .block-download-cta-dark.block-download-cta-dark .dc__btn {
    transition: none;
  }
}

/* ═══ BLOCK: faq ═══ */
/* ============================================================
   FAQ — Creatine DE
   Accordion FAQ with emerald accent, light background
   ============================================================ */

[data-project="creatine-de"] .block-faq.block-faq {
  padding: clamp(72px, 9vw, 120px) 24px;
  background: #ffffff;
  font-family: var(--t-body-font, 'Inter', sans-serif);
}

[data-project="creatine-de"] .block-faq.block-faq .fq__inner {
  max-width: 780px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-faq.block-faq .fq__header {
  text-align: center;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-faq.block-faq .fq__overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-faq.block-faq .fq__title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 14px;
}

[data-project="creatine-de"] .block-faq.block-faq .fq__accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq.block-faq .fq__subtitle {
  font-size: 1rem;
  color: var(--t-muted, #64748b);
  line-height: 1.6;
  margin: 0;
}

[data-project="creatine-de"] .block-faq.block-faq .fq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-faq.block-faq .fq__item {
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq.block-faq .fq__item:has(.fq__question[aria-expanded="true"]) {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-faq.block-faq .fq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  line-height: 1.4;
  transition: color 0.2s ease;
}

[data-project="creatine-de"] .block-faq.block-faq .fq__question:hover {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq.block-faq .fq__chevron {
  flex-shrink: 0;
  color: var(--t-muted, #64748b);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.2s ease;
}

[data-project="creatine-de"] .block-faq.block-faq .fq__question[aria-expanded="true"] .fq__chevron {
  transform: rotate(180deg);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq.block-faq .fq__answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq.block-faq .fq__answer[hidden] {
  display: block;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

[data-project="creatine-de"] .block-faq.block-faq .fq__answer:not([hidden]) {
  max-height: 400px;
  padding-bottom: 24px;
}

[data-project="creatine-de"] .block-faq.block-faq .fq__answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

[data-project="creatine-de"] .block-faq.block-faq .fq__question:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: -2px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-faq.block-faq .fq__question {
    padding: 16px 20px;
    font-size: 0.92rem;
  }
  [data-project="creatine-de"] .block-faq.block-faq .fq__answer {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-faq.block-faq {
    padding: 56px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-faq.block-faq .fq__item,
  [data-project="creatine-de"] .block-faq.block-faq .fq__chevron,
  [data-project="creatine-de"] .block-faq.block-faq .fq__answer {
    transition: none;
  }
}

/* ═══ BLOCK: faq-dark ═══ */
/* ============================================================
   FAQ — Creatine DE
   Accordion FAQ with emerald accent, light background
   ============================================================ */

[data-project="creatine-de"] .block-faq-dark.block-faq-dark {
  padding: clamp(72px, 9vw, 120px) 24px;
  background: #0F172A;
  font-family: var(--t-body-font, 'Inter', sans-serif);
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__inner {
  max-width: 780px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__header {
  text-align: center;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 14px;
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__item:has(.fq__question[aria-expanded="true"]) {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  line-height: 1.4;
  transition: color 0.2s ease;
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__question:hover {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.2s ease;
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__question[aria-expanded="true"] .fq__chevron {
  transform: rotate(180deg);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__answer[hidden] {
  display: block;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__answer:not([hidden]) {
  max-height: 400px;
  padding-bottom: 24px;
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

[data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__question:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: -2px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__question {
    padding: 16px 20px;
    font-size: 0.92rem;
  }
  [data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__answer {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-faq-dark.block-faq-dark {
    padding: 56px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__item,
  [data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__chevron,
  [data-project="creatine-de"] .block-faq-dark.block-faq-dark .fq__answer {
    transition: none;
  }
}


/* ═══ BLOCK: faq-image ═══ */
/* ============================================================
   FAQ-IMAGE — Creatine-DE
   Layer 3: Per-block premium overrides
   Split-layout FAQ with image sidebar, accordion interaction,
   glassmorphism badge, ambient glow.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-faq-image.block-faq-image {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Split layout ── */
[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

/* ══════════════════════════════════════
   MEDIA COLUMN — image + badge + glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__media {
  position: sticky;
  top: 100px;
  align-self: start;
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__badge-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__img-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

/* ══════════════════════════════════════
   CONTENT COLUMN — header + accordion
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__header {
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
  max-width: 540px;
}

/* ══════════════════════════════════════
   ACCORDION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__item {
  border-bottom: 1px solid var(--t-border, #e2e8f0);
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__item:first-child {
  border-top: 1px solid var(--t-border, #e2e8f0);
}

/* ── Question button ── */
[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__question:hover {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__text {
  flex: 1;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--t-surface, #f8fafb);
  border: 1px solid var(--t-border, #e2e8f0);
  color: #64748b;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__question:hover .fi__icon {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__icon svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__question[aria-expanded="true"] .fi__icon {
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  color: #ffffff;
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__question[aria-expanded="true"] .fi__icon svg {
  transform: rotate(45deg);
}

/* ── Answer ── */
[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__answer-inner {
  padding: 0 0 24px;
}

[data-project="creatine-de"] .block-faq-image.block-faq-image .fi__answer-inner p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-faq-image.block-faq-image .fi__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-faq-image.block-faq-image .fi__media {
    position: relative;
    top: auto;
    max-width: 400px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-faq-image.block-faq-image .fi__title {
    font-size: clamp(1.5rem, 5vw, 1.875rem);
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-faq-image.block-faq-image {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-faq-image.block-faq-image .fi__question {
    padding: 16px 0;
    font-size: 0.9375rem;
  }

  [data-project="creatine-de"] .block-faq-image.block-faq-image .fi__icon {
    width: 28px;
    height: 28px;
  }

  [data-project="creatine-de"] .block-faq-image.block-faq-image .fi__img-badge {
    font-size: 0.75rem;
    padding: 10px 12px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-faq-image.block-faq-image .fi__answer {
    transition-duration: 0.01ms;
  }

  [data-project="creatine-de"] .block-faq-image.block-faq-image .fi__icon svg {
    transition-duration: 0.01ms;
  }

  [data-project="creatine-de"] .block-faq-image.block-faq-image .fi__question {
    transition-duration: 0.01ms;
  }
}
/* ═══ BLOCK: faq-image-dark ═══ */
/* ============================================================
   FAQ-IMAGE — Creatine-DE
   Layer 3: Per-block premium overrides
   Split-layout FAQ with image sidebar, accordion interaction,
   glassmorphism badge, ambient glow.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Split layout ── */
[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

/* ══════════════════════════════════════
   MEDIA COLUMN — image + badge + glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__media {
  position: sticky;
  top: 100px;
  align-self: start;
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08),
    0 24px 48px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__badge-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__img-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

/* ══════════════════════════════════════
   CONTENT COLUMN — header + accordion
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__header {
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
  max-width: 540px;
}

/* ══════════════════════════════════════
   ACCORDION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Question button ── */
[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__question:hover {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__text {
  flex: 1;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__question:hover .fi__icon {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__icon svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__question[aria-expanded="true"] .fi__icon {
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  color: #ffffff;
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__question[aria-expanded="true"] .fi__icon svg {
  transform: rotate(45deg);
}

/* ── Answer ── */
[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__answer-inner {
  padding: 0 0 24px;
}

[data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__answer-inner p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__media {
    position: relative;
    top: auto;
    max-width: 400px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__title {
    font-size: clamp(1.5rem, 5vw, 1.875rem);
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__question {
    padding: 16px 0;
    font-size: 0.9375rem;
  }

  [data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__icon {
    width: 28px;
    height: 28px;
  }

  [data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__img-badge {
    font-size: 0.75rem;
    padding: 10px 12px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__answer {
    transition-duration: 0.01ms;
  }

  [data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__icon svg {
    transition-duration: 0.01ms;
  }

  [data-project="creatine-de"] .block-faq-image-dark.block-faq-image-dark .fi__question {
    transition-duration: 0.01ms;
  }
}

/* ═══ BLOCK: faq-tabbed ═══ */
/* ============================================================
   FAQ-TABBED — Creatine-DE
   Layer 3: Per-block premium overrides
   Tabbed FAQ with category navigation, accordion items,
   ambient glow, glassmorphism tabs.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (dark) ── */
[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed {
  position: relative;
  background: #0d1117;
  color: #ffffff;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ══════════════════════════════════════
   BACKGROUND — ambient glow + grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: ftGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: ftGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ftGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes ftGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__header {
  text-align: center;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__subtitle {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   TABS — glassmorphism navigation
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tabs::-webkit-scrollbar {
  display: none;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tab-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tab:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tab-btn--active {
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tab-btn--active:hover {
  background: rgba(16, 185, 129, 0.16);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tab-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tab-btn--active .ft__tab-btn-icon {
  opacity: 1;
}

/* ══════════════════════════════════════
   PANELS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__panels {
  position: relative;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__panel {
  display: none;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__panel--active {
  display: block;
  animation: ftPanelIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes ftPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
   ACCORDION ITEMS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__item:last-child {
  border-bottom: none;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__text {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__question:hover .ft__text {
  color: #ffffff;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  transition:
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__question:hover .ft__icon {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.15);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__question[aria-expanded="true"] .ft__icon {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--t-accent, #10B981);
  transform: rotate(45deg);
}

/* ── Answer ── */
[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__answer[hidden] {
  display: block;
  max-height: 0;
  visibility: hidden;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__answer.ft__answer--open {
  max-height: 400px;
  visibility: visible;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__answer-inner {
  padding: 0 0 24px;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__answer-inner p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__answer-inner strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* ══════════════════════════════════════
   CONTACT CTA
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__contact-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__contact-link:hover {
  gap: 10px;
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__contact-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__contact-link:hover .ft__contact-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tabs {
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tab-btn {
    padding: 10px 14px;
    font-size: 0.8125rem;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tab-btn-icon {
    display: none;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__question {
    padding: 20px 0;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__header {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tabs {
    flex-wrap: wrap;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tab-btn {
    flex: 0 0 calc(50% - 3px);
    padding: 10px 12px;
    font-size: 0.75rem;
    border-radius: 8px;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__text {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__icon {
    width: 28px;
    height: 28px;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__answer-inner p {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__contact {
    flex-direction: column;
    gap: 4px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__glow--1,
  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__answer {
    transition-duration: 0.01s;
  }

  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__tab,
  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__icon,
  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__contact-link,
  [data-project="creatine-de"] .block-faq-tabbed.block-faq-tabbed .ft__contact-arrow {
    transition-duration: 0.01s;
  }

  @keyframes ftPanelIn {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
  }
}
/* ═══ BLOCK: faq-tabbed-light ═══ */
/* ============================================================
   FAQ-TABBED — Creatine-DE
   Layer 3: Per-block premium overrides
   Tabbed FAQ with category navigation, accordion items,
   ambient glow, glassmorphism tabs.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (dark) ── */
[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light {
  position: relative;
  background: #0d1117;
  color: var(--t-heading, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ══════════════════════════════════════
   BACKGROUND — ambient glow + grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: ftGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: ftGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ftGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes ftGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__header {
  text-align: center;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__subtitle {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   TABS — glassmorphism navigation
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tabs::-webkit-scrollbar {
  display: none;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tab-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--t-muted, #64748b);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tab:hover {
  color: var(--t-text, #1e293b);
  background: rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tab-btn--active {
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tab-btn--active:hover {
  background: rgba(16, 185, 129, 0.16);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tab-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tab-btn--active .ft__tab-btn-icon {
  opacity: 1;
}

/* ══════════════════════════════════════
   PANELS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__panels {
  position: relative;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__panel {
  display: none;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__panel--active {
  display: block;
  animation: ftPanelIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes ftPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
   ACCORDION ITEMS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__item:last-child {
  border-bottom: none;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__text {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--t-text, #1e293b);
  letter-spacing: -0.01em;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__question:hover .ft__text {
  color: var(--t-heading, #0F172A);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--t-muted, #64748b);
  transition:
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__question:hover .ft__icon {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.15);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__question[aria-expanded="true"] .ft__icon {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--t-accent, #10B981);
  transform: rotate(45deg);
}

/* ── Answer ── */
[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__answer[hidden] {
  display: block;
  max-height: 0;
  visibility: hidden;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__answer.ft__answer--open {
  max-height: 400px;
  visibility: visible;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__answer-inner {
  padding: 0 0 24px;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__answer-inner p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__answer-inner strong {
  color: var(--t-text, #1e293b);
  font-weight: 600;
}

/* ══════════════════════════════════════
   CONTACT CTA
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__contact-text {
  font-size: 0.9375rem;
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__contact-link:hover {
  gap: 10px;
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__contact-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__contact-link:hover .ft__contact-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tabs {
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tab-btn {
    padding: 10px 14px;
    font-size: 0.8125rem;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tab-btn-icon {
    display: none;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__question {
    padding: 20px 0;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__header {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tabs {
    flex-wrap: wrap;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tab-btn {
    flex: 0 0 calc(50% - 3px);
    padding: 10px 12px;
    font-size: 0.75rem;
    border-radius: 8px;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__text {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__icon {
    width: 28px;
    height: 28px;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__answer-inner p {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__contact {
    flex-direction: column;
    gap: 4px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__glow--1,
  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__answer {
    transition-duration: 0.01s;
  }

  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__tab,
  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__icon,
  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__contact-link,
  [data-project="creatine-de"] .block-faq-tabbed-light.block-faq-tabbed-light .ft__contact-arrow {
    transition-duration: 0.01s;
  }

  @keyframes ftPanelIn {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
  }
}

/* ═══ BLOCK: features-grid ═══ */
/* ============================================================
   FEATURES-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   6-card feature grid with icon badges, hover lift,
   staggered scroll-reveal, tag chips.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-features-grid.block-features-grid {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle top-edge line */
[data-project="creatine-de"] .block-features-grid.block-features-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--t-border, rgba(15, 23, 42, 0.08)) 30%, var(--t-border, rgba(15, 23, 42, 0.08)) 70%, transparent);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__title-accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #475569);
  margin: 0;
}

/* ── Grid ── */
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
  border-radius: 16px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
}

[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.18);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 16px 40px rgba(16, 185, 129, 0.08);
}

/* accent bar top */
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), rgba(16, 185, 129, 0.2));
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card:hover::before {
  opacity: 1;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  margin-bottom: 24px;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card:hover .fg__icon-wrap {
  background: rgba(16, 185, 129, 0.14);
}

[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ── Card title ── */
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
}

/* ── Card text ── */
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--t-muted, #475569);
  margin: 0 0 20px;
  flex: 1;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 100px;
  padding: 5px 14px;
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card:hover .fg__card-tag {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.22);
}

/* ── Reveal animation ── */
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card[data-fg-visible] {
  animation: fgCardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card[data-fg-visible]:nth-child(2) { animation-delay: 0.08s; }
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card[data-fg-visible]:nth-child(3) { animation-delay: 0.16s; }
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card[data-fg-visible]:nth-child(4) { animation-delay: 0.24s; }
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card[data-fg-visible]:nth-child(5) { animation-delay: 0.32s; }
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card[data-fg-visible]:nth-child(6) { animation-delay: 0.40s; }

@keyframes fgCardIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Header reveal ── */
[data-project="creatine-de"] .block-features-grid.block-features-grid .fg__header[data-fg-header-visible] {
  animation: fgFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fgFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card {
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card {
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__icon {
    width: 24px;
    height: 24px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card,
  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card::before,
  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__icon-wrap,
  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card-tag {
    transition: none;
  }

  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__card[data-fg-visible],
  [data-project="creatine-de"] .block-features-grid.block-features-grid .fg__header[data-fg-header-visible] {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/* ═══ BLOCK: features-grid-dark ═══ */
/* ============================================================
   FEATURES-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   6-card feature grid with icon badges, hover lift,
   staggered scroll-reveal, tag chips.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle top-edge line */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--t-border, rgba(15, 23, 42, 0.08)) 30%, var(--t-border, rgba(15, 23, 42, 0.08)) 70%, transparent);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__title-accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ── Grid ── */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
  border-radius: 16px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.18);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(16, 185, 129, 0.08);
}

/* accent bar top */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), rgba(16, 185, 129, 0.2));
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card:hover::before {
  opacity: 1;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  margin-bottom: 24px;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card:hover .fg__icon-wrap {
  background: rgba(16, 185, 129, 0.14);
}

[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ── Card title ── */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
}

/* ── Card text ── */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
  flex: 1;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 100px;
  padding: 5px 14px;
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card:hover .fg__card-tag {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.22);
}

/* ── Reveal animation ── */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card[data-fg-visible] {
  animation: fgCardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card[data-fg-visible]:nth-child(2) { animation-delay: 0.08s; }
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card[data-fg-visible]:nth-child(3) { animation-delay: 0.16s; }
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card[data-fg-visible]:nth-child(4) { animation-delay: 0.24s; }
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card[data-fg-visible]:nth-child(5) { animation-delay: 0.32s; }
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card[data-fg-visible]:nth-child(6) { animation-delay: 0.40s; }

@keyframes fgCardIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Header reveal ── */
[data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__header[data-fg-header-visible] {
  animation: fgFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fgFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card {
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card {
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__icon {
    width: 24px;
    height: 24px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card,
  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card::before,
  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__icon-wrap,
  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card-tag {
    transition: none;
  }

  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__card[data-fg-visible],
  [data-project="creatine-de"] .block-features-grid-dark.block-features-grid-dark .fg__header[data-fg-header-visible] {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ═══ BLOCK: footer ═══ */
/* ============================================================
   FOOTER — Creatine DE
   Dark 4-column footer with emerald gradient accent line
   ============================================================ */

[data-project="creatine-de"] .block-footer.block-footer {
  position: relative;
  padding: 0;
  background: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', sans-serif);
}

/* ---- Gradient Accent Line ---- */
[data-project="creatine-de"] .block-footer.block-footer .ft__accent-line {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.4) 20%,
    var(--t-accent, #10B981) 50%,
    rgba(16, 185, 129, 0.4) 80%,
    transparent 100%);
}

/* ---- Main Grid ---- */
[data-project="creatine-de"] .block-footer.block-footer .ft__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}

[data-project="creatine-de"] .block-footer.block-footer .ft__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

/* ---- Brand Column ---- */
[data-project="creatine-de"] .block-footer.block-footer .ft__logo {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 14px;
}

[data-project="creatine-de"] .block-footer.block-footer .ft__logo-accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-footer.block-footer .ft__tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0 0 20px;
}

/* ---- Social Icons ---- */
[data-project="creatine-de"] .block-footer.block-footer .ft__social {
  display: flex;
  gap: 10px;
}

[data-project="creatine-de"] .block-footer.block-footer .ft__social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-footer.block-footer .ft__social-link:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--t-accent, #10B981);
  transform: translateY(-2px);
}

/* ---- Column Titles ---- */
[data-project="creatine-de"] .block-footer.block-footer .ft__col-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* ---- Links ---- */
[data-project="creatine-de"] .block-footer.block-footer .ft__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-footer.block-footer .ft__link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

[data-project="creatine-de"] .block-footer.block-footer .ft__link:hover {
  color: var(--t-accent, #10B981);
}

/* ---- Contact Items ---- */
[data-project="creatine-de"] .block-footer.block-footer .ft__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
}

/* ---- Bottom Bar ---- */
[data-project="creatine-de"] .block-footer.block-footer .ft__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-footer.block-footer .ft__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-project="creatine-de"] .block-footer.block-footer .ft__copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

[data-project="creatine-de"] .block-footer.block-footer .ft__legal {
  display: flex;
  gap: 20px;
}

[data-project="creatine-de"] .block-footer.block-footer .ft__legal-link {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

[data-project="creatine-de"] .block-footer.block-footer .ft__legal-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Focus ---- */
[data-project="creatine-de"] .block-footer.block-footer a:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 3px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-footer.block-footer .ft__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  [data-project="creatine-de"] .block-footer.block-footer .ft__bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-footer.block-footer .ft__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  [data-project="creatine-de"] .block-footer.block-footer .ft__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-footer.block-footer .ft__social-link,
  [data-project="creatine-de"] .block-footer.block-footer .ft__link {
    transition: none;
  }
}

/* ═══ BLOCK: form-contact ═══ */
/* ============================================================
   FORM-CONTACT — Creatine DE
   Surface bg, split layout: form left, contact info right
   Emerald focus rings, premium input styling
   ============================================================ */

[data-project="creatine-de"] .block-form-contact.block-form-contact {
  padding: clamp(72px, 9vw, 120px) 24px;
  background: var(--t-surface, #f8fafb);
  font-family: var(--t-body-font, 'Inter', sans-serif);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__inner {
  max-width: 1140px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

/* — Header — */

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 14px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0 0 36px;
  max-width: 480px;
}

/* — Form — */

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__required {
  color: #ef4444;
  margin-left: 2px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__input {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--t-primary, #0F172A);
  background: #ffffff;
  border: 1.5px solid var(--t-border, #e2e8f0);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__input::placeholder {
  color: var(--t-muted, #64748b);
  opacity: 0.6;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__input:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__input:hover:not(:focus) {
  border-color: #cbd5e1;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__input.fc__input--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 300px;
  line-height: 1.6;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__error {
  font-size: 0.78rem;
  color: #ef4444;
  min-height: 0;
  line-height: 1.3;
}

/* — Privacy checkbox — */

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--t-accent, #10B981);
  cursor: pointer;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__privacy-label {
  font-size: 0.85rem;
  color: var(--t-muted, #64748b);
  line-height: 1.5;
  cursor: pointer;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__link {
  color: var(--t-accent, #10B981);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__link:hover {
  color: #059669;
}

/* — Submit button — */

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
  align-self: flex-start;
  margin-top: 8px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  filter: brightness(1.1);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__submit:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__submit:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 3px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__submit-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__submit:hover .fc__submit-icon {
  transform: translateX(3px);
}

/* — Success message — */

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__success {
  text-align: center;
  padding: 48px 24px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__success[hidden] {
  display: none;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__success-title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin: 0 0 10px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__success-text {
  font-size: 0.95rem;
  color: var(--t-muted, #64748b);
  line-height: 1.6;
  margin: 0;
}

/* — Info side — */

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__info-card {
  background: #ffffff;
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
  transition: background 0.2s ease;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__info-item:hover .fc__info-icon {
  background: rgba(16, 185, 129, 0.14);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__info-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--t-primary, #0F172A);
  text-decoration: none;
  transition: color 0.15s ease;
}

[data-project="creatine-de"] .block-form-contact.block-form-contact a.fc__info-value:hover {
  color: var(--t-accent, #10B981);
}

/* — Trust bar — */

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--t-border, #e2e8f0);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-form-contact.block-form-contact .fc__trust-item svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* — Responsive 768px — */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-form-contact.block-form-contact .fc__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  [data-project="creatine-de"] .block-form-contact.block-form-contact .fc__info-side {
    order: -1;
  }
  [data-project="creatine-de"] .block-form-contact.block-form-contact .fc__info-card {
    padding: 28px 24px;
  }
  [data-project="creatine-de"] .block-form-contact.block-form-contact .fc__submit {
    width: 100%;
    justify-content: center;
  }
}

/* — Responsive 480px — */

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-form-contact.block-form-contact {
    padding: 56px 16px;
  }
  [data-project="creatine-de"] .block-form-contact.block-form-contact .fc__trust-bar {
    flex-direction: column;
    gap: 10px;
  }
  [data-project="creatine-de"] .block-form-contact.block-form-contact .fc__info-card {
    padding: 24px 20px;
  }
  [data-project="creatine-de"] .block-form-contact.block-form-contact .fc__input {
    padding: 12px 14px;
    font-size: 0.92rem;
  }
}

/* — Reduced motion — */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-form-contact.block-form-contact .fc__submit,
  [data-project="creatine-de"] .block-form-contact.block-form-contact .fc__input,
  [data-project="creatine-de"] .block-form-contact.block-form-contact .fc__submit-icon,
  [data-project="creatine-de"] .block-form-contact.block-form-contact .fc__info-icon {
    transition: none;
  }
}
/* ═══ BLOCK: form-contact-dark ═══ */
/* ============================================================
   FORM-CONTACT — Creatine DE
   Surface bg, split layout: form left, contact info right
   Emerald focus rings, premium input styling
   ============================================================ */

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark {
  padding: clamp(72px, 9vw, 120px) 24px;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  font-family: var(--t-body-font, 'Inter', sans-serif);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__inner {
  max-width: 1140px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

/* — Header — */

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 14px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 36px;
  max-width: 480px;
}

/* — Form — */

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__required {
  color: #ef4444;
  margin-left: 2px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__input {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--t-primary, #0F172A);
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.6;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__input:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__input:hover:not(:focus) {
  border-color: #cbd5e1;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__input.fc__input--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 300px;
  line-height: 1.6;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__error {
  font-size: 0.78rem;
  color: #ef4444;
  min-height: 0;
  line-height: 1.3;
}

/* — Privacy checkbox — */

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--t-accent, #10B981);
  cursor: pointer;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__privacy-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  cursor: pointer;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__link {
  color: var(--t-accent, #10B981);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__link:hover {
  color: #059669;
}

/* — Submit button — */

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
  align-self: flex-start;
  margin-top: 8px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  filter: brightness(1.1);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__submit:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__submit:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 3px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__submit-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__submit:hover .fc__submit-icon {
  transform: translateX(3px);
}

/* — Success message — */

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__success {
  text-align: center;
  padding: 48px 24px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__success[hidden] {
  display: none;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__success-title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin: 0 0 10px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__success-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

/* — Info side — */

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
  transition: background 0.2s ease;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__info-item:hover .fc__info-icon {
  background: rgba(16, 185, 129, 0.14);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__info-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--t-primary, #0F172A);
  text-decoration: none;
  transition: color 0.15s ease;
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark a.fc__info-value:hover {
  color: var(--t-accent, #10B981);
}

/* — Trust bar — */

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__trust-item svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* — Responsive 768px — */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__info-side {
    order: -1;
  }
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__info-card {
    padding: 28px 24px;
  }
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__submit {
    width: 100%;
    justify-content: center;
  }
}

/* — Responsive 480px — */

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark {
    padding: 56px 16px;
  }
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__trust-bar {
    flex-direction: column;
    gap: 10px;
  }
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__info-card {
    padding: 24px 20px;
  }
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__input {
    padding: 12px 14px;
    font-size: 0.92rem;
  }
}

/* — Reduced motion — */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__submit,
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__input,
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__submit-icon,
  [data-project="creatine-de"] .block-form-contact-dark.block-form-contact-dark .fc__info-icon {
    transition: none;
  }
}

/* ═══ BLOCK: functies-grid ═══ */
/* ============================================================
   FUNCTIES-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   6-card feature grid with numbered cards, icon accents,
   hover elevation, ambient glow on light surface.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: fgGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: fgGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes fgGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes fgGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   GRID LAYOUT — 3 columns, 2 rows
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════
   CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 36px 32px 32px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(16, 185, 129, 0.08),
    0 0 0 1px rgba(16, 185, 129, 0.06);
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card:hover .fg__card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(16, 185, 129, 0.08) 100%);
}

/* ── Card number ── */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.08);
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card:hover .fg__card-number {
  color: rgba(16, 185, 129, 0.2);
}

/* ── Card title ── */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  line-height: 1.3;
}

/* ── Card text ── */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 20px;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 56px);
}

[data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__footer-note {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin: 0;
  font-style: italic;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card {
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card {
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card-title {
    font-size: 1rem;
  }

  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card-text {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__header {
    margin-bottom: 32px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__glow--1,
  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card-icon,
  [data-project="creatine-de"] .block-functies-grid.block-functies-grid .fg__card-number {
    transition: none;
  }
}
/* ═══ BLOCK: functies-grid-dark ═══ */
/* ============================================================
   FUNCTIES-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   6-card feature grid with numbered cards, icon accents,
   hover elevation, ambient glow on light surface.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: fgGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: fgGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes fgGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes fgGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   GRID LAYOUT — 3 columns, 2 rows
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════
   CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 36px 32px 32px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(16, 185, 129, 0.08),
    0 0 0 1px rgba(16, 185, 129, 0.06);
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card:hover .fg__card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(16, 185, 129, 0.08) 100%);
}

/* ── Card number ── */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.08);
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card:hover .fg__card-number {
  color: rgba(16, 185, 129, 0.2);
}

/* ── Card title ── */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  line-height: 1.3;
}

/* ── Card text ── */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 56px);
}

[data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__footer-note {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin: 0;
  font-style: italic;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card {
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card {
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card-title {
    font-size: 1rem;
  }

  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card-text {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__header {
    margin-bottom: 32px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__glow--1,
  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card-icon,
  [data-project="creatine-de"] .block-functies-grid-dark.block-functies-grid-dark .fg__card-number {
    transition: none;
  }
}

/* ═══ BLOCK: hero-3d-kreatin-dose ═══ */
/* HERO-3D-KREATIN-DOSE — creatine-de */
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose { padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 40px); background: #0F172A; color: #fff; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__scene { perspective: 800px; display: flex; justify-content: center; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__cube { width: 200px; height: 200px; position: relative; transform-style: preserve-3d; animation: h3kRotate 14s ease-in-out infinite; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__face { position: absolute; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; border: 1px solid #10B98133; background: rgba(255,255,255,0.03); backdrop-filter: blur(6px); border-radius: 12px; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__face--front  { transform: translateZ(100px); }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__face--right  { transform: rotateY(90deg) translateZ(100px); }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__face--back   { transform: rotateY(180deg) translateZ(100px); }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__face--left   { transform: rotateY(-90deg) translateZ(100px); }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__face-content { text-align: center; padding: 20px; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__face-content h3 { font-size: 1.1rem; font-weight: 700; color: #10B981; margin: 0 0 8px; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__face-content p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.4; margin: 0; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__heading { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin: 0 0 16px; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__desc { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
@keyframes h3kRotate {
  0% { transform: rotateY(0deg) rotateX(8deg); }
  25% { transform: rotateY(90deg) rotateX(-3deg); }
  50% { transform: rotateY(180deg) rotateX(5deg); }
  75% { transform: rotateY(270deg) rotateX(-5deg); }
  100% { transform: rotateY(360deg) rotateX(8deg); }
}
@media (max-width: 768px) { [data-project="creatine-de"] .block-hero-3d-kreatin-dose.block-hero-3d-kreatin-dose .h3k__inner { grid-template-columns: 1fr; } }
/* ═══ BLOCK: hero-3d-kreatin-dose-light ═══ */
/* HERO-3D-KREATIN-DOSE — creatine-de */
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light { padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 40px); background: var(--t-surface, #f8fafb); color: var(--t-heading, #0F172A); }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__scene { perspective: 800px; display: flex; justify-content: center; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__cube { width: 200px; height: 200px; position: relative; transform-style: preserve-3d; animation: h3kRotate 14s ease-in-out infinite; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__face { position: absolute; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; border: 1px solid #10B98133; background: rgba(0, 0, 0, 0.06); backdrop-filter: blur(6px); border-radius: 12px; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__face--front  { transform: translateZ(100px); }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__face--right  { transform: rotateY(90deg) translateZ(100px); }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__face--back   { transform: rotateY(180deg) translateZ(100px); }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__face--left   { transform: rotateY(-90deg) translateZ(100px); }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__face-content { text-align: center; padding: 20px; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__face-content h3 { font-size: 1.1rem; font-weight: 700; color: #10B981; margin: 0 0 8px; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__face-content p { font-size: 0.8rem; color: var(--t-muted, #64748b); line-height: 1.4; margin: 0; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__heading { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin: 0 0 16px; }
[data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__desc { font-size: 1rem; color: var(--t-muted, #64748b); line-height: 1.6; }
@keyframes h3kRotate {
  0% { transform: rotateY(0deg) rotateX(8deg); }
  25% { transform: rotateY(90deg) rotateX(-3deg); }
  50% { transform: rotateY(180deg) rotateX(5deg); }
  75% { transform: rotateY(270deg) rotateX(-5deg); }
  100% { transform: rotateY(360deg) rotateX(8deg); }
}
@media (max-width: 768px) { [data-project="creatine-de"] .block-hero-3d-kreatin-dose-light.block-hero-3d-kreatin-dose-light .h3k__inner { grid-template-columns: 1fr; } }

/* ═══ BLOCK: hero-3d-product ═══ */
/* ============================================================
   HERO-3D-PRODUCT — Creatine-DE
   Layer 3: Per-block premium overrides
   3D product showcase hero with tilt effect, floating badges,
   particle system, gradient text, glassmorphism accents.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark hero ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product {
  position: relative;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 160px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Subtle grid background ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

/* ── Particles ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  opacity: 0;
  animation: hpFloat 8s infinite;
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__particle--1 {
  left: 15%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 7s;
}
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__particle--2 {
  left: 75%;
  top: 15%;
  animation-delay: 1.2s;
  animation-duration: 9s;
  width: 3px;
  height: 3px;
}
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__particle--3 {
  left: 45%;
  top: 70%;
  animation-delay: 2.5s;
  animation-duration: 6s;
}
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__particle--4 {
  left: 85%;
  top: 55%;
  animation-delay: 0.8s;
  animation-duration: 10s;
  width: 5px;
  height: 5px;
}
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__particle--5 {
  left: 25%;
  top: 80%;
  animation-delay: 3.5s;
  animation-duration: 8s;
  width: 3px;
  height: 3px;
}
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__particle--6 {
  left: 60%;
  top: 35%;
  animation-delay: 5s;
  animation-duration: 7.5s;
}

@keyframes hpFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  15% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-60px) scale(1); }
  85% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

/* ── Inner layout ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════
   CONTENT COLUMN
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Eyebrow ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
  animation: hpDotPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hpDotPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(16, 185, 129, 0.5); opacity: 1; }
  50% { box-shadow: 0 0 4px rgba(16, 185, 129, 0.2); opacity: 0.6; }
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--t-text-light, #ffffff);
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__title-line {
  display: block;
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__title-line--accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0;
}

/* ── Actions ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__btn h3d__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 2px 8px rgba(16, 185, 129, 0.3),
    0 0 0 0 rgba(16, 185, 129, 0);
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__btn h3d__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 16px rgba(16, 185, 129, 0.4),
    0 0 0 4px rgba(16, 185, 129, 0.1);
  background: #0ea573;
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__btn-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__btn h3d__btn--primary:hover .h3d__btn-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__btn h3d__btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__btn h3d__btn--ghost:hover {
  border-color: rgba(16, 185, 129, 0.4);
  color: #ffffff;
  background: rgba(16, 185, 129, 0.06);
}

/* ── Trust items ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__feat-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   PRODUCT COLUMN — 3D STAGE
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__scene {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__cube {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Glow behind product ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__glow {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  animation: hpGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hpGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* ── Product card with 3D tilt ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__face {
  position: relative;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: hpProductFloat 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes hpProductFloat {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  25% { transform: translateY(-8px) rotateX(1deg) rotateY(-1deg); }
  50% { transform: translateY(-14px) rotateX(-0.5deg) rotateY(1.5deg); }
  75% { transform: translateY(-6px) rotateX(0.5deg) rotateY(-0.5deg); }
}

/* ── Shine overlay ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__face--shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 2;
  animation: hpShine 4s ease-in-out infinite;
  opacity: 0;
}

@keyframes hpShine {
  0%, 100% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; }
  80% { transform: translateX(100%); opacity: 0; }
}

/* ── Product image ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__face-img {
  width: 75%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__face:hover .h3d__face-img {
  transform: scale(1.04);
}

/* ── Glassmorphism badges ── */
[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__cube .h3d__badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__badge--top {
  top: 5%;
  right: 5%;
  animation: hpBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__badge--right {
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  animation: hpBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__badge--bottom {
  bottom: 8%;
  left: 5%;
  animation: hpBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

@keyframes hpBadgeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__badge-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__badge-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
   SCROLL HINT
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--t-accent, #10B981), transparent);
  animation: hpScrollLine 2s ease-in-out infinite;
}

@keyframes hpScrollLine {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; transform: scaleY(0.4); transform-origin: top; }
  100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__scroll-text {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
}

/* ══════════════════════════════════════
   REVEAL ANIMATION STATES
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__reveal.hp--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product {
    padding: clamp(80px, 8vw, 120px) 0 clamp(60px, 6vw, 80px);
    min-height: auto;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__content {
    align-items: center;
    order: 1;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__scene {
    order: 0;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__cube {
    max-width: 340px;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__subtitle {
    max-width: 460px;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__ctas {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__features {
    align-items: center;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__scroll-hint {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__badge--right {
    right: 0%;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__heading {
    font-size: 2rem;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__subtitle {
    font-size: 0.95rem;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__ctas {
    flex-direction: column;
    width: 100%;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__btn h3d__btn--primary,
  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__btn h3d__btn--ghost {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__cube {
    max-width: 280px;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__cube .h3d__badge {
    padding: 8px 12px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__badge-value {
    font-size: 0.95rem;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__badge-label {
    font-size: 0.55rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__particle,
  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__glow,
  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__face--shine,
  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__scroll-line,
  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__eyebrow-dot {
    animation: none !important;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__face {
    animation: none !important;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__cube .h3d__badge {
    animation: none !important;
    opacity: 1;
  }
}
/* Fix: badges static on mobile to prevent overlap */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-3d-product.block-hero-3d-product .h3d__cube .h3d__badge {
    position: static;
    margin: 8px auto;
  }
}

/* ═══ BLOCK: hero-3d-product-light ═══ */
/* ============================================================
   HERO-3D-PRODUCT — Creatine-DE
   Layer 3: Per-block premium overrides
   3D product showcase hero with tilt effect, floating badges,
   particle system, gradient text, glassmorphism accents.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark hero ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light {
  position: relative;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 160px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Subtle grid background ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

/* ── Particles ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  opacity: 0;
  animation: hpFloat 8s infinite;
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__particle--1 {
  left: 15%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 7s;
}
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__particle--2 {
  left: 75%;
  top: 15%;
  animation-delay: 1.2s;
  animation-duration: 9s;
  width: 3px;
  height: 3px;
}
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__particle--3 {
  left: 45%;
  top: 70%;
  animation-delay: 2.5s;
  animation-duration: 6s;
}
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__particle--4 {
  left: 85%;
  top: 55%;
  animation-delay: 0.8s;
  animation-duration: 10s;
  width: 5px;
  height: 5px;
}
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__particle--5 {
  left: 25%;
  top: 80%;
  animation-delay: 3.5s;
  animation-duration: 8s;
  width: 3px;
  height: 3px;
}
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__particle--6 {
  left: 60%;
  top: 35%;
  animation-delay: 5s;
  animation-duration: 7.5s;
}

@keyframes hpFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  15% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-60px) scale(1); }
  85% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

/* ── Inner layout ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════
   CONTENT COLUMN
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Eyebrow ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
  animation: hpDotPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hpDotPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(16, 185, 129, 0.5); opacity: 1; }
  50% { box-shadow: 0 0 4px rgba(16, 185, 129, 0.2); opacity: 0.6; }
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--t-text-light, #ffffff);
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__title-line {
  display: block;
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__title-line--accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  max-width: 520px;
  margin: 0;
}

/* ── Actions ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__btn h3d__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 2px 8px rgba(16, 185, 129, 0.3),
    0 0 0 0 rgba(16, 185, 129, 0);
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__btn h3d__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 16px rgba(16, 185, 129, 0.4),
    0 0 0 4px rgba(16, 185, 129, 0.1);
  background: #0ea573;
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__btn-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__btn h3d__btn--primary:hover .h3d__btn-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__btn h3d__btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  background: transparent;
  color: var(--t-muted, #64748b);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__btn h3d__btn--ghost:hover {
  border-color: rgba(16, 185, 129, 0.4);
  color: #ffffff;
  background: rgba(16, 185, 129, 0.06);
}

/* ── Trust items ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__feat-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   PRODUCT COLUMN — 3D STAGE
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__scene {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__cube {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Glow behind product ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__glow {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  animation: hpGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hpGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* ── Product card with 3D tilt ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__face {
  position: relative;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.06) 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: hpProductFloat 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes hpProductFloat {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  25% { transform: translateY(-8px) rotateX(1deg) rotateY(-1deg); }
  50% { transform: translateY(-14px) rotateX(-0.5deg) rotateY(1.5deg); }
  75% { transform: translateY(-6px) rotateX(0.5deg) rotateY(-0.5deg); }
}

/* ── Shine overlay ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__face--shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(0, 0, 0, 0.06) 45%,
    rgba(0, 0, 0, 0.06) 50%,
    rgba(0, 0, 0, 0.06) 55%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 2;
  animation: hpShine 4s ease-in-out infinite;
  opacity: 0;
}

@keyframes hpShine {
  0%, 100% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; }
  80% { transform: translateX(100%); opacity: 0; }
}

/* ── Product image ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__face-img {
  width: 75%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__face:hover .h3d__face-img {
  transform: scale(1.04);
}

/* ── Glassmorphism badges ── */
[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__cube .h3d__badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__badge--top {
  top: 5%;
  right: 5%;
  animation: hpBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__badge--right {
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  animation: hpBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__badge--bottom {
  bottom: 8%;
  left: 5%;
  animation: hpBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

@keyframes hpBadgeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__badge-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__badge-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
   SCROLL HINT
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--t-accent, #10B981), transparent);
  animation: hpScrollLine 2s ease-in-out infinite;
}

@keyframes hpScrollLine {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; transform: scaleY(0.4); transform-origin: top; }
  100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__scroll-text {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.30);
}

/* ══════════════════════════════════════
   REVEAL ANIMATION STATES
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__reveal.hp--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light {
    padding: clamp(80px, 8vw, 120px) 0 clamp(60px, 6vw, 80px);
    min-height: auto;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__content {
    align-items: center;
    order: 1;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__scene {
    order: 0;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__cube {
    max-width: 340px;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__subtitle {
    max-width: 460px;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__ctas {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__features {
    align-items: center;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__scroll-hint {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__badge--right {
    right: 0%;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__heading {
    font-size: 2rem;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__subtitle {
    font-size: 0.95rem;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__ctas {
    flex-direction: column;
    width: 100%;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__btn h3d__btn--primary,
  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__btn h3d__btn--ghost {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__cube {
    max-width: 280px;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__cube .h3d__badge {
    padding: 8px 12px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__badge-value {
    font-size: 0.95rem;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__badge-label {
    font-size: 0.55rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__particle,
  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__glow,
  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__face--shine,
  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__scroll-line,
  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__eyebrow-dot {
    animation: none !important;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__face {
    animation: none !important;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__cube .h3d__badge {
    animation: none !important;
    opacity: 1;
  }
}
/* Fix: badges static on mobile to prevent overlap */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-3d-product-light.block-hero-3d-product-light .h3d__cube .h3d__badge {
    position: static;
    margin: 8px auto;
  }
}


/* ═══ BLOCK: hero-animated ═══ */
/* ============================================================
   HERO-ANIMATED — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-viewport hero with animated particle canvas, floating
   molecule visualization, glassmorphism cards, gradient text,
   staggered reveals, and counter animations.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 140px) 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Background layer ── */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Glow orbs ── */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__glow--1 {
  width: 600px;
  height: 600px;
  top: -20%;
  left: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  animation: haGlow1 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__glow--2 {
  width: 500px;
  height: 500px;
  bottom: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: haGlow2 24s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes haGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 30px) scale(1.15); }
}

@keyframes haGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -25px) scale(1.08); }
}

/* ── Grid overlay ── */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   CONTENT — left column
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__content {
  position: relative;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: haBadgePulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes haBadgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
  50% { opacity: 0.4; box-shadow: 0 0 3px rgba(16, 185, 129, 0.2); }
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 24px 0;
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__title-gradient {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 40%, #6ee7b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 36px 0;
  max-width: 520px;
  opacity: 0;
  transform: translateY(24px);
}

/* ── Actions ── */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.938rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__cta-primary:hover .ha__cta-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.938rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

/* ══════════════════════════════════════
   STATS
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__stat-number {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-text-light, #ffffff);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   VISUAL — right column (molecule)
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__molecule {
  position: relative;
  width: 320px;
  height: 320px;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__molecule-svg {
  width: 100%;
  height: 100%;
  color: var(--t-accent, #10B981);
  opacity: 0;
  transform: scale(0.85);
}

/* Pulsing rings around molecule */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__molecule-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.12);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__molecule-ring--1 {
  width: 240px;
  height: 240px;
  animation: haRingPulse 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__molecule-ring--2 {
  width: 340px;
  height: 340px;
  animation: haRingPulse 4s cubic-bezier(0.16, 1, 0.3, 1) 1s infinite;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__molecule-ring--3 {
  width: 440px;
  height: 440px;
  animation: haRingPulse 4s cubic-bezier(0.16, 1, 0.3, 1) 2s infinite;
}

@keyframes haRingPulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  40% { opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Molecule nodes pulse */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__mol-node {
  fill: none;
  transition: fill 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__mol-node--1 {
  animation: haNodeGlow 3s ease-in-out infinite;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__mol-node--2 {
  animation: haNodeGlow 3s ease-in-out 0.8s infinite;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__mol-node--3 {
  animation: haNodeGlow 3s ease-in-out 1.6s infinite;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__mol-node--4 {
  animation: haNodeGlow 3s ease-in-out 2.4s infinite;
}

@keyframes haNodeGlow {
  0%, 100% { fill: rgba(16, 185, 129, 0.05); filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.0)); }
  50% { fill: rgba(16, 185, 129, 0.15); filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3)); }
}

/* Bond lines draw-in */
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__mol-bond {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  opacity: 0.5;
}

/* ══════════════════════════════════════
   FLOATING CARDS — glassmorphism
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(16px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__float-card svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__float-card--1 {
  top: 8%;
  right: 0;
  animation: haFloat 6s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__float-card--2 {
  bottom: 28%;
  left: -12%;
  animation: haFloat 7s cubic-bezier(0.16, 1, 0.3, 1) 1.5s infinite alternate;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__float-card--3 {
  bottom: 8%;
  right: -4%;
  animation: haFloat 5.5s cubic-bezier(0.16, 1, 0.3, 1) 3s infinite alternate;
}

@keyframes haFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* ══════════════════════════════════════
   SCROLL HINT
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.5), transparent);
  animation: haScrollLine 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes haScrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__scroll-text {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ══════════════════════════════════════
   REVEAL ANIMATION STATES
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__badge.ha--visible,
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__title.ha--visible,
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__subtitle.ha--visible,
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__actions.ha--visible,
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__stats.ha--visible,
[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__scroll-hint.ha--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__molecule-svg.ha--visible {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__mol-bond.ha--drawn {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__float-card.ha--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   RESPONSIVE — tablet
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated {
    padding: clamp(100px, 14vw, 140px) 0 clamp(64px, 8vw, 96px);
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__visual {
    min-height: 300px;
    order: -1;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__molecule {
    width: 260px;
    height: 260px;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__float-card--2 {
    left: 0;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — mobile
   ══════════════════════════════════════ */

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__actions {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__cta-primary,
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__cta-secondary {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__stats {
    gap: 12px;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__stat-number {
    font-size: 1.25rem;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__float-cards {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__scroll-hint {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__glow--1,
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__molecule-ring {
    animation: none;
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1);
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__mol-node {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__float-card {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__scroll-line {
    animation: none;
    transform: scaleY(1);
    opacity: 0.3;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__badge-pulse {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__badge,
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__title,
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__subtitle,
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__actions,
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__stats,
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__scroll-hint,
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__molecule-svg,
  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__float-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__mol-bond {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }

  [data-project="creatine-de"] .block-hero-animated.block-hero-animated .ha__particles {
    display: none;
  }
}
/* ═══ BLOCK: hero-animated-light ═══ */
/* ============================================================
   HERO-ANIMATED — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-viewport hero with animated particle canvas, floating
   molecule visualization, glassmorphism cards, gradient text,
   staggered reveals, and counter animations.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 140px) 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Background layer ── */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Glow orbs ── */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__glow--1 {
  width: 600px;
  height: 600px;
  top: -20%;
  left: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  animation: haGlow1 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__glow--2 {
  width: 500px;
  height: 500px;
  bottom: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: haGlow2 24s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes haGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 30px) scale(1.15); }
}

@keyframes haGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -25px) scale(1.08); }
}

/* ── Grid overlay ── */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   CONTENT — left column
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__content {
  position: relative;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: haBadgePulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes haBadgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
  50% { opacity: 0.4; box-shadow: 0 0 3px rgba(16, 185, 129, 0.2); }
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 24px 0;
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__title-gradient {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 40%, #6ee7b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 36px 0;
  max-width: 520px;
  opacity: 0;
  transform: translateY(24px);
}

/* ── Actions ── */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.938rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__cta-primary:hover .ha__cta-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--t-text, #1e293b);
  font-size: 0.938rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--t-heading, #0F172A);
}

/* ══════════════════════════════════════
   STATS
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__stat-number {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-text-light, #ffffff);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.40);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   VISUAL — right column (molecule)
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__molecule {
  position: relative;
  width: 320px;
  height: 320px;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__molecule-svg {
  width: 100%;
  height: 100%;
  color: var(--t-accent, #10B981);
  opacity: 0;
  transform: scale(0.85);
}

/* Pulsing rings around molecule */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__molecule-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.12);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__molecule-ring--1 {
  width: 240px;
  height: 240px;
  animation: haRingPulse 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__molecule-ring--2 {
  width: 340px;
  height: 340px;
  animation: haRingPulse 4s cubic-bezier(0.16, 1, 0.3, 1) 1s infinite;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__molecule-ring--3 {
  width: 440px;
  height: 440px;
  animation: haRingPulse 4s cubic-bezier(0.16, 1, 0.3, 1) 2s infinite;
}

@keyframes haRingPulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  40% { opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Molecule nodes pulse */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__mol-node {
  fill: none;
  transition: fill 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__mol-node--1 {
  animation: haNodeGlow 3s ease-in-out infinite;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__mol-node--2 {
  animation: haNodeGlow 3s ease-in-out 0.8s infinite;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__mol-node--3 {
  animation: haNodeGlow 3s ease-in-out 1.6s infinite;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__mol-node--4 {
  animation: haNodeGlow 3s ease-in-out 2.4s infinite;
}

@keyframes haNodeGlow {
  0%, 100% { fill: rgba(16, 185, 129, 0.05); filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.0)); }
  50% { fill: rgba(16, 185, 129, 0.15); filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3)); }
}

/* Bond lines draw-in */
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__mol-bond {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  opacity: 0.5;
}

/* ══════════════════════════════════════
   FLOATING CARDS — glassmorphism
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--t-text, #1e293b);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(16px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__float-card svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__float-card--1 {
  top: 8%;
  right: 0;
  animation: haFloat 6s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__float-card--2 {
  bottom: 28%;
  left: -12%;
  animation: haFloat 7s cubic-bezier(0.16, 1, 0.3, 1) 1.5s infinite alternate;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__float-card--3 {
  bottom: 8%;
  right: -4%;
  animation: haFloat 5.5s cubic-bezier(0.16, 1, 0.3, 1) 3s infinite alternate;
}

@keyframes haFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* ══════════════════════════════════════
   SCROLL HINT
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.5), transparent);
  animation: haScrollLine 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes haScrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__scroll-text {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.30);
}

/* ══════════════════════════════════════
   REVEAL ANIMATION STATES
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__badge.ha--visible,
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__title.ha--visible,
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__subtitle.ha--visible,
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__actions.ha--visible,
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__stats.ha--visible,
[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__scroll-hint.ha--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__molecule-svg.ha--visible {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__mol-bond.ha--drawn {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__float-card.ha--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   RESPONSIVE — tablet
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light {
    padding: clamp(100px, 14vw, 140px) 0 clamp(64px, 8vw, 96px);
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__visual {
    min-height: 300px;
    order: -1;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__molecule {
    width: 260px;
    height: 260px;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__float-card--2 {
    left: 0;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — mobile
   ══════════════════════════════════════ */

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__actions {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__cta-primary,
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__cta-secondary {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__stats {
    gap: 12px;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__stat-number {
    font-size: 1.25rem;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__float-cards {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__scroll-hint {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__glow--1,
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__molecule-ring {
    animation: none;
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1);
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__mol-node {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__float-card {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__scroll-line {
    animation: none;
    transform: scaleY(1);
    opacity: 0.3;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__badge-pulse {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__badge,
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__title,
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__subtitle,
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__actions,
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__stats,
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__scroll-hint,
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__molecule-svg,
  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__float-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__mol-bond {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }

  [data-project="creatine-de"] .block-hero-animated-light.block-hero-animated-light .ha__particles {
    display: none;
  }
}

/* ═══ BLOCK: hero-gradient ═══ */
/* ============================================================
   HERO-GRADIENT — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-viewport hero with animated gradient orbs, glassmorphism
   floating cards, product visual, and social proof strip.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 140px) 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Animated background orbs ── */
[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__orb--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
  animation: hgOrbFloat1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__orb--2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: hgOrbFloat2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes hgOrbFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.1); }
}

@keyframes hgOrbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -30px) scale(1.05); }
}

/* ── Grid overlay ── */
[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   CONTENT COLUMN
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  width: fit-content;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: hgDotPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hgDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__heading-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0;
}

/* ══════════════════════════════════════
   CTA ACTIONS
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__btn hero__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 6px 20px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__btn hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 10px 30px rgba(16, 185, 129, 0.35);
  background: #0ea572;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__btn-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__btn hero__btn--primary:hover .hero__btn-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__btn hero__btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__btn hero__btn--ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__btn-play {
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SOCIAL PROOF STRIP
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   VISUAL / PRODUCT COLUMN
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__product-wrap {
  position: relative;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__product-img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  z-index: 1;
}

/* ── Floating cards ── */
[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff;
  z-index: 2;
  white-space: nowrap;
  animation: hgCardFloat 6s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__float-card svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__float-card--top {
  top: 8%;
  right: -10%;
  animation-delay: 0s;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__float-card--bottom {
  bottom: 12%;
  left: -6%;
  animation-delay: -3s;
}

@keyframes hgCardFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ══════════════════════════════════════
   SCROLL HINT
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

[data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.5), transparent);
  animation: hgScrollPulse 2s ease-in-out infinite;
}

@keyframes hgScrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__content {
    align-items: center;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__subtitle {
    max-width: 480px;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__ctas {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__stats {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__visual {
    order: -1;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__float-card--top {
    right: 2%;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__float-card--bottom {
    left: 2%;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient {
    padding: 100px 0 64px;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__inner {
    gap: 36px;
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__heading {
    font-size: 1.9rem;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__btn hero__btn--primary {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__stats {
    gap: 14px;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__stat-num {
    font-size: 1.2rem;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__float-card {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__scroll-hint {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__orb,
  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__float-card,
  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__scroll-line,
  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__btn hero__btn--primary,
  [data-project="creatine-de"] .block-hero-gradient.block-hero-gradient .hero__btn hero__btn--ghost {
    transition: none;
  }
}
/* ═══ BLOCK: hero-gradient-light ═══ */
/* ============================================================
   HERO-GRADIENT — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-viewport hero with animated gradient orbs, glassmorphism
   floating cards, product visual, and social proof strip.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 140px) 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Animated background orbs ── */
[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__orb--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
  animation: hgOrbFloat1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__orb--2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: hgOrbFloat2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes hgOrbFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.1); }
}

@keyframes hgOrbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -30px) scale(1.05); }
}

/* ── Grid overlay ── */
[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   CONTENT COLUMN
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  width: fit-content;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: hgDotPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hgDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__heading-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  max-width: 520px;
  margin: 0;
}

/* ══════════════════════════════════════
   CTA ACTIONS
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__btn hero__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 6px 20px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__btn hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 10px 30px rgba(16, 185, 129, 0.35);
  background: #0ea572;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__btn-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__btn hero__btn--primary:hover .hero__btn-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__btn hero__btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  color: var(--t-text, #1e293b);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__btn hero__btn--ghost:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__btn-play {
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SOCIAL PROOF STRIP
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   VISUAL / PRODUCT COLUMN
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__product-wrap {
  position: relative;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__product-img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  z-index: 1;
}

/* ── Floating cards ── */
[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff;
  z-index: 2;
  white-space: nowrap;
  animation: hgCardFloat 6s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__float-card svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__float-card--top {
  top: 8%;
  right: -10%;
  animation-delay: 0s;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__float-card--bottom {
  bottom: 12%;
  left: -6%;
  animation-delay: -3s;
}

@keyframes hgCardFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ══════════════════════════════════════
   SCROLL HINT
   ══════════════════════════════════════ */

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

[data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.5), transparent);
  animation: hgScrollPulse 2s ease-in-out infinite;
}

@keyframes hgScrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__content {
    align-items: center;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__subtitle {
    max-width: 480px;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__ctas {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__stats {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__visual {
    order: -1;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__float-card--top {
    right: 2%;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__float-card--bottom {
    left: 2%;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light {
    padding: 100px 0 64px;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__inner {
    gap: 36px;
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__heading {
    font-size: 1.9rem;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__btn hero__btn--primary {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__stats {
    gap: 14px;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__stat-num {
    font-size: 1.2rem;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__float-card {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__scroll-hint {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__orb,
  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__float-card,
  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__scroll-line,
  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__btn hero__btn--primary,
  [data-project="creatine-de"] .block-hero-gradient-light.block-hero-gradient-light .hero__btn hero__btn--ghost {
    transition: none;
  }
}

/* ═══ BLOCK: hero-kreatin-parallax ═══ */
/* HERO-KREATIN-PARALLAX — creatine-de */
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax { position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center; background: #0F172A; color: #fff; overflow: hidden; }
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax .hkp__bg { position: absolute; inset: 0; pointer-events: none; }
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax .hkp__layer { position: absolute; inset: 0; transition: transform 0.15s ease-out; will-change: transform; }
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax .hkp__crystal { position: absolute; }
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax .hkp__crystal--1 { width: 400px; top: -5%; right: 5%; }
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax .hkp__crystal--2 { width: 300px; bottom: 10%; left: 8%; }
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax .hkp__crystal--3 { width: 180px; top: 35%; left: 55%; }
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax .hkp__refraction { position: absolute; inset: 0; width: 100%; height: 100%; }
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax .hkp__content { position: relative; z-index: 2; text-align: center; padding: 40px 20px; max-width: 700px; }
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax .hkp__eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #10B981; background: #10B98115; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax .hkp__title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin: 0 0 20px; }
[data-project="creatine-de"] .block-hero-kreatin-parallax.block-hero-kreatin-parallax .hkp__desc { font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0 auto; max-width: 540px; }
/* ═══ BLOCK: hero-kreatin-parallax-light ═══ */
/* HERO-KREATIN-PARALLAX — creatine-de */
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light { position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center; background: var(--t-surface, #f8fafb); color: var(--t-heading, #0F172A); overflow: hidden; }
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light .hkp__bg { position: absolute; inset: 0; pointer-events: none; }
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light .hkp__layer { position: absolute; inset: 0; transition: transform 0.15s ease-out; will-change: transform; }
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light .hkp__crystal { position: absolute; }
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light .hkp__crystal--1 { width: 400px; top: -5%; right: 5%; }
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light .hkp__crystal--2 { width: 300px; bottom: 10%; left: 8%; }
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light .hkp__crystal--3 { width: 180px; top: 35%; left: 55%; }
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light .hkp__refraction { position: absolute; inset: 0; width: 100%; height: 100%; }
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light .hkp__content { position: relative; z-index: 2; text-align: center; padding: 40px 20px; max-width: 700px; }
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light .hkp__eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #10B981; background: #10B98115; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light .hkp__title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin: 0 0 20px; }
[data-project="creatine-de"] .block-hero-kreatin-parallax-light.block-hero-kreatin-parallax-light .hkp__desc { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--t-muted, #64748b); line-height: 1.6; margin: 0 auto; max-width: 540px; }

/* ═══ BLOCK: hero-minimal ═══ */
/* ============================================================
   HERO-MINIMAL — Creatine-DE
   Layer 3: Per-block premium overrides
   Clean, spacious hero with minimal elements, generous
   whitespace, and subtle accent touches.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}

/* Subtle top gradient wash */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Content ── */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__content {
  text-align: center;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__title-accent {
  color: var(--t-accent, #10B981);
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: #475569;
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 400;
}

/* ══════════════════════════════════════
   ACTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
}

/* Primary CTA */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__cta-primary:hover {
  transform: translateY(-2px);
  background: #0ea573;
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__cta-arrow {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__cta-primary:hover .hm__cta-arrow {
  transform: translateX(3px);
}

/* Secondary CTA */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  color: var(--t-primary, #0F172A);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition:
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__cta-secondary:hover {
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.06);
}

/* ══════════════════════════════════════
   SOCIAL PROOF STRIP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__proof-number {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__proof-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__proof-divider {
  width: 1px;
  height: 32px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* ── Bottom accent line ── */
[data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__line {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 2px;
  opacity: 0.4;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal {
    padding: clamp(100px, 12vw, 140px) 0 clamp(64px, 8vw, 96px);
  }

  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__subtitle {
    font-size: 1.05rem;
  }

  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__actions {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__cta-primary,
  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__cta-secondary {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__proof {
    gap: 16px;
  }

  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__proof-number {
    font-size: 1.15rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal {
    padding: 100px 0 56px;
  }

  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__title {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }

  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__badge {
    margin-bottom: 24px;
  }

  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__proof {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__proof-divider {
    width: 32px;
    height: 1px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__cta-primary,
  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__cta-secondary,
  [data-project="creatine-de"] .block-hero-minimal.block-hero-minimal .hm__cta-arrow {
    transition: none;
  }
}
/* ═══ BLOCK: hero-minimal-dark ═══ */
/* ============================================================
   HERO-MINIMAL — Creatine-DE
   Layer 3: Per-block premium overrides
   Clean, spacious hero with minimal elements, generous
   whitespace, and subtle accent touches.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}

/* Subtle top gradient wash */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Content ── */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__content {
  text-align: center;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__title-accent {
  color: var(--t-accent, #10B981);
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: #475569;
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 400;
}

/* ══════════════════════════════════════
   ACTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
}

/* Primary CTA */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__cta-primary:hover {
  transform: translateY(-2px);
  background: #0ea573;
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__cta-arrow {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__cta-primary:hover .hm__cta-arrow {
  transform: translateX(3px);
}

/* Secondary CTA */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  color: var(--t-primary, #0F172A);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition:
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__cta-secondary:hover {
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.06);
}

/* ══════════════════════════════════════
   SOCIAL PROOF STRIP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__proof-number {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__proof-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ── Bottom accent line ── */
[data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__line {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 2px;
  opacity: 0.4;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark {
    padding: clamp(100px, 12vw, 140px) 0 clamp(64px, 8vw, 96px);
  }

  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__subtitle {
    font-size: 1.05rem;
  }

  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__actions {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__cta-primary,
  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__cta-secondary {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__proof {
    gap: 16px;
  }

  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__proof-number {
    font-size: 1.15rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark {
    padding: 100px 0 56px;
  }

  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__title {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }

  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__badge {
    margin-bottom: 24px;
  }

  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__proof {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__proof-divider {
    width: 32px;
    height: 1px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__cta-primary,
  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__cta-secondary,
  [data-project="creatine-de"] .block-hero-minimal-dark.block-hero-minimal-dark .hm__cta-arrow {
    transition: none;
  }
}

/* ═══ BLOCK: hero-search ═══ */
/* ============================================================
   HERO-SEARCH — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark hero with prominent search bar, animated gradient orbs,
   suggestion tags, and stats strip.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-search.block-hero-search {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(120px, 14vw, 180px) 0 clamp(64px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Animated background orbs ── */
[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__orb--1 {
  width: 700px;
  height: 700px;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
  animation: hsOrbFloat1 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: 10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: hsOrbFloat2 25s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes hsOrbFloat1 {
  0% { transform: translateX(-50%) translate(0, 0) scale(1); }
  100% { transform: translateX(-50%) translate(30px, 50px) scale(1.08); }
}

@keyframes hsOrbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, -30px) scale(1.12); }
}

/* ── Noise texture ── */
[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.4;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── Content ── */
[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__content {
  text-align: center;
}

/* ══════════════════════════════════════
   BADGE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: hsBadgePulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hsBadgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 3px rgba(16, 185, 129, 0.3); }
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   SUBTITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin: 0 auto 48px;
  font-weight: 400;
}

/* ══════════════════════════════════════
   SEARCH BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-wrap {
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 6px 6px 6px 20px;
  gap: 12px;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-bar:focus-within {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 4px rgba(16, 185, 129, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-icon {
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1rem;
  line-height: 1.5;
  padding: 12px 0;
  min-width: 0;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-btn:hover {
  background: #0ea472;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-btn:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__btn-arrow {
  width: 14px;
  height: 14px;
}

/* ══════════════════════════════════════
   SUGGESTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__sug-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__sug-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__sug-tag:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--t-accent, #10B981);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__stat-number {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

[data-project="creatine-de"] .block-hero-search.block-hero-search .hs__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-search.block-hero-search {
    padding: clamp(100px, 12vw, 140px) 0 clamp(56px, 7vw, 80px);
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__inner {
    padding: 0 20px;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-bar {
    flex-direction: column;
    padding: 12px;
    gap: 8px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-icon {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-input {
    padding: 8px 12px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__stats {
    gap: 20px;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__stat-number {
    font-size: 1.25rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-search.block-hero-search {
    min-height: auto;
    padding: 120px 0 56px;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__badge {
    margin-bottom: 24px;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__title {
    margin-bottom: 20px;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__subtitle {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__suggestions {
    gap: 6px;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__sug-tag {
    padding: 4px 10px;
    font-size: 0.72rem;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__stats {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__stat-divider {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__orb--1,
  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__orb--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__search-btn:hover,
  [data-project="creatine-de"] .block-hero-search.block-hero-search .hs__sug-tag:hover {
    transform: none;
  }
}
/* ═══ BLOCK: hero-search-light ═══ */
/* ============================================================
   HERO-SEARCH — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark hero with prominent search bar, animated gradient orbs,
   suggestion tags, and stats strip.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(120px, 14vw, 180px) 0 clamp(64px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Animated background orbs ── */
[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__orb--1 {
  width: 700px;
  height: 700px;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
  animation: hsOrbFloat1 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: 10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: hsOrbFloat2 25s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes hsOrbFloat1 {
  0% { transform: translateX(-50%) translate(0, 0) scale(1); }
  100% { transform: translateX(-50%) translate(30px, 50px) scale(1.08); }
}

@keyframes hsOrbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, -30px) scale(1.12); }
}

/* ── Noise texture ── */
[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.4;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── Content ── */
[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__content {
  text-align: center;
}

/* ══════════════════════════════════════
   BADGE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: hsBadgePulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hsBadgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 3px rgba(16, 185, 129, 0.3); }
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   SUBTITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  max-width: 640px;
  margin: 0 auto 48px;
  font-weight: 400;
}

/* ══════════════════════════════════════
   SEARCH BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-wrap {
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-bar {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 6px 6px 6px 20px;
  gap: 12px;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-bar:focus-within {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(0, 0, 0, 0.06);
  box-shadow:
    0 0 0 4px rgba(16, 185, 129, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.10);
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-icon {
  color: rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--t-heading, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1rem;
  line-height: 1.5;
  padding: 12px 0;
  min-width: 0;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-input::placeholder {
  color: rgba(0, 0, 0, 0.30);
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-btn:hover {
  background: #0ea472;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-btn:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__btn-arrow {
  width: 14px;
  height: 14px;
}

/* ══════════════════════════════════════
   SUGGESTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__sug-label {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 500;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__sug-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  color: var(--t-muted, #64748b);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__sug-tag:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--t-accent, #10B981);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__stat-number {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-heading, #0F172A);
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.40);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

[data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light {
    padding: clamp(100px, 12vw, 140px) 0 clamp(56px, 7vw, 80px);
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__inner {
    padding: 0 20px;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-bar {
    flex-direction: column;
    padding: 12px;
    gap: 8px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-icon {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-input {
    padding: 8px 12px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__stats {
    gap: 20px;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__stat-number {
    font-size: 1.25rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light {
    min-height: auto;
    padding: 120px 0 56px;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__badge {
    margin-bottom: 24px;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__title {
    margin-bottom: 20px;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__subtitle {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__suggestions {
    gap: 6px;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__sug-tag {
    padding: 4px 10px;
    font-size: 0.72rem;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__stats {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__stat-divider {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__orb--1,
  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__orb--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__search-btn:hover,
  [data-project="creatine-de"] .block-hero-search-light.block-hero-search-light .hs__sug-tag:hover {
    transform: none;
  }
}

/* ═══ BLOCK: hero-split ═══ */
/* ============================================================
   HERO-SPLIT — Creatine-DE
   Layer 3: Per-block premium overrides
   Split-layout hero with content left, product visual right,
   floating glassmorphism cards, animated proof strip.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-split.block-hero-split {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 140px) 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Animated background ── */
[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__bg-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
  filter: blur(80px);
  animation: hsGradientFloat 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes hsGradientFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.08); }
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 70% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 70% 50%, black 20%, transparent 80%);
}

/* ── Inner container — split grid ── */
[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   CONTENT SIDE (LEFT)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 28px;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: hsBadgePulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hsBadgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 3px rgba(16, 185, 129, 0.3); }
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 24px 0;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px 0;
  max-width: 520px;
}

/* ══════════════════════════════════════
   FEATURE LIST
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__feature-icon {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   CTA ACTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 12px;
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.3),
    0 8px 28px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__cta-primary:hover .hs__cta-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__cta-secondary:hover {
  color: #ffffff;
}

/* ══════════════════════════════════════
   PROOF STRIP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__proof-number {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__proof-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   VISUAL SIDE (RIGHT)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__visual-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    0 12px 48px rgba(0, 0, 0, 0.15);
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__visual-img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: cover;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__visual-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--t-accent, #10B981);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Floating cards ── */
[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 500;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__float-card svg {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__float-card--lab {
  top: 10%;
  right: -12px;
  animation: hsFloatLab 6s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-split.block-hero-split .hs__float-card--pure {
  bottom: 15%;
  left: -16px;
  animation: hsFloatPure 7s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes hsFloatLab {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes hsFloatPure {
  0% { transform: translateY(0); }
  100% { transform: translateY(6px); }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-split.block-hero-split {
    padding: clamp(100px, 14vw, 140px) 0 clamp(56px, 8vw, 80px);
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__content {
    align-items: center;
    order: 1;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__visual {
    order: 2;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__subtitle {
    max-width: 480px;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__features {
    align-items: center;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__actions {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__proof {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__float-card--lab {
    right: 4px;
    top: 5%;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__float-card--pure {
    left: 4px;
    bottom: 10%;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__inner {
    gap: 36px;
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__title {
    font-size: 2rem;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__cta-primary {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__proof {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__proof-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__float-card {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__bg-gradient,
  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__float-card--lab,
  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__float-card--pure,
  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__cta-primary,
  [data-project="creatine-de"] .block-hero-split.block-hero-split .hs__cta-secondary {
    transition: none;
  }
}
/* ═══ BLOCK: hero-split-light ═══ */
/* ============================================================
   HERO-SPLIT — Creatine-DE
   Layer 3: Per-block premium overrides
   Split-layout hero with content left, product visual right,
   floating glassmorphism cards, animated proof strip.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 140px) 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Animated background ── */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__bg-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
  filter: blur(80px);
  animation: hsGradientFloat 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes hsGradientFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.08); }
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 70% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 70% 50%, black 20%, transparent 80%);
}

/* ── Inner container — split grid ── */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   CONTENT SIDE (LEFT)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 28px;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: hsBadgePulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hsBadgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 3px rgba(16, 185, 129, 0.3); }
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 24px 0;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 28px 0;
  max-width: 520px;
}

/* ══════════════════════════════════════
   FEATURE LIST
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--t-text, #1e293b);
  line-height: 1.5;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__feature-icon {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   CTA ACTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 12px;
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.3),
    0 8px 28px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__cta-primary:hover .hs__cta-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 4px;
  color: var(--t-muted, #64748b);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__cta-secondary:hover {
  color: var(--t-heading, #0F172A);
}

/* ══════════════════════════════════════
   PROOF STRIP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__proof-number {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__proof-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   VISUAL SIDE (RIGHT)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__visual-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    0 12px 48px rgba(0, 0, 0, 0.15);
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__visual-img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: cover;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__visual-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--t-accent, #10B981);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Floating cards ── */
[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--t-heading, #0F172A);
  font-size: 0.8125rem;
  font-weight: 500;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__float-card svg {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__float-card--lab {
  top: 10%;
  right: -12px;
  animation: hsFloatLab 6s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__float-card--pure {
  bottom: 15%;
  left: -16px;
  animation: hsFloatPure 7s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes hsFloatLab {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes hsFloatPure {
  0% { transform: translateY(0); }
  100% { transform: translateY(6px); }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light {
    padding: clamp(100px, 14vw, 140px) 0 clamp(56px, 8vw, 80px);
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__content {
    align-items: center;
    order: 1;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__visual {
    order: 2;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__subtitle {
    max-width: 480px;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__features {
    align-items: center;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__actions {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__proof {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__float-card--lab {
    right: 4px;
    top: 5%;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__float-card--pure {
    left: 4px;
    bottom: 10%;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__inner {
    gap: 36px;
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__title {
    font-size: 2rem;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__cta-primary {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__proof {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__proof-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__float-card {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__bg-gradient,
  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__float-card--lab,
  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__float-card--pure,
  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__cta-primary,
  [data-project="creatine-de"] .block-hero-split-light.block-hero-split-light .hs__cta-secondary {
    transition: none;
  }
}

/* ═══ BLOCK: hero-typo-kreatin ═══ */
/* HERO-TYPO-KREATIN — creatine-de */
[data-project="creatine-de"] .block-hero-typo-kreatin.block-hero-typo-kreatin { position: relative; min-height: 65vh; display: flex; align-items: center; justify-content: center; background: #0F172A; color: #fff; overflow: hidden; }
[data-project="creatine-de"] .block-hero-typo-kreatin.block-hero-typo-kreatin .htk__bg { position: absolute; inset: 0; pointer-events: none; }
[data-project="creatine-de"] .block-hero-typo-kreatin.block-hero-typo-kreatin .htk__hex { position: absolute; border-radius: 50%; filter: blur(120px); }
[data-project="creatine-de"] .block-hero-typo-kreatin.block-hero-typo-kreatin .htk__hex--1 { width: 500px; height: 500px; top: -20%; right: -10%; background: #10B98108; animation: htkDrift1 18s ease-in-out infinite alternate; }
[data-project="creatine-de"] .block-hero-typo-kreatin.block-hero-typo-kreatin .htk__hex--2 { width: 400px; height: 400px; bottom: -15%; left: -5%; background: #10B98106; animation: htkDrift2 14s ease-in-out infinite alternate; }
[data-project="creatine-de"] .block-hero-typo-kreatin.block-hero-typo-kreatin .htk__content { position: relative; z-index: 2; text-align: center; padding: 40px 20px; }
[data-project="creatine-de"] .block-hero-typo-kreatin.block-hero-typo-kreatin .htk__eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #10B981; display: block; margin-bottom: 16px; }
[data-project="creatine-de"] .block-hero-typo-kreatin.block-hero-typo-kreatin .htk__title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; min-height: 1.3em; margin: 0 0 20px; }
[data-project="creatine-de"] .block-hero-typo-kreatin.block-hero-typo-kreatin .htk__typed { color: #10B981; }
[data-project="creatine-de"] .block-hero-typo-kreatin.block-hero-typo-kreatin .htk__cursor { color: #10B981; animation: htkBlink 0.7s step-end infinite; font-weight: 300; }
[data-project="creatine-de"] .block-hero-typo-kreatin.block-hero-typo-kreatin .htk__desc { font-size: 1.05rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 520px; margin: 0 auto; }
@keyframes htkBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes htkDrift1 { to { transform: translate(30px, 25px); } }
@keyframes htkDrift2 { to { transform: translate(-25px, -20px); } }
/* ═══ BLOCK: hero-typo-kreatin-light ═══ */
/* HERO-TYPO-KREATIN — creatine-de */
[data-project="creatine-de"] .block-hero-typo-kreatin-light.block-hero-typo-kreatin-light { position: relative; min-height: 65vh; display: flex; align-items: center; justify-content: center; background: var(--t-surface, #f8fafb); color: var(--t-heading, #0F172A); overflow: hidden; }
[data-project="creatine-de"] .block-hero-typo-kreatin-light.block-hero-typo-kreatin-light .htk__bg { position: absolute; inset: 0; pointer-events: none; }
[data-project="creatine-de"] .block-hero-typo-kreatin-light.block-hero-typo-kreatin-light .htk__hex { position: absolute; border-radius: 50%; filter: blur(120px); }
[data-project="creatine-de"] .block-hero-typo-kreatin-light.block-hero-typo-kreatin-light .htk__hex--1 { width: 500px; height: 500px; top: -20%; right: -10%; background: #10B98108; animation: htkDrift1 18s ease-in-out infinite alternate; }
[data-project="creatine-de"] .block-hero-typo-kreatin-light.block-hero-typo-kreatin-light .htk__hex--2 { width: 400px; height: 400px; bottom: -15%; left: -5%; background: #10B98106; animation: htkDrift2 14s ease-in-out infinite alternate; }
[data-project="creatine-de"] .block-hero-typo-kreatin-light.block-hero-typo-kreatin-light .htk__content { position: relative; z-index: 2; text-align: center; padding: 40px 20px; }
[data-project="creatine-de"] .block-hero-typo-kreatin-light.block-hero-typo-kreatin-light .htk__eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #10B981; display: block; margin-bottom: 16px; }
[data-project="creatine-de"] .block-hero-typo-kreatin-light.block-hero-typo-kreatin-light .htk__title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; min-height: 1.3em; margin: 0 0 20px; }
[data-project="creatine-de"] .block-hero-typo-kreatin-light.block-hero-typo-kreatin-light .htk__typed { color: #10B981; }
[data-project="creatine-de"] .block-hero-typo-kreatin-light.block-hero-typo-kreatin-light .htk__cursor { color: #10B981; animation: htkBlink 0.7s step-end infinite; font-weight: 300; }
[data-project="creatine-de"] .block-hero-typo-kreatin-light.block-hero-typo-kreatin-light .htk__desc { font-size: 1.05rem; color: var(--t-muted, #64748b); line-height: 1.6; max-width: 520px; margin: 0 auto; }
@keyframes htkBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes htkDrift1 { to { transform: translate(30px, 25px); } }
@keyframes htkDrift2 { to { transform: translate(-25px, -20px); } }

/* ═══ BLOCK: hero-video ═══ */
/* ============================================================
   HERO-VIDEO — Creatine-DE
   Layer 3: Per-block premium overrides
   Split-layout hero with inline video player, glassmorphism
   overlay controls, animated progress bar, scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark background ── */
[data-project="creatine-de"] .block-hero-video.block-hero-video {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 140px) 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Background effects ── */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.4;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__glow {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  animation: hvGlowPulse 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes hvGlowPulse {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-30px, 20px) scale(1.08); opacity: 1; }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── Grid layout ── */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   CONTENT COLUMN
   ══════════════════════════════════════ */

/* ── Badge ── */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  margin-bottom: 28px;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  flex-shrink: 0;
  animation: hvDotPulse 2.5s ease-in-out infinite;
}

@keyframes hvDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 3px rgba(16, 185, 129, 0.2); }
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 36px;
  max-width: 520px;
}

/* ══════════════════════════════════════
   ACTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Primary CTA */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea572;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__cta-primary:hover .hv__cta-arrow {
  transform: translateX(3px);
}

/* Play CTA */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__cta-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__cta-play:hover {
  color: #ffffff;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__play-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__cta-play:hover .hv__play-ring {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.08);
}

/* ══════════════════════════════════════
   PROOF STRIP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__proof {
  display: flex;
  align-items: center;
  gap: 24px;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__proof-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t-text-light, #ffffff);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__proof-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   VIDEO PLAYER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player {
  position: relative;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0e14;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  aspect-ratio: 16 / 10;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Player overlay ── */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-overlay.hv--playing {
  background: rgba(0, 0, 0, 0);
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-btn:hover {
  transform: scale(1.08);
  background: rgba(16, 185, 129, 0.25);
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.2);
}

/* ── Progress bar ── */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-bar {
  height: 100%;
  width: 0%;
  background: var(--t-accent, #10B981);
  border-radius: 0 2px 2px 0;
  transition: width 0.25s linear;
}

/* ── Caption ── */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-caption svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
}

/* ══════════════════════════════════════
   SCROLL HINT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

[data-project="creatine-de"] .block-hero-video.block-hero-video .hv__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.5), transparent);
  animation: hvScrollPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes hvScrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__content {
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__actions {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__proof {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-btn {
    width: 60px;
    height: 60px;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__scroll-hint {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-video.block-hero-video {
    padding: 100px 0 56px;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__badge {
    margin-bottom: 20px;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__badge-text {
    font-size: 0.6875rem;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__title {
    margin-bottom: 18px;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__subtitle {
    margin-bottom: 28px;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__actions {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__cta-primary {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__proof {
    gap: 16px;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__proof-number {
    font-size: 1.1rem;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-frame {
    border-radius: 12px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__scroll-line {
    animation: none;
    opacity: 0.5;
  }

  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__cta-primary,
  [data-project="creatine-de"] .block-hero-video.block-hero-video .hv__player-btn {
    transition: none;
  }
}
@keyframes hvKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

/* ═══ BLOCK: hero-video-cinematic ═══ */
/* ============================================================
   HERO-VIDEO-CINEMATIC — Creatine-DE
   Layer 3: Per-block premium overrides
   Cinematic dark hero with camera-frame overlay, floating
   product stage, counter metrics, scroll-reveal stagger.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__glow--1 {
  width: 600px;
  height: 600px;
  top: -20%;
  left: -10%;
  background: var(--t-accent, #10B981);
  animation: hvcGlowDrift1 12s ease-in-out infinite alternate;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: #06b6d4;
  opacity: 0.06;
  animation: hvcGlowDrift2 15s ease-in-out infinite alternate;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__glow--3 {
  width: 300px;
  height: 300px;
  top: 40%;
  right: 25%;
  background: var(--t-accent, #10B981);
  opacity: 0.05;
  animation: hvcGlowDrift3 10s ease-in-out infinite alternate;
}

@keyframes hvcGlowDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.15); }
}

@keyframes hvcGlowDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -30px) scale(1.1); }
}

@keyframes hvcGlowDrift3 {
  0% { transform: translate(0, 0); opacity: 0.05; }
  100% { transform: translate(30px, -20px); opacity: 0.08; }
}

/* Scanline overlay */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.008) 2px,
    rgba(255, 255, 255, 0.008) 4px
  );
  pointer-events: none;
}

/* ══════════════════════════════════════
   VIDEO FRAME — cinematic camera overlay
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__video-frame {
  position: absolute;
  inset: 20px;
  pointer-events: none;
  z-index: 1;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__video-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__video-corner {
  position: absolute;
  width: 24px;
  height: 24px;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__video-corner--tl {
  top: 0; left: 0;
  border-top: 2px solid rgba(16, 185, 129, 0.4);
  border-left: 2px solid rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__video-corner--tr {
  top: 0; right: 0;
  border-top: 2px solid rgba(16, 185, 129, 0.4);
  border-right: 2px solid rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__video-corner--bl {
  bottom: 0; left: 0;
  border-bottom: 2px solid rgba(16, 185, 129, 0.4);
  border-left: 2px solid rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__video-corner--br {
  bottom: 0; right: 0;
  border-bottom: 2px solid rgba(16, 185, 129, 0.4);
  border-right: 2px solid rgba(16, 185, 129, 0.4);
}

/* REC indicator */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__rec-dot {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
  animation: hvcRecPulse 1.5s ease-in-out infinite;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__rec-label {
  position: absolute;
  top: 10px;
  left: 28px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ef4444;
  text-transform: uppercase;
}

@keyframes hvcRecPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__timecode {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.25);
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════
   INNER LAYOUT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   CONTENT — left column
   ══════════════════════════════════════ */

/* Badge */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
  text-transform: uppercase;
}

/* Title */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin: 0 0 24px;
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__title-line {
  display: block;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__title-line--accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 0 36px;
  opacity: 0;
  transform: translateY(20px);
}

/* ══════════════════════════════════════
   METRICS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__metrics {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__metric-value {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__metric-suffix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  display: inline;
  margin-left: 2px;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__metric-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.01em;
  line-height: 1.4;
  max-width: 140px;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__metric-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  flex-shrink: 0;
  align-self: center;
}

/* ══════════════════════════════════════
   CTAs
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.3),
    0 12px 32px rgba(16, 185, 129, 0.2);
  background: #0ea572;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__cta-primary:hover .hvc__cta-arrow {
  transform: translateX(3px);
}

/* Shine sweep */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: none;
  animation: hvcShineSweep 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  animation-delay: 2s;
}

@keyframes hvcShineSweep {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__cta-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__cta-play {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   VISUAL — right column product stage
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__product-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: hvcProductGlow 6s ease-in-out infinite alternate;
}

@keyframes hvcProductGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__product-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__product-reflection {
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 80px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, transparent 100%);
  filter: blur(20px);
  border-radius: 50%;
}

/* Floating badges */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  z-index: 3;
  white-space: nowrap;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__floating-badge svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__floating-badge--top {
  top: 10%;
  right: -10%;
  animation: hvcFloat 5s ease-in-out infinite;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__floating-badge--bottom {
  bottom: 15%;
  left: -5%;
  animation: hvcFloat 5s ease-in-out infinite 1.5s;
}

@keyframes hvcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ══════════════════════════════════════
   SCROLL HINT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  position: relative;
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__scroll-dot {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  background: var(--t-accent, #10B981);
  border-radius: 3px;
  animation: hvcScrollDot 2s ease-in-out infinite;
}

@keyframes hvcScrollDot {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}

[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__scroll-text {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════════════
   REVEAL ANIMATION STATES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__badge,
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__title,
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__subtitle,
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__metrics,
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__actions,
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__scroll-hint {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger delays */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__badge { transition-delay: 0.1s; }
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__title { transition-delay: 0.22s; }
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__subtitle { transition-delay: 0.34s; }
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__metrics { transition-delay: 0.46s; }
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__actions { transition-delay: 0.58s; }
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__scroll-hint { transition-delay: 0.9s; }

/* Visual reveal */
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed.hvc__visual,
[data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc--revealed .hvc__visual {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__metrics {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__visual {
    order: -1;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__product-stage {
    max-width: 300px;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__floating-badge--top {
    right: 0;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__floating-badge--bottom {
    left: 0;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__video-frame {
    inset: 10px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic {
    padding: 100px 0 80px;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__inner {
    padding: 0 20px;
    gap: 36px;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__metrics {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__metric-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__metric-label {
    max-width: 200px;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__floating-badge {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__video-frame {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__product-stage {
    max-width: 240px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__glow,
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__rec-dot,
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__scroll-dot,
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__floating-badge,
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__product-glow,
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__cta-shine {
    animation: none !important;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__badge,
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__title,
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__subtitle,
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__metrics,
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__actions,
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__visual,
  [data-project="creatine-de"] .block-hero-video-cinematic.block-hero-video-cinematic .hvc__scroll-hint {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ═══ BLOCK: hero-video-cinematic-light ═══ */
/* ============================================================
   HERO-VIDEO-CINEMATIC — Creatine-DE
   Layer 3: Per-block premium overrides
   Cinematic dark hero with camera-frame overlay, floating
   product stage, counter metrics, scroll-reveal stagger.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__glow--1 {
  width: 600px;
  height: 600px;
  top: -20%;
  left: -10%;
  background: var(--t-accent, #10B981);
  animation: hvcGlowDrift1 12s ease-in-out infinite alternate;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: #06b6d4;
  opacity: 0.06;
  animation: hvcGlowDrift2 15s ease-in-out infinite alternate;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__glow--3 {
  width: 300px;
  height: 300px;
  top: 40%;
  right: 25%;
  background: var(--t-accent, #10B981);
  opacity: 0.05;
  animation: hvcGlowDrift3 10s ease-in-out infinite alternate;
}

@keyframes hvcGlowDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.15); }
}

@keyframes hvcGlowDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -30px) scale(1.1); }
}

@keyframes hvcGlowDrift3 {
  0% { transform: translate(0, 0); opacity: 0.05; }
  100% { transform: translate(30px, -20px); opacity: 0.08; }
}

/* Scanline overlay */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.008) 2px,
    rgba(255, 255, 255, 0.008) 4px
  );
  pointer-events: none;
}

/* ══════════════════════════════════════
   VIDEO FRAME — cinematic camera overlay
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__video-frame {
  position: absolute;
  inset: 20px;
  pointer-events: none;
  z-index: 1;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__video-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__video-corner {
  position: absolute;
  width: 24px;
  height: 24px;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__video-corner--tl {
  top: 0; left: 0;
  border-top: 2px solid rgba(16, 185, 129, 0.4);
  border-left: 2px solid rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__video-corner--tr {
  top: 0; right: 0;
  border-top: 2px solid rgba(16, 185, 129, 0.4);
  border-right: 2px solid rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__video-corner--bl {
  bottom: 0; left: 0;
  border-bottom: 2px solid rgba(16, 185, 129, 0.4);
  border-left: 2px solid rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__video-corner--br {
  bottom: 0; right: 0;
  border-bottom: 2px solid rgba(16, 185, 129, 0.4);
  border-right: 2px solid rgba(16, 185, 129, 0.4);
}

/* REC indicator */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__rec-dot {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
  animation: hvcRecPulse 1.5s ease-in-out infinite;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__rec-label {
  position: absolute;
  top: 10px;
  left: 28px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ef4444;
  text-transform: uppercase;
}

@keyframes hvcRecPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__timecode {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.25);
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════
   INNER LAYOUT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   CONTENT — left column
   ══════════════════════════════════════ */

/* Badge */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
  text-transform: uppercase;
}

/* Title */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 24px;
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__title-line {
  display: block;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__title-line--accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  max-width: 480px;
  margin: 0 0 36px;
  opacity: 0;
  transform: translateY(20px);
}

/* ══════════════════════════════════════
   METRICS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__metrics {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__metric-value {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-heading, #0F172A);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__metric-suffix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  display: inline;
  margin-left: 2px;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__metric-label {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.01em;
  line-height: 1.4;
  max-width: 140px;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__metric-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  flex-shrink: 0;
  align-self: center;
}

/* ══════════════════════════════════════
   CTAs
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.3),
    0 12px 32px rgba(16, 185, 129, 0.2);
  background: #0ea572;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__cta-primary:hover .hvc__cta-arrow {
  transform: translateX(3px);
}

/* Shine sweep */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
  transition: none;
  animation: hvcShineSweep 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  animation-delay: 2s;
}

@keyframes hvcShineSweep {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  color: var(--t-muted, #64748b);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.06);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__cta-secondary:hover {
  color: var(--t-heading, #0F172A);
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__cta-play {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   VISUAL — right column product stage
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__product-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: hvcProductGlow 6s ease-in-out infinite alternate;
}

@keyframes hvcProductGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__product-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__product-reflection {
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 80px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, transparent 100%);
  filter: blur(20px);
  border-radius: 50%;
}

/* Floating badges */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  z-index: 3;
  white-space: nowrap;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__floating-badge svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__floating-badge--top {
  top: 10%;
  right: -10%;
  animation: hvcFloat 5s ease-in-out infinite;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__floating-badge--bottom {
  bottom: 15%;
  left: -5%;
  animation: hvcFloat 5s ease-in-out infinite 1.5s;
}

@keyframes hvcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ══════════════════════════════════════
   SCROLL HINT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  position: relative;
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__scroll-dot {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  background: var(--t-accent, #10B981);
  border-radius: 3px;
  animation: hvcScrollDot 2s ease-in-out infinite;
}

@keyframes hvcScrollDot {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}

[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__scroll-text {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.20);
}

/* ══════════════════════════════════════
   REVEAL ANIMATION STATES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__badge,
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__title,
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__subtitle,
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__metrics,
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__actions,
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__scroll-hint {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger delays */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__badge { transition-delay: 0.1s; }
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__title { transition-delay: 0.22s; }
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__subtitle { transition-delay: 0.34s; }
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__metrics { transition-delay: 0.46s; }
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__actions { transition-delay: 0.58s; }
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__scroll-hint { transition-delay: 0.9s; }

/* Visual reveal */
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed.hvc__visual,
[data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc--revealed .hvc__visual {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__metrics {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__visual {
    order: -1;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__product-stage {
    max-width: 300px;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__floating-badge--top {
    right: 0;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__floating-badge--bottom {
    left: 0;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__video-frame {
    inset: 10px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light {
    padding: 100px 0 80px;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__inner {
    padding: 0 20px;
    gap: 36px;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__metrics {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__metric-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__metric-label {
    max-width: 200px;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__floating-badge {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__video-frame {
    display: none;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__product-stage {
    max-width: 240px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__glow,
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__rec-dot,
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__scroll-dot,
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__floating-badge,
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__product-glow,
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__cta-shine {
    animation: none !important;
  }

  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__badge,
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__title,
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__subtitle,
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__metrics,
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__actions,
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__visual,
  [data-project="creatine-de"] .block-hero-video-cinematic-light.block-hero-video-cinematic-light .hvc__scroll-hint {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ═══ BLOCK: hero-video-light ═══ */
/* ============================================================
   HERO-VIDEO — Creatine-DE
   Layer 3: Per-block premium overrides
   Split-layout hero with inline video player, glassmorphism
   overlay controls, animated progress bar, scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark background ── */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 140px) 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Background effects ── */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.4;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__glow {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  animation: hvGlowPulse 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes hvGlowPulse {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-30px, 20px) scale(1.08); opacity: 1; }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── Grid layout ── */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════
   CONTENT COLUMN
   ══════════════════════════════════════ */

/* ── Badge ── */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  margin-bottom: 28px;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  flex-shrink: 0;
  animation: hvDotPulse 2.5s ease-in-out infinite;
}

@keyframes hvDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 3px rgba(16, 185, 129, 0.2); }
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
}

/* ── Title ── */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 36px;
  max-width: 520px;
}

/* ══════════════════════════════════════
   ACTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Primary CTA */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea572;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__cta-primary:hover .hv__cta-arrow {
  transform: translateX(3px);
}

/* Play CTA */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__cta-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  border: none;
  color: var(--t-text, #1e293b);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__cta-play:hover {
  color: var(--t-heading, #0F172A);
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__play-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__cta-play:hover .hv__play-ring {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.08);
}

/* ══════════════════════════════════════
   PROOF STRIP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__proof {
  display: flex;
  align-items: center;
  gap: 24px;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__proof-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t-text-light, #ffffff);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__proof-label {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 500;
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   VIDEO PLAYER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player {
  position: relative;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0e14;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.10),
    0 12px 40px rgba(0, 0, 0, 0.13),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  aspect-ratio: 16 / 10;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Player overlay ── */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-overlay.hv--playing {
  background: rgba(0, 0, 0, 0);
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-btn:hover {
  transform: scale(1.08);
  background: rgba(16, 185, 129, 0.25);
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.2);
}

/* ── Progress bar ── */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-bar {
  height: 100%;
  width: 0%;
  background: var(--t-accent, #10B981);
  border-radius: 0 2px 2px 0;
  transition: width 0.25s linear;
}

/* ── Caption ── */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.40);
  line-height: 1.4;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-caption svg {
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.30);
}

/* ══════════════════════════════════════
   SCROLL HINT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

[data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.5), transparent);
  animation: hvScrollPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes hvScrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__content {
    text-align: center;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__actions {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__proof {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-btn {
    width: 60px;
    height: 60px;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__scroll-hint {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light {
    padding: 100px 0 56px;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__badge {
    margin-bottom: 20px;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__badge-text {
    font-size: 0.6875rem;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__title {
    margin-bottom: 18px;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__subtitle {
    margin-bottom: 28px;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__actions {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__cta-primary {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__proof {
    gap: 16px;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__proof-number {
    font-size: 1.1rem;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-frame {
    border-radius: 12px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__scroll-line {
    animation: none;
    opacity: 0.5;
  }

  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__cta-primary,
  [data-project="creatine-de"] .block-hero-video-light.block-hero-video-light .hv__player-btn {
    transition: none;
  }
}
@keyframes hvKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}


/* ═══ BLOCK: image-gallery ═══ */
/* ============================================================
   IMAGE-GALLERY — Creatine-DE
   Layer 3: Per-block premium overrides
   Filterable masonry-style gallery with lightbox,
   hover reveals, and smooth transitions.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-image-gallery.block-image-gallery {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ── Filter buttons ── */
[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 48px);
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__filter-btn {
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  background: #ffffff;
  border: 1px solid var(--t-border, #e2e8f0);
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__filter-btn:hover {
  color: var(--t-primary, #0F172A);
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__filter-btn--active {
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.25);
}

/* ── Grid layout ── */
[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Gallery item ── */
[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 40px rgba(0, 0, 0, 0.1);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item--wide {
  grid-column: span 2;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item--hidden {
  display: none;
}

/* ── Image wrapper ── */
[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item--wide .ig__img-wrap {
  aspect-ratio: 16 / 9;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item:hover .ig__img-wrap img {
  transform: scale(1.05);
}

/* ── Hover overlay ── */
[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item:hover .ig__overlay {
  opacity: 1;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__zoom {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item:hover .ig__zoom {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__zoom:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* ── Caption ── */
[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__caption {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
  padding: 12px 16px;
  margin: 0;
}

/* ══════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox--open {
  opacity: 1;
  visibility: visible;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 16px;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 64px;
  right: 64px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

[data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-counter {
  position: absolute;
  top: -44px;
  left: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item--wide {
    grid-column: span 2;
  }

  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-nav {
    width: 36px;
    height: 36px;
  }

  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-caption {
    left: 16px;
    right: 16px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item--wide {
    grid-column: span 1;
  }

  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__filter {
    gap: 6px;
  }

  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__filter-btn {
    font-size: 0.8125rem;
    padding: 6px 14px;
  }

  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-content {
    max-width: 95vw;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item,
  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__img-wrap img,
  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__overlay,
  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__zoom,
  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox,
  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-close,
  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-nav,
  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__lightbox-img,
  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__filter-btn {
    transition: none;
  }

  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item:hover .ig__img-wrap img {
    transform: none;
  }

  [data-project="creatine-de"] .block-image-gallery.block-image-gallery .ig__item:hover {
    transform: none;
  }
}
/* ═══ BLOCK: image-gallery-dark ═══ */
/* ============================================================
   IMAGE-GALLERY — Creatine-DE
   Layer 3: Per-block premium overrides
   Filterable masonry-style gallery with lightbox,
   hover reveals, and smooth transitions.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ── Filter buttons ── */
[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 48px);
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__filter-btn {
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__filter-btn:hover {
  color: var(--t-primary, #0F172A);
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__filter-btn--active {
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.25);
}

/* ── Grid layout ── */
[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Gallery item ── */
[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08), 0 16px 40px rgba(0, 0, 0, 0.30);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item--wide {
  grid-column: span 2;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item--hidden {
  display: none;
}

/* ── Image wrapper ── */
[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item--wide .ig__img-wrap {
  aspect-ratio: 16 / 9;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item:hover .ig__img-wrap img {
  transform: scale(1.05);
}

/* ── Hover overlay ── */
[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item:hover .ig__overlay {
  opacity: 1;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__zoom {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item:hover .ig__zoom {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__zoom:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* ── Caption ── */
[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__caption {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  padding: 12px 16px;
  margin: 0;
}

/* ══════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox--open {
  opacity: 1;
  visibility: visible;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 16px;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.50);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 64px;
  right: 64px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

[data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-counter {
  position: absolute;
  top: -44px;
  left: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item--wide {
    grid-column: span 2;
  }

  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-nav {
    width: 36px;
    height: 36px;
  }

  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-caption {
    left: 16px;
    right: 16px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item--wide {
    grid-column: span 1;
  }

  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__filter {
    gap: 6px;
  }

  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__filter-btn {
    font-size: 0.8125rem;
    padding: 6px 14px;
  }

  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-content {
    max-width: 95vw;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item,
  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__img-wrap img,
  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__overlay,
  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__zoom,
  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox,
  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-close,
  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-nav,
  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__lightbox-img,
  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__filter-btn {
    transition: none;
  }

  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item:hover .ig__img-wrap img {
    transform: none;
  }

  [data-project="creatine-de"] .block-image-gallery-dark.block-image-gallery-dark .ig__item:hover {
    transform: none;
  }
}

/* ═══ BLOCK: job-application-form ═══ */
/* ============================================================
   JOB-APPLICATION-FORM — Creatine-DE
   Layer 3: Per-block premium overrides
   Light surface form section with sidebar perks card,
   file upload interaction, and premium input styling.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: jafPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes jafPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   LAYOUT — form + sidebar
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ══════════════════════════════════════
   FORM
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__form {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__field--full {
  grid-column: 1 / -1;
}

/* ── Labels ── */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__required {
  color: #ef4444;
  font-weight: 400;
}

/* ── Inputs ── */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__input,
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__select,
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
  background: #f8fafb;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__input:focus,
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__select:focus,
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__textarea:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
  background: #ffffff;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__input::placeholder,
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__textarea::placeholder {
  color: #94a3b8;
}

/* ── Select wrapper ── */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__select-wrap {
  position: relative;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__select {
  padding-right: 40px;
  cursor: pointer;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

/* ── Textarea ── */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ══════════════════════════════════════
   FILE UPLOAD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  background: #fafbfc;
  cursor: pointer;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload:hover,
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload.jaf__upload--dragover {
  border-color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload-icon {
  color: #94a3b8;
  margin-bottom: 12px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload:hover .jaf__upload-icon {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload-text {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload-link {
  color: var(--t-accent, #10B981);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(16, 185, 129, 0.3);
  text-underline-offset: 2px;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload-hint {
  font-size: 0.8125rem;
  color: #94a3b8;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload-filename {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  margin-top: 8px;
  display: none;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload-filename.jaf__upload-filename--visible {
  display: block;
}

/* ══════════════════════════════════════
   CHECKBOX
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__checkmark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid #d1d5db;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background: #f8fafb;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 1px;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__checkbox:checked + .jaf__checkmark {
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  color: #ffffff;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__checkbox:focus + .jaf__checkmark {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__link {
  color: var(--t-accent, #10B981);
  text-decoration: underline;
  text-decoration-color: rgba(16, 185, 129, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__link:hover {
  text-decoration-color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   SUBMIT BUTTON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25), 0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__submit:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__submit-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__submit:hover .jaf__submit-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 32px;
}

/* ── Info card ── */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__info-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__perk-check {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

/* ── Contact card ── */
[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__contact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__contact-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__contact-role {
  font-size: 0.8125rem;
  color: #64748b;
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__contact-email {
  font-size: 0.8125rem;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__contact-email:hover {
  color: #0ea472;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__sidebar {
    position: static;
  }

  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__form {
    padding: 28px 20px;
  }

  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-job-application-form.block-job-application-form {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__header {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__form {
    padding: 24px 16px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__submit {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__upload {
    padding: 24px 16px;
  }

  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__info-card {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__contact-card {
    padding: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__submit:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-job-application-form.block-job-application-form .jaf__submit:hover .jaf__submit-arrow {
    transform: none;
  }
}
/* ═══ BLOCK: job-application-form-dark ═══ */
/* ============================================================
   JOB-APPLICATION-FORM — Creatine-DE
   Layer 3: Per-block premium overrides
   Light surface form section with sidebar perks card,
   file upload interaction, and premium input styling.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: jafPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes jafPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   LAYOUT — form + sidebar
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ══════════════════════════════════════
   FORM
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__form {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__field--full {
  grid-column: 1 / -1;
}

/* ── Labels ── */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__required {
  color: #ef4444;
  font-weight: 400;
}

/* ── Inputs ── */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__input,
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__select,
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__input:focus,
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__select:focus,
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__textarea:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__input::placeholder,
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__textarea::placeholder {
  color: #94a3b8;
}

/* ── Select wrapper ── */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__select-wrap {
  position: relative;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__select {
  padding-right: 40px;
  cursor: pointer;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

/* ── Textarea ── */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ══════════════════════════════════════
   FILE UPLOAD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  background: #fafbfc;
  cursor: pointer;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload:hover,
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload.jaf__upload--dragover {
  border-color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload-icon {
  color: #94a3b8;
  margin-bottom: 12px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload:hover .jaf__upload-icon {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload-text {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload-link {
  color: var(--t-accent, #10B981);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(16, 185, 129, 0.3);
  text-underline-offset: 2px;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload-hint {
  font-size: 0.8125rem;
  color: #94a3b8;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload-filename {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  margin-top: 8px;
  display: none;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload-filename.jaf__upload-filename--visible {
  display: block;
}

/* ══════════════════════════════════════
   CHECKBOX
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__checkmark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid #d1d5db;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 1px;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__checkbox:checked + .jaf__checkmark {
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  color: #ffffff;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__checkbox:focus + .jaf__checkmark {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__link {
  color: var(--t-accent, #10B981);
  text-decoration: underline;
  text-decoration-color: rgba(16, 185, 129, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__link:hover {
  text-decoration-color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   SUBMIT BUTTON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25), 0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea472;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__submit:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__submit-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__submit:hover .jaf__submit-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 32px;
}

/* ── Info card ── */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__info-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__info-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__perk-check {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

/* ── Contact card ── */
[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__contact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__contact-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__contact-role {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__contact-email {
  font-size: 0.8125rem;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__contact-email:hover {
  color: #0ea472;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__sidebar {
    position: static;
  }

  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__form {
    padding: 28px 20px;
  }

  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__header {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__form {
    padding: 24px 16px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__submit {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__upload {
    padding: 24px 16px;
  }

  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__info-card {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__contact-card {
    padding: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__submit:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-job-application-form-dark.block-job-application-form-dark .jaf__submit:hover .jaf__submit-arrow {
    transform: none;
  }
}

/* ═══ BLOCK: kraftkurve-animated ═══ */
/* KRAFTKURVE-ANIMATED — creatine-de — Premium Canvas Chart */
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 48px);
  background: #0F172A;
  color: #fff;
  position: relative;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10B981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: #fff;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__gradient {
  background: linear-gradient(135deg, #10B981, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 48px;
  line-height: 1.6;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__chart-wrap {
  margin: 0 0 40px;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 28px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__legend-dot--optimal {
  background: #10B981;
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__legend-dot--kreatin {
  background: #34d399;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__legend-dot--baseline {
  background: rgba(255,255,255,0.25);
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__canvas-container {
  position: relative;
  padding-left: 48px;
  padding-bottom: 36px;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__y-axis {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  text-align: right;
  padding-right: 8px;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__y-axis span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  line-height: 1;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__x-axis {
  position: absolute;
  bottom: 0;
  left: 48px;
  right: 0;
  display: flex;
  justify-content: space-between;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__x-axis span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__stat.kka__stat--visible {
  opacity: 1;
  transform: translateY(0);
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__stat:hover {
  border-color: rgba(16,185,129,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.1);
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #10B981;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__stat--1 { transition-delay: 0.1s; }
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__stat--2 { transition-delay: 0.2s; }
[data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__stat--3 { transition-delay: 0.3s; }

@media (max-width: 640px) {
  [data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__stats {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  [data-project="creatine-de"] .block-kraftkurve-animated.block-kraftkurve-animated .kka__legend {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
/* ═══ BLOCK: kreatin-molekuel-animated ═══ */
/* KREATIN-MOLEKUEL-ANIMATED — creatine-de — 3-Card Phosphat System */
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 48px);
  background: #0F172A;
  color: #fff;
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10B981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: #fff;
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__gradient {
  background: linear-gradient(135deg, #10B981, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 56px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 28px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
  width: 260px;
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.4s;
  opacity: 0;
  transform: translateY(24px);
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__card.kre__card--visible {
  opacity: 1;
  transform: translateY(0);
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16,185,129,0.3);
  box-shadow: 0 12px 40px rgba(16,185,129,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__card--1 { transition-delay: 0s; }
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__card--2 { transition-delay: 0.15s; }
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__card--3 { transition-delay: 0.3s; }
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__card-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__card-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* Connector with glow pulse */
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  flex-shrink: 0;
  position: relative;
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__connector-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(16,185,129,0.1), rgba(16,185,129,0.4), rgba(16,185,129,0.1));
  transform: translateY(-50%);
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__connector-pulse {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 12px rgba(16,185,129,0.6);
  transform: translateY(-50%);
  animation: krePulseMove 2.5s cubic-bezier(0.4,0,0.2,1) infinite;
}
[data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__connector-arrow {
  position: relative;
  z-index: 1;
}
@keyframes krePulseMove {
  0% { left: -4px; opacity: 0; }
  10% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

@media (max-width: 900px) {
  [data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__flow {
    flex-direction: column;
    gap: 0;
  }
  [data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__card {
    width: 100%;
    max-width: 340px;
  }
  [data-project="creatine-de"] .block-kreatin-molekuel-animated.block-kreatin-molekuel-animated .kre__connector {
    width: auto;
    height: 56px;
    transform: rotate(90deg);
  }
}
/* ═══ BLOCK: kreatin-molekuel-interactive ═══ */
/* KREATIN-MOLEKUEL-INTERACTIVE — creatine-de — 2-Col Molecular Structure */
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 48px);
  background: #0F172A;
  color: #fff;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10B981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: #fff;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__gradient {
  background: linear-gradient(135deg, #10B981, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 56px;
  line-height: 1.6;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}
/* Text column */
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__text-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__text-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0 0 28px;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,185,129,0.1);
  border-radius: 10px;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__feature-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
/* Schema card */
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__schema-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__molecule {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__part {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px;
  position: relative;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__part-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #10B981;
  background: rgba(16,185,129,0.15);
  box-shadow: 0 0 12px rgba(16,185,129,0.3);
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__part--phosphat .kmi__part-dot {
  border-color: #34d399;
  background: rgba(52,211,153,0.15);
  box-shadow: 0 0 12px rgba(52,211,153,0.3);
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__part--wasser .kmi__part-dot {
  border-color: #6ee7b7;
  background: rgba(110,231,183,0.15);
  box-shadow: 0 0 12px rgba(110,231,183,0.3);
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__part-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__part-formula {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Courier New', monospace;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__bond {
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, rgba(16,185,129,0.4), rgba(16,185,129,0.15));
  position: relative;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__bond::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
  animation: kmiBondPulse 2s ease-in-out infinite;
}
@keyframes kmiBondPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(16px); }
}
/* Stats row */
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__schema-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__schema-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__schema-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10B981;
  letter-spacing: -0.025em;
  line-height: 1;
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__schema-stat-unit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
[data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__schema-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-kreatin-molekuel-interactive.block-kreatin-molekuel-interactive .kmi__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ═══ BLOCK: kreatin-vergleich-slider ═══ */
/* KREATIN-VERGLEICH-SLIDER — creatine-de */
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider { padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 40px); background: #f0fdf4; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__inner { max-width: 700px; margin: 0 auto; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__heading { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: #0F172A; text-align: center; margin: 0 0 8px; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__subtitle { font-size: 1rem; color: #0F172A; opacity: 0.55; text-align: center; margin: 0 0 36px; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__tab { padding: 10px 24px; border-radius: 8px; border: 1px solid #0F172A12; background: #fff; color: #0F172A; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.25s ease; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__tab:hover { border-color: #10B98144; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__tab--active { background: #10B981; color: #fff; border-color: #10B981; font-weight: 600; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__card { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.05); border: 1px solid #0F172A08; animation: kvsFade 0.35s ease; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__card[hidden] { display: none; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__card-title { font-size: 1.3rem; font-weight: 700; color: #10B981; margin: 0 0 24px; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__card-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #0F172A08; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__card-row:last-of-type { border-bottom: none; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__card-label { font-size: 0.85rem; color: #0F172A; opacity: 0.6; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__card-value { font-size: 0.85rem; font-weight: 600; color: #0F172A; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__card-value--highlight { color: #10B981; }
[data-project="creatine-de"] .block-kreatin-vergleich-slider.block-kreatin-vergleich-slider .kvs__card-text { font-size: 0.9rem; line-height: 1.7; color: #0F172A; opacity: 0.65; margin: 20px 0 0; padding-top: 16px; border-top: 1px solid #0F172A08; }
@keyframes kvsFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
/* ═══ BLOCK: loading-phase-wave ═══ */
/* LOADING-PHASE-WAVE — creatine-de — 3-Phase Timeline */
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 48px);
  background: #0F172A;
  color: #fff;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10B981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: #fff;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__gradient {
  background: linear-gradient(135deg, #10B981, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 56px;
  line-height: 1.6;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 24px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
  text-align: left;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.4s;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase.loa__phase--visible {
  opacity: 1;
  transform: translateY(0);
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase:hover {
  border-color: rgba(16,185,129,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase--1 { transition-delay: 0s; }
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase--2 { transition-delay: 0.15s; }
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase--3 { transition-delay: 0.3s; }
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #10B981;
  background: rgba(16,185,129,0.12);
  border-radius: 6px;
  padding: 4px 10px;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase-dose {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase-unit {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-left: 2px;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__phase-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
}
/* Progress bars */
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__progress {
  margin-top: auto;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__progress-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #10B981, #34d399);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 0 12px rgba(16,185,129,0.4);
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__progress-fill--mid {
  background: linear-gradient(90deg, #34d399, #6ee7b7);
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__progress-fill--high {
  background: linear-gradient(90deg, #10B981, #34d399);
}
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__progress-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}
/* Trust badge */
[data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 10px 24px;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-loading-phase-wave.block-loading-phase-wave .loa__timeline {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ═══ BLOCK: location-cards ═══ */
/* ============================================================
   LOCATION-CARDS — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with image-topped location cards, hover-lift,
   badge overlays, staggered scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (dark for rhythm after light werkgebieden) ── */
[data-project="creatine-de"] .block-location-cards.block-location-cards {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle grain overlay */
[data-project="creatine-de"] .block-location-cards.block-location-cards::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* ambient glow */
[data-project="creatine-de"] .block-location-cards.block-location-cards::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ══════════════════════════════════════
   GRID — 2x2, responsive
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1), 0 2px 8px rgba(0, 0, 0, 0.3);
  border-color: rgba(16, 185, 129, 0.2);
}

/* ── Card Image ── */
[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card:hover .lc__card-image img {
  transform: scale(1.05);
}

/* gradient overlay on image */
[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(16, 185, 129, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
}

/* ── Card Body ── */
[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-body {
  padding: 28px 28px 24px;
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 12px;
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px;
}

/* ── Card Details ── */
[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__icon {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

/* ── Card Link ── */
[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  transition: gap 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-link:hover {
  gap: 14px;
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-link:hover .lc__card-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   FOOTER CTA
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__footer-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  background: #0ea472;
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__footer-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards.block-location-cards .lc__footer-cta:hover .lc__footer-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-image {
    height: 180px;
  }

  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-body {
    padding: 24px 24px 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-location-cards.block-location-cards {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-image {
    height: 160px;
  }

  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-body {
    padding: 20px 20px 18px;
  }

  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-title {
    font-size: 1.2rem;
  }

  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__footer-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card,
  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-image img,
  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-link,
  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card-arrow,
  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__footer-cta,
  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__footer-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-location-cards.block-location-cards .lc__card:hover .lc__card-image img {
    transform: none;
  }
}
/* ═══ BLOCK: location-cards-light ═══ */
/* ============================================================
   LOCATION-CARDS — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with image-topped location cards, hover-lift,
   badge overlays, staggered scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (dark for rhythm after light werkgebieden) ── */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle grain overlay */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* ambient glow */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   GRID — 2x2, responsive
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1), 0 2px 8px rgba(0, 0, 0, 0.10);
  border-color: rgba(16, 185, 129, 0.2);
}

/* ── Card Image ── */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card:hover .lc__card-image img {
  transform: scale(1.05);
}

/* gradient overlay on image */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-heading, #0F172A);
  background: rgba(16, 185, 129, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
}

/* ── Card Body ── */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-body {
  padding: 28px 28px 24px;
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 12px;
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0 0 20px;
}

/* ── Card Details ── */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__icon {
  flex-shrink: 0;
  color: var(--t-accent, #10B981);
}

/* ── Card Link ── */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  transition: gap 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-link:hover {
  gap: 14px;
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-link:hover .lc__card-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   FOOTER CTA
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__footer-text {
  font-size: 1rem;
  color: var(--t-muted, #64748b);
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  background: var(--t-accent, #10B981);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  background: #0ea472;
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__footer-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__footer-cta:hover .lc__footer-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-image {
    height: 180px;
  }

  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-body {
    padding: 24px 24px 20px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-image {
    height: 160px;
  }

  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-body {
    padding: 20px 20px 18px;
  }

  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-title {
    font-size: 1.2rem;
  }

  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__footer-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card,
  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-image img,
  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-link,
  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card-arrow,
  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__footer-cta,
  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__footer-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-location-cards-light.block-location-cards-light .lc__card:hover .lc__card-image img {
    transform: none;
  }
}

/* ═══ BLOCK: logo-cloud ═══ */
/* ============================================================
   LOGO-CLOUD — Creatine-DE
   Layer 3: Per-block premium overrides
   Trusted-partner logo grid with hover elevation, trust bar,
   and subtle ambient animations.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* Subtle top border accent */
[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 30%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__subtitle {
  font-size: clamp(0.938rem, 1.5vw, 1.063rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ── Logo grid — 4 columns, 8 items ── */
[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 64px);
}

/* ── Logo item ── */
[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
  border-radius: 12px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 20px 48px rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
}

/* ── Logo wrapper ── */
[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
}

[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__logo-wrap svg {
  width: 32px;
  height: 32px;
  color: var(--t-muted, #64748b);
  opacity: 0.5;
  transition:
    color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__item:hover .lc__logo-wrap svg {
  color: var(--t-accent, #10B981);
  opacity: 1;
}

/* ── Logo label ── */
[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  letter-spacing: 0.01em;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__item:hover .lc__label {
  color: var(--t-primary, #0F172A);
}

/* ── Trust bar ── */
[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 32px;
  background: #ffffff;
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.03),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__trust-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__trust-divider {
  width: 1px;
  height: 24px;
  background: var(--t-border, rgba(15, 23, 42, 0.1));
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__item {
    padding: 24px 16px;
  }

  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__trust-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
  }

  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__trust-divider {
    width: 40px;
    height: 1px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__item {
    padding: 20px 12px;
  }

  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__logo-wrap {
    height: 36px;
  }

  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__logo-wrap svg {
    width: 28px;
    height: 28px;
  }

  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__label {
    font-size: 0.75rem;
  }

  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__trust-item {
    font-size: 0.8125rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__item {
    transition: none;
  }

  [data-project="creatine-de"] .block-logo-cloud.block-logo-cloud .lc__label {
    transition: none;
  }
}
/* ═══ BLOCK: logo-cloud-dark ═══ */
/* ============================================================
   LOGO-CLOUD — Creatine-DE
   Layer 3: Per-block premium overrides
   Trusted-partner logo grid with hover elevation, trust bar,
   and subtle ambient animations.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* Subtle top border accent */
[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 30%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__subtitle {
  font-size: clamp(0.938rem, 1.5vw, 1.063rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ── Logo grid — 4 columns, 8 items ── */
[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 64px);
}

/* ── Logo item ── */
[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
  border-radius: 12px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08),
    0 20px 48px rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
}

/* ── Logo wrapper ── */
[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
}

[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__logo-wrap svg {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
  transition:
    color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__item:hover .lc__logo-wrap svg {
  color: var(--t-accent, #10B981);
  opacity: 1;
}

/* ── Logo label ── */
[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__item:hover .lc__label {
  color: var(--t-primary, #0F172A);
}

/* ── Trust bar ── */
[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.06));
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__trust-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__trust-divider {
  width: 1px;
  height: 24px;
  background: var(--t-border, rgba(15, 23, 42, 0.1));
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__item {
    padding: 24px 16px;
  }

  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__trust-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
  }

  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__trust-divider {
    width: 40px;
    height: 1px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__item {
    padding: 20px 12px;
  }

  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__logo-wrap {
    height: 36px;
  }

  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__logo-wrap svg {
    width: 28px;
    height: 28px;
  }

  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__label {
    font-size: 0.75rem;
  }

  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__trust-item {
    font-size: 0.8125rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__item {
    transition: none;
  }

  [data-project="creatine-de"] .block-logo-cloud-dark.block-logo-cloud-dark .lc__label {
    transition: none;
  }
}

/* ═══ BLOCK: map-embed ═══ */
/* ============================================================
   MAP-EMBED — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with embedded map, glassmorphism detail cards,
   ambient glow backdrop, and trust bar.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-map-embed.block-map-embed {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-map-embed.block-map-embed .me__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: meGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: meGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes meGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes meGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-map-embed.block-map-embed .me__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-map-embed.block-map-embed .me__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: mePulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes mePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   LAYOUT — map + details side by side
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-map-embed.block-map-embed .me__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
}

/* ── Map frame ── */
[data-project="creatine-de"] .block-map-embed.block-map-embed .me__map-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__map-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #161b22;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0.85) contrast(1.1) saturate(0.9);
  transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__map-frame:hover .me__iframe {
  filter: brightness(0.95) contrast(1.05) saturate(1);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__map-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__map-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  padding-left: 4px;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__map-badge-icon {
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   DETAIL CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-map-embed.block-map-embed .me__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__card-value {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__card-link {
  font-size: 0.9375rem;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__card-link:hover {
  color: #34d399;
}

/* ── Directions button ── */
[data-project="creatine-de"] .block-map-embed.block-map-embed .me__directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__directions-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__btn-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__directions-btn:hover .me__btn-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-map-embed.block-map-embed .me__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-map-embed.block-map-embed .me__trust-item svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__map-frame {
    aspect-ratio: 16 / 9;
  }

  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__trust {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-left: 4px;
  }

  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__header {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-map-embed.block-map-embed {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__card {
    padding: 16px;
  }

  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__directions-btn {
    width: 100%;
    padding: 16px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__glow--1,
  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__card,
  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__directions-btn,
  [data-project="creatine-de"] .block-map-embed.block-map-embed .me__iframe {
    transition: none;
  }
}
/* ═══ BLOCK: map-embed-light ═══ */
/* ============================================================
   MAP-EMBED — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with embedded map, glassmorphism detail cards,
   ambient glow backdrop, and trust bar.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: meGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: meGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes meGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes meGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: mePulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes mePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-heading, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   LAYOUT — map + details side by side
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
}

/* ── Map frame ── */
[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__map-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__map-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #161b22;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.10),
    0 12px 40px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0.85) contrast(1.1) saturate(0.9);
  transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__map-frame:hover .me__iframe {
  filter: brightness(0.95) contrast(1.05) saturate(1);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__map-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__map-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.40);
  padding-left: 4px;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__map-badge-icon {
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   DETAIL CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__card:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.40);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__card-value {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--t-text, #1e293b);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__card-link {
  font-size: 0.9375rem;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__card-link:hover {
  color: #34d399;
}

/* ── Directions button ── */
[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__directions-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__btn-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__directions-btn:hover .me__btn-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__trust-item svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__map-frame {
    aspect-ratio: 16 / 9;
  }

  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__trust {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-left: 4px;
  }

  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__header {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__card {
    padding: 16px;
  }

  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__directions-btn {
    width: 100%;
    padding: 16px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__glow--1,
  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__card,
  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__directions-btn,
  [data-project="creatine-de"] .block-map-embed-light.block-map-embed-light .me__iframe {
    transition: none;
  }
}

/* ═══ BLOCK: media-showcase ═══ */
/* ============================================================
   MEDIA-SHOWCASE — Creatine-DE
   Layer 3: Per-block premium overrides
   Filterable media grid with featured card, glassmorphism
   overlays, shine effects, staggered reveals, and counter
   animations. Dark section for visual rhythm.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (DARK) ── */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 24px;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: msGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: msGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes msGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.12); }
}

@keyframes msGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__header {
  text-align: center;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   FILTER TABS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__filter-btn {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__filter-btn--active {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__filter-btn--active:hover {
  background: #0ea472;
  border-color: #0ea472;
}

/* ══════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

/* ── Card base ── */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  will-change: transform;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.12), 0 2px 8px rgba(0, 0, 0, 0.3);
  border-color: rgba(16, 185, 129, 0.2);
}

/* ── Card media ── */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-media {
  position: relative;
  overflow: hidden;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card:not(.ms__card--featured) .ms__card-media {
  aspect-ratio: 4 / 3;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card--featured .ms__card-media {
  min-height: 320px;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card:hover .ms__card-img {
  transform: scale(1.05);
}

/* ── Shine effect ── */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card:hover .ms__card-shine {
  transform: translateX(120%);
}

/* ── Card overlay (glassmorphism) ── */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  z-index: 1;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-tag {
  display: inline-flex;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-body {
  padding: 24px;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card--featured .ms__card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 12px 0;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card--featured .ms__card-title {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 20px 0;
}

/* ── Card link ── */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  transition: gap 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-link:hover {
  gap: 14px;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__link-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-link:hover .ms__link-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__stat-suffix {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--t-accent, #10B981);
  line-height: 1;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════ */
@keyframes msRevealUp {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes msRevealScale {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes msPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
  50% { box-shadow: 0 0 24px 4px rgba(16, 185, 129, 0.15); }
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase [data-ms-item] {
  opacity: 0;
  transform: translateY(32px);
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase [data-ms-item].ms--visible {
  animation: msRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card[data-ms-item].ms--visible {
  animation: msRevealScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Filter hide/show */
[data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card.ms--hidden {
  display: none;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-media-showcase.block-media-showcase {
    padding: clamp(56px, 8vw, 80px) 16px;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card--featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card--featured .ms__card-body {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__stats {
    gap: 24px;
    padding: 28px 20px;
    flex-wrap: wrap;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__stat-divider {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__grid {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__filter {
    gap: 6px;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__filter-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card-body {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__glow--1,
  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase [data-ms-item] {
    opacity: 1;
    transform: none;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card:hover .ms__card-img {
    transform: none;
  }

  [data-project="creatine-de"] .block-media-showcase.block-media-showcase .ms__card:hover .ms__card-shine {
    transform: translateX(-120%);
  }
}
/* ═══ BLOCK: media-showcase-light ═══ */
/* ============================================================
   MEDIA-SHOWCASE — Creatine-DE
   Layer 3: Per-block premium overrides
   Filterable media grid with featured card, glassmorphism
   overlays, shine effects, staggered reveals, and counter
   animations. Dark section for visual rhythm.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (DARK) ── */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 24px;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: msGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: msGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes msGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.12); }
}

@keyframes msGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__header {
  text-align: center;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px 0;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  max-width: 620px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   FILTER TABS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__filter-btn {
  background: rgba(0, 0, 0, 0.06);
  color: var(--t-muted, #64748b);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__filter-btn--active {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__filter-btn--active:hover {
  background: #0ea472;
  border-color: #0ea472;
}

/* ══════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

/* ── Card base ── */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  will-change: transform;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.12), 0 2px 8px rgba(0, 0, 0, 0.10);
  border-color: rgba(16, 185, 129, 0.2);
}

/* ── Card media ── */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-media {
  position: relative;
  overflow: hidden;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card:not(.ms__card--featured) .ms__card-media {
  aspect-ratio: 4 / 3;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card--featured .ms__card-media {
  min-height: 320px;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card:hover .ms__card-img {
  transform: scale(1.05);
}

/* ── Shine effect ── */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(0, 0, 0, 0.06) 45%,
    rgba(0, 0, 0, 0.06) 50%,
    rgba(0, 0, 0, 0.06) 55%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card:hover .ms__card-shine {
  transform: translateX(120%);
}

/* ── Card overlay (glassmorphism) ── */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  z-index: 1;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-tag {
  display: inline-flex;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-heading, #0F172A);
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--t-text, #1e293b);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-body {
  padding: 24px;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card--featured .ms__card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 12px 0;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card--featured .ms__card-title {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0 0 20px 0;
}

/* ── Card link ── */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  transition: gap 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-link:hover {
  gap: 14px;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__link-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-link:hover .ms__link-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-heading, #0F172A);
  line-height: 1;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__stat-suffix {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--t-accent, #10B981);
  line-height: 1;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-muted, #64748b);
  margin-top: 8px;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════ */
@keyframes msRevealUp {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes msRevealScale {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes msPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
  50% { box-shadow: 0 0 24px 4px rgba(16, 185, 129, 0.15); }
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light [data-ms-item] {
  opacity: 0;
  transform: translateY(32px);
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light [data-ms-item].ms--visible {
  animation: msRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card[data-ms-item].ms--visible {
  animation: msRevealScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Filter hide/show */
[data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card.ms--hidden {
  display: none;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light {
    padding: clamp(56px, 8vw, 80px) 16px;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card--featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card--featured .ms__card-body {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__stats {
    gap: 24px;
    padding: 28px 20px;
    flex-wrap: wrap;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__stat-divider {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__grid {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__filter {
    gap: 6px;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__filter-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card-body {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__glow--1,
  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light [data-ms-item] {
    opacity: 1;
    transform: none;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card:hover .ms__card-img {
    transform: none;
  }

  [data-project="creatine-de"] .block-media-showcase-light.block-media-showcase-light .ms__card:hover .ms__card-shine {
    transform: translateX(-120%);
  }
}

/* ═══ BLOCK: muscle-saturation-viz ═══ */
/* MUSCLE-SATURATION-VIZ — creatine-de — Circular Progress + Phase Cards */
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 48px);
  background: #0F172A;
  color: #fff;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10B981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: #fff;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__gradient {
  background: linear-gradient(135deg, #10B981, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 48px;
  line-height: 1.6;
}
/* Ring */
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__ring-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__ring-circle {
  position: relative;
  width: 220px;
  height: 220px;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__ring-svg {
  width: 100%;
  height: 100%;
  display: block;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__ring-progress {
  transition: stroke-dashoffset 2s cubic-bezier(0.16,1,0.3,1);
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__ring-glow {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s 0.5s;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__ring.msv__ring--active .msv__ring-glow {
  opacity: 1;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__ring-pct {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__ring-pct-sign {
  font-size: 2rem;
  font-weight: 700;
  color: #10B981;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__ring-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
/* Phase cards */
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phase {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px 16px 16px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phase:hover {
  border-color: rgba(16,185,129,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.08);
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phase-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #10B981;
  background: rgba(16,185,129,0.12);
  border-radius: 6px;
  padding: 3px 8px;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phase-pct {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phase-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phase-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #10B981, #34d399);
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.16,1,0.3,1);
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phase-fill--mid {
  background: linear-gradient(90deg, #34d399, #6ee7b7);
  transition-delay: 0.2s;
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phase-fill--full {
  background: linear-gradient(90deg, #10B981, #6ee7b7);
  transition-delay: 0.4s;
  box-shadow: 0 0 10px rgba(16,185,129,0.4);
}
[data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phase-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 640px) {
  [data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__phases {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  [data-project="creatine-de"] .block-muscle-saturation-viz.block-muscle-saturation-viz .msv__ring-circle {
    width: 180px;
    height: 180px;
  }
}
/* ═══ BLOCK: nav-sticky ═══ */
/* ============================================================
   NAV-STICKY — Creatine-DE
   Layer 3: Per-block premium overrides
   Glassmorphism sticky nav with scroll-aware background,
   accent CTA, animated hamburger, premium mobile drawer.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — fixed top ── */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255, 255, 255, 0.0);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Scrolled state — glassmorphism ── */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky.ns--scrolled {
  height: 60px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Bottom accent line on scroll */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky.ns--scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.2) 20%,
    rgba(16, 185, 129, 0.3) 50%,
    rgba(16, 185, 129, 0.2) 80%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

/* ══════════════════════════════════════
   LOGO
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__logo:hover {
  opacity: 0.8;
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--t-accent, #10B981);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__logo:hover .ns__logo-icon {
  transform: rotate(-8deg) scale(1.05);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__logo-text {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.03em;
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__logo-accent {
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   NAVIGATION LINKS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__links {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0 32px;
  padding: 0;
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__link:hover {
  color: var(--t-primary, #0F172A);
  background: rgba(16, 185, 129, 0.06);
}

/* Underline indicator */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__link:hover::after {
  transform: scaleX(1);
}

/* Active link state */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__link--active {
  color: var(--t-primary, #0F172A);
  font-weight: 600;
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__link--active::after {
  transform: scaleX(1);
}

/* ══════════════════════════════════════
   CTA BUTTON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__actions {
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.3),
    0 8px 24px rgba(16, 185, 129, 0.2);
  background: #0ea572;
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__cta:active {
  transform: translateY(0);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__cta-arrow {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__cta:hover .ns__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   HAMBURGER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__hamburger:hover {
  background: rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--t-primary, #0F172A);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

/* Hamburger → X animation */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky.ns--open .ns__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky.ns--open .ns__hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky.ns--open .ns__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  display: none;
  overflow: hidden;
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky.ns--open .ns__mobile {
  display: block;
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__mobile-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--t-primary, #0F172A);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__mobile-link:hover {
  background: rgba(16, 185, 129, 0.06);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__mobile-icon {
  width: 18px;
  height: 18px;
  color: var(--t-muted, #64748b);
  flex-shrink: 0;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__mobile-link:hover .ns__mobile-icon {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__mobile-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15), transparent);
  margin: 8px 0;
}

/* Mobile CTA */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__cta--mobile {
  justify-content: center;
  margin-top: 4px;
  padding: 14px 24px;
  font-size: 0.95rem;
  border-radius: 10px;
}

/* Mobile trust line */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__mobile-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__mobile-trust svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SPACER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .ns__spacer {
  height: 72px;
}

/* ══════════════════════════════════════
   FOCUS STYLES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-nav-sticky.block-nav-sticky :focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 2px;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__links {
    display: none;
  }

  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__actions {
    display: none;
  }

  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__hamburger {
    display: flex;
  }

  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky {
    height: 64px;
  }

  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky.ns--scrolled {
    height: 56px;
  }

  [data-project="creatine-de"] .ns__spacer {
    height: 64px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__logo-text {
    font-size: 1rem;
  }

  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__logo-icon {
    width: 28px;
    height: 28px;
  }

  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__logo-icon svg {
    width: 22px;
    height: 22px;
  }

  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__mobile-inner {
    padding: 12px 16px 20px;
  }

  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky .ns__mobile-link {
    padding: 11px 12px;
    font-size: 0.9rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky,
  [data-project="creatine-de"] .block-nav-sticky.block-nav-sticky * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
/* ═══ BLOCK: news-ticker ═══ */
/* ============================================================
   NEWS-TICKER — Creatine-DE
   Layer 3: Per-block premium overrides
   Continuous horizontal scrolling ticker with LIVE badge,
   pause control, accent-tinted dark bar. Sits between
   banner-announcement and nav-sticky.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker {
  background: #0a0e14;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1090;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}

/* Subtle top highlight */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.15) 50%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__inner {
  display: flex;
  align-items: center;
  height: 36px;
  position: relative;
}

/* ── LIVE label ── */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px 0 20px;
  height: 100%;
  background: rgba(16, 185, 129, 0.08);
  border-right: 1px solid rgba(16, 185, 129, 0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  animation: ntDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ntDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(16, 185, 129, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 2px rgba(16, 185, 129, 0.3); }
}

[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__label-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--t-accent, #10B981);
  text-transform: uppercase;
}

/* ── Track wrapper — masks edges ── */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

/* Fade masks on left & right */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track-wrapper::before,
[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #0a0e14 0%, transparent 100%);
}

[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #0a0e14 0%, transparent 100%);
}

/* ── Track — infinite scroll ── */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  white-space: nowrap;
  will-change: transform;
  animation: ntScroll 40s linear infinite;
}

@keyframes ntScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker:hover .nt__track {
  animation-play-state: paused;
}

/* Paused state via JS */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track.is-paused {
  animation-play-state: paused;
}

/* ── Individual items ── */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__icon {
  width: 14px;
  height: 14px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
  opacity: 0.8;
}

[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
  line-height: 1;
}

[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__text strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* ── Separator diamonds ── */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--t-accent, #10B981);
  font-size: 0.4rem;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── Pause button ── */
[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__pause {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 100%;
  background: rgba(16, 185, 129, 0.05);
  border: none;
  border-left: 1px solid rgba(16, 185, 129, 0.1);
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__pause:hover {
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__pause:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: -2px;
}

/* ══════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__inner {
    height: 32px;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__label {
    padding: 0 12px 0 14px;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__label-text {
    font-size: 0.55rem;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__text {
    font-size: 0.68rem;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track-wrapper::before,
  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track-wrapper::after {
    width: 24px;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track {
    animation-duration: 35s;
  }
}

/* ══════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__inner {
    height: 30px;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__label {
    padding: 0 10px 0 12px;
    gap: 5px;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__label-dot {
    width: 5px;
    height: 5px;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__text {
    font-size: 0.64rem;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__separator {
    padding: 0 10px;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__pause {
    width: 30px;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track {
    animation-duration: 30s;
  }
}

/* ══════════════════════════════
   REDUCED MOTION
   ══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track {
    animation: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__track::-webkit-scrollbar {
    display: none;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__label-dot {
    animation: none;
    opacity: 1;
  }

  [data-project="creatine-de"] .block-news-ticker.block-news-ticker .nt__pause {
    display: none;
  }
}
/* ═══ BLOCK: news-ticker-light ═══ */
/* ============================================================
   NEWS-TICKER — Creatine-DE
   Layer 3: Per-block premium overrides
   Continuous horizontal scrolling ticker with LIVE badge,
   pause control, accent-tinted dark bar. Sits between
   banner-announcement and nav-sticky.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light {
  background: #0a0e14;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1090;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}

/* Subtle top highlight */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.15) 50%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__inner {
  display: flex;
  align-items: center;
  height: 36px;
  position: relative;
}

/* ── LIVE label ── */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px 0 20px;
  height: 100%;
  background: rgba(16, 185, 129, 0.08);
  border-right: 1px solid rgba(16, 185, 129, 0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  animation: ntDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ntDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(16, 185, 129, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 2px rgba(16, 185, 129, 0.3); }
}

[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__label-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--t-accent, #10B981);
  text-transform: uppercase;
}

/* ── Track wrapper — masks edges ── */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

/* Fade masks on left & right */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track-wrapper::before,
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track-wrapper::before {
  left: 0;
  background: var(--t-surface, #f8fafb);
}

[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track-wrapper::after {
  right: 0;
  background: var(--t-surface, #f8fafb);
}

/* ── Track — infinite scroll ── */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  white-space: nowrap;
  will-change: transform;
  animation: ntScroll 40s linear infinite;
}

@keyframes ntScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light:hover .nt__track {
  animation-play-state: paused;
}

/* Paused state via JS */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track.is-paused {
  animation-play-state: paused;
}

/* ── Individual items ── */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__icon {
  width: 14px;
  height: 14px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
  opacity: 0.8;
}

[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__text {
  font-size: 0.72rem;
  color: var(--t-muted, #64748b);
  letter-spacing: 0.01em;
  line-height: 1;
}

[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__text strong {
  color: var(--t-text, #1e293b);
  font-weight: 600;
}

/* ── Separator diamonds ── */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--t-accent, #10B981);
  font-size: 0.4rem;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── Pause button ── */
[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__pause {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 100%;
  background: rgba(16, 185, 129, 0.05);
  border: none;
  border-left: 1px solid rgba(16, 185, 129, 0.1);
  color: rgba(0, 0, 0, 0.40);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__pause:hover {
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__pause:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: -2px;
}

/* ══════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__inner {
    height: 32px;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__label {
    padding: 0 12px 0 14px;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__label-text {
    font-size: 0.55rem;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__text {
    font-size: 0.68rem;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track-wrapper::before,
  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track-wrapper::after {
    width: 24px;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track {
    animation-duration: 35s;
  }
}

/* ══════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__inner {
    height: 30px;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__label {
    padding: 0 10px 0 12px;
    gap: 5px;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__label-dot {
    width: 5px;
    height: 5px;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__text {
    font-size: 0.64rem;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__separator {
    padding: 0 10px;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__pause {
    width: 30px;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track {
    animation-duration: 30s;
  }
}

/* ══════════════════════════════
   REDUCED MOTION
   ══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track {
    animation: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__track::-webkit-scrollbar {
    display: none;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__label-dot {
    animation: none;
    opacity: 1;
  }

  [data-project="creatine-de"] .block-news-ticker-light.block-news-ticker-light .nt__pause {
    display: none;
  }
}

/* ═══ BLOCK: newsletter ═══ */
/* ============================================================
   NEWSLETTER — Creatine-DE
   Layer 3: Per-block premium overrides
   Newsletter signup CTA with glassmorphism form, ambient
   glows, feature pills, and success state animation.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-newsletter.block-newsletter {
  position: relative;
  background: #0d1117;
  background: var(--t-dark-bg, #0d1117);
  color: #ffffff;
  color: var(--t-text-light, #ffffff);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 32px);
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   AMBIENT GLOWS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__glow--1 {
  width: 500px;
  height: 500px;
  top: -35%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.13) 0%, transparent 70%);
  animation: nlGlow1 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__glow--2 {
  width: 380px;
  height: 380px;
  bottom: -28%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: nlGlow2 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes nlGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(45px, 20px) scale(1.1); }
}

@keyframes nlGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -18px) scale(1.06); }
}

/* ── Grain overlay ── */
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ══════════════════════════════════════
   BADGE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #10B981;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__badge-icon {
  display: flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__title-accent {
  background: linear-gradient(135deg, #10B981 0%, #34d399 100%);
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   DESCRIPTION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__desc {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   FORM
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__form-wrapper {
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__input-group {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 5px;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__input-group:focus-within {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1),
              0 4px 16px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #ffffff;
  color: var(--t-text-light, #ffffff);
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* ── Submit Button ── */
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: #10B981;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn-arrow {
  display: flex;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn:hover .nl__btn-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn-loader {
  display: none;
  animation: nlSpin 0.8s linear infinite;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn.is-loading .nl__btn-text,
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn.is-loading .nl__btn-arrow {
  display: none;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn.is-loading .nl__btn-loader {
  display: flex;
}

@keyframes nlSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Success State ── */
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  color: #10B981;
  color: var(--t-accent, #10B981);
  font-size: 0.9375rem;
  font-weight: 500;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__success.is-visible {
  display: flex;
  animation: nlFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes nlFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__success-icon {
  flex-shrink: 0;
}

/* ── Privacy ── */
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__privacy-icon {
  flex-shrink: 0;
  opacity: 0.6;
}

/* ══════════════════════════════════════
   FEATURES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-newsletter.block-newsletter .nl__feature-text {
  font-weight: 500;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-newsletter.block-newsletter {
    padding: clamp(56px, 8vw, 80px) clamp(16px, 4vw, 24px);
  }

  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__features {
    gap: 20px;
  }

  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__input-group:focus-within {
    border-color: transparent;
    box-shadow: none;
  }

  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    width: 100%;
  }

  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__input:focus {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  }

  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__features {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__glow--1,
  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn-loader {
    animation: none;
  }

  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn,
  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__btn-arrow,
  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__input-group {
    transition: none;
  }

  [data-project="creatine-de"] .block-newsletter.block-newsletter .nl__success.is-visible {
    animation: none;
  }
}
/* ═══ BLOCK: newsletter-light ═══ */
/* ============================================================
   NEWSLETTER — Creatine-DE
   Layer 3: Per-block premium overrides
   Newsletter signup CTA with glassmorphism form, ambient
   glows, feature pills, and success state animation.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light {
  position: relative;
  background: #0d1117;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-heading, #0F172A);
  color: var(--t-text-light, #ffffff);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 32px);
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   AMBIENT GLOWS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__glow--1 {
  width: 500px;
  height: 500px;
  top: -35%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.13) 0%, transparent 70%);
  animation: nlGlow1 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__glow--2 {
  width: 380px;
  height: 380px;
  bottom: -28%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: nlGlow2 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes nlGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(45px, 20px) scale(1.1); }
}

@keyframes nlGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -18px) scale(1.06); }
}

/* ── Grain overlay ── */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ══════════════════════════════════════
   BADGE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #10B981;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__badge-icon {
  display: flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   TITLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  color: var(--t-text-light, #ffffff);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__title-accent {
  background: linear-gradient(135deg, #10B981 0%, #34d399 100%);
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   DESCRIPTION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__desc {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   FORM
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__form-wrapper {
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__input-group {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto 16px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 5px;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__input-group:focus-within {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1),
              0 4px 16px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--t-heading, #0F172A);
  color: var(--t-text-light, #ffffff);
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

/* ── Submit Button ── */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: #10B981;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn:active {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn-arrow {
  display: flex;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn:hover .nl__btn-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn-loader {
  display: none;
  animation: nlSpin 0.8s linear infinite;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn.is-loading .nl__btn-text,
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn.is-loading .nl__btn-arrow {
  display: none;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn.is-loading .nl__btn-loader {
  display: flex;
}

@keyframes nlSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Success State ── */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  color: #10B981;
  color: var(--t-accent, #10B981);
  font-size: 0.9375rem;
  font-weight: 500;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__success.is-visible {
  display: flex;
  animation: nlFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes nlFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__success-icon {
  flex-shrink: 0;
}

/* ── Privacy ── */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.40);
  margin-top: 12px;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__privacy-icon {
  flex-shrink: 0;
  opacity: 0.6;
}

/* ══════════════════════════════════════
   FEATURES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__feature-text {
  font-weight: 500;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light {
    padding: clamp(56px, 8vw, 80px) clamp(16px, 4vw, 24px);
  }

  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__features {
    gap: 20px;
  }

  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__input-group:focus-within {
    border-color: transparent;
    box-shadow: none;
  }

  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__input {
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    width: 100%;
  }

  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__input:focus {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  }

  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__features {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__glow--1,
  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn-loader {
    animation: none;
  }

  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn,
  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__btn-arrow,
  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__input-group {
    transition: none;
  }

  [data-project="creatine-de"] .block-newsletter-light.block-newsletter-light .nl__success.is-visible {
    animation: none;
  }
}

/* ═══ BLOCK: page-404 ═══ */
/* ============================================================
   PAGE-404 — Creatine DE
   Centered layout, light bg, emerald accent, illustration area
   ============================================================ */

[data-project="creatine-de"] .block-page-404.block-page-404 {
  padding: clamp(80px, 10vw, 140px) 24px;
  background: #ffffff;
  font-family: var(--t-body-font, 'Inter', sans-serif);
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__inner {
  max-width: 560px;
  margin: 0 auto;
}

/* — Illustration — */

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__illustration {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__circles {
  position: absolute;
  inset: 0;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__circle {
  position: absolute;
  border-radius: 50%;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__circle--1 {
  width: 180px;
  height: 180px;
  top: 0;
  left: 0;
  background: rgba(16, 185, 129, 0.06);
  animation: p4-pulse 4s ease-in-out infinite;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__circle--2 {
  width: 130px;
  height: 130px;
  top: 25px;
  left: 25px;
  background: rgba(16, 185, 129, 0.08);
  animation: p4-pulse 4s ease-in-out 0.5s infinite;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__circle--3 {
  width: 80px;
  height: 80px;
  top: 50px;
  left: 50px;
  background: rgba(16, 185, 129, 0.12);
  animation: p4-pulse 4s ease-in-out 1s infinite;
}

@keyframes p4-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__code {
  position: relative;
  z-index: 1;
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 50%, var(--t-accent, #10B981) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* — Text — */

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 14px;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0 0 32px;
}

/* — Actions — */

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  filter: brightness(1.1);
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__btn--secondary {
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  border: 1.5px solid var(--t-border, #e2e8f0);
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__btn--secondary:hover {
  border-color: var(--t-accent, #10B981);
  color: var(--t-accent, #10B981);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__btn:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 3px;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__btn:active {
  transform: translateY(0);
}

/* — Suggestions — */

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__suggestions {
  padding-top: 32px;
  border-top: 1px solid var(--t-border, #e2e8f0);
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__suggestions-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-muted, #64748b);
  margin-bottom: 14px;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__suggestions-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__suggestions-link {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--t-primary, #0F172A);
  background: var(--t-surface, #f8fafb);
  border: 1px solid var(--t-border, #e2e8f0);
  text-decoration: none;
  transition: all 0.2s ease;
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__suggestions-link:hover {
  border-color: var(--t-accent, #10B981);
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-page-404.block-page-404 .p4__suggestions-link:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 2px;
}

/* — Responsive 768px — */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__illustration {
    width: 150px;
    height: 150px;
    margin-bottom: 32px;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__circle--1 {
    width: 150px;
    height: 150px;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__circle--2 {
    width: 110px;
    height: 110px;
    top: 20px;
    left: 20px;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__circle--3 {
    width: 70px;
    height: 70px;
    top: 40px;
    left: 40px;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__code {
    font-size: 3.5rem;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__actions {
    flex-direction: column;
    align-items: center;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* — Responsive 480px — */

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-page-404.block-page-404 {
    padding: 64px 16px;
    min-height: 50vh;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__illustration {
    width: 120px;
    height: 120px;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__circle--1 {
    width: 120px;
    height: 120px;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__circle--2 {
    width: 85px;
    height: 85px;
    top: 17px;
    left: 17px;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__circle--3 {
    width: 50px;
    height: 50px;
    top: 35px;
    left: 35px;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__code {
    font-size: 2.8rem;
  }
}

/* — Reduced motion — */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__circle {
    animation: none;
  }
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__btn,
  [data-project="creatine-de"] .block-page-404.block-page-404 .p4__suggestions-link {
    transition: none;
  }
}
/* ═══ BLOCK: page-404-dark ═══ */
/* ============================================================
   PAGE-404 — Creatine DE
   Centered layout, light bg, emerald accent, illustration area
   ============================================================ */

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark {
  padding: clamp(80px, 10vw, 140px) 24px;
  background: #0F172A;
  font-family: var(--t-body-font, 'Inter', sans-serif);
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__inner {
  max-width: 560px;
  margin: 0 auto;
}

/* — Illustration — */

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__illustration {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circles {
  position: absolute;
  inset: 0;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circle {
  position: absolute;
  border-radius: 50%;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circle--1 {
  width: 180px;
  height: 180px;
  top: 0;
  left: 0;
  background: rgba(16, 185, 129, 0.06);
  animation: p4-pulse 4s ease-in-out infinite;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circle--2 {
  width: 130px;
  height: 130px;
  top: 25px;
  left: 25px;
  background: rgba(16, 185, 129, 0.08);
  animation: p4-pulse 4s ease-in-out 0.5s infinite;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circle--3 {
  width: 80px;
  height: 80px;
  top: 50px;
  left: 50px;
  background: rgba(16, 185, 129, 0.12);
  animation: p4-pulse 4s ease-in-out 1s infinite;
}

@keyframes p4-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__code {
  position: relative;
  z-index: 1;
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 50%, var(--t-accent, #10B981) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* — Text — */

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__title {
  font-family: var(--t-heading-font, 'Inter', sans-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 14px;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 32px;
}

/* — Actions — */

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  filter: brightness(1.1);
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__btn--secondary {
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__btn--secondary:hover {
  border-color: var(--t-accent, #10B981);
  color: var(--t-accent, #10B981);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__btn:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 3px;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__btn:active {
  transform: translateY(0);
}

/* — Suggestions — */

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__suggestions {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__suggestions-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__suggestions-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__suggestions-link {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--t-primary, #0F172A);
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.2s ease;
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__suggestions-link:hover {
  border-color: var(--t-accent, #10B981);
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__suggestions-link:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 2px;
}

/* — Responsive 768px — */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__illustration {
    width: 150px;
    height: 150px;
    margin-bottom: 32px;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circle--1 {
    width: 150px;
    height: 150px;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circle--2 {
    width: 110px;
    height: 110px;
    top: 20px;
    left: 20px;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circle--3 {
    width: 70px;
    height: 70px;
    top: 40px;
    left: 40px;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__code {
    font-size: 3.5rem;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__actions {
    flex-direction: column;
    align-items: center;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* — Responsive 480px — */

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark {
    padding: 64px 16px;
    min-height: 50vh;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__illustration {
    width: 120px;
    height: 120px;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circle--1 {
    width: 120px;
    height: 120px;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circle--2 {
    width: 85px;
    height: 85px;
    top: 17px;
    left: 17px;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circle--3 {
    width: 50px;
    height: 50px;
    top: 35px;
    left: 35px;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__code {
    font-size: 2.8rem;
  }
}

/* — Reduced motion — */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__circle {
    animation: none;
  }
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__btn,
  [data-project="creatine-de"] .block-page-404-dark.block-page-404-dark .p4__suggestions-link {
    transition: none;
  }
}

/* ═══ BLOCK: partners-grid ═══ */
/* ============================================================
   PARTNERS-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   Partner card grid with hover elevation, role badges, trust
   stat bar, and staggered scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 30%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__subtitle {
  font-size: clamp(0.938rem, 1.5vw, 1.063rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   CARD GRID — 3 columns, 6 items
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 64px);
}

/* ── Card ── */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card {
  background: #ffffff;
  border: 1px solid var(--t-border, rgba(0, 0, 0, 0.06));
  border-radius: 12px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card:hover::before {
  opacity: 1;
}

/* ── Card icon / logo ── */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card-icon {
  margin-bottom: 20px;
  height: 40px;
  display: flex;
  align-items: center;
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card-icon img {
  max-height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.4);
  transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card:hover .pg__card-icon img {
  filter: grayscale(0%) brightness(1);
}

/* ── Card name ── */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card-name {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

/* ── Card role badge ── */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  align-self: flex-start;
}

/* ── Card description ── */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0 0 auto;
  padding-bottom: 20px;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  padding-top: 16px;
  border-top: 1px solid var(--t-border, rgba(0, 0, 0, 0.06));
  margin-top: 0;
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card-tag svg {
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   BOTTOM STAT BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  background: #ffffff;
  border: 1px solid var(--t-border, rgba(0, 0, 0, 0.06));
  border-radius: 12px;
  padding: 24px 40px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__stat-number {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.025em;
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__stat-label {
  font-size: 0.813rem;
  color: var(--t-muted, #64748b);
  font-weight: 500;
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__divider {
  width: 1px;
  height: 40px;
  background: var(--t-border, rgba(0, 0, 0, 0.08));
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SCROLL REVEAL — initial visible,
   enhanced by script.js
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card[data-pg-reveal] {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card[data-pg-reveal].pg--hidden {
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card[data-pg-reveal].pg--visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card {
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__bottom-bar {
    gap: 20px;
    padding: 20px 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__bottom-bar {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__title {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card-icon img {
    transition: none;
  }

  [data-project="creatine-de"] .block-partners-grid.block-partners-grid .pg__card[data-pg-reveal].pg--visible {
    transition: none;
  }
}
/* ═══ BLOCK: partners-grid-dark ═══ */
/* ============================================================
   PARTNERS-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   Partner card grid with hover elevation, role badges, trust
   stat bar, and staggered scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 30%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__subtitle {
  font-size: clamp(0.938rem, 1.5vw, 1.063rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ══════════════════════════════════════
   CARD GRID — 3 columns, 6 items
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 64px);
}

/* ── Card ── */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--t-border, rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
  position: relative;
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card:hover::before {
  opacity: 1;
}

/* ── Card icon / logo ── */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card-icon {
  margin-bottom: 20px;
  height: 40px;
  display: flex;
  align-items: center;
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card-icon img {
  max-height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.4);
  transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card:hover .pg__card-icon img {
  filter: grayscale(0%) brightness(1);
}

/* ── Card name ── */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card-name {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

/* ── Card role badge ── */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  align-self: flex-start;
}

/* ── Card description ── */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 auto;
  padding-bottom: 20px;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  padding-top: 16px;
  border-top: 1px solid var(--t-border, rgba(255, 255, 255, 0.08));
  margin-top: 0;
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card-tag svg {
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   BOTTOM STAT BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--t-border, rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  padding: 24px 40px;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__stat-number {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.025em;
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__stat-label {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__divider {
  width: 1px;
  height: 40px;
  background: var(--t-border, rgba(255, 255, 255, 0.08));
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SCROLL REVEAL — initial visible,
   enhanced by script.js
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card[data-pg-reveal] {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card[data-pg-reveal].pg--hidden {
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card[data-pg-reveal].pg--visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card {
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__bottom-bar {
    gap: 20px;
    padding: 20px 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__bottom-bar {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__title {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card-icon img {
    transition: none;
  }

  [data-project="creatine-de"] .block-partners-grid-dark.block-partners-grid-dark .pg__card[data-pg-reveal].pg--visible {
    transition: none;
  }
}

/* ═══ BLOCK: portfolio-grid ═══ */
/* ============================================================
   PORTFOLIO-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   Filterable portfolio grid with hover reveals, smooth
   category transitions, featured cards, and stagger animations.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 52px);
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__badge-icon {
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   FILTER BUTTONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 48px);
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__filter-btn {
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--t-border, #e2e8f0);
  background: #ffffff;
  color: #64748b;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__filter-btn:hover {
  color: var(--t-accent, #10B981);
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__filter-btn--active {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__filter-btn--active:hover {
  background: #059669;
  border-color: #059669;
  color: #ffffff;
}

/* ══════════════════════════════════════
   GRID LAYOUT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card--featured {
  grid-column: span 2;
}

/* ══════════════════════════════════════
   CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* ── Card image ── */
[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card--featured .pg__card-img {
  aspect-ratio: 16 / 10;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card:hover .pg__card-img img {
  transform: scale(1.05);
}

/* ── Card overlay ── */
[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card:hover .pg__card-overlay {
  opacity: 1;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(16, 185, 129, 0.85);
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card-body {
  padding: 20px 24px 24px;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.0625rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 8px;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* ══════════════════════════════════════
   FILTER ANIMATION STATES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card--hidden {
  display: none;
}

[data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card--fade-in {
  animation: pgFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes pgFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card--featured {
    grid-column: span 2;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card-body {
    padding: 16px 20px 20px;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__filter {
    gap: 6px;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__filter-btn {
    font-size: 0.8125rem;
    padding: 6px 14px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card--featured {
    grid-column: span 1;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card--featured .pg__card-img {
    aspect-ratio: 4 / 3;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__filter::-webkit-scrollbar {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card {
    transition: box-shadow 0.2s ease;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card-img img {
    transition: none;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card:hover .pg__card-img img {
    transform: none;
  }

  [data-project="creatine-de"] .block-portfolio-grid.block-portfolio-grid .pg__card--fade-in {
    animation: none;
  }
}
/* ═══ BLOCK: portfolio-grid-dark ═══ */
/* ============================================================
   PORTFOLIO-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   Filterable portfolio grid with hover reveals, smooth
   category transitions, featured cards, and stagger animations.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 52px);
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__badge-icon {
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   FILTER BUTTONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 48px);
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__filter-btn {
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__filter-btn:hover {
  color: var(--t-accent, #10B981);
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__filter-btn--active {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__filter-btn--active:hover {
  background: #059669;
  border-color: #059669;
  color: #ffffff;
}

/* ══════════════════════════════════════
   GRID LAYOUT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card--featured {
  grid-column: span 2;
}

/* ══════════════════════════════════════
   CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08), 0 16px 40px rgba(0, 0, 0, 0.30);
}

/* ── Card image ── */
[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card--featured .pg__card-img {
  aspect-ratio: 16 / 10;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card:hover .pg__card-img img {
  transform: scale(1.05);
}

/* ── Card overlay ── */
[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card:hover .pg__card-overlay {
  opacity: 1;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(16, 185, 129, 0.85);
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card-body {
  padding: 20px 24px 24px;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.0625rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 8px;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ══════════════════════════════════════
   FILTER ANIMATION STATES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card--hidden {
  display: none;
}

[data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card--fade-in {
  animation: pgFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes pgFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card--featured {
    grid-column: span 2;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card-body {
    padding: 16px 20px 20px;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__filter {
    gap: 6px;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__filter-btn {
    font-size: 0.8125rem;
    padding: 6px 14px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card--featured {
    grid-column: span 1;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card--featured .pg__card-img {
    aspect-ratio: 4 / 3;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__filter::-webkit-scrollbar {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card {
    transition: box-shadow 0.2s ease;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card-img img {
    transition: none;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card:hover .pg__card-img img {
    transform: none;
  }

  [data-project="creatine-de"] .block-portfolio-grid-dark.block-portfolio-grid-dark .pg__card--fade-in {
    animation: none;
  }
}

/* ═══ BLOCK: pricing ═══ */
/* ═══════════════════════════════════════════════════════════
   PRICING — Kreatin Kaufen (creatine-de)
   3-tier pricing with popular card elevated + emerald glow
   ═══════════════════════════════════════════════════════════ */

/* ── Section Base ── */
[data-project="creatine-de"] .block-pricing.block-pricing {
  background: var(--t-bg, #ffffff);
  padding: clamp(64px, 8vw, 96px) 24px;
  font-family: var(--t-font-body, 'Inter', system-ui, -apple-system, sans-serif);
  position: relative;
}

/* ── Inner Container ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__header {
  text-align: center;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__label {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__title {
  font-family: var(--t-font-heading, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__subtitle {
  font-size: 17px;
  color: var(--t-muted, #64748b);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 560px;
}

/* ── Grid Layout — 3 columns ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* ── Card Base ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__card {
  background: var(--t-bg, #ffffff);
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Card Hover ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.06),
    0 24px 48px rgba(15, 23, 42, 0.04);
}

/* ── Popular Card — Elevated with Emerald Glow ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__card--popular {
  border: 2px solid var(--t-accent, #10B981);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.1),
    0 8px 24px rgba(16, 185, 129, 0.12),
    0 24px 48px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__card--popular:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.15),
    0 12px 32px rgba(16, 185, 129, 0.2),
    0 32px 64px rgba(16, 185, 129, 0.1);
}

/* ── Popular Badge ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* ── Plan Name ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__plan-name {
  font-family: var(--t-font-heading, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

/* ── Plan Description ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__plan-desc {
  font-size: 14px;
  color: var(--t-muted, #64748b);
  margin: 0 0 24px;
  line-height: 1.5;
}

/* ── Price Display ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__price-amount {
  font-family: var(--t-font-heading, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 48px;
  font-weight: 800;
  color: var(--t-heading, #0F172A);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Popular card price — emerald accent */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__card--popular .pr__price-amount {
  background: linear-gradient(135deg, #10B981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__price-period {
  font-size: 15px;
  color: var(--t-muted, #64748b);
  font-weight: 400;
}

/* ── Monthly Equivalent ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__price-equiv {
  font-size: 13px;
  color: var(--t-muted, #64748b);
  margin: 0 0 24px;
  line-height: 1.4;
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__price-equiv strong {
  color: var(--t-accent, #10B981);
  font-weight: 600;
}

/* ── Feature List ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  flex-grow: 1;
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--t-text, #1e293b);
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__feat:last-child {
  border-bottom: none;
}

/* ── Checkmark Icons ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__feat svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--t-accent, #10B981);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Emerald checkmark background circle */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__feat::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  flex-shrink: 0;
  pointer-events: none;
}

/* Position relative for the ::before */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__feat {
  position: relative;
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__feat::before {
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── CTA Buttons ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--t-font-body, 'Inter', system-ui, -apple-system, sans-serif);
  border: none;
  margin-top: auto;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__btn:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 2px;
}

/* Outline button */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__btn--outline {
  background: var(--t-bg, #ffffff);
  color: var(--t-heading, #0F172A);
  border: 1.5px solid var(--t-border, #e2e8f0);
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__btn--outline:hover {
  border-color: var(--t-accent, #10B981);
  color: var(--t-accent, #10B981);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.15);
  transform: translateY(-1px);
}

/* Primary button (popular card) */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
}

/* ── Guarantee Footer ── */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__guarantee {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--t-muted, #64748b);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.5;
}

[data-project="creatine-de"] .block-pricing.block-pricing .pr__guarantee svg {
  width: 18px;
  height: 18px;
  stroke: var(--t-accent, #10B981);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-pricing.block-pricing {
    padding: clamp(48px, 6vw, 64px) 20px;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__header {
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 24px;
  }

  /* Popular card: reset scale, move to top */
  [data-project="creatine-de"] .block-pricing.block-pricing .pr__card--popular {
    transform: none;
    order: -1;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__card--popular:hover {
    transform: translateY(-4px);
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__price-amount {
    font-size: 40px;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__card {
    padding: 32px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (480px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-pricing.block-pricing {
    padding: 40px 16px;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__grid {
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__card {
    padding: 28px 20px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__title {
    font-size: clamp(24px, 5vw, 32px);
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__subtitle {
    font-size: 15px;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__price-amount {
    font-size: 36px;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__plan-name {
    font-size: 18px;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__feat {
    font-size: 13px;
    padding: 8px 0;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__guarantee {
    margin-top: 32px;
    font-size: 13px;
    flex-direction: column;
    gap: 4px;
  }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-pricing.block-pricing .pr__card,
  [data-project="creatine-de"] .block-pricing.block-pricing .pr__card--popular,
  [data-project="creatine-de"] .block-pricing.block-pricing .pr__btn,
  [data-project="creatine-de"] .block-pricing.block-pricing .pr__btn--outline,
  [data-project="creatine-de"] .block-pricing.block-pricing .pr__btn--primary {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__card--popular {
    transform: none;
  }

  [data-project="creatine-de"] .block-pricing.block-pricing .pr__card:hover,
  [data-project="creatine-de"] .block-pricing.block-pricing .pr__card--popular:hover {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   SUBTLE DECORATIVE ELEMENTS
   ═══════════════════════════════════════════════════════════ */

/* Top accent line on non-popular cards */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--t-border, #e2e8f0), transparent);
  border-radius: 0 0 3px 3px;
}

/* Popular card — emerald accent line */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__card--popular::after {
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
}

/* Divider under header */
[data-project="creatine-de"] .block-pricing.block-pricing .pr__header::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  margin: 24px auto 0;
  border-radius: 1px;
}
/* ═══ BLOCK: pricing-dark ═══ */
/* ═══════════════════════════════════════════════════════════
   PRICING — Kreatin Kaufen (creatine-de)
   3-tier pricing with popular card elevated + emerald glow
   ═══════════════════════════════════════════════════════════ */

/* ── Section Base ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark {
  background: #0F172A;
  padding: clamp(64px, 8vw, 96px) 24px;
  font-family: var(--t-font-body, 'Inter', system-ui, -apple-system, sans-serif);
  position: relative;
}

/* ── Inner Container ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__header {
  text-align: center;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__label {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__title {
  font-family: var(--t-font-heading, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 560px;
}

/* ── Grid Layout — 3 columns ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* ── Card Base ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card {
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Card Hover ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.06),
    0 24px 48px rgba(15, 23, 42, 0.04);
}

/* ── Popular Card — Elevated with Emerald Glow ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card--popular {
  border: 2px solid var(--t-accent, #10B981);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.1),
    0 8px 24px rgba(16, 185, 129, 0.12),
    0 24px 48px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card--popular:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.15),
    0 12px 32px rgba(16, 185, 129, 0.2),
    0 32px 64px rgba(16, 185, 129, 0.1);
}

/* ── Popular Badge ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* ── Plan Name ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__plan-name {
  font-family: var(--t-font-heading, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

/* ── Plan Description ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__plan-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 24px;
  line-height: 1.5;
}

/* ── Price Display ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__price-amount {
  font-family: var(--t-font-heading, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Popular card price — emerald accent */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card--popular .pr__price-amount {
  background: linear-gradient(135deg, #10B981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__price-period {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* ── Monthly Equivalent ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__price-equiv {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 24px;
  line-height: 1.4;
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__price-equiv strong {
  color: var(--t-accent, #10B981);
  font-weight: 600;
}

/* ── Feature List ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  flex-grow: 1;
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__feat:last-child {
  border-bottom: none;
}

/* ── Checkmark Icons ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__feat svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--t-accent, #10B981);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Emerald checkmark background circle */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__feat::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  flex-shrink: 0;
  pointer-events: none;
}

/* Position relative for the ::before */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__feat {
  position: relative;
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__feat::before {
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── CTA Buttons ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--t-font-body, 'Inter', system-ui, -apple-system, sans-serif);
  border: none;
  margin-top: auto;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__btn:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 2px;
}

/* Outline button */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__btn--outline {
  background: #0F172A;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__btn--outline:hover {
  border-color: var(--t-accent, #10B981);
  color: var(--t-accent, #10B981);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.15);
  transform: translateY(-1px);
}

/* Primary button (popular card) */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__btn--primary {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
}

/* ── Guarantee Footer ── */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__guarantee {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.5;
}

[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__guarantee svg {
  width: 18px;
  height: 18px;
  stroke: var(--t-accent, #10B981);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark {
    padding: clamp(48px, 6vw, 64px) 20px;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__header {
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 24px;
  }

  /* Popular card: reset scale, move to top */
  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card--popular {
    transform: none;
    order: -1;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card--popular:hover {
    transform: translateY(-4px);
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__price-amount {
    font-size: 40px;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card {
    padding: 32px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (480px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark {
    padding: 40px 16px;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__grid {
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card {
    padding: 28px 20px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__title {
    font-size: clamp(24px, 5vw, 32px);
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__subtitle {
    font-size: 15px;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__price-amount {
    font-size: 36px;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__plan-name {
    font-size: 18px;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__feat {
    font-size: 13px;
    padding: 8px 0;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__guarantee {
    margin-top: 32px;
    font-size: 13px;
    flex-direction: column;
    gap: 4px;
  }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card,
  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card--popular,
  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__btn,
  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__btn--outline,
  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__btn--primary {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card--popular {
    transform: none;
  }

  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card:hover,
  [data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card--popular:hover {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   SUBTLE DECORATIVE ELEMENTS
   ═══════════════════════════════════════════════════════════ */

/* Top accent line on non-popular cards */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 0 0 3px 3px;
}

/* Popular card — emerald accent line */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__card--popular::after {
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
}

/* Divider under header */
[data-project="creatine-de"] .block-pricing-dark.block-pricing-dark .pr__header::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  margin: 24px auto 0;
  border-radius: 1px;
}

/* ═══ BLOCK: privacy-page ═══ */
/* ============================================================
   PRIVACY-PAGE — Creatine DE
   DSGVO-compliant Datenschutzerklärung, light text page
   ============================================================ */

[data-project="creatine-de"] .block-privacy-page.block-privacy-page {
  background: var(--t-bg, #ffffff);
  padding: var(--t-section-y, 5rem) var(--t-content-gap, 2rem);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__container {
  max-width: 780px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 2.25rem;
  font-weight: var(--t-heading-weight, 700);
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__updated {
  font-size: 0.875rem;
  color: var(--t-muted, #64748b);
  margin: 0 0 3rem;
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__section {
  margin-bottom: 2.5rem;
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  margin: 0 0 1rem;
  line-height: 1.3;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--t-border, #e2e8f0);
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--t-text, #1e293b);
  margin: 0 0 1rem;
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__text:last-child {
  margin-bottom: 0;
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__list {
  margin: 0.75rem 0 1rem 1.25rem;
  padding: 0;
  list-style: none;
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__list-item {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--t-text, #1e293b);
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__link {
  color: var(--t-accent, #10B981);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

[data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__link:hover {
  color: var(--t-heading, #0F172A);
}

/* ── Responsive 768px ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-privacy-page.block-privacy-page {
    padding: 3rem 1.25rem;
  }

  [data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__heading {
    font-size: 1.15rem;
  }
}

/* ── Responsive 480px ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-privacy-page.block-privacy-page {
    padding: 2.5rem 1rem;
  }

  [data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__updated {
    margin-bottom: 2rem;
  }

  [data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__section {
    margin-bottom: 2rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-privacy-page.block-privacy-page .pp__link {
    transition: none;
  }
}

/* ═══ BLOCK: privacy-page-dark ═══ */
/* ============================================================
   PRIVACY-PAGE — Creatine DE
   DSGVO-compliant Datenschutzerklärung, light text page
   ============================================================ */

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark {
  background: #0F172A;
  padding: var(--t-section-y, 5rem) var(--t-content-gap, 2rem);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__container {
  max-width: 780px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 2.25rem;
  font-weight: var(--t-heading-weight, 700);
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__updated {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 3rem;
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__section {
  margin-bottom: 2.5rem;
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.3;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__text:last-child {
  margin-bottom: 0;
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__list {
  margin: 0.75rem 0 1rem 1.25rem;
  padding: 0;
  list-style: none;
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__list-item {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__link {
  color: var(--t-accent, #10B981);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

[data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__link:hover {
  color: #ffffff;
}

/* ── Responsive 768px ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark {
    padding: 3rem 1.25rem;
  }

  [data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__heading {
    font-size: 1.15rem;
  }
}

/* ── Responsive 480px ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark {
    padding: 2.5rem 1rem;
  }

  [data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__updated {
    margin-bottom: 2rem;
  }

  [data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__section {
    margin-bottom: 2rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-privacy-page-dark.block-privacy-page-dark .pp__link {
    transition: none;
  }
}


/* ═══ BLOCK: process-steps ═══ */
/* ═══════════════════════════════════════════════════════════════════════════
   PROCESS-STEPS — Kreatin Supplementierung in 4 Schritten
   Project: creatine-de | Accent: #10B981 (emerald)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Section ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps {
  background: var(--t-bg, #ffffff);
  padding: clamp(64px, 8vw, 96px) 24px;
  position: relative;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

/* Subtle top divider */
[data-project="creatine-de"] .block-process-steps.block-process-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* ── Header ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__header {
  text-align: center;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__overline {
  color: var(--t-accent, #10B981);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1.15;
}

[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__subtitle {
  font-size: 1.05rem;
  color: var(--t-muted, #64748b);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Track — wrapper for connector + steps ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__track {
  position: relative;
}

/* ── Horizontal connector line behind step numbers ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__connector {
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(16, 185, 129, 0.12),
    rgba(16, 185, 129, 0.35),
    rgba(16, 185, 129, 0.35),
    rgba(16, 185, 129, 0.12)
  );
  z-index: 0;
}

/* Dashed pattern overlay on connector */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__connector::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    var(--t-bg, #ffffff) 8px,
    var(--t-bg, #ffffff) 14px
  );
}

/* ── Steps grid — 4 columns ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* ── Individual step ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 8px;
}

/* ── Number wrapper — circle with emerald gradient + glow ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__number-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.12);
  transition:
    transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Subtle ring around number */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__number-wrap::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.1);
  transition: border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Glow pulse behind number on hover */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__number-wrap::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step:hover .ps__number-wrap {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 8px 20px rgba(16, 185, 129, 0.3),
    0 16px 40px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step:hover .ps__number-wrap::before {
  border-color: rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step:hover .ps__number-wrap::after {
  opacity: 1;
}

/* ── Number text ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
}

/* ── Icon container ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--t-radius-md, 12px);
  background: rgba(16, 185, 129, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition:
    background 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step:hover .ps__icon {
  background: rgba(16, 185, 129, 0.12);
  transform: scale(1.08);
}

[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__icon svg {
  width: 22px;
  height: 22px;
  color: var(--t-accent, #10B981);
}

/* ── Step title ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ── Step description ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--t-muted, #64748b);
  max-width: 240px;
  margin: 0;
}

/* ── Scroll-reveal initial state (driven by script.js) ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step[data-reveal].ps--hidden {
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step[data-reveal].ps--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Focus-visible for accessibility ── */
[data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 4px;
  border-radius: var(--t-radius-md, 12px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (768px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__connector {
    display: none;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step-desc {
    max-width: 280px;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__header {
    margin-bottom: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (480px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-process-steps.block-process-steps {
    padding: clamp(48px, 6vw, 64px) 16px;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__steps {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 340px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step-desc {
    max-width: 320px;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__subtitle {
    font-size: 0.95rem;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__number-wrap {
    width: 56px;
    height: 56px;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__number {
    font-size: 1.3rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION — Accessibility
   ═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__number-wrap,
  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__number-wrap::before,
  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__number-wrap::after,
  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__icon,
  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step[data-reveal] {
    transition: none;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step[data-reveal].ps--hidden {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════════════════ */
@media print {
  [data-project="creatine-de"] .block-process-steps.block-process-steps {
    padding: 32px 0;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__connector {
    display: none;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__number-wrap {
    box-shadow: none;
    border: 2px solid var(--t-accent, #10B981);
  }

  [data-project="creatine-de"] .block-process-steps.block-process-steps .ps__step[data-reveal].ps--hidden {
    opacity: 1;
    transform: none;
  }
}
/* ═══ BLOCK: process-steps-dark ═══ */
/* ═══════════════════════════════════════════════════════════════════════════
   PROCESS-STEPS — Kreatin Supplementierung in 4 Schritten
   Project: creatine-de | Accent: #10B981 (emerald)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Section ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark {
  background: #0F172A;
  padding: clamp(64px, 8vw, 96px) 24px;
  position: relative;
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

/* Subtle top divider */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--t-accent, #10B981), transparent);
  border-radius: 1px;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* ── Header ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__header {
  text-align: center;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__overline {
  color: var(--t-accent, #10B981);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1.15;
}

[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Track — wrapper for connector + steps ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__track {
  position: relative;
}

/* ── Horizontal connector line behind step numbers ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__connector {
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(16, 185, 129, 0.12),
    rgba(16, 185, 129, 0.35),
    rgba(16, 185, 129, 0.35),
    rgba(16, 185, 129, 0.12)
  );
  z-index: 0;
}

/* Dashed pattern overlay on connector */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__connector::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    var(--t-bg, #ffffff) 8px,
    var(--t-bg, #ffffff) 14px
  );
}

/* ── Steps grid — 4 columns ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* ── Individual step ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 8px;
}

/* ── Number wrapper — circle with emerald gradient + glow ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__number-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.12);
  transition:
    transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Subtle ring around number */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__number-wrap::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.1);
  transition: border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Glow pulse behind number on hover */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__number-wrap::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step:hover .ps__number-wrap {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 8px 20px rgba(16, 185, 129, 0.3),
    0 16px 40px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step:hover .ps__number-wrap::before {
  border-color: rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step:hover .ps__number-wrap::after {
  opacity: 1;
}

/* ── Number text ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
}

/* ── Icon container ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--t-radius-md, 12px);
  background: rgba(16, 185, 129, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition:
    background 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step:hover .ps__icon {
  background: rgba(16, 185, 129, 0.12);
  transform: scale(1.08);
}

[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__icon svg {
  width: 22px;
  height: 22px;
  color: var(--t-accent, #10B981);
}

/* ── Step title ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ── Step description ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 240px;
  margin: 0;
}

/* ── Scroll-reveal initial state (driven by script.js) ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step[data-reveal].ps--hidden {
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step[data-reveal].ps--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Focus-visible for accessibility ── */
[data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 4px;
  border-radius: var(--t-radius-md, 12px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (768px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__connector {
    display: none;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step-desc {
    max-width: 280px;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__header {
    margin-bottom: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (480px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark {
    padding: clamp(48px, 6vw, 64px) 16px;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__steps {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 340px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step-desc {
    max-width: 320px;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__subtitle {
    font-size: 0.95rem;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__number-wrap {
    width: 56px;
    height: 56px;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__number {
    font-size: 1.3rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION — Accessibility
   ═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__number-wrap,
  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__number-wrap::before,
  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__number-wrap::after,
  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__icon,
  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step[data-reveal] {
    transition: none;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step[data-reveal].ps--hidden {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════════════════ */
@media print {
  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark {
    padding: 32px 0;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__connector {
    display: none;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__number-wrap {
    box-shadow: none;
    border: 2px solid var(--t-accent, #10B981);
  }

  [data-project="creatine-de"] .block-process-steps-dark.block-process-steps-dark .ps__step[data-reveal].ps--hidden {
    opacity: 1;
    transform: none;
  }
}

/* ═══ BLOCK: quote-highlight ═══ */
/* ============================================================
   QUOTE-HIGHLIGHT — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark cinematic quote spotlight with oversized typography,
   ambient glow, glassmorphism highlight cards, verified
   expert attribution. Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & accent lines
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--t-accent, #10B981);
  opacity: 0.07;
  animation: qhGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__glow--2 {
  width: 350px;
  height: 350px;
  bottom: -10%;
  right: 10%;
  background: var(--t-accent, #10B981);
  opacity: 0.04;
  animation: qhGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes qhGlow1 {
  0% { transform: translateX(-50%) translate(0, 0) scale(1); }
  100% { transform: translateX(-50%) translate(30px, 20px) scale(1.1); }
}

@keyframes qhGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-25px, -15px) scale(1.08); }
}

/* ── Accent lines ── */
[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__line {
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  transform: translateY(-50%);
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__line--left {
  left: 0;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__line--right {
  right: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__eyebrow-dash {
  width: 24px;
  height: 1px;
  background: var(--t-accent, #10B981);
  opacity: 0.5;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   QUOTE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__quote-wrap {
  position: relative;
  margin-bottom: clamp(36px, 5vw, 56px);
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__quote-mark {
  color: var(--t-accent, #10B981);
  opacity: 0.15;
  line-height: 1;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__quote-mark--open {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__quote-mark--close {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__quote {
  margin: 0;
  padding: 0;
  border: none;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__quote-text {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* ══════════════════════════════════════
   ATTRIBUTION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__author-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__author-role {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__verified-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__verified-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   HIGHLIGHT CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__highlight-value {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-accent, #10B981);
  line-height: 1;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__highlight-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  text-align: center;
}

/* ══════════════════════════════════════
   SOURCE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__source-icon {
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__source-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__line {
    display: none;
  }

  [data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__attribution {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__author-info {
    text-align: center;
  }

  [data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__source {
    flex-direction: column;
    text-align: center;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-quote-highlight.block-quote-highlight {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  [data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__highlight-card {
    padding: 18px 12px;
  }

  [data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__quote-mark svg {
    width: 32px;
    height: 32px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-quote-highlight.block-quote-highlight .qh__highlight-card {
    transition: none;
  }
}
/* ═══ BLOCK: quote-highlight-light ═══ */
/* ============================================================
   QUOTE-HIGHLIGHT — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark cinematic quote spotlight with oversized typography,
   ambient glow, glassmorphism highlight cards, verified
   expert attribution. Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & accent lines
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--t-accent, #10B981);
  opacity: 0.07;
  animation: qhGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__glow--2 {
  width: 350px;
  height: 350px;
  bottom: -10%;
  right: 10%;
  background: var(--t-accent, #10B981);
  opacity: 0.04;
  animation: qhGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes qhGlow1 {
  0% { transform: translateX(-50%) translate(0, 0) scale(1); }
  100% { transform: translateX(-50%) translate(30px, 20px) scale(1.1); }
}

@keyframes qhGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-25px, -15px) scale(1.08); }
}

/* ── Accent lines ── */
[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__line {
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  transform: translateY(-50%);
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__line--left {
  left: 0;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__line--right {
  right: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
}

/* ══════════════════════════════════════
   EYEBROW
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__eyebrow-dash {
  width: 24px;
  height: 1px;
  background: var(--t-accent, #10B981);
  opacity: 0.5;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   QUOTE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__quote-wrap {
  position: relative;
  margin-bottom: clamp(36px, 5vw, 56px);
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__quote-mark {
  color: var(--t-accent, #10B981);
  opacity: 0.15;
  line-height: 1;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__quote-mark--open {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__quote-mark--close {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__quote {
  margin: 0;
  padding: 0;
  border: none;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__quote-text {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.015em;
  color: var(--t-text, #1e293b);
  margin: 0;
}

/* ══════════════════════════════════════
   ATTRIBUTION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__author-role {
  font-size: 0.8125rem;
  color: var(--t-muted, #64748b);
  font-weight: 400;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__verified-icon {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__verified-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   HIGHLIGHT CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__highlight-value {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-accent, #10B981);
  line-height: 1;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__highlight-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.02em;
  text-align: center;
}

/* ══════════════════════════════════════
   SOURCE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__source-icon {
  color: rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__source-text {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.30);
  font-style: italic;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__line {
    display: none;
  }

  [data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__attribution {
    flex-direction: column;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__author-info {
    text-align: center;
  }

  [data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__source {
    flex-direction: column;
    text-align: center;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  [data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__highlight-card {
    padding: 18px 12px;
  }

  [data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__quote-mark svg {
    width: 32px;
    height: 32px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-quote-highlight-light.block-quote-highlight-light .qh__highlight-card {
    transition: none;
  }
}

/* ═══ BLOCK: related-articles ═══ */
/* ============================================================
   RELATED-ARTICLES — Creatine-DE
   Layer 3: Per-block premium overrides
   3-column related articles grid with card hover lift,
   tag badges, gradient accents, stagger reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-related-articles.block-related-articles {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* subtle top border accent */
[data-project="creatine-de"] .block-related-articles.block-related-articles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--t-border, #e2e8f0) 30%, var(--t-border, #e2e8f0) 70%, transparent);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__header {
  text-align: center;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__subheading {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.10),
    0 0 0 1px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* ── Card image ── */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e8f0;
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card:hover .ra__card-image img {
  transform: scale(1.05);
}

/* ── Tag badge ── */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-radius: 100px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-body {
  padding: 24px 24px 16px;
  flex: 1;
}

/* ── Meta row ── */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__meta-dot {
  color: #cbd5e1;
}

/* ── Title ── */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--t-primary, #0F172A);
  margin: 0 0 10px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card:hover .ra__title {
  color: var(--t-accent, #10B981);
}

/* ── Excerpt ── */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Card footer ── */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 24px 24px;
  margin-top: auto;
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__arrow {
  color: var(--t-accent, #10B981);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card:hover .ra__arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   CTA — View all articles
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__cta-wrap {
  text-align: center;
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  background: transparent;
  border: 1.5px solid var(--t-accent, #10B981);
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__cta:hover {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles.block-related-articles .ra__cta:hover .ra__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-link {
    flex-direction: row;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-image {
    width: 200px;
    min-width: 200px;
    aspect-ratio: auto;
    min-height: 160px;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-body {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-footer {
    padding: 0 20px 20px;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__header {
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__tag {
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 0.6875rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-link {
    flex-direction: column;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-image {
    width: 100%;
    min-width: unset;
    aspect-ratio: 16 / 9;
    min-height: unset;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-body {
    padding: 18px 18px 12px;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-footer {
    padding: 0 18px 18px;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__excerpt {
    -webkit-line-clamp: 2;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card,
  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card-image img,
  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__title,
  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__arrow,
  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__cta,
  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-related-articles.block-related-articles .ra__card:hover .ra__card-image img {
    transform: none;
  }
}
/* ═══ BLOCK: related-articles-dark ═══ */
/* ============================================================
   RELATED-ARTICLES — Creatine-DE
   Layer 3: Per-block premium overrides
   3-column related articles grid with card hover lift,
   tag badges, gradient accents, stagger reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

/* subtle top border accent */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.08) 70%, transparent);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__header {
  text-align: center;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__subheading {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* ── Card image ── */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card:hover .ra__card-image img {
  transform: scale(1.05);
}

/* ── Tag badge ── */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-radius: 100px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-body {
  padding: 24px 24px 16px;
  flex: 1;
}

/* ── Meta row ── */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__meta-dot {
  color: #cbd5e1;
}

/* ── Title ── */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--t-primary, #0F172A);
  margin: 0 0 10px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card:hover .ra__title {
  color: var(--t-accent, #10B981);
}

/* ── Excerpt ── */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Card footer ── */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 24px 24px;
  margin-top: auto;
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__arrow {
  color: var(--t-accent, #10B981);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card:hover .ra__arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   CTA — View all articles
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__cta-wrap {
  text-align: center;
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  background: transparent;
  border: 1.5px solid var(--t-accent, #10B981);
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__cta:hover {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__cta:hover .ra__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-link {
    flex-direction: row;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-image {
    width: 200px;
    min-width: 200px;
    aspect-ratio: auto;
    min-height: 160px;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-body {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-footer {
    padding: 0 20px 20px;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__header {
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__tag {
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 0.6875rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-link {
    flex-direction: column;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-image {
    width: 100%;
    min-width: unset;
    aspect-ratio: 16 / 9;
    min-height: unset;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-body {
    padding: 18px 18px 12px;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-footer {
    padding: 0 18px 18px;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__excerpt {
    -webkit-line-clamp: 2;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card,
  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card-image img,
  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__title,
  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__arrow,
  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__cta,
  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-related-articles-dark.block-related-articles-dark .ra__card:hover .ra__card-image img {
    transform: none;
  }
}

/* ═══ BLOCK: scroll-particles-emerald ═══ */
/* SCROLL-PARTICLES-EMERALD — creatine-de */
[data-project="creatine-de"] .block-scroll-particles-emerald.block-scroll-particles-emerald { position: relative; padding: clamp(100px, 15vw, 200px) clamp(20px, 5vw, 40px); background: #0F172A; color: #fff; text-align: center; overflow: hidden; }
[data-project="creatine-de"] .block-scroll-particles-emerald.block-scroll-particles-emerald .spe__particles { position: absolute; inset: 0; pointer-events: none; }
[data-project="creatine-de"] .block-scroll-particles-emerald.block-scroll-particles-emerald .spe__svg { width: 100%; height: 100%; }
[data-project="creatine-de"] .block-scroll-particles-emerald.block-scroll-particles-emerald .spe__p { animation-name: speFloat; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
@keyframes speFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-18px) rotate(15deg); }
  50% { transform: translateY(-5px) rotate(-10deg); }
  75% { transform: translateY(-22px) rotate(8deg); }
}
[data-project="creatine-de"] .block-scroll-particles-emerald.block-scroll-particles-emerald .spe__content { position: relative; z-index: 2; }
[data-project="creatine-de"] .block-scroll-particles-emerald.block-scroll-particles-emerald .spe__eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #10B981; display: block; margin-bottom: 12px; }
[data-project="creatine-de"] .block-scroll-particles-emerald.block-scroll-particles-emerald .spe__heading { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin: 0; }
/* ═══ BLOCK: scroll-reveal-sections ═══ */
/* ============================================================
   SCROLL-REVEAL-SECTIONS — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-width scroll-reveal panels with alternating layout,
   parallax number overlays, animated stat counters,
   directional slide-in reveals, glassmorphism badges.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 24px;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__glow--1 {
  width: 500px;
  height: 500px;
  top: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: srsGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__glow--2 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: srsGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes srsGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.12); }
}

@keyframes srsGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__header {
  text-align: center;
  margin-bottom: clamp(64px, 8vw, 96px);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  opacity: 0.5;
  border-radius: 1px;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__title-gradient {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   PANELS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__sections {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section {
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section[data-srs-direction="left"] {
  transform: translateX(-40px) translateY(40px);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section[data-srs-direction="right"] {
  transform: translateX(40px) translateY(40px);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section[data-srs-direction="left"].is-revealed,
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section[data-srs-direction="right"].is-revealed {
  transform: translateX(0) translateY(0);
}

/* ── Panel Inner (2-col grid) ── */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__inner--reverse {
  direction: rtl;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__inner--reverse > * {
  direction: ltr;
}

/* ── Panel Media ── */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__media {
  position: relative;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 10;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section:hover .sr__img {
  transform: scale(1.04);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Number overlay ── */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__number {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(16, 185, 129, 0.2);
  user-select: none;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section.is-revealed .sr__number {
  animation: srsNumberFloat 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes srsNumberFloat {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   PANEL CONTENT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__text {
  font-size: clamp(0.925rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 24px;
}

/* ══════════════════════════════════════
   STAT COUNTER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__stat {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--t-accent, #10B981);
  line-height: 1;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__stat-suffix {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__stat-label {
  width: 100%;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   PANEL DIVIDER LINE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__line {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.3) 0%, transparent 100%);
}

/* ══════════════════════════════════════
   HEADER REVEAL
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__header [data-srs-item] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__header.is-revealed [data-srs-item] {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__header.is-revealed [data-srs-item]:nth-child(2) {
  transition-delay: 0.1s;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__header.is-revealed [data-srs-item]:nth-child(3) {
  transition-delay: 0.2s;
}

/* ══════════════════════════════════════
   STAGGER DELAYS PER PANEL
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section:nth-child(2) {
  transition-delay: 0.08s;
}

[data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section:nth-child(3) {
  transition-delay: 0.16s;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__inner,
  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__inner--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    direction: ltr;
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__number {
    font-size: 4rem;
    bottom: -12px;
    right: -4px;
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section[data-srs-direction="left"],
  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section[data-srs-direction="right"] {
    transform: translateY(40px);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections {
    padding: clamp(56px, 10vw, 80px) 16px;
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__badge {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__number {
    display: none;
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__stat-value {
    font-size: 1.75rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__section,
  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__header [data-srs-item],
  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__img,
  [data-project="creatine-de"] .block-scroll-reveal-sections.block-scroll-reveal-sections .sr__glow {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ═══ BLOCK: scroll-reveal-sections-light ═══ */
/* ============================================================
   SCROLL-REVEAL-SECTIONS — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-width scroll-reveal panels with alternating layout,
   parallax number overlays, animated stat counters,
   directional slide-in reveals, glassmorphism badges.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 24px;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__glow--1 {
  width: 500px;
  height: 500px;
  top: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: srsGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__glow--2 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: srsGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes srsGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.12); }
}

@keyframes srsGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__header {
  text-align: center;
  margin-bottom: clamp(64px, 8vw, 96px);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  opacity: 0.5;
  border-radius: 1px;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__title-gradient {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--t-muted, #64748b);
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   PANELS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__sections {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section {
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section[data-srs-direction="left"] {
  transform: translateX(-40px) translateY(40px);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section[data-srs-direction="right"] {
  transform: translateX(40px) translateY(40px);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section[data-srs-direction="left"].is-revealed,
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section[data-srs-direction="right"].is-revealed {
  transform: translateX(0) translateY(0);
}

/* ── Panel Inner (2-col grid) ── */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__inner--reverse {
  direction: rtl;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__inner--reverse > * {
  direction: ltr;
}

/* ── Panel Media ── */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__media {
  position: relative;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.10),
    0 12px 40px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 10;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section:hover .sr__img {
  transform: scale(1.04);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Number overlay ── */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__number {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(16, 185, 129, 0.2);
  user-select: none;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section.is-revealed .sr__number {
  animation: srsNumberFloat 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes srsNumberFloat {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   PANEL CONTENT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__text {
  font-size: clamp(0.925rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 24px;
}

/* ══════════════════════════════════════
   STAT COUNTER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__stat {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--t-accent, #10B981);
  line-height: 1;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__stat-suffix {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__stat-label {
  width: 100%;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   PANEL DIVIDER LINE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__line {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.3) 0%, transparent 100%);
}

/* ══════════════════════════════════════
   HEADER REVEAL
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__header [data-srs-item] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__header.is-revealed [data-srs-item] {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__header.is-revealed [data-srs-item]:nth-child(2) {
  transition-delay: 0.1s;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__header.is-revealed [data-srs-item]:nth-child(3) {
  transition-delay: 0.2s;
}

/* ══════════════════════════════════════
   STAGGER DELAYS PER PANEL
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section:nth-child(2) {
  transition-delay: 0.08s;
}

[data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section:nth-child(3) {
  transition-delay: 0.16s;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__inner,
  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__inner--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    direction: ltr;
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__number {
    font-size: 4rem;
    bottom: -12px;
    right: -4px;
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section[data-srs-direction="left"],
  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section[data-srs-direction="right"] {
    transform: translateY(40px);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light {
    padding: clamp(56px, 10vw, 80px) 16px;
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__badge {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__number {
    display: none;
  }

  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__stat-value {
    font-size: 1.75rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__section,
  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__header [data-srs-item],
  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__img,
  [data-project="creatine-de"] .block-scroll-reveal-sections-light.block-scroll-reveal-sections-light .sr__glow {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══ BLOCK: scroll-reveal-wirkung ═══ */
/* SCROLL-REVEAL-WIRKUNG — creatine-de */
[data-project="creatine-de"] .block-scroll-reveal-wirkung.block-scroll-reveal-wirkung { padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 40px); background: #f0fdf4; }
[data-project="creatine-de"] .block-scroll-reveal-wirkung.block-scroll-reveal-wirkung .srw__inner { max-width: 720px; margin: 0 auto; }
[data-project="creatine-de"] .block-scroll-reveal-wirkung.block-scroll-reveal-wirkung .srw__heading { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: #0F172A; text-align: center; margin: 0 0 56px; }
[data-project="creatine-de"] .block-scroll-reveal-wirkung.block-scroll-reveal-wirkung .srw__item { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid #0F172A08; opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: var(--srw-delay, 0s); }
[data-project="creatine-de"] .block-scroll-reveal-wirkung.block-scroll-reveal-wirkung .srw__item.srw__item--visible { opacity: 1; transform: translateY(0); }
[data-project="creatine-de"] .block-scroll-reveal-wirkung.block-scroll-reveal-wirkung .srw__icon { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: #10B98110; border-radius: 12px; }
[data-project="creatine-de"] .block-scroll-reveal-wirkung.block-scroll-reveal-wirkung .srw__item-title { font-size: 1.1rem; font-weight: 600; color: #0F172A; margin: 0 0 6px; }
[data-project="creatine-de"] .block-scroll-reveal-wirkung.block-scroll-reveal-wirkung .srw__item-text { font-size: 0.9rem; color: #0F172A; opacity: 0.65; line-height: 1.6; margin: 0; }
/* ═══ BLOCK: scroll-reveal-wirkung-dark ═══ */
/* SCROLL-REVEAL-WIRKUNG — creatine-de */
[data-project="creatine-de"] .block-scroll-reveal-wirkung-dark.block-scroll-reveal-wirkung-dark { padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 40px); background: #f0fdf4; }
[data-project="creatine-de"] .block-scroll-reveal-wirkung-dark.block-scroll-reveal-wirkung-dark .srw__inner { max-width: 720px; margin: 0 auto; }
[data-project="creatine-de"] .block-scroll-reveal-wirkung-dark.block-scroll-reveal-wirkung-dark .srw__heading { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: #ffffff; text-align: center; margin: 0 0 56px; }
[data-project="creatine-de"] .block-scroll-reveal-wirkung-dark.block-scroll-reveal-wirkung-dark .srw__item { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid #0F172A08; opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: var(--srw-delay, 0s); }
[data-project="creatine-de"] .block-scroll-reveal-wirkung-dark.block-scroll-reveal-wirkung-dark .srw__item.srw__item--visible { opacity: 1; transform: translateY(0); }
[data-project="creatine-de"] .block-scroll-reveal-wirkung-dark.block-scroll-reveal-wirkung-dark .srw__icon { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: #10B98110; border-radius: 12px; }
[data-project="creatine-de"] .block-scroll-reveal-wirkung-dark.block-scroll-reveal-wirkung-dark .srw__item-title { font-size: 1.1rem; font-weight: 600; color: #ffffff; margin: 0 0 6px; }
[data-project="creatine-de"] .block-scroll-reveal-wirkung-dark.block-scroll-reveal-wirkung-dark .srw__item-text { font-size: 0.9rem; color: #ffffff; opacity: 0.65; line-height: 1.6; margin: 0; }

/* ═══ BLOCK: search-results ═══ */
/* ============================================================
   SEARCH-RESULTS — Creatine DE
   Search input + result cards, light page
   ============================================================ */

[data-project="creatine-de"] .block-search-results.block-search-results {
  background: var(--t-bg, #ffffff);
  padding: var(--t-section-y, 5rem) var(--t-content-gap, 2rem);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__container {
  max-width: 780px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 2.25rem;
  font-weight: var(--t-heading-weight, 700);
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__subtitle {
  font-size: 1rem;
  color: var(--t-muted, #64748b);
  margin: 0 0 2rem;
}

/* ── Search box ── */
[data-project="creatine-de"] .block-search-results.block-search-results .sr__search-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--t-surface, #f8fafb);
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: var(--t-radius-md, 12px);
  padding: 4px 4px 4px 16px;
  margin-bottom: 2.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__search-box:focus-within {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__search-icon {
  flex-shrink: 0;
  color: var(--t-muted, #64748b);
  width: 20px;
  height: 20px;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--t-text, #1e293b);
  padding: 12px;
  outline: none;
  min-width: 0;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__input::placeholder {
  color: var(--t-muted, #64748b);
  opacity: 0.7;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__btn {
  flex-shrink: 0;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border: none;
  border-radius: var(--t-radius-sm, 8px);
  padding: 10px 24px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ── Results ── */
[data-project="creatine-de"] .block-search-results.block-search-results .sr__results-count {
  font-size: 0.85rem;
  color: var(--t-muted, #64748b);
  margin: 0 0 1.5rem;
  font-weight: 500;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__card {
  border: 1px solid var(--t-border, #e2e8f0);
  border-radius: var(--t-radius-md, 12px);
  margin-bottom: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__card:hover {
  border-color: var(--t-accent, #10B981);
  box-shadow: var(--t-shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__card-link {
  display: block;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__card-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__card-excerpt {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--t-text, #1e293b);
  margin: 0 0 0.5rem;
}

[data-project="creatine-de"] .block-search-results.block-search-results .sr__card-url {
  font-size: 0.78rem;
  color: var(--t-muted, #64748b);
}

/* ── Responsive 768px ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-search-results.block-search-results {
    padding: 3rem 1.25rem;
  }

  [data-project="creatine-de"] .block-search-results.block-search-results .sr__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-search-results.block-search-results .sr__search-box {
    flex-wrap: wrap;
    padding: 8px;
  }

  [data-project="creatine-de"] .block-search-results.block-search-results .sr__search-icon {
    display: none;
  }

  [data-project="creatine-de"] .block-search-results.block-search-results .sr__input {
    width: 100%;
    padding: 10px;
  }

  [data-project="creatine-de"] .block-search-results.block-search-results .sr__btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Responsive 480px ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-search-results.block-search-results {
    padding: 2.5rem 1rem;
  }

  [data-project="creatine-de"] .block-search-results.block-search-results .sr__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-search-results.block-search-results .sr__card-link {
    padding: 1rem;
  }

  [data-project="creatine-de"] .block-search-results.block-search-results .sr__card-title {
    font-size: 1rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-search-results.block-search-results .sr__card,
  [data-project="creatine-de"] .block-search-results.block-search-results .sr__btn,
  [data-project="creatine-de"] .block-search-results.block-search-results .sr__search-box {
    transition: none;
  }
}

/* ═══ BLOCK: search-results-dark ═══ */
/* ============================================================
   SEARCH-RESULTS — Creatine DE
   Search input + result cards, light page
   ============================================================ */

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark {
  background: #0F172A;
  padding: var(--t-section-y, 5rem) var(--t-content-gap, 2rem);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__container {
  max-width: 780px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 2.25rem;
  font-weight: var(--t-heading-weight, 700);
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 2rem;
}

/* ── Search box ── */
[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__search-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--t-radius-md, 12px);
  padding: 4px 4px 4px 16px;
  margin-bottom: 2.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__search-box:focus-within {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__search-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  width: 20px;
  height: 20px;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 12px;
  outline: none;
  min-width: 0;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.7;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__btn {
  flex-shrink: 0;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border: none;
  border-radius: var(--t-radius-sm, 8px);
  padding: 10px 24px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ── Results ── */
[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__results-count {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1.5rem;
  font-weight: 500;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--t-radius-md, 12px);
  margin-bottom: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__card:hover {
  border-color: var(--t-accent, #10B981);
  box-shadow: var(--t-shadow-md, 0 4px 12px rgba(255, 255, 255, 0.08));
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__card-link {
  display: block;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__card-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__card-excerpt {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.5rem;
}

[data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__card-url {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Responsive 768px ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark {
    padding: 3rem 1.25rem;
  }

  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__search-box {
    flex-wrap: wrap;
    padding: 8px;
  }

  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__search-icon {
    display: none;
  }

  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__input {
    width: 100%;
    padding: 10px;
  }

  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Responsive 480px ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark {
    padding: 2.5rem 1rem;
  }

  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__card-link {
    padding: 1rem;
  }

  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__card-title {
    font-size: 1rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__card,
  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__btn,
  [data-project="creatine-de"] .block-search-results-dark.block-search-results-dark .sr__search-box {
    transition: none;
  }
}


/* ═══ BLOCK: sectoren-grid ═══ */
/* ============================================================
   SECTOREN-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   6-card sector grid with icon accents, stat badges, hover
   elevation, ambient glow, staggered scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__glow--1 {
  width: 550px;
  height: 550px;
  top: -18%;
  left: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: sgGlow1 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__glow--2 {
  width: 450px;
  height: 450px;
  bottom: -12%;
  right: -4%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: sgGlow2 24s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes sgGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(35px, 20px) scale(1.1); }
}

@keyframes sgGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-25px, -18px) scale(1.06); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Card grid — 3 columns, 6 items ── */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 32px 28px 28px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(16, 185, 129, 0.08),
    0 0 0 1px rgba(16, 185, 129, 0.08);
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__card:hover .sg__card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0.08) 100%);
}

/* ── Card title ── */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}

/* ── Card text ── */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 auto;
  padding-bottom: 20px;
}

/* ── Card stat badge ── */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__card-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__stat-label {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ── Footer note ── */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__footer {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__footer-note {
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid [data-sg-item] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid [data-sg-item].sg--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   TABLET — max 768px
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  [data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__card {
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

/* ══════════════════════════════════════
   MOBILE — max 480px
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__card {
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__header {
    margin-bottom: 36px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid .sg__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-sectoren-grid.block-sectoren-grid [data-sg-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ═══ BLOCK: sectoren-grid-dark ═══ */
/* ============================================================
   SECTOREN-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   6-card sector grid with icon accents, stat badges, hover
   elevation, ambient glow, staggered scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__glow--1 {
  width: 550px;
  height: 550px;
  top: -18%;
  left: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: sgGlow1 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__glow--2 {
  width: 450px;
  height: 450px;
  bottom: -12%;
  right: -4%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: sgGlow2 24s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes sgGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(35px, 20px) scale(1.1); }
}

@keyframes sgGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-25px, -18px) scale(1.06); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Card grid — 3 columns, 6 items ── */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 32px 28px 28px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(16, 185, 129, 0.08),
    0 0 0 1px rgba(16, 185, 129, 0.08);
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__card:hover .sg__card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0.08) 100%);
}

/* ── Card title ── */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}

/* ── Card text ── */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 auto;
  padding-bottom: 20px;
}

/* ── Card stat badge ── */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__card-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__stat-label {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ── Footer note ── */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__footer {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__footer-note {
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark [data-sg-item] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark [data-sg-item].sg--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   TABLET — max 768px
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  [data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__card {
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

/* ══════════════════════════════════════
   MOBILE — max 480px
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__card {
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__header {
    margin-bottom: 36px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark .sg__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-sectoren-grid-dark.block-sectoren-grid-dark [data-sg-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══ BLOCK: service-comparison ═══ */
/* ============================================================
   SERVICE-COMPARISON — Creatine-DE
   Layer 3: Per-block premium overrides
   Comparison table with highlighted premium column, ambient
   glow backdrop, staggered row reveals, glassmorphism badges.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: scGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: scGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes scGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes scGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   TABLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__table-wrap {
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 12px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__table {
  width: 100%;
}

/* ── Row ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--t-border, #e2e8f0);
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__row:not(.sc__row--header):hover {
  background: rgba(16, 185, 129, 0.03);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__row--last {
  border-bottom: none;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__row--header {
  background: var(--t-primary, #0F172A);
}

/* ── Cell ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  gap: 4px;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cell--feature {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cell--standard {
  text-align: center;
  align-items: center;
  border-left: 1px solid var(--t-border, #e2e8f0);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cell--premium {
  text-align: center;
  align-items: center;
  border-left: 1px solid var(--t-border, #e2e8f0);
  background: rgba(16, 185, 129, 0.04);
}

/* ── Header cells ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__row--header .sc__cell--feature {
  padding: 24px;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__row--header .sc__cell--standard {
  border-left-color: rgba(255, 255, 255, 0.1);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__row--header .sc__cell--premium {
  background: rgba(16, 185, 129, 0.15);
  border-left-color: rgba(255, 255, 255, 0.1);
  position: relative;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__feature-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__col-subtitle {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 2px;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__badge-recommended {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ── Feature column ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__feature-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--t-primary, #0F172A);
}

/* ── Values ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__value {
  font-size: 0.9375rem;
  font-weight: 600;
  display: block;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__value--neutral {
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__value--highlight {
  color: var(--t-accent, #10B981);
}

/* ── Check icons ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__check--yes {
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__check--no {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__check--warn {
  background: rgba(245, 158, 11, 0.10);
  color: #f59e0b;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__check-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--t-muted, #64748b);
  margin-top: 4px;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(32px, 4vw, 48px);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__footer-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__footer-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__footer-text {
  display: block;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--t-muted, #64748b);
}

/* ── CTA Button ── */
[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cta:hover .sc__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cell {
    padding: 16px 12px;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__feature-icon {
    display: none;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__feature-text {
    font-size: 0.8125rem;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__col-title {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__value {
    font-size: 0.8125rem;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__check-label {
    font-size: 0.75rem;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__footer {
    flex-direction: column;
    text-align: center;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__footer-card {
    flex-direction: column;
    align-items: center;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__row {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--t-border, #e2e8f0);
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__row--header {
    display: none;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cell {
    padding: 4px 0;
    border-left: none;
    background: transparent;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cell--feature {
    margin-bottom: 8px;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cell--standard,
  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cell--premium {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-align: left;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cell--standard::before {
    content: 'Standard: ';
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--t-muted, #64748b);
    min-width: 72px;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cell--premium::before {
    content: 'Creapure®: ';
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--t-accent, #10B981);
    min-width: 72px;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__feature-icon {
    display: flex;
    width: 32px;
    height: 32px;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cta {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__badge-recommended {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__glow--1,
  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cta {
    transition: none;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-service-comparison.block-service-comparison .sc__row {
    transition: none;
  }
}
/* ═══ BLOCK: service-comparison-dark ═══ */
/* ============================================================
   SERVICE-COMPARISON — Creatine-DE
   Layer 3: Per-block premium overrides
   Comparison table with highlighted premium column, ambient
   glow backdrop, staggered row reveals, glassmorphism badges.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: scGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: scGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes scGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes scGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ══════════════════════════════════════
   TABLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__table-wrap {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.08),
    0 12px 40px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__table {
  width: 100%;
}

/* ── Row ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__row:not(.sc__row--header):hover {
  background: rgba(16, 185, 129, 0.03);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__row--last {
  border-bottom: none;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__row--header {
  background: var(--t-primary, #0F172A);
}

/* ── Cell ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  gap: 4px;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cell--feature {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cell--standard {
  text-align: center;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cell--premium {
  text-align: center;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 185, 129, 0.04);
}

/* ── Header cells ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__row--header .sc__cell--feature {
  padding: 24px;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__row--header .sc__cell--standard {
  border-left-color: rgba(255, 255, 255, 0.1);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__row--header .sc__cell--premium {
  background: rgba(16, 185, 129, 0.15);
  border-left-color: rgba(255, 255, 255, 0.1);
  position: relative;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__feature-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__col-subtitle {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 2px;
}

/* ── Badge ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__badge-recommended {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ── Feature column ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__feature-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--t-primary, #0F172A);
}

/* ── Values ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__value {
  font-size: 0.9375rem;
  font-weight: 600;
  display: block;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__value--neutral {
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__value--highlight {
  color: var(--t-accent, #10B981);
}

/* ── Check icons ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__check--yes {
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__check--no {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__check--warn {
  background: rgba(245, 158, 11, 0.10);
  color: #f59e0b;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__check-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(32px, 4vw, 48px);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__footer-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__footer-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__footer-text {
  display: block;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* ── CTA Button ── */
[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cta:hover .sc__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cell {
    padding: 16px 12px;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__feature-icon {
    display: none;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__feature-text {
    font-size: 0.8125rem;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__col-title {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__value {
    font-size: 0.8125rem;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__check-label {
    font-size: 0.75rem;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__footer {
    flex-direction: column;
    text-align: center;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__footer-card {
    flex-direction: column;
    align-items: center;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__row {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__row--header {
    display: none;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cell {
    padding: 4px 0;
    border-left: none;
    background: transparent;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cell--feature {
    margin-bottom: 8px;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cell--standard,
  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cell--premium {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-align: left;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cell--standard::before {
    content: 'Standard: ';
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    min-width: 72px;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cell--premium::before {
    content: 'Creapure®: ';
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--t-accent, #10B981);
    min-width: 72px;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__feature-icon {
    display: flex;
    width: 32px;
    height: 32px;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cta {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__badge-recommended {
    display: none;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__glow--1,
  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cta {
    transition: none;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-service-comparison-dark.block-service-comparison-dark .sc__row {
    transition: none;
  }
}

/* ═══ BLOCK: services ═══ */
/* ============================================================
   SERVICES — Creatine-DE
   Layer 3: Per-block premium overrides
   4-card service grid with glassmorphism, hover elevation,
   staggered reveal, ambient glow backdrop.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-services.block-services {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-services.block-services .sv__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-services.block-services .sv__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-services.block-services .sv__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: svGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services.block-services .sv__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: svGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes svGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes svGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-services.block-services .sv__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-services.block-services .sv__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-services.block-services .sv__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-services.block-services .sv__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-services.block-services .sv__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-services.block-services .sv__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ── Card grid ── */
[data-project="creatine-de"] .block-services.block-services .sv__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 28px);
}

/* ── Card ── */
[data-project="creatine-de"] .block-services.block-services .sv__card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 40px);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
}

[data-project="creatine-de"] .block-services.block-services .sv__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(16, 185, 129, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.06);
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-services.block-services .sv__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services.block-services .sv__card:hover .sv__card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(16, 185, 129, 0.06) 100%);
}

/* ── Card typography ── */
[data-project="creatine-de"] .block-services.block-services .sv__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-services.block-services .sv__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 20px;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-services.block-services .sv__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-services.block-services .sv__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ── CTA row ── */
[data-project="creatine-de"] .block-services.block-services .sv__cta-row {
  text-align: center;
  margin-top: clamp(40px, 5vw, 56px);
}

[data-project="creatine-de"] .block-services.block-services .sv__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.04);
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services.block-services .sv__cta:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-services.block-services .sv__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services.block-services .sv__cta:hover .sv__cta-arrow {
  transform: translateX(3px);
}

/* ── Reveal animation ── */
[data-project="creatine-de"] .block-services.block-services [data-sv-item] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services.block-services [data-sv-item].sv--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Tablet ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-services.block-services .sv__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-services.block-services .sv__card {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-services.block-services .sv__title br {
    display: none;
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-services.block-services {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-services.block-services .sv__card-icon {
    width: 44px;
    height: 44px;
  }

  [data-project="creatine-de"] .block-services.block-services .sv__card-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-services.block-services .sv__glow--1,
  [data-project="creatine-de"] .block-services.block-services .sv__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-services.block-services [data-sv-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-services.block-services .sv__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-services.block-services .sv__cta {
    transition: none;
  }
}
/* ═══ BLOCK: services-carousel ═══ */
/* ============================================================
   SERVICES-CAROUSEL — Creatine-DE
   Layer 3: Per-block premium overrides
   Horizontal scroll carousel with numbered service cards,
   dot indicators, nav buttons, glassmorphism hover, staggered
   reveal. Light section (after dark services-marquee).
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: scGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: scGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes scGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes scGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__overline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  color: #475569;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Carousel track ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__carousel {
  position: relative;
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__marquee-wrap {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__marquee-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 4px 20px;
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__marquee-track::-webkit-scrollbar {
  display: none;
}

/* ── Cards ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 36px 32px 32px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06),
              0 16px 40px rgba(16, 185, 129, 0.08),
              0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #059669);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card:hover::before {
  opacity: 1;
}

/* ── Card number ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(15, 23, 42, 0.08);
  font-variant-numeric: tabular-nums;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card:hover .svc__card-num {
  color: rgba(16, 185, 129, 0.2);
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card-img {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card:hover .svc__card-img {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(16, 185, 129, 0.08));
  transform: scale(1.05);
}

/* ── Card title ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  line-height: 1.3;
}

/* ── Card text ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
  margin: 0 0 20px;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 100px;
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ── Navigation ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 40px);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  color: var(--t-primary, #0F172A);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__nav-btn:hover {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transform: scale(1.08);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__nav-btn:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 2px;
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__nav-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

/* ── Dots ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__dot:hover {
  background: rgba(16, 185, 129, 0.3);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__dot--active {
  width: 24px;
  border-radius: 4px;
  background: var(--t-accent, #10B981);
}

/* ── Scroll reveal ── */
[data-project="creatine-de"] .block-services-carousel.block-services-carousel [data-sc-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-carousel.block-services-carousel [data-sc-reveal].sc--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive: tablet ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card {
    flex: 0 0 300px;
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__title {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__marquee-wrap {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 95%, transparent 100%);
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card {
    flex: 0 0 calc(100vw - 56px);
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card-img svg {
    width: 22px;
    height: 22px;
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__nav-btn {
    width: 40px;
    height: 40px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card::before {
    transition: none;
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__card-img {
    transition: none;
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__nav-btn {
    transition: none;
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__dot {
    transition: none;
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel .svc__marquee-track {
    scroll-behavior: auto;
  }

  [data-project="creatine-de"] .block-services-carousel.block-services-carousel [data-sc-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ═══ BLOCK: services-carousel-dark ═══ */
/* ============================================================
   SERVICES-CAROUSEL — Creatine-DE
   Layer 3: Per-block premium overrides
   Horizontal scroll carousel with numbered service cards,
   dot indicators, nav buttons, glassmorphism hover, staggered
   reveal. Light section (after dark services-marquee).
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: scGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: scGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes scGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes scGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__overline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  color: #475569;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Carousel track ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__carousel {
  position: relative;
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__marquee-wrap {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__marquee-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 4px 20px;
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__marquee-track::-webkit-scrollbar {
  display: none;
}

/* ── Cards ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 36px 32px 32px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08),
              0 16px 40px rgba(16, 185, 129, 0.08),
              0 1px 3px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #059669);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card:hover::before {
  opacity: 1;
}

/* ── Card number ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(15, 23, 42, 0.08);
  font-variant-numeric: tabular-nums;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card:hover .svc__card-num {
  color: rgba(16, 185, 129, 0.2);
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card-img {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card:hover .svc__card-img {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(16, 185, 129, 0.08));
  transform: scale(1.05);
}

/* ── Card title ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  line-height: 1.3;
}

/* ── Card text ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
  margin: 0 0 20px;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 100px;
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ── Navigation ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 40px);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--t-primary, #0F172A);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__nav-btn:hover {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transform: scale(1.08);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__nav-btn:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 2px;
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__nav-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

/* ── Dots ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__dot:hover {
  background: rgba(16, 185, 129, 0.3);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__dot--active {
  width: 24px;
  border-radius: 4px;
  background: var(--t-accent, #10B981);
}

/* ── Scroll reveal ── */
[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark [data-sc-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark [data-sc-reveal].sc--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive: tablet ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card {
    flex: 0 0 300px;
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__title {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__marquee-wrap {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 95%, transparent 100%);
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card {
    flex: 0 0 calc(100vw - 56px);
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card-img svg {
    width: 22px;
    height: 22px;
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__nav-btn {
    width: 40px;
    height: 40px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card::before {
    transition: none;
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__card-img {
    transition: none;
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__nav-btn {
    transition: none;
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__dot {
    transition: none;
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark .svc__marquee-track {
    scroll-behavior: auto;
  }

  [data-project="creatine-de"] .block-services-carousel-dark.block-services-carousel-dark [data-sc-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══ BLOCK: services-dark ═══ */
/* ============================================================
   SERVICES — Creatine-DE
   Layer 3: Per-block premium overrides
   4-card service grid with glassmorphism, hover elevation,
   staggered reveal, ambient glow backdrop.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-services-dark.block-services-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: svGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: svGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes svGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes svGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ── Card grid ── */
[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 28px);
}

/* ── Card ── */
[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 40px);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(16, 185, 129, 0.08),
    0 24px 48px rgba(255, 255, 255, 0.08);
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__card:hover .sv__card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(16, 185, 129, 0.06) 100%);
}

/* ── Card typography ── */
[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
}

/* ── Card tag ── */
[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ── CTA row ── */
[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__cta-row {
  text-align: center;
  margin-top: clamp(40px, 5vw, 56px);
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.04);
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__cta:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-dark.block-services-dark .sv__cta:hover .sv__cta-arrow {
  transform: translateX(3px);
}

/* ── Reveal animation ── */
[data-project="creatine-de"] .block-services-dark.block-services-dark [data-sv-item] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-dark.block-services-dark [data-sv-item].sv--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Tablet ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-services-dark.block-services-dark .sv__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-services-dark.block-services-dark .sv__card {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-services-dark.block-services-dark .sv__title br {
    display: none;
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-services-dark.block-services-dark {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-services-dark.block-services-dark .sv__card-icon {
    width: 44px;
    height: 44px;
  }

  [data-project="creatine-de"] .block-services-dark.block-services-dark .sv__card-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-services-dark.block-services-dark .sv__glow--1,
  [data-project="creatine-de"] .block-services-dark.block-services-dark .sv__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-services-dark.block-services-dark [data-sv-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-services-dark.block-services-dark .sv__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-services-dark.block-services-dark .sv__cta {
    transition: none;
  }
}

/* ═══ BLOCK: services-hero ═══ */
/* ============================================================
   SERVICES-HERO — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-viewport hero with product stage, counter stats,
   trust bar, ambient glow backdrop, staggered reveals.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-services-hero.block-services-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 160px) 0 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__glow--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
  animation: shGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__glow--2 {
  width: 450px;
  height: 450px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: shGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__glow--3 {
  width: 350px;
  height: 350px;
  top: 40%;
  right: 20%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  animation: shGlow3 25s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes shGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.12); }
}

@keyframes shGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

@keyframes shGlow3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -25px) scale(1.06); }
}

/* ── Inner layout ── */
[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  flex: 1;
}

/* ══════════════════════════════════════
   CONTENT — left column
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: shPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes shPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__heading-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
  max-width: 520px;
}

/* ── Actions ── */
[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__btn sh__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3), 0 0 0 0 rgba(16, 185, 129, 0);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__btn sh__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4), 0 0 0 4px rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__btn-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__btn sh__btn--primary:hover .sh__btn-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__btn sh__btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__btn sh__btn--ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   VISUAL — right column: product + stats
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__parallax-wrap {
  position: relative;
  width: clamp(280px, 30vw, 400px);
  height: clamp(280px, 30vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__parallax-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__parallax-ring--outer {
  width: 100%;
  height: 100%;
  animation: shRingSpin 30s linear infinite;
  border-style: dashed;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__parallax-ring--inner {
  width: 75%;
  height: 75%;
  animation: shRingSpin 20s linear infinite reverse;
}

@keyframes shRingSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__parallax-img {
  position: relative;
  z-index: 1;
  width: 65%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__parallax-wrap:hover .sh__parallax-img {
  transform: scale(1.05) translateY(-8px);
}

/* ── Stats row ── */
[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stats {
  display: flex;
  gap: 32px;
  justify-content: center;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stat {
  text-align: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  min-width: 110px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stat:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.02em;
  line-height: 1;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stat-suffix {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   TRUST BAR — bottom strip
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__trust-bar {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__trust-item:hover {
  color: rgba(255, 255, 255, 0.9);
}

[data-project="creatine-de"] .block-services-hero.block-services-hero .sh__trust-item svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__subtitle {
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__ctas {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__parallax-wrap {
    width: 260px;
    height: 260px;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stats {
    gap: 16px;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stat {
    min-width: 90px;
    padding: 12px 14px;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stat-value {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-services-hero.block-services-hero {
    padding-top: 80px;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__heading {
    font-size: 1.875rem;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__ctas {
    flex-direction: column;
    width: 100%;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__btn sh__btn--primary,
  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__btn sh__btn--ghost {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stats {
    flex-direction: column;
    align-items: center;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stat {
    width: 100%;
    max-width: 200px;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__trust-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__glow,
  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__parallax-ring,
  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__btn sh__btn--primary,
  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__btn sh__btn--ghost,
  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__stat,
  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__parallax-img,
  [data-project="creatine-de"] .block-services-hero.block-services-hero .sh__trust-item {
    transition: none;
  }
}
/* ═══ BLOCK: services-hero-light ═══ */
/* ============================================================
   SERVICES-HERO — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-viewport hero with product stage, counter stats,
   trust bar, ambient glow backdrop, staggered reveals.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(100px, 12vw, 160px) 0 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__glow--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
  animation: shGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__glow--2 {
  width: 450px;
  height: 450px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: shGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__glow--3 {
  width: 350px;
  height: 350px;
  top: 40%;
  right: 20%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  animation: shGlow3 25s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes shGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.12); }
}

@keyframes shGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

@keyframes shGlow3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -25px) scale(1.06); }
}

/* ── Inner layout ── */
[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  flex: 1;
}

/* ══════════════════════════════════════
   CONTENT — left column
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: shPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes shPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__heading-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 32px;
  max-width: 520px;
}

/* ── Actions ── */
[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__btn sh__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3), 0 0 0 0 rgba(16, 185, 129, 0);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__btn sh__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4), 0 0 0 4px rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__btn-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__btn sh__btn--primary:hover .sh__btn-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__btn sh__btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  color: var(--t-text, #1e293b);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__btn sh__btn--ghost:hover {
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   VISUAL — right column: product + stats
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__parallax-wrap {
  position: relative;
  width: clamp(280px, 30vw, 400px);
  height: clamp(280px, 30vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__parallax-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__parallax-ring--outer {
  width: 100%;
  height: 100%;
  animation: shRingSpin 30s linear infinite;
  border-style: dashed;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__parallax-ring--inner {
  width: 75%;
  height: 75%;
  animation: shRingSpin 20s linear infinite reverse;
}

@keyframes shRingSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__parallax-img {
  position: relative;
  z-index: 1;
  width: 65%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__parallax-wrap:hover .sh__parallax-img {
  transform: scale(1.05) translateY(-8px);
}

/* ── Stats row ── */
[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stats {
  display: flex;
  gap: 32px;
  justify-content: center;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stat {
  text-align: center;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  min-width: 110px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stat:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.02em;
  line-height: 1;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stat-suffix {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   TRUST BAR — bottom strip
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__trust-bar {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__trust-item:hover {
  color: var(--t-text, #1e293b);
}

[data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__trust-item svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__subtitle {
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__ctas {
    justify-content: center;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__parallax-wrap {
    width: 260px;
    height: 260px;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stats {
    gap: 16px;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stat {
    min-width: 90px;
    padding: 12px 14px;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stat-value {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light {
    padding-top: 80px;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__heading {
    font-size: 1.875rem;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__ctas {
    flex-direction: column;
    width: 100%;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__btn sh__btn--primary,
  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__btn sh__btn--ghost {
    width: 100%;
    justify-content: center;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stats {
    flex-direction: column;
    align-items: center;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stat {
    width: 100%;
    max-width: 200px;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__trust-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__glow,
  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__parallax-ring,
  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__btn sh__btn--primary,
  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__btn sh__btn--ghost,
  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__stat,
  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__parallax-img,
  [data-project="creatine-de"] .block-services-hero-light.block-services-hero-light .sh__trust-item {
    transition: none;
  }
}

/* ═══ BLOCK: services-marquee ═══ */
/* ============================================================
   SERVICES-MARQUEE — Creatine-DE
   Layer 3: Per-block premium overrides
   Dual-row infinite scrolling marquee with glassmorphism cards,
   ambient glow, fade edges, and staggered header reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-services-marquee.block-services-marquee {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__glow--1 {
  width: 500px;
  height: 500px;
  top: -20%;
  left: 10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: smGlow1 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__glow--2 {
  width: 450px;
  height: 450px;
  bottom: -15%;
  right: 5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: smGlow2 25s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes smGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes smGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-35px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__inner {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 0 clamp(20px, 4vw, 40px);
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0;
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Marquee wrapper ── */
[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__marquee-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__marquee-wrap--reverse {
  margin-bottom: 0;
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__marquee {
  overflow: hidden;
  width: 100%;
}

/* ── Track — infinite scroll ── */
[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: smScroll 45s linear infinite;
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__marquee-wrap--reverse .sm__track {
  animation: smScrollReverse 50s linear infinite;
}

@keyframes smScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes smScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Marquee item card ── */
[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  width: 340px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08), 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ── Item icon ── */
[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.10);
  color: var(--t-accent, #10B981);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item:hover .sm__item-icon {
  background: rgba(16, 185, 129, 0.18);
  transform: scale(1.05);
}

/* ── Item body ── */
[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-text-light, #ffffff);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item-desc {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

/* ── Fade edges ── */
[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--t-dark-bg, #0d1117) 0%, transparent 100%);
}

[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--t-dark-bg, #0d1117) 0%, transparent 100%);
}

/* ── Pause on hover ── */
[data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__marquee:hover .sm__track {
  animation-play-state: paused;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-services-marquee.block-services-marquee {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item {
    width: 290px;
    padding: 20px;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item-icon {
    width: 40px;
    height: 40px;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__fade {
    width: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-services-marquee.block-services-marquee {
    padding: clamp(40px, 7vw, 64px) 0;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__header {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__title {
    font-size: 1.375rem;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item {
    width: 260px;
    padding: 16px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item-icon {
    width: 36px;
    height: 36px;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item-icon svg {
    width: 20px;
    height: 20px;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__track {
    gap: 14px;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__marquee-wrap {
    margin-bottom: 14px;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__fade {
    width: 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__track {
    animation: none !important;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__glow {
    animation: none !important;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-services-marquee.block-services-marquee .sm__item-icon {
    transition: none !important;
  }
}
/* ═══ BLOCK: services-marquee-light ═══ */
/* ============================================================
   SERVICES-MARQUEE — Creatine-DE
   Layer 3: Per-block premium overrides
   Dual-row infinite scrolling marquee with glassmorphism cards,
   ambient glow, fade edges, and staggered header reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__glow--1 {
  width: 500px;
  height: 500px;
  top: -20%;
  left: 10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: smGlow1 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__glow--2 {
  width: 450px;
  height: 450px;
  bottom: -15%;
  right: 5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: smGlow2 25s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes smGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes smGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-35px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__inner {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 0 clamp(20px, 4vw, 40px);
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0;
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Marquee wrapper ── */
[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__marquee-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__marquee-wrap--reverse {
  margin-bottom: 0;
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__marquee {
  overflow: hidden;
  width: 100%;
}

/* ── Track — infinite scroll ── */
[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: smScroll 45s linear infinite;
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__marquee-wrap--reverse .sm__track {
  animation: smScrollReverse 50s linear infinite;
}

@keyframes smScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes smScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Marquee item card ── */
[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  width: 340px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08), 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ── Item icon ── */
[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.10);
  color: var(--t-accent, #10B981);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item:hover .sm__item-icon {
  background: rgba(16, 185, 129, 0.18);
  transform: scale(1.05);
}

/* ── Item body ── */
[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-text-light, #ffffff);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item-desc {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--t-muted, #64748b);
  line-height: 1.55;
}

/* ── Fade edges ── */
[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__fade--left {
  left: 0;
  background: var(--t-surface, #f8fafb);
}

[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__fade--right {
  right: 0;
  background: var(--t-surface, #f8fafb);
}

/* ── Pause on hover ── */
[data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__marquee:hover .sm__track {
  animation-play-state: paused;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item {
    width: 290px;
    padding: 20px;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item-icon {
    width: 40px;
    height: 40px;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__fade {
    width: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light {
    padding: clamp(40px, 7vw, 64px) 0;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__header {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__title {
    font-size: 1.375rem;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item {
    width: 260px;
    padding: 16px;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item-icon {
    width: 36px;
    height: 36px;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item-icon svg {
    width: 20px;
    height: 20px;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__track {
    gap: 14px;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__marquee-wrap {
    margin-bottom: 14px;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__fade {
    width: 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__track {
    animation: none !important;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__glow {
    animation: none !important;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-services-marquee-light.block-services-marquee-light .sm__item-icon {
    transition: none !important;
  }
}

/* ═══ BLOCK: services-sticky ═══ */
/* ============================================================
   SERVICES-STICKY — Creatine-DE
   Layer 3: Per-block premium overrides
   Sticky sidebar with scrolling step cards, progress tracker,
   molecule visualization, ambient glow backdrop.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__glow--1 {
  width: 500px;
  height: 500px;
  top: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: ssGlow1 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__glow--2 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: ssGlow2 24s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ssGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}

@keyframes ssGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-25px, -15px) scale(1.06); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ── Two-column layout ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* ── Sticky column ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__sticky-col {
  position: sticky;
  top: clamp(80px, 10vw, 120px);
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__sticky-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 12px 40px rgba(0, 0, 0, 0.04);
  padding: 32px;
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__sticky-card:hover {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 20px 48px rgba(0, 0, 0, 0.06);
}

/* ── Molecule visual ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__molecule {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__molecule-svg {
  width: 120px;
  height: 120px;
  color: var(--t-accent, #10B981);
  animation: ssMoleculeFloat 6s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ssMoleculeFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-6px) rotate(3deg); }
}

/* ── Step display ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__sticky-step {
  text-align: center;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__step-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-accent, #10B981);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__step-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Progress bar ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__sticky-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__progress-track {
  flex: 1;
  height: 4px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__progress-fill {
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #059669);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__progress-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  min-width: 32px;
  text-align: right;
}

/* ── Scroll column ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__scroll-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Step cards ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__step-card {
  display: flex;
  gap: 24px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: clamp(24px, 3vw, 32px);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.03),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__step-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 6px 20px rgba(0, 0, 0, 0.07),
    0 16px 40px rgba(0, 0, 0, 0.05);
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__step-card--active {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 4px 16px rgba(16, 185, 129, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.05);
}

/* ── Card number ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__card-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 12px;
  transition:
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__step-card--active .ss__card-number {
  color: #ffffff;
  background: var(--t-accent, #10B981);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__card-body {
  flex: 1;
  min-width: 0;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 14px;
}

/* ── Tag pill ── */
[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
}

[data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: ssTagPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes ssTagPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__sticky-col {
    position: relative;
    top: 0;
  }

  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__sticky-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
  }

  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__molecule {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__molecule-svg {
    width: 64px;
    height: 64px;
  }

  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__sticky-step {
    text-align: left;
    margin-bottom: 0;
  }

  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__step-num {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__sticky-progress {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__step-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__card-number {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__title {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__glow--1,
  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__glow--2,
  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__molecule-svg,
  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__tag-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__step-card,
  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__sticky-card,
  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__progress-fill,
  [data-project="creatine-de"] .block-services-sticky.block-services-sticky .ss__card-number {
    transition: none;
  }
}
/* ═══ BLOCK: services-sticky-dark ═══ */
/* ============================================================
   SERVICES-STICKY — Creatine-DE
   Layer 3: Per-block premium overrides
   Sticky sidebar with scrolling step cards, progress tracker,
   molecule visualization, ambient glow backdrop.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow backdrop ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__glow--1 {
  width: 500px;
  height: 500px;
  top: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  animation: ssGlow1 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__glow--2 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  right: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: ssGlow2 24s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ssGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}

@keyframes ssGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-25px, -15px) scale(1.06); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ── Two-column layout ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* ── Sticky column ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__sticky-col {
  position: sticky;
  top: clamp(80px, 10vw, 120px);
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__sticky-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.08),
    0 12px 40px rgba(255, 255, 255, 0.08);
  padding: 32px;
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__sticky-card:hover {
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08),
    0 20px 48px rgba(255, 255, 255, 0.08);
}

/* ── Molecule visual ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__molecule {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__molecule-svg {
  width: 120px;
  height: 120px;
  color: var(--t-accent, #10B981);
  animation: ssMoleculeFloat 6s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes ssMoleculeFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-6px) rotate(3deg); }
}

/* ── Step display ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__sticky-step {
  text-align: center;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__step-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-accent, #10B981);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__step-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Progress bar ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__sticky-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__progress-track {
  flex: 1;
  height: 4px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__progress-fill {
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #059669);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__progress-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  min-width: 32px;
  text-align: right;
}

/* ── Scroll column ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__scroll-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Step cards ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__step-card {
  display: flex;
  gap: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: clamp(24px, 3vw, 32px);
  box-shadow:
    0 1px 2px rgba(255, 255, 255, 0.08),
    0 2px 8px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__step-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 6px 20px rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__step-card--active {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(16, 185, 129, 0.08),
    0 12px 32px rgba(255, 255, 255, 0.08);
}

/* ── Card number ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__card-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 12px;
  transition:
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__step-card--active .ss__card-number {
  color: #ffffff;
  background: var(--t-accent, #10B981);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__card-body {
  flex: 1;
  min-width: 0;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 14px;
}

/* ── Tag pill ── */
[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
}

[data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: ssTagPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes ssTagPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__sticky-col {
    position: relative;
    top: 0;
  }

  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__sticky-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
  }

  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__molecule {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__molecule-svg {
    width: 64px;
    height: 64px;
  }

  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__sticky-step {
    text-align: left;
    margin-bottom: 0;
  }

  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__step-num {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__sticky-progress {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__step-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__card-number {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__title {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__glow--1,
  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__glow--2,
  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__molecule-svg,
  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__tag-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__step-card,
  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__sticky-card,
  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__progress-fill,
  [data-project="creatine-de"] .block-services-sticky-dark.block-services-sticky-dark .ss__card-number {
    transition: none;
  }
}

/* ═══ BLOCK: sitemap-page ═══ */
/* ============================================================
   SITEMAP-PAGE — Creatine DE
   4-column sitemap with link hover emerald accent
   ============================================================ */

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page {
  background: var(--t-bg, #ffffff);
  padding: var(--t-section-y, 5rem) var(--t-content-gap, 2rem);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__container {
  max-width: 1080px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 2.25rem;
  font-weight: var(--t-heading-weight, 700);
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__subtitle {
  font-size: 1rem;
  color: var(--t-muted, #64748b);
  margin: 0 0 3rem;
}

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__column-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__item {
  margin-bottom: 0.5rem;
}

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__link {
  font-size: 0.9rem;
  color: var(--t-text, #1e293b);
  text-decoration: none;
  padding: 4px 0;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--t-accent, #10B981);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__link:hover {
  color: var(--t-accent, #10B981);
  transform: translateX(4px);
}

[data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__link:hover::after {
  width: 100%;
}

/* ── Responsive 768px — 2 columns ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-sitemap-page.block-sitemap-page {
    padding: 3rem 1.25rem;
  }

  [data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ── Responsive 480px — 1 column ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-sitemap-page.block-sitemap-page {
    padding: 2.5rem 1rem;
  }

  [data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__subtitle {
    margin-bottom: 2rem;
  }

  [data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__link,
  [data-project="creatine-de"] .block-sitemap-page.block-sitemap-page .sm__link::after {
    transition: none;
  }
}

/* ═══ BLOCK: sitemap-page-dark ═══ */
/* ============================================================
   SITEMAP-PAGE — Creatine DE
   4-column sitemap with link hover emerald accent
   ============================================================ */

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark {
  background: #0F172A;
  padding: var(--t-section-y, 5rem) var(--t-content-gap, 2rem);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__container {
  max-width: 1080px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 2.25rem;
  font-weight: var(--t-heading-weight, 700);
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 3rem;
}

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__column-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__item {
  margin-bottom: 0.5rem;
}

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 4px 0;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--t-accent, #10B981);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__link:hover {
  color: var(--t-accent, #10B981);
  transform: translateX(4px);
}

[data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__link:hover::after {
  width: 100%;
}

/* ── Responsive 768px — 2 columns ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark {
    padding: 3rem 1.25rem;
  }

  [data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ── Responsive 480px — 1 column ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark {
    padding: 2.5rem 1rem;
  }

  [data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__subtitle {
    margin-bottom: 2rem;
  }

  [data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__link,
  [data-project="creatine-de"] .block-sitemap-page-dark.block-sitemap-page-dark .sm__link::after {
    transition: none;
  }
}


/* ═══ BLOCK: social-links ═══ */
/* ============================================================
   SOCIAL-LINKS — Creatine-DE
   Layer 3: Per-block premium overrides
   Compact social bar between FAQ and footer.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-social-links.block-social-links {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(48px, 6vw, 80px) 0;
  overflow: hidden;
}

/* subtle top border */
[data-project="creatine-de"] .block-social-links.block-social-links::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 1140px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.25) 30%,
    rgba(16, 185, 129, 0.4) 50%,
    rgba(16, 185, 129, 0.25) 70%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-social-links.block-social-links .sl__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ── Content (left side) ── */
[data-project="creatine-de"] .block-social-links.block-social-links .sl__content {
  flex: 1;
  min-width: 0;
  max-width: 480px;
}

[data-project="creatine-de"] .block-social-links.block-social-links .sl__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 10px;
}

[data-project="creatine-de"] .block-social-links.block-social-links .sl__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ── Social nav (right side) ── */
[data-project="creatine-de"] .block-social-links.block-social-links .sl__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Individual link ── */
[data-project="creatine-de"] .block-social-links.block-social-links .sl__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-social-links.block-social-links .sl__link:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 2px 8px rgba(16, 185, 129, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-social-links.block-social-links .sl__link:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 2px;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-social-links.block-social-links .sl__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-social-links.block-social-links .sl__link:hover .sl__icon {
  color: var(--t-accent, #10B981);
}

/* ── Name label ── */
[data-project="creatine-de"] .block-social-links.block-social-links .sl__name {
  white-space: nowrap;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-social-links.block-social-links .sl__inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  [data-project="creatine-de"] .block-social-links.block-social-links .sl__content {
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-social-links.block-social-links .sl__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  [data-project="creatine-de"] .block-social-links.block-social-links .sl__link {
    padding: 10px 16px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-social-links.block-social-links {
    padding: clamp(36px, 8vw, 56px) 0;
  }

  [data-project="creatine-de"] .block-social-links.block-social-links .sl__desc {
    font-size: 0.84rem;
  }

  [data-project="creatine-de"] .block-social-links.block-social-links .sl__name {
    display: none;
  }

  [data-project="creatine-de"] .block-social-links.block-social-links .sl__link {
    padding: 12px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-social-links.block-social-links .sl__icon {
    width: 22px;
    height: 22px;
  }

  [data-project="creatine-de"] .block-social-links.block-social-links .sl__icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-social-links.block-social-links .sl__link {
    transition: none;
  }

  [data-project="creatine-de"] .block-social-links.block-social-links .sl__link:hover {
    transform: none;
  }
}
/* ═══ BLOCK: social-links-light ═══ */
/* ============================================================
   SOCIAL-LINKS — Creatine-DE
   Layer 3: Per-block premium overrides
   Compact social bar between FAQ and footer.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-social-links-light.block-social-links-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(48px, 6vw, 80px) 0;
  overflow: hidden;
}

/* subtle top border */
[data-project="creatine-de"] .block-social-links-light.block-social-links-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 1140px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.25) 30%,
    rgba(16, 185, 129, 0.4) 50%,
    rgba(16, 185, 129, 0.25) 70%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ── Content (left side) ── */
[data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__content {
  flex: 1;
  min-width: 0;
  max-width: 480px;
}

[data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 10px;
}

[data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ── Social nav (right side) ── */
[data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Individual link ── */
[data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--t-muted, #64748b);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__link:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--t-heading, #0F172A);
  transform: translateY(-2px);
  box-shadow:
    0 2px 8px rgba(16, 185, 129, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__link:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 2px;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__link:hover .sl__icon {
  color: var(--t-accent, #10B981);
}

/* ── Name label ── */
[data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__name {
  white-space: nowrap;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  [data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__content {
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  [data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__link {
    padding: 10px 16px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-social-links-light.block-social-links-light {
    padding: clamp(36px, 8vw, 56px) 0;
  }

  [data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__desc {
    font-size: 0.84rem;
  }

  [data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__name {
    display: none;
  }

  [data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__link {
    padding: 12px;
    border-radius: 10px;
  }

  [data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__icon {
    width: 22px;
    height: 22px;
  }

  [data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__link {
    transition: none;
  }

  [data-project="creatine-de"] .block-social-links-light.block-social-links-light .sl__link:hover {
    transform: none;
  }
}

/* ═══ BLOCK: social-proof-bar ═══ */
/* ============================================================
   SOCIAL-PROOF-BAR — Creatine-DE
   Layer 3: Per-block premium overrides
   Slim dark trust strip with star ratings, customer count,
   certifications. Sits between usp-banner and breadcrumbs.
   Dark background for visual rhythm contrast.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark strip ── */
[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar {
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 980;
  overflow: hidden;
}

/* Subtle accent gradient line at top */
[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.15) 25%,
    rgba(16, 185, 129, 0.25) 50%,
    rgba(16, 185, 129, 0.15) 75%,
    transparent 100%
  );
}

/* Bottom border — subtle separation */
[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Track — horizontal scroll on mobile, centered on desktop ── */
[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__track::-webkit-scrollbar {
  display: none;
}

/* ── Individual proof item ── */
[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__item:hover {
  opacity: 0.7;
}

/* ── Stars cluster ── */
[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__star {
  width: 14px;
  height: 14px;
  color: #FBBF24;
  filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.3));
}

/* ── Icon ── */
[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__icon svg {
  width: 16px;
  height: 16px;
}

/* ── Text ── */
[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__text {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.005em;
  line-height: 1;
}

[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__text strong {
  font-weight: 650;
  color: #ffffff;
}

/* ── Divider ── */
[data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  border-radius: 1px;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__track {
    justify-content: flex-start;
    height: 38px;
    -webkit-mask-image: linear-gradient(to right, #000 80%, transparent 100%);
    mask-image: linear-gradient(to right, #000 80%, transparent 100%);
  }

  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__item {
    padding: 0 12px;
    gap: 6px;
  }

  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__text {
    font-size: 0.7rem;
  }

  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__star {
    width: 12px;
    height: 12px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__inner {
    padding: 0 12px;
  }

  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__track {
    height: 36px;
  }

  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__item {
    padding: 0 10px;
    gap: 5px;
  }

  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__icon {
    width: 15px;
    height: 15px;
  }

  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__icon svg {
    width: 14px;
    height: 14px;
  }

  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__text {
    font-size: 0.65rem;
  }

  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__divider {
    height: 10px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__item {
    transition: none;
  }

  [data-project="creatine-de"] .block-social-proof-bar.block-social-proof-bar .sp__star {
    filter: none;
  }
}
/* ═══ BLOCK: social-proof-bar-light ═══ */
/* ============================================================
   SOCIAL-PROOF-BAR — Creatine-DE
   Layer 3: Per-block premium overrides
   Slim dark trust strip with star ratings, customer count,
   certifications. Sits between usp-banner and breadcrumbs.
   Dark background for visual rhythm contrast.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark strip ── */
[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light {
  background: #0d1117;
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 980;
  overflow: hidden;
}

/* Subtle accent gradient line at top */
[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.15) 25%,
    rgba(16, 185, 129, 0.25) 50%,
    rgba(16, 185, 129, 0.15) 75%,
    transparent 100%
  );
}

/* Bottom border — subtle separation */
[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Track — horizontal scroll on mobile, centered on desktop ── */
[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__track::-webkit-scrollbar {
  display: none;
}

/* ── Individual proof item ── */
[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__item:hover {
  opacity: 0.7;
}

/* ── Stars cluster ── */
[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__star {
  width: 14px;
  height: 14px;
  color: #FBBF24;
  filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.3));
}

/* ── Icon ── */
[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__icon svg {
  width: 16px;
  height: 16px;
}

/* ── Text ── */
[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__text {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--t-muted, #64748b);
  letter-spacing: -0.005em;
  line-height: 1;
}

[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__text strong {
  font-weight: 650;
  color: var(--t-heading, #0F172A);
}

/* ── Divider ── */
[data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  border-radius: 1px;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__track {
    justify-content: flex-start;
    height: 38px;
    -webkit-mask-image: linear-gradient(to right, #000 80%, transparent 100%);
    mask-image: linear-gradient(to right, #000 80%, transparent 100%);
  }

  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__item {
    padding: 0 12px;
    gap: 6px;
  }

  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__text {
    font-size: 0.7rem;
  }

  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__star {
    width: 12px;
    height: 12px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__inner {
    padding: 0 12px;
  }

  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__track {
    height: 36px;
  }

  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__item {
    padding: 0 10px;
    gap: 5px;
  }

  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__icon {
    width: 15px;
    height: 15px;
  }

  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__icon svg {
    width: 14px;
    height: 14px;
  }

  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__text {
    font-size: 0.65rem;
  }

  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__divider {
    height: 10px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__item {
    transition: none;
  }

  [data-project="creatine-de"] .block-social-proof-bar-light.block-social-proof-bar-light .sp__star {
    filter: none;
  }
}

/* ═══ BLOCK: stats-animated ═══ */
/* ============================================================
   STATS-ANIMATED — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with animated counter cards, progress bars,
   glow effects, and staggered scroll-reveal. Follows light
   stats-row for contrast rhythm.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark ── */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Top accent line */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.25) 30%,
    rgba(16, 185, 129, 0.4) 50%,
    rgba(16, 185, 129, 0.25) 70%,
    transparent 100%
  );
}

/* Background radial glow */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   GRID — 2x2 cards
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 32px 32px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

/* Card glow on hover */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card-glow {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card:hover .sa__card-glow {
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0.15) 0%,
    transparent 70%
  );
}

/* ── Icon ring ── */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__icon-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--t-accent, #10B981);
  margin-bottom: 24px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card:hover .sa__icon-ring {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.3);
}

/* ── Number — animated counter ── */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__number {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 6px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card:hover .sa__number {
  color: var(--t-accent, #10B981);
}

/* ── Label ── */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ── Progress bar ── */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  border-radius: 4px;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__bar-fill.sa--animated {
  width: var(--sa-fill-width, 0%);
}

/* ── Description ── */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card:hover .sa__desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════
   FOOTNOTE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__footnote-icon {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__footnote span {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.35);
}

/* ══════════════════════════════════════
   SCROLL REVEAL — stagger
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card.sa--hidden {
  opacity: 0;
  transform: translateY(32px);
}

[data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card.sa--visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card {
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__header {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-stats-animated.block-stats-animated {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__number {
    font-size: 2rem;
  }

  [data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__icon-ring {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 18px;
  }

  [data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__icon-ring svg {
    width: 22px;
    height: 22px;
  }

  [data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__footnote {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card,
  [data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card.sa--visible {
    transition: none;
  }

  [data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__bar-fill {
    transition: none;
  }

  [data-project="creatine-de"] .block-stats-animated.block-stats-animated .sa__card.sa--hidden {
    opacity: 1;
    transform: none;
  }
}
/* ═══ BLOCK: stats-animated-light ═══ */
/* ============================================================
   STATS-ANIMATED — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with animated counter cards, progress bars,
   glow effects, and staggered scroll-reveal. Follows light
   stats-row for contrast rhythm.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark ── */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Top accent line */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.25) 30%,
    rgba(16, 185, 129, 0.4) 50%,
    rgba(16, 185, 129, 0.25) 70%,
    transparent 100%
  );
}

/* Background radial glow */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-heading, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   GRID — 2x2 cards
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card {
  position: relative;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 36px 32px 32px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(0, 0, 0, 0.06);
}

/* Card glow on hover */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card-glow {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card:hover .sa__card-glow {
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0.15) 0%,
    transparent 70%
  );
}

/* ── Icon ring ── */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__icon-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--t-accent, #10B981);
  margin-bottom: 24px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card:hover .sa__icon-ring {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.3);
}

/* ── Number — animated counter ── */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__number {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--t-heading, #0F172A);
  margin-bottom: 6px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card:hover .sa__number {
  color: var(--t-accent, #10B981);
}

/* ── Label ── */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-text, #1e293b);
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ── Progress bar ── */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  border-radius: 4px;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__bar-fill.sa--animated {
  width: var(--sa-fill-width, 0%);
}

/* ── Description ── */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card:hover .sa__desc {
  color: var(--t-muted, #64748b);
}

/* ══════════════════════════════════════
   FOOTNOTE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__footnote-icon {
  color: rgba(0, 0, 0, 0.30);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__footnote span {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.35);
}

/* ══════════════════════════════════════
   SCROLL REVEAL — stagger
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card.sa--hidden {
  opacity: 0;
  transform: translateY(32px);
}

[data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card.sa--visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card {
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__header {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__number {
    font-size: 2rem;
  }

  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__icon-ring {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 18px;
  }

  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__icon-ring svg {
    width: 22px;
    height: 22px;
  }

  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__footnote {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card,
  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card.sa--visible {
    transition: none;
  }

  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__bar-fill {
    transition: none;
  }

  [data-project="creatine-de"] .block-stats-animated-light.block-stats-animated-light .sa__card.sa--hidden {
    opacity: 1;
    transform: none;
  }
}

/* ═══ BLOCK: stats-bar ═══ */
/* ============================================================
   STATS-BAR — Creatine-DE
   Layer 3: Per-block premium overrides
   Horizontal stats strip with animated counters, dividers,
   and hover-reveal descriptions. Dark section for contrast
   after hero. Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark bar ── */
[data-project="creatine-de"] .block-stats-bar.block-stats-bar {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(40px, 5vw, 56px) 0;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Subtle top accent glow */
[data-project="creatine-de"] .block-stats-bar.block-stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.25) 30%,
    rgba(16, 185, 129, 0.4) 50%,
    rgba(16, 185, 129, 0.25) 70%,
    transparent 100%
  );
}

/* Bottom subtle border */
[data-project="creatine-de"] .block-stats-bar.block-stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 50%,
    transparent 100%
  );
}

/* ── Inner container — 4-col grid ── */
[data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

/* ── Stat item ── */
[data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  position: relative;
  cursor: default;
}

/* ── Value — large number ── */
[data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__value {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--t-text-light, #ffffff);
  margin-bottom: 8px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__item:hover .sb__value {
  color: var(--t-accent, #10B981);
}

/* ── Label ── */
[data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__item:hover .sb__label {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Sub text — hover reveal ── */
[data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__sub {
  display: block;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.35);
  max-width: 220px;
  margin: 0 auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__item:hover .sb__sub {
  max-height: 80px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Divider ── */
[data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__divider {
  display: block;
  width: 1px;
  align-self: stretch;
  min-height: 56px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(16, 185, 129, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 70%,
    transparent 100%
  );
  flex-shrink: 0;
  margin: 8px 0;
}

/* ══════════════════════════════════════
   TABLET — max 768px
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__inner {
    flex-wrap: wrap;
    gap: 8px 0;
  }

  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__item {
    flex: 0 0 50%;
    padding: 16px 16px;
  }

  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__divider {
    display: none;
  }

  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__sub {
    max-height: none;
    color: rgba(255, 255, 255, 0.4);
  }

  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__value {
    font-size: 2rem;
  }
}

/* ══════════════════════════════════════
   MOBILE — max 480px
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-stats-bar.block-stats-bar {
    padding: 32px 0;
  }

  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__item {
    flex: none;
    width: 100%;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__item:last-of-type {
    border-bottom: none;
  }

  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__value {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__sub {
    max-height: none;
    color: rgba(255, 255, 255, 0.38);
    max-width: 280px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__value,
  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__label,
  [data-project="creatine-de"] .block-stats-bar.block-stats-bar .sb__sub {
    transition: none;
  }
}
/* ═══ BLOCK: stats-bar-light ═══ */
/* ============================================================
   STATS-BAR — Creatine-DE
   Layer 3: Per-block premium overrides
   Horizontal stats strip with animated counters, dividers,
   and hover-reveal descriptions. Dark section for contrast
   after hero. Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark bar ── */
[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(40px, 5vw, 56px) 0;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Subtle top accent glow */
[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.25) 30%,
    rgba(16, 185, 129, 0.4) 50%,
    rgba(16, 185, 129, 0.25) 70%,
    transparent 100%
  );
}

/* Bottom subtle border */
[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 50%,
    transparent 100%
  );
}

/* ── Inner container — 4-col grid ── */
[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

/* ── Stat item ── */
[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  position: relative;
  cursor: default;
}

/* ── Value — large number ── */
[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__value {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--t-text-light, #ffffff);
  margin-bottom: 8px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__item:hover .sb__value {
  color: var(--t-accent, #10B981);
}

/* ── Label ── */
[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-muted, #64748b);
  margin-bottom: 10px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__item:hover .sb__label {
  color: var(--t-text, #1e293b);
}

/* ── Sub text — hover reveal ── */
[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__sub {
  display: block;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.35);
  max-width: 220px;
  margin: 0 auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__item:hover .sb__sub {
  max-height: 80px;
  color: var(--t-muted, #64748b);
}

/* ── Divider ── */
[data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__divider {
  display: block;
  width: 1px;
  align-self: stretch;
  min-height: 56px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.06) 30%,
    rgba(16, 185, 129, 0.15) 50%,
    rgba(0, 0, 0, 0.06) 70%,
    transparent 100%
  );
  flex-shrink: 0;
  margin: 8px 0;
}

/* ══════════════════════════════════════
   TABLET — max 768px
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__inner {
    flex-wrap: wrap;
    gap: 8px 0;
  }

  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__item {
    flex: 0 0 50%;
    padding: 16px 16px;
  }

  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__divider {
    display: none;
  }

  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__sub {
    max-height: none;
    color: rgba(0, 0, 0, 0.40);
  }

  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__value {
    font-size: 2rem;
  }
}

/* ══════════════════════════════════════
   MOBILE — max 480px
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light {
    padding: 32px 0;
  }

  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__item {
    flex: none;
    width: 100%;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__item:last-of-type {
    border-bottom: none;
  }

  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__value {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__sub {
    max-height: none;
    color: rgba(0, 0, 0, 0.38);
    max-width: 280px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__value,
  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__label,
  [data-project="creatine-de"] .block-stats-bar-light.block-stats-bar-light .sb__sub {
    transition: none;
  }
}

/* ═══ BLOCK: stats-particles ═══ */
/* ============================================================
   STATS-PARTICLES — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with floating canvas particles, glassmorphic
   stat cards, animated counters, glow effects.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark bg ── */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden;
}

/* Radial glow top */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Particle canvas ── */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Individual card ── */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__item {
  position: relative;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__item.sp--visible {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__item:hover {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

/* Hover glow */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__item-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__item:hover .sp__item-glow {
  opacity: 1;
}

[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__item-inner {
  position: relative;
  z-index: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.12);
  margin-bottom: 24px;
  color: var(--t-accent, #10B981);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__item:hover .sp__icon {
  background: rgba(16, 185, 129, 0.15);
  transform: scale(1.05);
}

/* ── Value / Counter ── */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__num {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 30%, var(--t-accent, #10B981) 100%);
  -webkit-background-clip: text;
  white-space: nowrap;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
}

/* ── Label ── */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

/* ── Description ── */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ══════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════ */
@keyframes spFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes spGlowShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Badge float */
[data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__badge {
  animation: spFloat 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__header {
    margin-bottom: 48px;
  }

  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__item-inner {
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__num {
    font-size: 2rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-stats-particles.block-stats-particles {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__subtitle {
    font-size: 0.95rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__badge {
    animation: none;
  }

  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__item-glow,
  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__icon,
  [data-project="creatine-de"] .block-stats-particles.block-stats-particles .sp__item {
    transition: none;
  }
}
/* ═══ BLOCK: stats-particles-kreatin ═══ */
/* STATS-PARTICLES-KREATIN — creatine-de */
[data-project="creatine-de"] .block-stats-particles-kreatin.block-stats-particles-kreatin { position: relative; padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 40px); background: #0F172A; color: #fff; overflow: hidden; }
[data-project="creatine-de"] .block-stats-particles-kreatin.block-stats-particles-kreatin .spk__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
[data-project="creatine-de"] .block-stats-particles-kreatin.block-stats-particles-kreatin .spk__inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
[data-project="creatine-de"] .block-stats-particles-kreatin.block-stats-particles-kreatin .spk__value { display: block; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; color: #10B981; line-height: 1; margin-bottom: 8px; }
[data-project="creatine-de"] .block-stats-particles-kreatin.block-stats-particles-kreatin .spk__label { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
@media (max-width: 700px) { [data-project="creatine-de"] .block-stats-particles-kreatin.block-stats-particles-kreatin .spk__inner { grid-template-columns: repeat(2, 1fr); } }
/* ═══ BLOCK: stats-particles-kreatin-light ═══ */
/* STATS-PARTICLES-KREATIN — creatine-de */
[data-project="creatine-de"] .block-stats-particles-kreatin-light.block-stats-particles-kreatin-light { position: relative; padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 40px); background: var(--t-surface, #f8fafb); color: var(--t-heading, #0F172A); overflow: hidden; }
[data-project="creatine-de"] .block-stats-particles-kreatin-light.block-stats-particles-kreatin-light .spk__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
[data-project="creatine-de"] .block-stats-particles-kreatin-light.block-stats-particles-kreatin-light .spk__inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
[data-project="creatine-de"] .block-stats-particles-kreatin-light.block-stats-particles-kreatin-light .spk__value { display: block; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; color: #10B981; line-height: 1; margin-bottom: 8px; }
[data-project="creatine-de"] .block-stats-particles-kreatin-light.block-stats-particles-kreatin-light .spk__label { font-size: 0.85rem; color: var(--t-muted, #64748b); }
@media (max-width: 700px) { [data-project="creatine-de"] .block-stats-particles-kreatin-light.block-stats-particles-kreatin-light .spk__inner { grid-template-columns: repeat(2, 1fr); } }

/* ═══ BLOCK: stats-particles-light ═══ */
/* ============================================================
   STATS-PARTICLES — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with floating canvas particles, glassmorphic
   stat cards, animated counters, glow effects.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark bg ── */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden;
}

/* Radial glow top */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Particle canvas ── */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Individual card ── */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__item {
  position: relative;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__item.sp--visible {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__item:hover {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(0, 0, 0, 0.06);
}

/* Hover glow */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__item-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__item:hover .sp__item-glow {
  opacity: 1;
}

[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__item-inner {
  position: relative;
  z-index: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.12);
  margin-bottom: 24px;
  color: var(--t-accent, #10B981);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__item:hover .sp__icon {
  background: rgba(16, 185, 129, 0.15);
  transform: scale(1.05);
}

/* ── Value / Counter ── */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__num {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--t-heading, #0F172A);
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 30%, var(--t-accent, #10B981) 100%);
  -webkit-background-clip: text;
  white-space: nowrap;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
}

/* ── Label ── */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-text, #1e293b);
  margin-bottom: 12px;
}

/* ── Description ── */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
}

/* ══════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════ */
@keyframes spFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes spGlowShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Badge float */
[data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__badge {
  animation: spFloat 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__header {
    margin-bottom: 48px;
  }

  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__item-inner {
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__num {
    font-size: 2rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__subtitle {
    font-size: 0.95rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__badge {
    animation: none;
  }

  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__item-glow,
  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__icon,
  [data-project="creatine-de"] .block-stats-particles-light.block-stats-particles-light .sp__item {
    transition: none;
  }
}

/* ═══ BLOCK: stats-row ═══ */
/* ============================================================
   STATS-ROW — Creatine-DE
   Layer 3: Per-block premium overrides
   Card-based stats grid with icon accents, animated counters,
   hover lift, and staggered fade-in. Light section for contrast
   after dark stats-bar. Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — light surface ── */
[data-project="creatine-de"] .block-stats-row.block-stats-row {
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Subtle radial glow at top center */
[data-project="creatine-de"] .block-stats-row.block-stats-row::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   GRID — 4 columns
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.18);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.07),
    0 0 0 1px rgba(16, 185, 129, 0.06);
}

/* Top accent line on hover */
[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

/* ══════════════════════════════════════
   ICON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item:hover .stats__icon {
  background: rgba(16, 185, 129, 0.14);
}

[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__icon-svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   NUMBER — animated counter
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__counter {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--t-primary, #0F172A);
  margin-bottom: 8px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item:hover .stats__counter {
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   LABEL
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--t-primary, #0F172A);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
}

/* ══════════════════════════════════════
   DESCRIPTION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item {
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item.sr--visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-stats-row.block-stats-row .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item {
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-stats-row.block-stats-row .stats__header {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-stats-row.block-stats-row {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-stats-row.block-stats-row .stats__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  [data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item {
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-stats-row.block-stats-row .stats__counter {
    font-size: 2rem;
  }

  [data-project="creatine-de"] .block-stats-row.block-stats-row .stats__title {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-stats-row.block-stats-row .stats__item::before {
    transition: none;
  }
}
/* ═══ BLOCK: stats-row-dark ═══ */
/* ============================================================
   STATS-ROW — Creatine-DE
   Layer 3: Per-block premium overrides
   Card-based stats grid with icon accents, animated counters,
   hover lift, and staggered fade-in. Light section for contrast
   after dark stats-bar. Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — light surface ── */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark {
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Subtle radial glow at top center */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   GRID — 4 columns
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.18);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(16, 185, 129, 0.06);
}

/* Top accent line on hover */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

/* ══════════════════════════════════════
   ICON
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item:hover .stats__icon {
  background: rgba(16, 185, 129, 0.14);
}

[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__icon-svg {
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   NUMBER — animated counter
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__counter {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--t-primary, #0F172A);
  margin-bottom: 8px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item:hover .stats__counter {
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   LABEL
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--t-primary, #0F172A);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
}

/* ══════════════════════════════════════
   DESCRIPTION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item {
  opacity: 0;
  transform: translateY(24px);
}

[data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item.sr--visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item {
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__header {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  [data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item {
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__counter {
    font-size: 2rem;
  }

  [data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__title {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-stats-row-dark.block-stats-row-dark .stats__item::before {
    transition: none;
  }
}

/* ═══ BLOCK: table-data ═══ */
/* ============================================================
   TABLE-DATA — Creatine-DE
   Layer 3: Per-block premium overrides
   Scientific comparison table with animated bars, filter
   controls, color-coded ratings, and hover row highlights.
   Light surface section. Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — light surface ── */
[data-project="creatine-de"] .block-table-data.block-table-data {
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-table-data.block-table-data::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.15) 30%,
    rgba(16, 185, 129, 0.25) 50%,
    rgba(16, 185, 129, 0.15) 70%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-table-data.block-table-data .td__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data.block-table-data .td__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   FILTER CONTROLS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data.block-table-data .td__controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__filter {
  appearance: none;
  border: 1px solid var(--t-border, #e2e8f0);
  background: #ffffff;
  color: #475569;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__filter:hover {
  border-color: var(--t-accent, #10B981);
  color: var(--t-accent, #10B981);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__filter--active {
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__filter--active:hover {
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

/* ══════════════════════════════════════
   TABLE WRAPPER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data.block-table-data .td__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--t-border, #e2e8f0);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ══════════════════════════════════════
   TABLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data.block-table-data .td__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 800px;
}

/* ── Header row ── */
[data-project="creatine-de"] .block-table-data.block-table-data .td__th {
  text-align: left;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 2px solid var(--t-border, #e2e8f0);
  white-space: nowrap;
  position: relative;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__th-text {
  vertical-align: middle;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__sort-icon {
  vertical-align: middle;
  margin-left: 4px;
  opacity: 0.4;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__th:hover .td__sort-icon {
  opacity: 0.8;
}

/* ── Table rows ── */
[data-project="creatine-de"] .block-table-data.block-table-data .td__row {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__row:hover {
  background: rgba(16, 185, 129, 0.03);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__row--highlight {
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__row--highlight:hover {
  background: rgba(16, 185, 129, 0.07);
}

/* Hidden state for filter */
[data-project="creatine-de"] .block-table-data.block-table-data .td__row--hidden {
  display: none;
}

/* ── Table cells ── */
[data-project="creatine-de"] .block-table-data.block-table-data .td__cell {
  padding: 18px 20px;
  border-bottom: 1px solid var(--t-border, #e2e8f0);
  color: var(--t-primary, #0F172A);
  vertical-align: middle;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__row:last-child .td__cell {
  border-bottom: none;
}

/* ══════════════════════════════════════
   NAME CELL — dot + name + meta
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data.block-table-data .td__cell--name {
  min-width: 220px;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__name-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__dot--best {
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__dot--good {
  background: #34d399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.3);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__dot--neutral {
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.3);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__dot--poor {
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.3);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--t-primary, #0F172A);
  line-height: 1.3;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__meta {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   BIOAVAILABILITY BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data.block-table-data .td__bar-wrap {
  width: 100%;
  max-width: 120px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__bar {
  height: 100%;
  border-radius: 3px;
  background: var(--t-accent, #10B981);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__bar--neutral {
  background: #f59e0b;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__bar--poor {
  background: #ef4444;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__bar-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

/* ══════════════════════════════════════
   PILLS — Studienlage
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data.block-table-data .td__pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__pill--excellent {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__pill--good {
  background: rgba(52, 211, 153, 0.1);
  color: #059669;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__pill--limited {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__pill--poor {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
}

/* ══════════════════════════════════════
   VALUE HIGHLIGHTS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data.block-table-data .td__value-highlight {
  font-weight: 700;
  color: var(--t-accent, #10B981);
  font-size: 0.9rem;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__value-neutral {
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* ══════════════════════════════════════
   PRICE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data.block-table-data .td__price {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--t-primary, #0F172A);
  white-space: nowrap;
}

/* ══════════════════════════════════════
   RATING BADGES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data.block-table-data .td__rating-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__rating-badge--best {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__rating-badge--good {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__rating-badge--neutral {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__rating-badge--poor {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.12);
}

/* ══════════════════════════════════════
   FOOTER — legend + footnote
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data.block-table-data .td__footer {
  margin-top: 32px;
  padding: 0 4px;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__legend-item .td__dot {
  width: 8px;
  height: 8px;
}

[data-project="creatine-de"] .block-table-data.block-table-data .td__footnote {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-table-data.block-table-data {
    padding: clamp(48px, 7vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-table-data.block-table-data .td__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-table-data.block-table-data .td__header {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-table-data.block-table-data .td__table-wrap {
    border-radius: 12px;
    margin: 0 -8px;
  }

  [data-project="creatine-de"] .block-table-data.block-table-data .td__controls {
    margin-bottom: 24px;
  }

  [data-project="creatine-de"] .block-table-data.block-table-data .td__legend {
    gap: 16px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-table-data.block-table-data .td__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-table-data.block-table-data .td__filter {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  [data-project="creatine-de"] .block-table-data.block-table-data .td__th {
    padding: 12px 14px;
    font-size: 0.7rem;
  }

  [data-project="creatine-de"] .block-table-data.block-table-data .td__cell {
    padding: 14px;
    font-size: 0.82rem;
  }

  [data-project="creatine-de"] .block-table-data.block-table-data .td__legend {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-table-data.block-table-data .td__bar {
    transition: none;
  }

  [data-project="creatine-de"] .block-table-data.block-table-data .td__row {
    transition: none;
  }

  [data-project="creatine-de"] .block-table-data.block-table-data .td__filter {
    transition: none;
  }
}
/* ═══ BLOCK: table-data-dark ═══ */
/* ============================================================
   TABLE-DATA — Creatine-DE
   Layer 3: Per-block premium overrides
   Scientific comparison table with animated bars, filter
   controls, color-coded ratings, and hover row highlights.
   Light surface section. Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — light surface ── */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark {
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.15) 30%,
    rgba(16, 185, 129, 0.25) 50%,
    rgba(16, 185, 129, 0.15) 70%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   FILTER CONTROLS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__filter {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #475569;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__filter:hover {
  border-color: var(--t-accent, #10B981);
  color: var(--t-accent, #10B981);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__filter--active {
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__filter--active:hover {
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

/* ══════════════════════════════════════
   TABLE WRAPPER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.08);
}

/* ══════════════════════════════════════
   TABLE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 800px;
}

/* ── Header row ── */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__th {
  text-align: left;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  position: relative;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__th-text {
  vertical-align: middle;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__sort-icon {
  vertical-align: middle;
  margin-left: 4px;
  opacity: 0.4;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__th:hover .td__sort-icon {
  opacity: 0.8;
}

/* ── Table rows ── */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__row {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__row:hover {
  background: rgba(16, 185, 129, 0.03);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__row--highlight {
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__row--highlight:hover {
  background: rgba(16, 185, 129, 0.07);
}

/* Hidden state for filter */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__row--hidden {
  display: none;
}

/* ── Table cells ── */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__cell {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--t-primary, #0F172A);
  vertical-align: middle;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__row:last-child .td__cell {
  border-bottom: none;
}

/* ══════════════════════════════════════
   NAME CELL — dot + name + meta
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__cell--name {
  min-width: 220px;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__name-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__dot--best {
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__dot--good {
  background: #34d399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.3);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__dot--neutral {
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.3);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__dot--poor {
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.3);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--t-primary, #0F172A);
  line-height: 1.3;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__meta {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   BIOAVAILABILITY BAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__bar-wrap {
  width: 100%;
  max-width: 120px;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__bar {
  height: 100%;
  border-radius: 3px;
  background: var(--t-accent, #10B981);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__bar--neutral {
  background: #f59e0b;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__bar--poor {
  background: #ef4444;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__bar-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

/* ══════════════════════════════════════
   PILLS — Studienlage
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__pill--excellent {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__pill--good {
  background: rgba(52, 211, 153, 0.1);
  color: #059669;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__pill--limited {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__pill--poor {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
}

/* ══════════════════════════════════════
   VALUE HIGHLIGHTS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__value-highlight {
  font-weight: 700;
  color: var(--t-accent, #10B981);
  font-size: 0.9rem;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__value-neutral {
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* ══════════════════════════════════════
   PRICE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__price {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--t-primary, #0F172A);
  white-space: nowrap;
}

/* ══════════════════════════════════════
   RATING BADGES
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__rating-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__rating-badge--best {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__rating-badge--good {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__rating-badge--neutral {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__rating-badge--poor {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.12);
}

/* ══════════════════════════════════════
   FOOTER — legend + footnote
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__footer {
  margin-top: 32px;
  padding: 0 4px;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__legend-item .td__dot {
  width: 8px;
  height: 8px;
}

[data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__footnote {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark {
    padding: clamp(48px, 7vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__header {
    margin-bottom: 32px;
  }

  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__table-wrap {
    border-radius: 12px;
    margin: 0 -8px;
  }

  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__controls {
    margin-bottom: 24px;
  }

  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__legend {
    gap: 16px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__filter {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__th {
    padding: 12px 14px;
    font-size: 0.7rem;
  }

  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__cell {
    padding: 14px;
    font-size: 0.82rem;
  }

  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__legend {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__bar {
    transition: none;
  }

  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__row {
    transition: none;
  }

  [data-project="creatine-de"] .block-table-data-dark.block-table-data-dark .td__filter {
    transition: none;
  }
}

/* ═══ BLOCK: tabs ═══ */
/* ============================================================
   TABS — Creatine-DE
   Layer 3: Per-block premium overrides
   Interactive tabbed content with animated panel transitions,
   glassmorphism stat cards, dose timeline, study cards, and
   safety grid. Dark section for contrast.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark ── */
[data-project="creatine-de"] .block-tabs.block-tabs {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-tabs.block-tabs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.2) 30%,
    rgba(16, 185, 129, 0.35) 50%,
    rgba(16, 185, 129, 0.2) 70%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-tabs.block-tabs .tb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs.block-tabs .tb__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__subtitle {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   TAB NAV
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs.block-tabs .tb__nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 4px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  justify-content: center;
  position: relative;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__tab:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__tab--active {
  color: var(--t-text-light, #ffffff);
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 20px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__tab--active .tb__tab-icon {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__tab-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__tab-text {
  white-space: nowrap;
}

/* ══════════════════════════════════════
   PANELS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs.block-tabs .tb__panels {
  position: relative;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__panel {
  display: none;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__panel--active {
  display: block;
  animation: tbFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tbFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Panel grid — 2-col ── */
[data-project="creatine-de"] .block-tabs.block-tabs .tb__panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Panel content (left) ── */
[data-project="creatine-de"] .block-tabs.block-tabs .tb__panel-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__panel-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 24px;
}

/* ── Checklist ── */
[data-project="creatine-de"] .block-tabs.block-tabs .tb__panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__panel-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
  margin-top: 1px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__check svg {
  width: 12px;
  height: 12px;
}

/* ══════════════════════════════════════
   PANEL VISUAL — Wirkung stat cards
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs.block-tabs .tb__panel-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__stat-number {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-accent, #10B981);
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__stat-desc {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   PANEL VISUAL — Dosierung timeline
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs.block-tabs .tb__dose-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__dose-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__dose-week {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  min-width: 90px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__dose-bar {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), rgba(16, 185, 129, 0.5));
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__dose-bar--full {
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__dose-level {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  min-width: 110px;
  text-align: right;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   PANEL VISUAL — Studien cards
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs.block-tabs .tb__study-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__study-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__study-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(4px);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__study-year {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 60px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__study-org {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__study-title {
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

/* ══════════════════════════════════════
   PANEL VISUAL — Sicherheit grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs.block-tabs .tb__safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__safety-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__safety-item:hover {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__safety-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__safety-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t-text-light, #ffffff);
}

[data-project="creatine-de"] .block-tabs.block-tabs .tb__safety-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-tabs.block-tabs .tb__nav {
    flex-wrap: wrap;
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__tab {
    flex: 1 1 calc(50% - 2px);
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__tab-icon {
    width: 16px;
    height: 16px;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__panel-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__dose-step {
    flex-wrap: wrap;
    gap: 8px;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__dose-week {
    min-width: auto;
    width: 100%;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__dose-bar {
    flex: 1;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__dose-level {
    min-width: auto;
    text-align: left;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-tabs.block-tabs {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__tab {
    flex: 1 1 100%;
    justify-content: flex-start;
    padding: 10px 16px;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__safety-grid {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__study-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__study-year {
    grid-row: auto;
    width: fit-content;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-tabs.block-tabs .tb__panel--active {
    animation: none;
  }

  [data-project="creatine-de"] .block-tabs.block-tabs .tb__stat-card,
  [data-project="creatine-de"] .block-tabs.block-tabs .tb__study-card,
  [data-project="creatine-de"] .block-tabs.block-tabs .tb__safety-item,
  [data-project="creatine-de"] .block-tabs.block-tabs .tb__tab {
    transition: none;
  }
}
/* ═══ BLOCK: tabs-light ═══ */
/* ============================================================
   TABS — Creatine-DE
   Layer 3: Per-block premium overrides
   Interactive tabbed content with animated panel transitions,
   glassmorphism stat cards, dose timeline, study cards, and
   safety grid. Dark section for contrast.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper — dark ── */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light {
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Subtle top accent line */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.2) 30%,
    rgba(16, 185, 129, 0.35) 50%,
    rgba(16, 185, 129, 0.2) 70%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__subtitle {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   TAB NAV
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 4px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--t-muted, #64748b);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  justify-content: center;
  position: relative;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__tab:hover {
  color: var(--t-text, #1e293b);
  background: rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__tab--active {
  color: var(--t-text-light, #ffffff);
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 20px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__tab--active .tb__tab-icon {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__tab-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__tab-text {
  white-space: nowrap;
}

/* ══════════════════════════════════════
   PANELS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__panels {
  position: relative;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__panel {
  display: none;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__panel--active {
  display: block;
  animation: tbFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tbFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Panel grid — 2-col ── */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Panel content (left) ── */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__panel-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__panel-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 24px;
}

/* ── Checklist ── */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__panel-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--t-text, #1e293b);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
  margin-top: 1px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__check svg {
  width: 12px;
  height: 12px;
}

/* ══════════════════════════════════════
   PANEL VISUAL — Wirkung stat cards
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__panel-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__stat-card {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__stat-card:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__stat-number {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-accent, #10B981);
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__stat-desc {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   PANEL VISUAL — Dosierung timeline
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__dose-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__dose-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__dose-week {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t-muted, #64748b);
  min-width: 90px;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__dose-bar {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), rgba(16, 185, 129, 0.5));
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__dose-bar--full {
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__dose-level {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  min-width: 110px;
  text-align: right;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   PANEL VISUAL — Studien cards
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__study-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__study-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__study-card:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(4px);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__study-year {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 60px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__study-org {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.45);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__study-title {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--t-text, #1e293b);
}

/* ══════════════════════════════════════
   PANEL VISUAL — Sicherheit grid
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__safety-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px 16px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__safety-item:hover {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__safety-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__safety-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t-text-light, #ffffff);
}

[data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__safety-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__nav {
    flex-wrap: wrap;
    max-width: 100%;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__tab {
    flex: 1 1 calc(50% - 2px);
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__tab-icon {
    width: 16px;
    height: 16px;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__panel-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__dose-step {
    flex-wrap: wrap;
    gap: 8px;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__dose-week {
    min-width: auto;
    width: 100%;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__dose-bar {
    flex: 1;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__dose-level {
    min-width: auto;
    text-align: left;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-tabs-light.block-tabs-light {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__tab {
    flex: 1 1 100%;
    justify-content: flex-start;
    padding: 10px 16px;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__safety-grid {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__study-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__study-year {
    grid-row: auto;
    width: fit-content;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__panel--active {
    animation: none;
  }

  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__stat-card,
  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__study-card,
  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__safety-item,
  [data-project="creatine-de"] .block-tabs-light.block-tabs-light .tb__tab {
    transition: none;
  }
}

/* ═══ BLOCK: team ═══ */
/* ============================================================
   TEAM — Creatine-DE
   Layer 3: Per-block premium overrides
   4-column team grid with image hover overlays, social links,
   staggered scroll reveals. Stripe/Linear/Vercel benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-team.block-team {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow ── */
[data-project="creatine-de"] .block-team.block-team .tm__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-team.block-team .tm__glow--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

[data-project="creatine-de"] .block-team.block-team .tm__glow--2 {
  width: 420px;
  height: 420px;
  bottom: -5%;
  right: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-team.block-team .tm__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
[data-project="creatine-de"] .block-team.block-team .tm__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

[data-project="creatine-de"] .block-team.block-team .tm__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-team.block-team .tm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-team.block-team .tm__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-team.block-team .tm__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Grid ── */
[data-project="creatine-de"] .block-team.block-team .tm__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-team.block-team .tm__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team.block-team .tm__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: rgba(16, 185, 129, 0.15);
}

/* ── Card image ── */
[data-project="creatine-de"] .block-team.block-team .tm__card-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

[data-project="creatine-de"] .block-team.block-team .tm__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team.block-team .tm__card:hover .tm__card-img {
  transform: scale(1.05);
}

/* ── Card overlay ── */
[data-project="creatine-de"] .block-team.block-team .tm__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 17, 23, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team.block-team .tm__card:hover .tm__card-overlay {
  opacity: 1;
}

[data-project="creatine-de"] .block-team.block-team .tm__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

[data-project="creatine-de"] .block-team.block-team .tm__social:hover {
  background: var(--t-accent, #10B981);
  transform: scale(1.1);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-team.block-team .tm__card-body {
  padding: 24px 20px 28px;
}

[data-project="creatine-de"] .block-team.block-team .tm__card-name {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 4px;
}

[data-project="creatine-de"] .block-team.block-team .tm__card-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-team.block-team .tm__card-bio {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ── CTA ── */
[data-project="creatine-de"] .block-team.block-team .tm__cta-wrap {
  text-align: center;
  margin-top: 56px;
}

[data-project="creatine-de"] .block-team.block-team .tm__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-team.block-team .tm__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
  background: #0ea572;
}

[data-project="creatine-de"] .block-team.block-team .tm__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team.block-team .tm__cta:hover .tm__cta-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  [data-project="creatine-de"] .block-team.block-team .tm__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-team.block-team {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-team.block-team .tm__header {
    margin-bottom: 48px;
  }

  [data-project="creatine-de"] .block-team.block-team .tm__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  [data-project="creatine-de"] .block-team.block-team .tm__card-body {
    padding: 20px 16px 24px;
  }

  [data-project="creatine-de"] .block-team.block-team .tm__card-bio {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-team.block-team .tm__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-team.block-team .tm__card-img-wrap {
    aspect-ratio: 4 / 3;
  }

  [data-project="creatine-de"] .block-team.block-team .tm__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-team.block-team .tm__card,
  [data-project="creatine-de"] .block-team.block-team .tm__card-img,
  [data-project="creatine-de"] .block-team.block-team .tm__card-overlay,
  [data-project="creatine-de"] .block-team.block-team .tm__social,
  [data-project="creatine-de"] .block-team.block-team .tm__cta,
  [data-project="creatine-de"] .block-team.block-team .tm__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-team.block-team .tm__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-team.block-team .tm__card:hover .tm__card-img {
    transform: none;
  }
}
/* ═══ BLOCK: team-light ═══ */
/* ============================================================
   TEAM — Creatine-DE
   Layer 3: Per-block premium overrides
   4-column team grid with image hover overlays, social links,
   staggered scroll reveals. Stripe/Linear/Vercel benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-team-light.block-team-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow ── */
[data-project="creatine-de"] .block-team-light.block-team-light .tm__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__glow--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__glow--2 {
  width: 420px;
  height: 420px;
  bottom: -5%;
  right: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-team-light.block-team-light .tm__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
[data-project="creatine-de"] .block-team-light.block-team-light .tm__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Grid ── */
[data-project="creatine-de"] .block-team-light.block-team-light .tm__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-team-light.block-team-light .tm__card {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: rgba(16, 185, 129, 0.15);
}

/* ── Card image ── */
[data-project="creatine-de"] .block-team-light.block-team-light .tm__card-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__card:hover .tm__card-img {
  transform: scale(1.05);
}

/* ── Card overlay ── */
[data-project="creatine-de"] .block-team-light.block-team-light .tm__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 17, 23, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__card:hover .tm__card-overlay {
  opacity: 1;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--t-heading, #0F172A);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__social:hover {
  background: var(--t-accent, #10B981);
  transform: scale(1.1);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-team-light.block-team-light .tm__card-body {
  padding: 24px 20px 28px;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__card-name {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 4px;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__card-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__card-bio {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ── CTA ── */
[data-project="creatine-de"] .block-team-light.block-team-light .tm__cta-wrap {
  text-align: center;
  margin-top: 56px;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  background: var(--t-accent, #10B981);
  color: var(--t-heading, #0F172A);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
  background: #0ea572;
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-light.block-team-light .tm__cta:hover .tm__cta-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  [data-project="creatine-de"] .block-team-light.block-team-light .tm__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-team-light.block-team-light {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-team-light.block-team-light .tm__header {
    margin-bottom: 48px;
  }

  [data-project="creatine-de"] .block-team-light.block-team-light .tm__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  [data-project="creatine-de"] .block-team-light.block-team-light .tm__card-body {
    padding: 20px 16px 24px;
  }

  [data-project="creatine-de"] .block-team-light.block-team-light .tm__card-bio {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-team-light.block-team-light .tm__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  [data-project="creatine-de"] .block-team-light.block-team-light .tm__card-img-wrap {
    aspect-ratio: 4 / 3;
  }

  [data-project="creatine-de"] .block-team-light.block-team-light .tm__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-team-light.block-team-light .tm__card,
  [data-project="creatine-de"] .block-team-light.block-team-light .tm__card-img,
  [data-project="creatine-de"] .block-team-light.block-team-light .tm__card-overlay,
  [data-project="creatine-de"] .block-team-light.block-team-light .tm__social,
  [data-project="creatine-de"] .block-team-light.block-team-light .tm__cta,
  [data-project="creatine-de"] .block-team-light.block-team-light .tm__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-team-light.block-team-light .tm__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-team-light.block-team-light .tm__card:hover .tm__card-img {
    transform: none;
  }
}

/* ═══ BLOCK: team-photo-grid ═══ */
/* ============================================================
   TEAM-PHOTO-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   Asymmetric photo grid with featured first card spanning 2
   rows, hover bio overlays, social links, staggered scroll
   reveals. Light section. Stripe/Linear/Vercel benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow ── */
[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__glow--1 {
  width: 500px;
  height: 500px;
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -5%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   GRID — asymmetric with featured card
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card--featured {
  grid-row: span 2;
}

/* ── Card ── */
[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.1);
}

/* ── Photo container ── */
[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-photo {
  position: relative;
  flex: 1;
  min-height: 240px;
  overflow: hidden;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card--featured .tpg__card-photo {
  min-height: 400px;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card:hover .tpg__card-img {
  transform: scale(1.05);
}

/* ── Hover overlay ── */
[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 17, 23, 0.92) 0%,
    rgba(13, 17, 23, 0.6) 50%,
    rgba(13, 17, 23, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card:hover .tpg__card-overlay {
  opacity: 1;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-bio {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px;
  transform: translateY(12px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card:hover .tpg__card-bio {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-socials {
  display: flex;
  gap: 10px;
  transform: translateY(12px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card:hover .tpg__card-socials {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  transition:
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__social-link:hover {
  background: var(--t-accent, #10B981);
  transform: scale(1.1);
}

/* ── Card info ── */
[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-info {
  padding: 20px 24px;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-name {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   CTA
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__cta-wrap {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__cta-text {
  font-size: 1rem;
  color: #475569;
  margin: 0;
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition:
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__cta-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__cta-btn:hover .tpg__cta-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card--featured .tpg__card-photo {
    min-height: 300px;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-photo {
    min-height: 200px;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__header {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card--featured {
    grid-column: span 1;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card--featured .tpg__card-photo {
    min-height: 260px;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-photo {
    min-height: 220px;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-info {
    padding: 16px 20px;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__cta-wrap {
    margin-top: 40px;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card,
  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-img,
  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-overlay,
  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-bio,
  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card-socials,
  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__social-link,
  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__cta-btn,
  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-team-photo-grid.block-team-photo-grid .tpg__card:hover .tpg__card-img {
    transform: none;
  }
}
/* ═══ BLOCK: team-photo-grid-dark ═══ */
/* ============================================================
   TEAM-PHOTO-GRID — Creatine-DE
   Layer 3: Per-block premium overrides
   Asymmetric photo grid with featured first card spanning 2
   rows, hover bio overlays, social links, staggered scroll
   reveals. Light section. Stripe/Linear/Vercel benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow ── */
[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__glow--1 {
  width: 500px;
  height: 500px;
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -5%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   GRID — asymmetric with featured card
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card--featured {
  grid-row: span 2;
}

/* ── Card ── */
[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.30);
}

/* ── Photo container ── */
[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-photo {
  position: relative;
  flex: 1;
  min-height: 240px;
  overflow: hidden;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card--featured .tpg__card-photo {
  min-height: 400px;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card:hover .tpg__card-img {
  transform: scale(1.05);
}

/* ── Hover overlay ── */
[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 17, 23, 0.92) 0%,
    rgba(13, 17, 23, 0.6) 50%,
    rgba(13, 17, 23, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card:hover .tpg__card-overlay {
  opacity: 1;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-bio {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px;
  transform: translateY(12px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card:hover .tpg__card-bio {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-socials {
  display: flex;
  gap: 10px;
  transform: translateY(12px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card:hover .tpg__card-socials {
  transform: translateY(0);
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  transition:
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__social-link:hover {
  background: var(--t-accent, #10B981);
  transform: scale(1.1);
}

/* ── Card info ── */
[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-info {
  padding: 20px 24px;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-name {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   CTA
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__cta-wrap {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__cta-text {
  font-size: 1rem;
  color: #475569;
  margin: 0;
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition:
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__cta-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__cta-btn:hover .tpg__cta-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card--featured .tpg__card-photo {
    min-height: 300px;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-photo {
    min-height: 200px;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__header {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card--featured {
    grid-column: span 1;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card--featured .tpg__card-photo {
    min-height: 260px;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-photo {
    min-height: 220px;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-info {
    padding: 16px 20px;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__cta-wrap {
    margin-top: 40px;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card,
  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-img,
  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-overlay,
  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-bio,
  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card-socials,
  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__social-link,
  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__cta-btn,
  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__cta-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-team-photo-grid-dark.block-team-photo-grid-dark .tpg__card:hover .tpg__card-img {
    transform: none;
  }
}

/* ═══ BLOCK: team-slider ═══ */
/* ============================================================
   TEAM-SLIDER — Creatine-DE
   Layer 3: Per-block premium overrides
   Horizontal team carousel with card hover effects, navigation
   dots, smooth slide transitions. Dark section.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-team-slider.block-team-slider {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow ── */
[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__glow--1 {
  width: 520px;
  height: 520px;
  top: -12%;
  left: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__glow--2 {
  width: 440px;
  height: 440px;
  bottom: -8%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Slider container ── */
[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__slider {
  position: relative;
  overflow: hidden;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

/* ── Card ── */
[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: rgba(16, 185, 129, 0.15);
}

/* ── Card image ── */
[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card:hover .ts__card-img {
  transform: scale(1.05);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card-body {
  padding: 24px;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card-name {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--t-text-light, #ffffff);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card-bio {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 16px;
}

/* ── Social links ── */
[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card-socials {
  display: flex;
  gap: 8px;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__social-link:hover {
  background: var(--t-accent, #10B981);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ── Controls ── */
[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__nav-btn:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--t-accent, #10B981);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* ── Dots ── */
[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

[data-project="creatine-de"] .block-team-slider.block-team-slider .ts__dot--active {
  background: var(--t-accent, #10B981);
  width: 24px;
  border-radius: 4px;
}

/* ── Responsive: Tablet ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__slide {
    flex: 0 0 calc(50% - 12px);
  }

  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__header {
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__controls {
    margin-top: 36px;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__slide {
    flex: 0 0 calc(100% - 0px);
  }

  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__track {
    gap: 16px;
  }

  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card-body {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__nav-btn {
    width: 42px;
    height: 42px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__track {
    transition-duration: 0.01ms;
  }

  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card,
  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card-img,
  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__nav-btn,
  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__dot,
  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__social-link {
    transition-duration: 0.01ms;
  }

  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-team-slider.block-team-slider .ts__card:hover .ts__card-img {
    transform: none;
  }
}
/* ═══ BLOCK: team-slider-light ═══ */
/* ============================================================
   TEAM-SLIDER — Creatine-DE
   Layer 3: Per-block premium overrides
   Horizontal team carousel with card hover effects, navigation
   dots, smooth slide transitions. Dark section.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient glow ── */
[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__glow--1 {
  width: 520px;
  height: 520px;
  top: -12%;
  left: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__glow--2 {
  width: 440px;
  height: 440px;
  bottom: -8%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Slider container ── */
[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__slider {
  position: relative;
  overflow: hidden;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

/* ── Card ── */
[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: rgba(16, 185, 129, 0.15);
}

/* ── Card image ── */
[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card:hover .ts__card-img {
  transform: scale(1.05);
}

/* ── Card body ── */
[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card-body {
  padding: 24px;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card-name {
  display: block;
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--t-text-light, #ffffff);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card-bio {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0 0 16px;
}

/* ── Social links ── */
[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card-socials {
  display: flex;
  gap: 8px;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--t-muted, #64748b);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__social-link:hover {
  background: var(--t-accent, #10B981);
  color: var(--t-heading, #0F172A);
  transform: translateY(-2px);
}

/* ── Controls ── */
[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.06);
  color: var(--t-muted, #64748b);
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__nav-btn:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--t-accent, #10B981);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* ── Dots ── */
[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

[data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__dot--active {
  background: var(--t-accent, #10B981);
  width: 24px;
  border-radius: 4px;
}

/* ── Responsive: Tablet ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__slide {
    flex: 0 0 calc(50% - 12px);
  }

  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__header {
    margin-bottom: 40px;
  }

  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__controls {
    margin-top: 36px;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__slide {
    flex: 0 0 calc(100% - 0px);
  }

  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__track {
    gap: 16px;
  }

  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card-body {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__nav-btn {
    width: 42px;
    height: 42px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__track {
    transition-duration: 0.01ms;
  }

  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card,
  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card-img,
  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__nav-btn,
  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__dot,
  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__social-link {
    transition-duration: 0.01ms;
  }

  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-team-slider-light.block-team-slider-light .ts__card:hover .ts__card-img {
    transform: none;
  }
}

/* ═══ BLOCK: terms-page ═══ */
/* ============================================================
   TERMS-PAGE — Creatine DE
   AGB for online supplement shop, light text page
   ============================================================ */

[data-project="creatine-de"] .block-terms-page.block-terms-page {
  background: var(--t-bg, #ffffff);
  padding: var(--t-section-y, 5rem) var(--t-content-gap, 2rem);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__container {
  max-width: 780px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 2.25rem;
  font-weight: var(--t-heading-weight, 700);
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__updated {
  font-size: 0.875rem;
  color: var(--t-muted, #64748b);
  margin: 0 0 3rem;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__section {
  margin-bottom: 2.5rem;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  margin: 0 0 1rem;
  line-height: 1.3;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--t-border, #e2e8f0);
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--t-text, #1e293b);
  margin: 0 0 1rem;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__text:last-child {
  margin-bottom: 0;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__list,
[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__ordered-list {
  margin: 0.75rem 0 1rem 1.25rem;
  padding: 0;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__list {
  list-style: none;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__ordered-list {
  list-style: none;
  counter-reset: tp-counter;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__ordered-list .tp__list-item {
  counter-increment: tp-counter;
  padding-left: 1.5rem;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__ordered-list .tp__list-item::before {
  content: counter(tp-counter) '.';
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__list-item {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--t-text, #1e293b);
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__list > .tp__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__link {
  color: var(--t-accent, #10B981);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

[data-project="creatine-de"] .block-terms-page.block-terms-page .tp__link:hover {
  color: var(--t-heading, #0F172A);
}

/* ── Responsive 768px ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-terms-page.block-terms-page {
    padding: 3rem 1.25rem;
  }

  [data-project="creatine-de"] .block-terms-page.block-terms-page .tp__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-terms-page.block-terms-page .tp__heading {
    font-size: 1.15rem;
  }
}

/* ── Responsive 480px ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-terms-page.block-terms-page {
    padding: 2.5rem 1rem;
  }

  [data-project="creatine-de"] .block-terms-page.block-terms-page .tp__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-terms-page.block-terms-page .tp__updated {
    margin-bottom: 2rem;
  }

  [data-project="creatine-de"] .block-terms-page.block-terms-page .tp__section {
    margin-bottom: 2rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-terms-page.block-terms-page .tp__link {
    transition: none;
  }
}

/* ═══ BLOCK: terms-page-dark ═══ */
/* ============================================================
   TERMS-PAGE — Creatine DE
   AGB for online supplement shop, light text page
   ============================================================ */

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark {
  background: #0F172A;
  padding: var(--t-section-y, 5rem) var(--t-content-gap, 2rem);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__container {
  max-width: 780px;
  margin: 0 auto;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 2.25rem;
  font-weight: var(--t-heading-weight, 700);
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__updated {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 3rem;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__section {
  margin-bottom: 2.5rem;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, sans-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.3;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__text:last-child {
  margin-bottom: 0;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__list,
[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__ordered-list {
  margin: 0.75rem 0 1rem 1.25rem;
  padding: 0;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__list {
  list-style: none;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__ordered-list {
  list-style: none;
  counter-reset: tp-counter;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__ordered-list .tp__list-item {
  counter-increment: tp-counter;
  padding-left: 1.5rem;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__ordered-list .tp__list-item::before {
  content: counter(tp-counter) '.';
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__list-item {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__list > .tp__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__link {
  color: var(--t-accent, #10B981);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

[data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__link:hover {
  color: #ffffff;
}

/* ── Responsive 768px ── */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark {
    padding: 3rem 1.25rem;
  }

  [data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__heading {
    font-size: 1.15rem;
  }
}

/* ── Responsive 480px ── */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark {
    padding: 2.5rem 1rem;
  }

  [data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__updated {
    margin-bottom: 2rem;
  }

  [data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__section {
    margin-bottom: 2rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-terms-page-dark.block-terms-page-dark .tp__link {
    transition: none;
  }
}


/* ═══ BLOCK: testimonial-single ═══ */
/* ============================================================
   TESTIMONIAL-SINGLE — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-width single testimonial spotlight with oversized
   quote mark, glassmorphism trust bar, verified badge,
   ambient glow backdrop.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__glow--1 {
  width: 500px;
  height: 500px;
  top: -20%;
  left: 10%;
  background: var(--t-accent, #10B981);
  opacity: 0.08;
  animation: tsGlow1 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -15%;
  right: 5%;
  background: var(--t-accent, #10B981);
  opacity: 0.05;
  animation: tsGlow2 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes tsGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes tsGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
}

/* ══════════════════════════════════════
   QUOTE MARK
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__quote-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--t-accent, #10B981);
  opacity: 0.25;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__quote-mark svg {
  width: 64px;
  height: 64px;
}

/* ══════════════════════════════════════
   STARS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
  color: #facc15;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__star {
  filter: drop-shadow(0 1px 2px rgba(250, 204, 21, 0.3));
}

/* ══════════════════════════════════════
   QUOTE TEXT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__quote {
  margin: 0 0 40px;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__quote p {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0;
}

/* ══════════════════════════════════════
   AUTHOR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__author:hover .ts__avatar {
  border-color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  color: var(--t-accent, #10B981);
  background: var(--t-dark-bg, #0d1117);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 3px;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__author-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__author-role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__author-detail {
  font-size: 0.8125rem;
  color: var(--t-accent, #10B981);
  font-weight: 500;
}

/* ══════════════════════════════════════
   TRUST BAR — glassmorphism
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__trust-value {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__trust-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

[data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__trust-bar {
    gap: 20px;
    padding: 20px 24px;
  }

  [data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__quote-mark svg {
    width: 48px;
    height: 48px;
  }

  [data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__author {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__trust-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  [data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__trust-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__author {
    flex-direction: column;
    text-align: center;
  }

  [data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__author-info {
    text-align: center;
  }

  [data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__quote p {
    font-size: 1.0625rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__glow--1,
  [data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-testimonial-single.block-testimonial-single .ts__avatar {
    transition: none;
  }
}
/* ═══ BLOCK: testimonial-single-light ═══ */
/* ============================================================
   TESTIMONIAL-SINGLE — Creatine-DE
   Layer 3: Per-block premium overrides
   Full-width single testimonial spotlight with oversized
   quote mark, glassmorphism trust bar, verified badge,
   ambient glow backdrop.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__glow--1 {
  width: 500px;
  height: 500px;
  top: -20%;
  left: 10%;
  background: var(--t-accent, #10B981);
  opacity: 0.08;
  animation: tsGlow1 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -15%;
  right: 5%;
  background: var(--t-accent, #10B981);
  opacity: 0.05;
  animation: tsGlow2 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes tsGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes tsGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
}

/* ══════════════════════════════════════
   QUOTE MARK
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__quote-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--t-accent, #10B981);
  opacity: 0.25;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__quote-mark svg {
  width: 64px;
  height: 64px;
}

/* ══════════════════════════════════════
   STARS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
  color: #facc15;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__star {
  filter: drop-shadow(0 1px 2px rgba(250, 204, 21, 0.3));
}

/* ══════════════════════════════════════
   QUOTE TEXT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__quote {
  margin: 0 0 40px;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__quote p {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.75;
  color: var(--t-text, #1e293b);
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0;
}

/* ══════════════════════════════════════
   AUTHOR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__author:hover .ts__avatar {
  border-color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  color: var(--t-accent, #10B981);
  background: var(--t-dark-bg, #0d1117);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 3px;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__author-role {
  font-size: 0.875rem;
  color: var(--t-muted, #64748b);
  font-weight: 400;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__author-detail {
  font-size: 0.8125rem;
  color: var(--t-accent, #10B981);
  font-weight: 500;
}

/* ══════════════════════════════════════
   TRUST BAR — glassmorphism
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px 40px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__trust-value {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.03em;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__trust-label {
  font-size: 0.75rem;
  color: var(--t-muted, #64748b);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

[data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__trust-bar {
    gap: 20px;
    padding: 20px 24px;
  }

  [data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__quote-mark svg {
    width: 48px;
    height: 48px;
  }

  [data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__author {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__trust-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  [data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__trust-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__author {
    flex-direction: column;
    text-align: center;
  }

  [data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__author-info {
    text-align: center;
  }

  [data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__quote p {
    font-size: 1.0625rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__glow--1,
  [data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-testimonial-single-light.block-testimonial-single-light .ts__avatar {
    transition: none;
  }
}

/* ═══ BLOCK: testimonials ═══ */
/* ============================================================
   TESTIMONIALS — Creatine-DE
   Layer 3: Per-block premium overrides
   Testimonial grid with featured card, glassmorphism,
   trust bar, verified badges, ambient glow backdrop.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-testimonials.block-testimonials {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Backdrop glow ── */
[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: var(--t-accent, #10B981);
  animation: tmGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: var(--t-accent, #10B981);
  opacity: 0.04;
  animation: tmGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes tmGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes tmGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.06); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: tmPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes tmPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Card grid ── */
[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Card base ── */
[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04),
              0 4px 12px rgba(0, 0, 0, 0.03);
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06),
              0 12px 32px rgba(0, 0, 0, 0.08);
}

/* ── Featured card ── */
[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf9 100%);
  border-color: rgba(16, 185, 129, 0.15);
  padding: 40px;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__card-accent {
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #06d6a0);
}

/* ── Card top row ── */
[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__star {
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
}

/* ── Quote ── */
[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__quote {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  line-height: 1.7;
  color: var(--t-primary, #0F172A);
  margin: 0 0 24px;
  quotes: none;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__card--featured .tm__quote {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* ── Author ── */
[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #475569;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__avatar--accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #06d6a0);
  color: #ffffff;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__role {
  font-size: 0.8125rem;
  color: #94a3b8;
}

/* ── Trust bar ── */
[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: clamp(48px, 6vw, 72px);
  padding: 28px 40px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04),
              0 4px 12px rgba(0, 0, 0, 0.03);
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__trust-value {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.025em;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__trust-label {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 500;
}

[data-project="creatine-de"] .block-testimonials.block-testimonials .tm__trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-testimonials.block-testimonials .tm__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-testimonials.block-testimonials .tm__card--featured {
    grid-column: 1;
    padding: 32px;
  }

  [data-project="creatine-de"] .block-testimonials.block-testimonials .tm__trust-bar {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  [data-project="creatine-de"] .block-testimonials.block-testimonials .tm__trust-divider {
    width: 60px;
    height: 1px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-testimonials.block-testimonials {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-testimonials.block-testimonials .tm__card {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-testimonials.block-testimonials .tm__card--featured {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-testimonials.block-testimonials .tm__card-accent {
    left: 24px;
    right: 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-testimonials.block-testimonials .tm__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-testimonials.block-testimonials .tm__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-testimonials.block-testimonials .tm__card {
    transition: none;
  }
}
/* ═══ BLOCK: testimonials-carousel ═══ */
/* ═══ TESTIMONIALS-CAROUSEL — Creatine-DE ═══ */
/* Dark glassmorphism + emerald accents, scroll-based carousel */

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel {
  background: var(--_primary, #0F172A);
  color: #ffffff;
  overflow: visible;
  position: relative;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Header ─── */
[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__header {
  text-align: center;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 12px;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Track — horizontal scroll ─── */
[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 16px 4px 32px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__track::-webkit-scrollbar {
  display: none;
}

/* ─── Card — glassmorphism ─── */
[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__card {
  flex: 0 0 min(380px, 85vw);
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(16, 185, 129, 0.1);
}

/* Decorative quote mark */
[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(16, 185, 129, 0.12);
  pointer-events: none;
}

/* Top glow line on hover */
[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__card:hover::after {
  opacity: 1;
}

/* ─── Stars ─── */
[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__star {
  width: 18px;
  height: 18px;
  fill: #f59e0b;
  filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.3));
}

/* ─── Quote ─── */
[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

/* ─── Author ─── */
[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Avatar — CSS initials circle */
[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.2) 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--_accent, #10B981);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 3px 0 0;
  line-height: 1.3;
}

/* ─── Navigation ─── */
[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__nav-btn:hover {
  border-color: var(--_accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
  transform: scale(1.08);
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__nav-btn:active {
  transform: scale(0.95);
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__nav-btn:hover svg {
  stroke: var(--_accent, #10B981);
}

/* ═══ RESPONSIVE — 768px ═══ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__card {
    flex: 0 0 min(340px, 85vw);
    padding: 24px;
  }
}

/* ═══ RESPONSIVE — 480px ═══ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__card {
    flex: 0 0 min(300px, 88vw);
    padding: 20px;
  }

  [data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__quote {
    font-size: 0.88rem;
  }

  [data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__nav-btn {
    width: 44px;
    height: 44px;
  }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__card {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__card::after {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__nav-btn {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-testimonials-carousel.block-testimonials-carousel .tc__track {
    scroll-behavior: auto;
  }
}
/* ═══ BLOCK: testimonials-carousel-light ═══ */
/* ═══ TESTIMONIALS-CAROUSEL — Creatine-DE ═══ */
/* Dark glassmorphism + emerald accents, scroll-based carousel */

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light {
  background: var(--_primary, #0F172A);
  color: var(--t-heading, #0F172A);
  overflow: visible;
  position: relative;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Header ─── */
[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__header {
  text-align: center;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 12px;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--t-muted, #64748b);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Track — horizontal scroll ─── */
[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 16px 4px 32px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__track::-webkit-scrollbar {
  display: none;
}

/* ─── Card — glassmorphism ─── */
[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__card {
  flex: 0 0 min(380px, 85vw);
  scroll-snap-align: center;
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10),
              0 0 0 1px rgba(16, 185, 129, 0.1);
}

/* Decorative quote mark */
[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(16, 185, 129, 0.12);
  pointer-events: none;
}

/* Top glow line on hover */
[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__card:hover::after {
  opacity: 1;
}

/* ─── Stars ─── */
[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__star {
  width: 18px;
  height: 18px;
  fill: #f59e0b;
  filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.3));
}

/* ─── Quote ─── */
[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--t-text, #1e293b);
  font-style: italic;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

/* ─── Author ─── */
[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Avatar — CSS initials circle */
[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.2) 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--_accent, #10B981);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--t-heading, #0F172A);
  margin: 0;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__role {
  font-size: 0.8rem;
  color: var(--t-muted, #64748b);
  margin: 3px 0 0;
  line-height: 1.3;
}

/* ─── Navigation ─── */
[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__nav-btn:hover {
  border-color: var(--_accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
  transform: scale(1.08);
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__nav-btn:active {
  transform: scale(0.95);
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__nav-btn:hover svg {
  stroke: var(--_accent, #10B981);
}

/* ═══ RESPONSIVE — 768px ═══ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__card {
    flex: 0 0 min(340px, 85vw);
    padding: 24px;
  }
}

/* ═══ RESPONSIVE — 480px ═══ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__card {
    flex: 0 0 min(300px, 88vw);
    padding: 20px;
  }

  [data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__quote {
    font-size: 0.88rem;
  }

  [data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__nav-btn {
    width: 44px;
    height: 44px;
  }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__card {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__card::after {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__nav-btn {
    transition: none !important;
  }

  [data-project="creatine-de"] .block-testimonials-carousel-light.block-testimonials-carousel-light .tc__track {
    scroll-behavior: auto;
  }
}

/* ═══ BLOCK: testimonials-dark ═══ */
/* ============================================================
   TESTIMONIALS — Creatine-DE
   Layer 3: Per-block premium overrides
   Testimonial grid with featured card, glassmorphism,
   trust bar, verified badges, ambient glow backdrop.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Backdrop glow ── */
[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  background: var(--t-accent, #10B981);
  animation: tmGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: var(--t-accent, #10B981);
  opacity: 0.04;
  animation: tmGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes tmGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes tmGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.06); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: tmPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes tmPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Card grid ── */
[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Card base ── */
[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08),
              0 4px 12px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08),
              0 12px 32px rgba(255, 255, 255, 0.08);
}

/* ── Featured card ── */
[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf9 100%);
  border-color: rgba(16, 185, 129, 0.15);
  padding: 40px;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__card-accent {
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #06d6a0);
}

/* ── Card top row ── */
[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__star {
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
}

/* ── Quote ── */
[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__quote {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  line-height: 1.7;
  color: var(--t-primary, #0F172A);
  margin: 0 0 24px;
  quotes: none;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__card--featured .tm__quote {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* ── Author ── */
[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #475569;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__avatar--accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #06d6a0);
  color: #ffffff;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__role {
  font-size: 0.8125rem;
  color: #94a3b8;
}

/* ── Trust bar ── */
[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: clamp(48px, 6vw, 72px);
  padding: 28px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08),
              0 4px 12px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__trust-value {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.025em;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__trust-label {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 500;
}

[data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__card--featured {
    grid-column: 1;
    padding: 32px;
  }

  [data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__trust-bar {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  [data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__trust-divider {
    width: 60px;
    height: 1px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__card {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__card--featured {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__card-accent {
    left: 24px;
    right: 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-testimonials-dark.block-testimonials-dark .tm__card {
    transition: none;
  }
}

/* ═══ BLOCK: testimonials-video ═══ */
/* ============================================================
   TESTIMONIALS-VIDEO — Creatine-DE
   Layer 3: Per-block premium overrides
   Featured hero video testimonial with 3-card grid,
   glassmorphism play buttons, trust bar, ambient glow.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__glow--1 {
  width: 550px;
  height: 550px;
  top: -12%;
  left: -8%;
  background: var(--t-accent, #10B981);
  animation: tvGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__glow--2 {
  width: 420px;
  height: 420px;
  bottom: -10%;
  right: -6%;
  background: var(--t-accent, #10B981);
  opacity: 0.04;
  animation: tvGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes tvGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(35px, 20px) scale(1.1); }
}

@keyframes tvGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-25px, -18px) scale(1.06); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: tvBadgePulse 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes tvBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   FEATURED VIDEO — hero testimonial
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 72px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 12px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured:hover {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 20px 56px rgba(0, 0, 0, 0.06);
}

/* Featured video container */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-video:hover .tv__featured-poster {
  transform: scale(1.03);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Play button ── */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__play-btn--lg {
  width: 80px;
  height: 80px;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__play-btn:hover {
  background: rgba(16, 185, 129, 0.85);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.15), 0 8px 32px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__play-icon {
  flex-shrink: 0;
}

/* ── Featured info panel ── */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-info {
  padding: clamp(24px, 3vw, 40px);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__star {
  color: #f59e0b;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-quote {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #334155;
  margin: 0 0 24px;
  font-style: normal;
  border: none;
  padding: 0;
}

/* ── Author block ── */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__avatar--sm {
  width: 36px;
  height: 36px;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__author-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__author-role {
  font-size: 0.8125rem;
  color: #64748b;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
}

/* ══════════════════════════════════════
   VIDEO CARD GRID — 3 columns
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
  margin-bottom: clamp(48px, 6vw, 64px);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.06);
}

/* Card video thumbnail */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card-video:hover .tv__card-poster {
  transform: scale(1.05);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Card body */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card-body {
  padding: clamp(16px, 2vw, 24px);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card-quote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
  margin: 0 0 16px;
  font-style: normal;
  border: none;
  padding: 0;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ══════════════════════════════════════
   TRUST BAR — glassmorphism stats strip
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(20px, 3vw, 32px) clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.03),
    0 4px 16px rgba(0, 0, 0, 0.04);
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__trust-value {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__trust-label {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
}

[data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__trust-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.2), transparent);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__trust-bar {
    flex-direction: column;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__trust-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__play-btn--lg {
    width: 64px;
    height: 64px;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__verified {
    margin-left: 0;
    margin-top: 8px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-info {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card-body {
    padding: 16px;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__trust-bar {
    padding: 20px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-author {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__glow--1,
  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__play-btn {
    transition: none;
  }

  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__featured-poster,
  [data-project="creatine-de"] .block-testimonials-video.block-testimonials-video .tv__card-poster {
    transition: none;
  }
}
/* ═══ BLOCK: testimonials-video-dark ═══ */
/* ============================================================
   TESTIMONIALS-VIDEO — Creatine-DE
   Layer 3: Per-block premium overrides
   Featured hero video testimonial with 3-card grid,
   glassmorphism play buttons, trust bar, ambient glow.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__glow--1 {
  width: 550px;
  height: 550px;
  top: -12%;
  left: -8%;
  background: var(--t-accent, #10B981);
  animation: tvGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__glow--2 {
  width: 420px;
  height: 420px;
  bottom: -10%;
  right: -6%;
  background: var(--t-accent, #10B981);
  opacity: 0.04;
  animation: tvGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes tvGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(35px, 20px) scale(1.1); }
}

@keyframes tvGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-25px, -18px) scale(1.06); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: tvBadgePulse 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes tvBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   FEATURED VIDEO — hero testimonial
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 72px);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.08),
    0 12px 40px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured:hover {
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08),
    0 20px 56px rgba(255, 255, 255, 0.08);
}

/* Featured video container */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-video:hover .tv__featured-poster {
  transform: scale(1.03);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Play button ── */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__play-btn--lg {
  width: 80px;
  height: 80px;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__play-btn:hover {
  background: rgba(16, 185, 129, 0.85);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.15), 0 8px 32px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__play-icon {
  flex-shrink: 0;
}

/* ── Featured info panel ── */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-info {
  padding: clamp(24px, 3vw, 40px);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__star {
  color: #f59e0b;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-quote {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #334155;
  margin: 0 0 24px;
  font-style: normal;
  border: none;
  padding: 0;
}

/* ── Author block ── */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__avatar--sm {
  width: 36px;
  height: 36px;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__author-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__author-role {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
}

/* ══════════════════════════════════════
   VIDEO CARD GRID — 3 columns
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
  margin-bottom: clamp(48px, 6vw, 64px);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08),
    0 16px 48px rgba(255, 255, 255, 0.08);
}

/* Card video thumbnail */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card-video:hover .tv__card-poster {
  transform: scale(1.05);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Card body */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card-body {
  padding: clamp(16px, 2vw, 24px);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card-quote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
  margin: 0 0 16px;
  font-style: normal;
  border: none;
  padding: 0;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ══════════════════════════════════════
   TRUST BAR — glassmorphism stats strip
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(20px, 3vw, 32px) clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__trust-value {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__trust-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

[data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__trust-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.2), transparent);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured {
    grid-template-columns: 1fr;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__trust-bar {
    flex-direction: column;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__trust-divider {
    width: 40px;
    height: 1px;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__play-btn--lg {
    width: 64px;
    height: 64px;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__verified {
    margin-left: 0;
    margin-top: 8px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-info {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card-body {
    padding: 16px;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__trust-bar {
    padding: 20px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-author {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__glow--1,
  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__play-btn {
    transition: none;
  }

  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__featured-poster,
  [data-project="creatine-de"] .block-testimonials-video-dark.block-testimonials-video-dark .tv__card-poster {
    transition: none;
  }
}

/* ═══ BLOCK: text-blockquote ═══ */
/* TEXT-BLOCKQUOTE — creatine-de */
[data-project="creatine-de"] .block-text-blockquote.block-text-blockquote {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 40px);
  background: #f0fdf4;
}
[data-project="creatine-de"] .block-text-blockquote.block-text-blockquote .tbq__inner {
  max-width: 800px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-blockquote.block-text-blockquote .tbq__quote {
  position: relative;
  margin: 0;
  padding: 40px 0 40px 40px;
}
[data-project="creatine-de"] .block-text-blockquote.block-text-blockquote .tbq__accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #10B981, #10B98166);
  border-radius: 2px;
}
[data-project="creatine-de"] .block-text-blockquote.block-text-blockquote .tbq__text {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.5;
  color: #0F172A;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  font-style: italic;
}
[data-project="creatine-de"] .block-text-blockquote.block-text-blockquote .tbq__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
[data-project="creatine-de"] .block-text-blockquote.block-text-blockquote .tbq__author {
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
  color: #10B981;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-blockquote.block-text-blockquote .tbq__quote { padding: 24px 0 24px 24px; }
}
/* ═══ BLOCK: text-blockquote-dark ═══ */
/* TEXT-BLOCKQUOTE — creatine-de */
[data-project="creatine-de"] .block-text-blockquote-dark.block-text-blockquote-dark {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 40px);
  background: #f0fdf4;
}
[data-project="creatine-de"] .block-text-blockquote-dark.block-text-blockquote-dark .tbq__inner {
  max-width: 800px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-blockquote-dark.block-text-blockquote-dark .tbq__quote {
  position: relative;
  margin: 0;
  padding: 40px 0 40px 40px;
}
[data-project="creatine-de"] .block-text-blockquote-dark.block-text-blockquote-dark .tbq__accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #10B981, #10B98166);
  border-radius: 2px;
}
[data-project="creatine-de"] .block-text-blockquote-dark.block-text-blockquote-dark .tbq__text {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  font-style: italic;
}
[data-project="creatine-de"] .block-text-blockquote-dark.block-text-blockquote-dark .tbq__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
[data-project="creatine-de"] .block-text-blockquote-dark.block-text-blockquote-dark .tbq__author {
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
  color: #10B981;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-blockquote-dark.block-text-blockquote-dark .tbq__quote { padding: 24px 0 24px 24px; }
}

/* ═══ BLOCK: text-callout ═══ */
/* TEXT-CALLOUT — creatine-de */
[data-project="creatine-de"] .block-text-callout.block-text-callout {
  padding: clamp(32px, 6vw, 64px) clamp(20px, 5vw, 40px);
  background: #f0fdf4;
}
[data-project="creatine-de"] .block-text-callout.block-text-callout .tco__inner {
  max-width: 800px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-callout.block-text-callout .tco__box {
  display: flex;
  gap: 20px;
  padding: 28px 32px;
  background: #ffffff;
  border-radius: 16px;
  border-left: 4px solid #10B981;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
[data-project="creatine-de"] .block-text-callout.block-text-callout .tco__icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10B98112;
  border-radius: 12px;
  margin-top: 2px;
}
[data-project="creatine-de"] .block-text-callout.block-text-callout .tco__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
}
[data-project="creatine-de"] .block-text-callout.block-text-callout .tco__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #0F172A;
  opacity: 0.75;
  margin: 0;
}
@media (max-width: 600px) {
  [data-project="creatine-de"] .block-text-callout.block-text-callout .tco__box { flex-direction: column; gap: 12px; padding: 20px; }
}
/* ═══ BLOCK: text-callout-dark ═══ */
/* TEXT-CALLOUT — creatine-de */
[data-project="creatine-de"] .block-text-callout-dark.block-text-callout-dark {
  padding: clamp(32px, 6vw, 64px) clamp(20px, 5vw, 40px);
  background: #f0fdf4;
}
[data-project="creatine-de"] .block-text-callout-dark.block-text-callout-dark .tco__inner {
  max-width: 800px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-callout-dark.block-text-callout-dark .tco__box {
  display: flex;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border-left: 4px solid #10B981;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.08);
}
[data-project="creatine-de"] .block-text-callout-dark.block-text-callout-dark .tco__icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10B98112;
  border-radius: 12px;
  margin-top: 2px;
}
[data-project="creatine-de"] .block-text-callout-dark.block-text-callout-dark .tco__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}
[data-project="creatine-de"] .block-text-callout-dark.block-text-callout-dark .tco__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ffffff;
  opacity: 0.75;
  margin: 0;
}
@media (max-width: 600px) {
  [data-project="creatine-de"] .block-text-callout-dark.block-text-callout-dark .tco__box { flex-direction: column; gap: 12px; padding: 20px; }
}

/* ═══ BLOCK: text-checklist ═══ */
/* TEXT-CHECKLIST — creatine-de */
[data-project="creatine-de"] .block-text-checklist.block-text-checklist {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #f0fdf4;
}
[data-project="creatine-de"] .block-text-checklist.block-text-checklist .tcl__inner {
  max-width: 720px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-checklist.block-text-checklist .tcl__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1.2;
}
[data-project="creatine-de"] .block-text-checklist.block-text-checklist .tcl__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #0F172A;
  opacity: 0.7;
  margin: 0 0 36px;
}
[data-project="creatine-de"] .block-text-checklist.block-text-checklist .tcl__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
[data-project="creatine-de"] .block-text-checklist.block-text-checklist .tcl__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #0F172A08;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
[data-project="creatine-de"] .block-text-checklist.block-text-checklist .tcl__item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}
[data-project="creatine-de"] .block-text-checklist.block-text-checklist .tcl__check {
  flex-shrink: 0;
  margin-top: 1px;
}
[data-project="creatine-de"] .block-text-checklist.block-text-checklist .tcl__label {
  font-size: 1rem;
  line-height: 1.5;
  color: #0F172A;
  font-weight: 500;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-checklist.block-text-checklist .tcl__item { padding: 12px 16px; }
}
/* ═══ BLOCK: text-checklist-dark ═══ */
/* TEXT-CHECKLIST — creatine-de */
[data-project="creatine-de"] .block-text-checklist-dark.block-text-checklist-dark {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #f0fdf4;
}
[data-project="creatine-de"] .block-text-checklist-dark.block-text-checklist-dark .tcl__inner {
  max-width: 720px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-checklist-dark.block-text-checklist-dark .tcl__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1.2;
}
[data-project="creatine-de"] .block-text-checklist-dark.block-text-checklist-dark .tcl__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffffff;
  opacity: 0.7;
  margin: 0 0 36px;
}
[data-project="creatine-de"] .block-text-checklist-dark.block-text-checklist-dark .tcl__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
[data-project="creatine-de"] .block-text-checklist-dark.block-text-checklist-dark .tcl__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid #0F172A08;
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
[data-project="creatine-de"] .block-text-checklist-dark.block-text-checklist-dark .tcl__item:hover {
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
[data-project="creatine-de"] .block-text-checklist-dark.block-text-checklist-dark .tcl__check {
  flex-shrink: 0;
  margin-top: 1px;
}
[data-project="creatine-de"] .block-text-checklist-dark.block-text-checklist-dark .tcl__label {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 500;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-checklist-dark.block-text-checklist-dark .tcl__item { padding: 12px 16px; }
}

/* ═══ BLOCK: text-img-left ═══ */
/* TEXT-IMG-LEFT — creatine-de */
[data-project="creatine-de"] .block-text-img-left.block-text-img-left {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #f0fdf4;
}
[data-project="creatine-de"] .block-text-img-left.block-text-img-left .til__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
[data-project="creatine-de"] .block-text-img-left.block-text-img-left .til__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
[data-project="creatine-de"] .block-text-img-left.block-text-img-left .til__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
[data-project="creatine-de"] .block-text-img-left.block-text-img-left .til__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  line-height: 1.25;
}
[data-project="creatine-de"] .block-text-img-left.block-text-img-left .til__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #0F172A;
  opacity: 0.75;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-img-left.block-text-img-left .til__inner { grid-template-columns: 1fr; gap: 24px; }
}
/* ═══ BLOCK: text-img-left-dark ═══ */
/* TEXT-IMG-LEFT — creatine-de */
[data-project="creatine-de"] .block-text-img-left-dark.block-text-img-left-dark {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #f0fdf4;
}
[data-project="creatine-de"] .block-text-img-left-dark.block-text-img-left-dark .til__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
[data-project="creatine-de"] .block-text-img-left-dark.block-text-img-left-dark .til__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
}
[data-project="creatine-de"] .block-text-img-left-dark.block-text-img-left-dark .til__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
[data-project="creatine-de"] .block-text-img-left-dark.block-text-img-left-dark .til__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  line-height: 1.25;
}
[data-project="creatine-de"] .block-text-img-left-dark.block-text-img-left-dark .til__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.75;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-img-left-dark.block-text-img-left-dark .til__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══ BLOCK: text-img-right ═══ */
/* TEXT-IMG-RIGHT — creatine-de */
[data-project="creatine-de"] .block-text-img-right.block-text-img-right {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #ffffff;
}
[data-project="creatine-de"] .block-text-img-right.block-text-img-right .tir__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
[data-project="creatine-de"] .block-text-img-right.block-text-img-right .tir__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
[data-project="creatine-de"] .block-text-img-right.block-text-img-right .tir__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
[data-project="creatine-de"] .block-text-img-right.block-text-img-right .tir__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  line-height: 1.25;
}
[data-project="creatine-de"] .block-text-img-right.block-text-img-right .tir__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #0F172A;
  opacity: 0.75;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-img-right.block-text-img-right .tir__inner { grid-template-columns: 1fr; }
  [data-project="creatine-de"] .block-text-img-right.block-text-img-right .tir__media { order: -1; }
}
/* ═══ BLOCK: text-img-right-dark ═══ */
/* TEXT-IMG-RIGHT — creatine-de */
[data-project="creatine-de"] .block-text-img-right-dark.block-text-img-right-dark {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #0F172A;
}
[data-project="creatine-de"] .block-text-img-right-dark.block-text-img-right-dark .tir__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
[data-project="creatine-de"] .block-text-img-right-dark.block-text-img-right-dark .tir__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
}
[data-project="creatine-de"] .block-text-img-right-dark.block-text-img-right-dark .tir__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
[data-project="creatine-de"] .block-text-img-right-dark.block-text-img-right-dark .tir__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  line-height: 1.25;
}
[data-project="creatine-de"] .block-text-img-right-dark.block-text-img-right-dark .tir__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.75;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-img-right-dark.block-text-img-right-dark .tir__inner { grid-template-columns: 1fr; }
  [data-project="creatine-de"] .block-text-img-right-dark.block-text-img-right-dark .tir__media { order: -1; }
}

/* ═══ BLOCK: text-numbered-guide ═══ */
/* TEXT-NUMBERED-GUIDE — creatine-de */
[data-project="creatine-de"] .block-text-numbered-guide.block-text-numbered-guide {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #ffffff;
}
[data-project="creatine-de"] .block-text-numbered-guide.block-text-numbered-guide .tng__inner {
  max-width: 800px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-numbered-guide.block-text-numbered-guide .tng__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  text-align: center;
  line-height: 1.2;
}
[data-project="creatine-de"] .block-text-numbered-guide.block-text-numbered-guide .tng__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
[data-project="creatine-de"] .block-text-numbered-guide.block-text-numbered-guide .tng__step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #0F172A0a;
  align-items: start;
}
[data-project="creatine-de"] .block-text-numbered-guide.block-text-numbered-guide .tng__step:last-child {
  border-bottom: none;
}
[data-project="creatine-de"] .block-text-numbered-guide.block-text-numbered-guide .tng__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10B981;
  line-height: 1;
  opacity: 0.3;
  font-variant-numeric: tabular-nums;
}
[data-project="creatine-de"] .block-text-numbered-guide.block-text-numbered-guide .tng__step-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 8px;
}
[data-project="creatine-de"] .block-text-numbered-guide.block-text-numbered-guide .tng__step-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #0F172A;
  opacity: 0.7;
  margin: 0;
}
@media (max-width: 600px) {
  [data-project="creatine-de"] .block-text-numbered-guide.block-text-numbered-guide .tng__step { grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; }
  [data-project="creatine-de"] .block-text-numbered-guide.block-text-numbered-guide .tng__number { font-size: 1.75rem; }
}
/* ═══ BLOCK: text-numbered-guide-dark ═══ */
/* TEXT-NUMBERED-GUIDE — creatine-de */
[data-project="creatine-de"] .block-text-numbered-guide-dark.block-text-numbered-guide-dark {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #0F172A;
}
[data-project="creatine-de"] .block-text-numbered-guide-dark.block-text-numbered-guide-dark .tng__inner {
  max-width: 800px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-numbered-guide-dark.block-text-numbered-guide-dark .tng__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  text-align: center;
  line-height: 1.2;
}
[data-project="creatine-de"] .block-text-numbered-guide-dark.block-text-numbered-guide-dark .tng__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
[data-project="creatine-de"] .block-text-numbered-guide-dark.block-text-numbered-guide-dark .tng__step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #0F172A0a;
  align-items: start;
}
[data-project="creatine-de"] .block-text-numbered-guide-dark.block-text-numbered-guide-dark .tng__step:last-child {
  border-bottom: none;
}
[data-project="creatine-de"] .block-text-numbered-guide-dark.block-text-numbered-guide-dark .tng__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10B981;
  line-height: 1;
  opacity: 0.3;
  font-variant-numeric: tabular-nums;
}
[data-project="creatine-de"] .block-text-numbered-guide-dark.block-text-numbered-guide-dark .tng__step-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
}
[data-project="creatine-de"] .block-text-numbered-guide-dark.block-text-numbered-guide-dark .tng__step-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ffffff;
  opacity: 0.7;
  margin: 0;
}
@media (max-width: 600px) {
  [data-project="creatine-de"] .block-text-numbered-guide-dark.block-text-numbered-guide-dark .tng__step { grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; }
  [data-project="creatine-de"] .block-text-numbered-guide-dark.block-text-numbered-guide-dark .tng__number { font-size: 1.75rem; }
}

/* ═══ BLOCK: text-research-summary ═══ */
/* TEXT-RESEARCH-SUMMARY — creatine-de */
[data-project="creatine-de"] .block-text-research-summary.block-text-research-summary {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #0F172A;
  color: #ffffff;
}
[data-project="creatine-de"] .block-text-research-summary.block-text-research-summary .trs__inner {
  max-width: 1080px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-research-summary.block-text-research-summary .trs__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 40px;
  text-align: center;
  line-height: 1.2;
}
[data-project="creatine-de"] .block-text-research-summary.block-text-research-summary .trs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
[data-project="creatine-de"] .block-text-research-summary.block-text-research-summary .trs__col {
  padding: 32px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
[data-project="creatine-de"] .block-text-research-summary.block-text-research-summary .trs__col--findings {
  border-color: #10B98144;
  background: #10B98108;
}
[data-project="creatine-de"] .block-text-research-summary.block-text-research-summary .trs__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10B981;
  margin: 0 0 16px;
}
[data-project="creatine-de"] .block-text-research-summary.block-text-research-summary .trs__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-research-summary.block-text-research-summary .trs__grid { grid-template-columns: 1fr; gap: 24px; }
  [data-project="creatine-de"] .block-text-research-summary.block-text-research-summary .trs__col { padding: 24px; }
}
/* ═══ BLOCK: text-research-summary-light ═══ */
/* TEXT-RESEARCH-SUMMARY — creatine-de */
[data-project="creatine-de"] .block-text-research-summary-light.block-text-research-summary-light {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: var(--t-surface, #f8fafb);
  color: var(--t-heading, #0F172A);
}
[data-project="creatine-de"] .block-text-research-summary-light.block-text-research-summary-light .trs__inner {
  max-width: 1080px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-research-summary-light.block-text-research-summary-light .trs__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.025em;
  margin: 0 0 40px;
  text-align: center;
  line-height: 1.2;
}
[data-project="creatine-de"] .block-text-research-summary-light.block-text-research-summary-light .trs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
[data-project="creatine-de"] .block-text-research-summary-light.block-text-research-summary-light .trs__col {
  padding: 32px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
[data-project="creatine-de"] .block-text-research-summary-light.block-text-research-summary-light .trs__col--findings {
  border-color: #10B98144;
  background: #10B98108;
}
[data-project="creatine-de"] .block-text-research-summary-light.block-text-research-summary-light .trs__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10B981;
  margin: 0 0 16px;
}
[data-project="creatine-de"] .block-text-research-summary-light.block-text-research-summary-light .trs__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--t-text, #1e293b);
  margin: 0;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-research-summary-light.block-text-research-summary-light .trs__grid { grid-template-columns: 1fr; gap: 24px; }
  [data-project="creatine-de"] .block-text-research-summary-light.block-text-research-summary-light .trs__col { padding: 24px; }
}

/* ═══ BLOCK: text-sidebar-facts ═══ */
/* TEXT-SIDEBAR-FACTS — creatine-de */
[data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #ffffff;
}
[data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
[data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  line-height: 1.25;
}
[data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #0F172A;
  opacity: 0.75;
  margin: 0 0 16px;
}
[data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__sidebar {
  position: sticky;
  top: 100px;
  background: #f0fdf4;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #10B98115;
}
[data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__sidebar-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10B981;
  margin: 0 0 20px;
}
[data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__fact {
  padding: 16px 0;
  border-bottom: 1px solid #0F172A0a;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
[data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__fact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
[data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__fact-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10B981;
  line-height: 1.1;
}
[data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__fact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
}
[data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__fact-desc {
  font-size: 0.8rem;
  color: #0F172A;
  opacity: 0.55;
  line-height: 1.4;
}
@media (max-width: 900px) {
  [data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__inner { grid-template-columns: 1fr; gap: 32px; }
  [data-project="creatine-de"] .block-text-sidebar-facts.block-text-sidebar-facts .tsf__sidebar { position: static; }
}
/* ═══ BLOCK: text-sidebar-facts-dark ═══ */
/* TEXT-SIDEBAR-FACTS — creatine-de */
[data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #0F172A;
}
[data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
[data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  line-height: 1.25;
}
[data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.75;
  margin: 0 0 16px;
}
[data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__sidebar {
  position: sticky;
  top: 100px;
  background: #f0fdf4;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #10B98115;
}
[data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__sidebar-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10B981;
  margin: 0 0 20px;
}
[data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__fact {
  padding: 16px 0;
  border-bottom: 1px solid #0F172A0a;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
[data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__fact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
[data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__fact-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10B981;
  line-height: 1.1;
}
[data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__fact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}
[data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__fact-desc {
  font-size: 0.8rem;
  color: #ffffff;
  opacity: 0.55;
  line-height: 1.4;
}
@media (max-width: 900px) {
  [data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__inner { grid-template-columns: 1fr; gap: 32px; }
  [data-project="creatine-de"] .block-text-sidebar-facts-dark.block-text-sidebar-facts-dark .tsf__sidebar { position: static; }
}

/* ═══ BLOCK: text-single-col ═══ */
/* TEXT-SINGLE-COL — creatine-de */
[data-project="creatine-de"] .block-text-single-col.block-text-single-col {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #f0fdf4;
}
[data-project="creatine-de"] .block-text-single-col.block-text-single-col .tsc__inner {
  max-width: 720px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-single-col.block-text-single-col .tsc__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  line-height: 1.2;
}
[data-project="creatine-de"] .block-text-single-col.block-text-single-col .tsc__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: #0F172A;
  opacity: 0.85;
  line-height: 1.7;
  margin: 0 0 32px;
  font-weight: 500;
}
[data-project="creatine-de"] .block-text-single-col.block-text-single-col .tsc__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #0F172A;
  opacity: 0.75;
  margin: 0 0 20px;
}
[data-project="creatine-de"] .block-text-single-col.block-text-single-col .tsc__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-single-col.block-text-single-col { padding: 40px 20px; }
  [data-project="creatine-de"] .block-text-single-col.block-text-single-col .tsc__heading { font-size: 1.5rem; }
}
/* ═══ BLOCK: text-single-col-dark ═══ */
/* TEXT-SINGLE-COL — creatine-de */
[data-project="creatine-de"] .block-text-single-col-dark.block-text-single-col-dark {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #f0fdf4;
}
[data-project="creatine-de"] .block-text-single-col-dark.block-text-single-col-dark .tsc__inner {
  max-width: 720px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-single-col-dark.block-text-single-col-dark .tsc__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  line-height: 1.2;
}
[data-project="creatine-de"] .block-text-single-col-dark.block-text-single-col-dark .tsc__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: #ffffff;
  opacity: 0.85;
  line-height: 1.7;
  margin: 0 0 32px;
  font-weight: 500;
}
[data-project="creatine-de"] .block-text-single-col-dark.block-text-single-col-dark .tsc__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.75;
  margin: 0 0 20px;
}
[data-project="creatine-de"] .block-text-single-col-dark.block-text-single-col-dark .tsc__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-single-col-dark.block-text-single-col-dark { padding: 40px 20px; }
  [data-project="creatine-de"] .block-text-single-col-dark.block-text-single-col-dark .tsc__heading { font-size: 1.5rem; }
}

/* ═══ BLOCK: text-two-col ═══ */
/* TEXT-TWO-COL — creatine-de */
[data-project="creatine-de"] .block-text-two-col.block-text-two-col {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #ffffff;
}
[data-project="creatine-de"] .block-text-two-col.block-text-two-col .ttc__inner {
  max-width: 1080px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-two-col.block-text-two-col .ttc__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.025em;
  margin: 0 0 40px;
  text-align: center;
  line-height: 1.2;
}
[data-project="creatine-de"] .block-text-two-col.block-text-two-col .ttc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
[data-project="creatine-de"] .block-text-two-col.block-text-two-col .ttc__col-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #10B981;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #10B98122;
}
[data-project="creatine-de"] .block-text-two-col.block-text-two-col .ttc__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #0F172A;
  opacity: 0.75;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-two-col.block-text-two-col .ttc__grid { grid-template-columns: 1fr; gap: 32px; }
}
/* ═══ BLOCK: text-two-col-dark ═══ */
/* TEXT-TWO-COL — creatine-de */
[data-project="creatine-de"] .block-text-two-col-dark.block-text-two-col-dark {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px);
  background: #0F172A;
}
[data-project="creatine-de"] .block-text-two-col-dark.block-text-two-col-dark .ttc__inner {
  max-width: 1080px;
  margin: 0 auto;
}
[data-project="creatine-de"] .block-text-two-col-dark.block-text-two-col-dark .ttc__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 40px;
  text-align: center;
  line-height: 1.2;
}
[data-project="creatine-de"] .block-text-two-col-dark.block-text-two-col-dark .ttc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
[data-project="creatine-de"] .block-text-two-col-dark.block-text-two-col-dark .ttc__col-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #10B981;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #10B98122;
}
[data-project="creatine-de"] .block-text-two-col-dark.block-text-two-col-dark .ttc__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.75;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-text-two-col-dark.block-text-two-col-dark .ttc__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══ BLOCK: timed-features ═══ */
/* ============================================================
   TIMED-FEATURES — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark timeline section showing creatine effects over time.
   Animated progress track, glassmorphism cards, stagger reveals.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Backdrop ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: tfGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: tfGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes tfGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes tfGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: tfPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes tfPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  margin: 0 0 clamp(48px, 6vw, 80px);
}

/* ── Timeline track ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__timeline {
  position: relative;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-track {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--t-accent, #10B981), rgba(16, 185, 129, 0.2));
  border-radius: 1px;
  transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Phases ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab {
  display: grid;
  grid-template-columns: 56px 100px 1fr;
  gap: 0 24px;
  align-items: start;
  padding: 32px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Phase marker ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.25);
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab.is-active .tf__tab-ring {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), 0 0 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab.is-active .tf__tab-number {
  color: var(--t-accent, #10B981);
}

/* ── Phase time label ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 16px;
  opacity: 0.7;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab.is-active .tf__tab-time {
  opacity: 1;
}

/* ── Phase card (glassmorphism) ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-content:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(16, 185, 129, 0.08);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab.is-active .tf__tab-content {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 32px rgba(16, 185, 129, 0.1), 0 0 0 1px rgba(16, 185, 129, 0.1);
}

/* ── Phase icon ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__visual-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

/* ── Phase text ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 20px;
}

/* ── Phase stat ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-stat {
  display: flex;
  align-items: baseline;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-stat-suffix {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 12px;
}

/* ── CTA ── */
[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__cta-row {
  text-align: center;
  margin-top: clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  background: #0ea574;
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features.block-timed-features .tf__cta:hover .tf__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab {
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-time {
    grid-column: 2;
    padding-top: 0;
    margin-bottom: 12px;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-content {
    grid-column: 2;
    padding: 20px 24px;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-marker {
    width: 44px;
    height: 44px;
    grid-row: 1 / 3;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-track {
    left: 21px;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-timed-features.block-timed-features {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab {
    grid-template-columns: 36px 1fr;
    gap: 0 12px;
    padding: 24px 0;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-marker {
    width: 36px;
    height: 36px;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-number {
    font-size: 0.75rem;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-content {
    padding: 16px 18px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-track {
    left: 17px;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-stat-value {
    font-size: 1.375rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__glow--1,
  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-timed-features.block-timed-features .tf__tab-bar {
    transition: none;
  }
}
/* ═══ BLOCK: timed-features-light ═══ */
/* ============================================================
   TIMED-FEATURES — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark timeline section showing creatine effects over time.
   Animated progress track, glassmorphism cards, stagger reveals.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Backdrop ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: tfGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: tfGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes tfGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes tfGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  animation: tfPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes tfPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  max-width: 620px;
  margin: 0 0 clamp(48px, 6vw, 80px);
}

/* ── Timeline track ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__timeline {
  position: relative;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-track {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 1px;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--t-accent, #10B981), rgba(16, 185, 129, 0.2));
  border-radius: 1px;
  transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Phases ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab {
  display: grid;
  grid-template-columns: 56px 100px 1fr;
  gap: 0 24px;
  align-items: start;
  padding: 32px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Phase marker ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.25);
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab.is-active .tf__tab-ring {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), 0 0 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.30);
  letter-spacing: 0.05em;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab.is-active .tf__tab-number {
  color: var(--t-accent, #10B981);
}

/* ── Phase time label ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 16px;
  opacity: 0.7;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab.is-active .tf__tab-time {
  opacity: 1;
}

/* ── Phase card (glassmorphism) ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-content {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-content:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(16, 185, 129, 0.08);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab.is-active .tf__tab-content {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 32px rgba(16, 185, 129, 0.1), 0 0 0 1px rgba(16, 185, 129, 0.1);
}

/* ── Phase icon ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__visual-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

/* ── Phase text ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 20px;
}

/* ── Phase stat ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-stat {
  display: flex;
  align-items: baseline;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-stat-suffix {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-stat-label {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.40);
  margin-left: 12px;
}

/* ── CTA ── */
[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__cta-row {
  text-align: center;
  margin-top: clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--t-accent, #10B981);
  color: var(--t-heading, #0F172A);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  background: #0ea574;
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__cta:hover .tf__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab {
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-time {
    grid-column: 2;
    padding-top: 0;
    margin-bottom: 12px;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-content {
    grid-column: 2;
    padding: 20px 24px;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-marker {
    width: 44px;
    height: 44px;
    grid-row: 1 / 3;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-track {
    left: 21px;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab {
    grid-template-columns: 36px 1fr;
    gap: 0 12px;
    padding: 24px 0;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-marker {
    width: 36px;
    height: 36px;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-number {
    font-size: 0.75rem;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-content {
    padding: 16px 18px;
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-track {
    left: 17px;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-stat-value {
    font-size: 1.375rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__glow--1,
  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__badge-dot {
    animation: none;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-timed-features-light.block-timed-features-light .tf__tab-bar {
    transition: none;
  }
}

/* ═══ BLOCK: timeline ═══ */
/* ═══ TIMELINE — Kreatin-Forschung Zeitleiste (Alternating) ═══ */

/* Section */
[data-project="creatine-de"] .block-timeline.block-timeline {
  background: #f8fafb;
  padding: clamp(64px, 8vw, 96px) 24px;
  position: relative;
}

/* Subtle top/bottom dividers */
[data-project="creatine-de"] .block-timeline.block-timeline::before,
[data-project="creatine-de"] .block-timeline.block-timeline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
}
[data-project="creatine-de"] .block-timeline.block-timeline::before { top: 0; }
[data-project="creatine-de"] .block-timeline.block-timeline::after { bottom: 0; }

/* Inner container */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Header */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__header {
  text-align: center;
  margin-bottom: 64px;
}

[data-project="creatine-de"] .block-timeline.block-timeline .tl__overline {
  color: var(--t-accent, #10B981);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-timeline.block-timeline .tl__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--t-heading, #0a0f1a);
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1.15;
}

[data-project="creatine-de"] .block-timeline.block-timeline .tl__subtitle {
  font-size: 1.05rem;
  color: var(--t-muted, #64748b);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Timeline container */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__timeline {
  position: relative;
  padding: 16px 0;
}

/* Vertical center line */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(16, 185, 129, 0.2) 5%,
    rgba(16, 185, 129, 0.35) 50%,
    rgba(16, 185, 129, 0.2) 95%,
    transparent 100%
  );
}

/* Timeline item base */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  width: 100%;
}
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item:last-child {
  margin-bottom: 0;
}

/* Left-aligned item */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item--left {
  justify-content: flex-start;
  padding-right: calc(50% + 32px);
}

/* Right-aligned item */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item--right {
  justify-content: flex-end;
  padding-left: calc(50% + 32px);
}

/* Center dot */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--t-accent, #10B981);
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

/* Dot hover via parent */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item:hover .tl__dot {
  background: var(--t-accent, #10B981);
  box-shadow:
    0 0 0 6px rgba(16, 185, 129, 0.12),
    0 0 16px rgba(16, 185, 129, 0.25);
  transform: translateX(-50%) scale(1.2);
}

/* Card */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.03),
    0 2px 4px rgba(0, 0, 0, 0.03),
    0 4px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Pre-rendered elevated shadow for 60fps hover */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 16px;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.05),
    0 16px 32px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.03);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Card hover */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item:hover .tl__card {
  border-color: rgba(16, 185, 129, 0.15);
}
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item:hover .tl__card::after {
  opacity: 1;
}

/* Left cards shift left on hover */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item--left:hover .tl__card {
  transform: translateX(-6px);
}

/* Right cards shift right on hover */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item--right:hover .tl__card {
  transform: translateX(6px);
}

/* Card arrow pointers toward center line */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item--left .tl__card::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 24px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  transition: border-color 0.5s ease;
}
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item--right .tl__card::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 24px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-right: none;
  border-top: none;
  transform: rotate(45deg);
  transition: border-color 0.5s ease;
}

/* Arrow border change on hover */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__item:hover .tl__card::before {
  border-color: rgba(16, 185, 129, 0.15);
}

/* Year badge */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__year {
  display: inline-block;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
  color: var(--t-accent, #10B981);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

/* Card title */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--t-heading, #0a0f1a);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

/* Card text */
[data-project="creatine-de"] .block-timeline.block-timeline .tl__card-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--t-muted, #64748b);
  margin: 0;
}

[data-project="creatine-de"] .block-timeline.block-timeline .tl__card-text em {
  font-style: italic;
  color: var(--t-muted, #64748b);
}

/* ═══ RESPONSIVE ═══ */

/* Tablet */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__item--left {
    padding-right: calc(50% + 24px);
  }
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__item--right {
    padding-left: calc(50% + 24px);
  }
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__card {
    padding: 24px;
  }
}

/* Mobile: single column, line on left */
@media (max-width: 640px) {
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__line {
    left: 20px;
    transform: none;
  }
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__dot {
    left: 20px;
    transform: translateX(-50%);
  }
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__item:hover .tl__dot {
    transform: translateX(-50%) scale(1.2);
  }
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__item--left,
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__item--right {
    padding-left: 52px;
    padding-right: 0;
    justify-content: flex-start;
  }
  /* Hide arrow pointers on mobile */
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__item--left .tl__card::before,
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__item--right .tl__card::before {
    display: none;
  }
  /* Reset hover transforms on mobile */
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__item--left:hover .tl__card,
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__item--right:hover .tl__card {
    transform: translateY(-4px);
  }
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__card {
    padding: 20px 24px;
  }
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__item {
    margin-bottom: 32px;
  }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__card {
    transition: none !important;
  }
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__card::after {
    transition: none !important;
  }
  [data-project="creatine-de"] .block-timeline.block-timeline .tl__dot {
    transition: none !important;
  }
}
/* ═══ BLOCK: timeline-dark ═══ */
/* ═══ TIMELINE — Kreatin-Forschung Zeitleiste (Alternating) ═══ */

/* Section */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark {
  background: #0F172A;
  padding: clamp(64px, 8vw, 96px) 24px;
  position: relative;
}

/* Subtle top/bottom dividers */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark::before,
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark::before { top: 0; }
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark::after { bottom: 0; }

/* Inner container */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Header */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__header {
  text-align: center;
  margin-bottom: 64px;
}

[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__overline {
  color: var(--t-accent, #10B981);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1.15;
}

[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Timeline container */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__timeline {
  position: relative;
  padding: 16px 0;
}

/* Vertical center line */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(16, 185, 129, 0.2) 5%,
    rgba(16, 185, 129, 0.35) 50%,
    rgba(16, 185, 129, 0.2) 95%,
    transparent 100%
  );
}

/* Timeline item base */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  width: 100%;
}
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item:last-child {
  margin-bottom: 0;
}

/* Left-aligned item */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--left {
  justify-content: flex-start;
  padding-right: calc(50% + 32px);
}

/* Right-aligned item */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--right {
  justify-content: flex-end;
  padding-left: calc(50% + 32px);
}

/* Center dot */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 3px solid var(--t-accent, #10B981);
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

/* Dot hover via parent */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item:hover .tl__dot {
  background: var(--t-accent, #10B981);
  box-shadow:
    0 0 0 6px rgba(16, 185, 129, 0.12),
    0 0 16px rgba(16, 185, 129, 0.25);
  transform: translateX(-50%) scale(1.2);
}

/* Card */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  box-shadow:
    0 1px 2px rgba(255, 255, 255, 0.08),
    0 2px 4px rgba(255, 255, 255, 0.08),
    0 4px 8px rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Pre-rendered elevated shadow for 60fps hover */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 16px;
  box-shadow:
    0 8px 16px rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(255, 255, 255, 0.08),
    0 24px 48px rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Card hover */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item:hover .tl__card {
  border-color: rgba(16, 185, 129, 0.15);
}
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item:hover .tl__card::after {
  opacity: 1;
}

/* Left cards shift left on hover */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--left:hover .tl__card {
  transform: translateX(-6px);
}

/* Right cards shift right on hover */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--right:hover .tl__card {
  transform: translateX(6px);
}

/* Card arrow pointers toward center line */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--left .tl__card::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 24px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  transition: border-color 0.5s ease;
}
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--right .tl__card::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 24px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
  border-top: none;
  transform: rotate(45deg);
  transition: border-color 0.5s ease;
}

/* Arrow border change on hover */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item:hover .tl__card::before {
  border-color: rgba(16, 185, 129, 0.15);
}

/* Year badge */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__year {
  display: inline-block;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
  color: var(--t-accent, #10B981);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

/* Card title */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

/* Card text */
[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__card-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

[data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__card-text em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══ RESPONSIVE ═══ */

/* Tablet */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--left {
    padding-right: calc(50% + 24px);
  }
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--right {
    padding-left: calc(50% + 24px);
  }
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__card {
    padding: 24px;
  }
}

/* Mobile: single column, line on left */
@media (max-width: 640px) {
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__line {
    left: 20px;
    transform: none;
  }
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__dot {
    left: 20px;
    transform: translateX(-50%);
  }
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item:hover .tl__dot {
    transform: translateX(-50%) scale(1.2);
  }
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--left,
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--right {
    padding-left: 52px;
    padding-right: 0;
    justify-content: flex-start;
  }
  /* Hide arrow pointers on mobile */
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--left .tl__card::before,
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--right .tl__card::before {
    display: none;
  }
  /* Reset hover transforms on mobile */
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--left:hover .tl__card,
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item--right:hover .tl__card {
    transform: translateY(-4px);
  }
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__card {
    padding: 20px 24px;
  }
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__item {
    margin-bottom: 32px;
  }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__card {
    transition: none !important;
  }
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__card::after {
    transition: none !important;
  }
  [data-project="creatine-de"] .block-timeline-dark.block-timeline-dark .tl__dot {
    transition: none !important;
  }
}

/* ═══ BLOCK: timeline-draw ═══ */
/* ============================================================
   TIMELINE-DRAW — Creatine-DE
   Layer 3: Per-block premium overrides
   Vertical timeline with draw-on-scroll line animation,
   alternating cards, staggered reveals, ambient glow.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 24px;
  overflow: hidden;
  isolation: isolate;
}

/* ── Backdrop ── */
[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__glow--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: tdGlowDrift1 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -5%;
  right: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: tdGlowDrift2 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes tdGlowDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}

@keyframes tdGlowDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner ── */
[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__header {
  text-align: center;
  margin-bottom: 72px;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  opacity: 0.6;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   TIMELINE STRUCTURE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__timeline {
  position: relative;
  padding: 0;
}

/* Vertical line */
[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__svg-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--t-accent, #10B981), rgba(16, 185, 129, 0.2));
  border-radius: 1px;
  transition: height 0.05s linear;
}

/* ══════════════════════════════════════
   TIMELINE ITEMS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0 0 64px 0;
  width: 50%;
  padding-right: 48px;
  margin-left: 0;
  opacity: 0;
  transform: translateY(32px) translateX(-20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step--right {
  margin-left: 50%;
  padding-right: 0;
  padding-left: 48px;
  flex-direction: row;
  transform: translateY(32px) translateX(20px);
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step--right.is-visible {
  transform: translateY(0) translateX(0);
}

/* ── Marker ── */
[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__marker {
  position: absolute;
  top: 6px;
  right: -8px;
  width: 16px;
  height: 16px;
  z-index: 2;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step--right .td__marker {
  right: auto;
  left: -8px;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__marker-dot {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  z-index: 1;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__marker-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--t-accent, #10B981);
  opacity: 0;
  animation: tdPulse 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes tdPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ── Card ── */
[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 28px;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__card:hover {
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.08), 0 0 0 1px rgba(16, 185, 129, 0.06);
  transform: translateY(-4px);
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px 0;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__card-text em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

/* ── Tag ── */
[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__card-tag--accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__tag-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   FOOTER STATS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__footer {
  margin-top: 24px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__stat-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__stat {
  text-align: center;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__stat-suffix {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__svg {
    left: 20px;
    transform: none;
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step,
  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step--right {
    width: 100%;
    margin-left: 0;
    padding-left: 52px;
    padding-right: 0;
    transform: translateY(32px) translateX(0);
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step.is-visible,
  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step--right.is-visible {
    transform: translateY(0) translateX(0);
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__marker,
  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step--right .td__marker {
    left: 12px;
    right: auto;
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__stat-row {
    gap: 24px;
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__stat-divider {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw {
    padding: clamp(56px, 8vw, 80px) 16px;
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__header {
    margin-bottom: 48px;
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__card {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step,
  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step--right {
    padding-bottom: 40px;
    padding-left: 44px;
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__stat-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__glow--1,
  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__marker-pulse {
    animation: none;
    opacity: 0;
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__svg-progress {
    height: 100% !important;
    transition: none;
  }

  [data-project="creatine-de"] .block-timeline-draw.block-timeline-draw .td__card {
    transition: none;
  }
}
/* ═══ BLOCK: timeline-draw-light ═══ */
/* ============================================================
   TIMELINE-DRAW — Creatine-DE
   Layer 3: Per-block premium overrides
   Vertical timeline with draw-on-scroll line animation,
   alternating cards, staggered reveals, ambient glow.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 24px;
  overflow: hidden;
  isolation: isolate;
}

/* ── Backdrop ── */
[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__glow--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: tdGlowDrift1 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -5%;
  right: -6%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  animation: tdGlowDrift2 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes tdGlowDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}

@keyframes tdGlowDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner ── */
[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__header {
  text-align: center;
  margin-bottom: 72px;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 1px;
  opacity: 0.6;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  max-width: 580px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   TIMELINE STRUCTURE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__timeline {
  position: relative;
  padding: 0;
}

/* Vertical line */
[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 1px;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__svg-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--t-accent, #10B981), rgba(16, 185, 129, 0.2));
  border-radius: 1px;
  transition: height 0.05s linear;
}

/* ══════════════════════════════════════
   TIMELINE ITEMS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0 0 64px 0;
  width: 50%;
  padding-right: 48px;
  margin-left: 0;
  opacity: 0;
  transform: translateY(32px) translateX(-20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step--right {
  margin-left: 50%;
  padding-right: 0;
  padding-left: 48px;
  flex-direction: row;
  transform: translateY(32px) translateX(20px);
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step--right.is-visible {
  transform: translateY(0) translateX(0);
}

/* ── Marker ── */
[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__marker {
  position: absolute;
  top: 6px;
  right: -8px;
  width: 16px;
  height: 16px;
  z-index: 2;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step--right .td__marker {
  right: auto;
  left: -8px;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__marker-dot {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--t-accent, #10B981);
  z-index: 1;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__marker-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--t-accent, #10B981);
  opacity: 0;
  animation: tdPulse 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes tdPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ── Card ── */
[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__card {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__card:hover {
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.08), 0 0 0 1px rgba(16, 185, 129, 0.06);
  transform: translateY(-4px);
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  margin: 0 0 10px 0;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0 0 16px 0;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__card-text em {
  font-style: italic;
  color: var(--t-muted, #64748b);
}

/* ── Tag ── */
[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.40);
  text-transform: uppercase;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__card-tag--accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__tag-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   FOOTER STATS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__footer {
  margin-top: 24px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__stat-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__stat {
  text-align: center;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__stat-value {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  letter-spacing: -0.03em;
  line-height: 1;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__stat-suffix {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--t-accent, #10B981);
  letter-spacing: -0.02em;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__svg {
    left: 20px;
    transform: none;
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step,
  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step--right {
    width: 100%;
    margin-left: 0;
    padding-left: 52px;
    padding-right: 0;
    transform: translateY(32px) translateX(0);
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step.is-visible,
  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step--right.is-visible {
    transform: translateY(0) translateX(0);
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__marker,
  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step--right .td__marker {
    left: 12px;
    right: auto;
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__stat-row {
    gap: 24px;
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__stat-divider {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light {
    padding: clamp(56px, 8vw, 80px) 16px;
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__header {
    margin-bottom: 48px;
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__card {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step,
  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step--right {
    padding-bottom: 40px;
    padding-left: 44px;
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__stat-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__glow--1,
  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__marker-pulse {
    animation: none;
    opacity: 0;
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__svg-progress {
    height: 100% !important;
    transition: none;
  }

  [data-project="creatine-de"] .block-timeline-draw-light.block-timeline-draw-light .td__card {
    transition: none;
  }
}

/* ═══ BLOCK: trainingsplan-builder ═══ */
/* TRAININGSPLAN-BUILDER — creatine-de */
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder { padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 40px); background: #fff; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__inner { max-width: 960px; margin: 0 auto; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__heading { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: #0F172A; text-align: center; margin: 0 0 8px; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__subtitle { font-size: 1rem; color: #0F172A; opacity: 0.55; text-align: center; margin: 0 0 40px; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__grid { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__group { margin-bottom: 24px; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #0F172A; opacity: 0.6; margin-bottom: 8px; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__select { width: 100%; padding: 10px 14px; border-radius: 8px; border: 1px solid #0F172A15; background: #f0fdf4; font-size: 0.9rem; color: #0F172A; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__radios { display: flex; flex-direction: column; gap: 6px; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__radio { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #0F172A; cursor: pointer; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__radio input { accent-color: #10B981; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__table { width: 100%; border-collapse: collapse; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__table th { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #0F172A; opacity: 0.5; text-align: left; padding: 8px 12px; border-bottom: 2px solid #0F172A0a; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__table td { font-size: 0.85rem; color: #0F172A; padding: 10px 12px; border-bottom: 1px solid #0F172A06; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__table tr { animation: tpbRow 0.3s ease backwards; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__table tr:nth-child(1) { animation-delay: 0s; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__table tr:nth-child(2) { animation-delay: 0.05s; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__table tr:nth-child(3) { animation-delay: 0.1s; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__table tr:nth-child(4) { animation-delay: 0.15s; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__table tr:nth-child(5) { animation-delay: 0.2s; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__table tr:nth-child(6) { animation-delay: 0.25s; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__table tr:nth-child(7) { animation-delay: 0.3s; }
[data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__summary { margin-top: 20px; padding: 16px; background: #10B98108; border-radius: 12px; font-size: 0.85rem; color: #0F172A; line-height: 1.5; }
@keyframes tpbRow { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
@media (max-width: 768px) { [data-project="creatine-de"] .block-trainingsplan-builder.block-trainingsplan-builder .tpb__grid { grid-template-columns: 1fr; } }
/* ═══ BLOCK: transition-kreatin-explosion ═══ */
/* TRANSITION-KREATIN-EXPLOSION — creatine-de */
[data-project="creatine-de"] .block-transition-kreatin-explosion.block-transition-kreatin-explosion { padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 40px); background: #0F172A; color: #fff; }
[data-project="creatine-de"] .block-transition-kreatin-explosion.block-transition-kreatin-explosion .tra__inner { max-width: 900px; margin: 0 auto; text-align: center; }
[data-project="creatine-de"] .block-transition-kreatin-explosion.block-transition-kreatin-explosion .tra__heading { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; margin: 0 0 40px; color: #fff; }
[data-project="creatine-de"] .block-transition-kreatin-explosion.block-transition-kreatin-explosion .tra__viz { padding: 20px 0; }
[data-project="creatine-de"] .block-transition-kreatin-explosion.block-transition-kreatin-explosion .tra__viz svg { width: 100%; max-width: 800px; height: auto; margin: 0 auto; display: block; }
[data-project="creatine-de"] .block-transition-kreatin-explosion.block-transition-kreatin-explosion .tra__caption { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 20px; }
/* ═══ BLOCK: usp-banner ═══ */
/* ============================================================
   USP-BANNER — Creatine-DE
   Layer 3: Per-block premium overrides
   Slim horizontal USP strip below nav. Subtle accent tint,
   icon-led trust signals, responsive wrap. Sits between
   nav-sticky and social-proof-bar.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-usp-banner.block-usp-banner {
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 990;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* Subtle top accent glow */
[data-project="creatine-de"] .block-usp-banner.block-usp-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 30%,
    rgba(16, 185, 129, 0.18) 50%,
    rgba(16, 185, 129, 0.12) 70%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Track — horizontal scroll on mobile, centered on desktop ── */
[data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 44px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

[data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__track::-webkit-scrollbar {
  display: none;
}

/* ── Individual USP item ── */
[data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__item:hover {
  opacity: 0.75;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__icon svg {
  width: 18px;
  height: 18px;
}

/* ── Text ── */
[data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__text {
  font-size: 0.8rem;
  font-weight: 450;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
  line-height: 1;
}

[data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__text strong {
  font-weight: 650;
  color: var(--t-primary, #0F172A);
}

/* ── Divider ── */
[data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__divider {
  width: 1px;
  height: 16px;
  background: rgba(15, 23, 42, 0.1);
  flex-shrink: 0;
  border-radius: 1px;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__track {
    justify-content: flex-start;
    height: 40px;
    /* Scroll hint — fade right edge */
    -webkit-mask-image: linear-gradient(to right, #000 85%, transparent 100%);
    mask-image: linear-gradient(to right, #000 85%, transparent 100%);
  }

  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__item {
    padding: 0 12px;
  }

  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__text {
    font-size: 0.75rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__inner {
    padding: 0 12px;
  }

  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__track {
    height: 38px;
    gap: 0;
  }

  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__item {
    padding: 0 10px;
    gap: 5px;
  }

  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__icon {
    width: 16px;
    height: 16px;
  }

  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__icon svg {
    width: 14px;
    height: 14px;
  }

  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__text {
    font-size: 0.7rem;
  }

  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__divider {
    height: 12px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-usp-banner.block-usp-banner .ub__item {
    transition: none;
  }
}
/* ═══ BLOCK: usp-banner-dark ═══ */
/* ============================================================
   USP-BANNER — Creatine-DE
   Layer 3: Per-block premium overrides
   Slim horizontal USP strip below nav. Subtle accent tint,
   icon-led trust signals, responsive wrap. Sits between
   nav-sticky and social-proof-bar.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark {
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 990;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* Subtle top accent glow */
[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 185, 129, 0.12) 30%,
    rgba(16, 185, 129, 0.18) 50%,
    rgba(16, 185, 129, 0.12) 70%,
    transparent 100%
  );
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Track — horizontal scroll on mobile, centered on desktop ── */
[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 44px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__track::-webkit-scrollbar {
  display: none;
}

/* ── Individual USP item ── */
[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__item:hover {
  opacity: 0.75;
}

/* ── Icon ── */
[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--t-accent, #10B981);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__icon svg {
  width: 18px;
  height: 18px;
}

/* ── Text ── */
[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__text {
  font-size: 0.8rem;
  font-weight: 450;
  color: var(--t-primary, #0F172A);
  letter-spacing: -0.01em;
  line-height: 1;
}

[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__text strong {
  font-weight: 650;
  color: var(--t-primary, #0F172A);
}

/* ── Divider ── */
[data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__divider {
  width: 1px;
  height: 16px;
  background: rgba(15, 23, 42, 0.1);
  flex-shrink: 0;
  border-radius: 1px;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__inner {
    padding: 0 16px;
  }

  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__track {
    justify-content: flex-start;
    height: 40px;
    /* Scroll hint — fade right edge */
    -webkit-mask-image: linear-gradient(to right, #000 85%, transparent 100%);
    mask-image: linear-gradient(to right, #000 85%, transparent 100%);
  }

  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__item {
    padding: 0 12px;
  }

  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__text {
    font-size: 0.75rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__inner {
    padding: 0 12px;
  }

  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__track {
    height: 38px;
    gap: 0;
  }

  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__item {
    padding: 0 10px;
    gap: 5px;
  }

  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__icon {
    width: 16px;
    height: 16px;
  }

  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__icon svg {
    width: 14px;
    height: 14px;
  }

  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__text {
    font-size: 0.7rem;
  }

  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__divider {
    height: 12px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-usp-banner-dark.block-usp-banner-dark .ub__item {
    transition: none;
  }
}

/* ═══ BLOCK: vacature-detail ═══ */
/* ============================================================
   VACATURE-DETAIL — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with two-column layout: main content + sticky
   sidebar, glassmorphism cards, benefit grid, scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (dark) ── */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* grain overlay */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* ── Ambient glows ── */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__glow--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: vdGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -8%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: vdGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes vdGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.1); }
}

@keyframes vdGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__breadcrumb-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__breadcrumb-link:hover {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__breadcrumb-current {
  color: rgba(255, 255, 255, 0.8);
}

/* ══════════════════════════════════════
   TWO-COLUMN LAYOUT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* ══════════════════════════════════════
   HEADER — tags, title, lead, meta bar
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 14px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__tag--dept {
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__tag-dot--rd {
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__tag-icon {
  flex-shrink: 0;
  opacity: 0.6;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__lead {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 32px;
}

/* ── Meta bar ── */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__meta-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__meta-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   CONTENT SECTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__section {
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__section-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Checklist ── */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__list-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 6px;
  color: var(--t-accent, #10B981);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   BENEFITS GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__benefit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__benefit:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__benefit-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__benefit-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* ══════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Apply card ── */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__apply-card {
  padding: 32px 28px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  text-align: center;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__apply-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__apply-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0d1117;
  background: var(--t-accent, #10B981);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__apply-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__apply-btn:hover .vd__apply-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__apply-note {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
}

/* ── Info card ── */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__info-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__info-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__info-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__info-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__info-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* ── Share card ── */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__share-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__share-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__share-btns {
  display: flex;
  gap: 8px;
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__share-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__share-btn:hover {
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.06);
}

/* ══════════════════════════════════════
   BACK LINK
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__cta-bottom {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__back-link:hover {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__back-link svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__back-link:hover svg {
  transform: translateX(-3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__sidebar {
    position: static;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__meta-bar {
    flex-wrap: wrap;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__meta-divider {
    display: none;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__meta-item {
    min-width: calc(50% - 16px);
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__tags {
    gap: 8px;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__tag {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__meta-bar {
    padding: 16px;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__meta-item {
    min-width: 100%;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__apply-card {
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__benefit {
    padding: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__benefit,
  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__apply-btn,
  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__share-btn,
  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__back-link svg,
  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__apply-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-vacature-detail.block-vacature-detail .vd__benefit:hover {
    transform: none;
  }
}
/* ═══ BLOCK: vacature-detail-light ═══ */
/* ============================================================
   VACATURE-DETAIL — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with two-column layout: main content + sticky
   sidebar, glassmorphism cards, benefit grid, scroll-reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (dark) ── */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* grain overlay */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* ── Ambient glows ── */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__glow--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: vdGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -8%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: vdGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes vdGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 25px) scale(1.1); }
}

@keyframes vdGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -20px) scale(1.08); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-bottom: 40px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__breadcrumb-link {
  color: var(--t-muted, #64748b);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__breadcrumb-link:hover {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__breadcrumb-sep {
  color: rgba(0, 0, 0, 0.25);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__breadcrumb-current {
  color: var(--t-text, #1e293b);
}

/* ══════════════════════════════════════
   TWO-COLUMN LAYOUT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* ══════════════════════════════════════
   HEADER — tags, title, lead, meta bar
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 6px 14px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__tag--dept {
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__tag-dot--rd {
  background: var(--t-accent, #10B981);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__tag-icon {
  flex-shrink: 0;
  opacity: 0.6;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__lead {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.75;
  color: var(--t-muted, #64748b);
  margin: 0 0 32px;
}

/* ── Meta bar ── */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__meta-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.40);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__meta-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   CONTENT SECTIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__section {
  margin-bottom: 48px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__section-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── Checklist ── */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__list-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 6px;
  color: var(--t-accent, #10B981);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   BENEFITS GRID
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__benefit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__benefit:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__benefit-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__benefit-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--t-muted, #64748b);
}

/* ══════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Apply card ── */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__apply-card {
  padding: 32px 28px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  text-align: center;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__apply-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t-heading, #0F172A);
  margin: 0 0 12px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__apply-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--t-muted, #64748b);
  margin: 0 0 24px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0d1117;
  background: var(--t-accent, #10B981);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__apply-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__apply-btn:hover .vd__apply-arrow {
  transform: translateX(3px);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__apply-note {
  display: block;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.40);
  margin-top: 14px;
}

/* ── Info card ── */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__info-card {
  padding: 28px 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__info-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__info-label {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 400;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__info-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
  margin: 0;
}

/* ── Share card ── */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__share-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__share-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__share-btns {
  display: flex;
  gap: 8px;
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__share-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--t-muted, #64748b);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__share-btn:hover {
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.06);
}

/* ══════════════════════════════════════
   BACK LINK
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__cta-bottom {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__back-link:hover {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__back-link svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__back-link:hover svg {
  transform: translateX(-3px);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__sidebar {
    position: static;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__meta-bar {
    flex-wrap: wrap;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__meta-divider {
    display: none;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__meta-item {
    min-width: calc(50% - 16px);
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__tags {
    gap: 8px;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__tag {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__meta-bar {
    padding: 16px;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__meta-item {
    min-width: 100%;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__apply-card {
    padding: 24px 20px;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__benefit {
    padding: 20px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__glow {
    animation: none;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__benefit,
  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__apply-btn,
  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__share-btn,
  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__back-link svg,
  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__apply-arrow {
    transition: none;
  }

  [data-project="creatine-de"] .block-vacature-detail-light.block-vacature-detail-light .vd__benefit:hover {
    transform: none;
  }
}

/* ═══ BLOCK: vacatures-filter ═══ */
/* ============================================================
   VACATURES-FILTER — Creatine-DE
   Layer 3: Per-block premium overrides
   Light section with search + category filter, job listing
   cards with hover-lift, dot-coded categories, stagger reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (light) ── */
[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle dot pattern */
[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   CONTROLS — search + filter pills
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__controls {
  margin-bottom: clamp(32px, 4vw, 48px);
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__search-wrap {
  position: relative;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__search {
  width: 100%;
  padding: 14px 18px 14px 50px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__search:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__search::placeholder {
  color: #94a3b8;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__chip {
  padding: 8px 18px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__chip:hover {
  color: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__chip--active {
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__chip--active:hover {
  color: #ffffff;
  background: #059669;
  border-color: #059669;
}

/* ══════════════════════════════════════
   JOB CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04),
              0 8px 24px rgba(0, 0, 0, 0.06),
              0 0 0 1px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card[hidden] {
  display: none;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-dot--forschung {
  background: #10B981;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-dot--produktion {
  background: #3b82f6;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-dot--marketing {
  background: #f59e0b;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-dot--qualitaet {
  background: #8b5cf6;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-dot--logistik {
  background: #ef4444;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-info {
  min-width: 0;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-name {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  margin: 0 0 4px;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #64748b;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-sep {
  opacity: 0.4;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-tag {
  padding: 2px 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 100px;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 16px;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-btn {
  color: #94a3b8;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card:hover .vf__card-btn {
  color: var(--t-accent, #10B981);
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__empty {
  text-align: center;
  padding: 48px 20px;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__empty[hidden] {
  display: none;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__empty-icon {
  color: #94a3b8;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__empty-text {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
}

/* ══════════════════════════════════════
   COUNT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__count {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

[data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__count span {
  font-weight: 700;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   RESPONSIVE — tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
  }

  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-right {
    margin-left: 0;
    align-self: flex-end;
  }

  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__filters::-webkit-scrollbar {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__search {
    font-size: 1rem;
    padding: 12px 14px 12px 44px;
  }

  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-meta {
    font-size: 0.75rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card,
  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card-btn,
  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__chip,
  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__search {
    transition: none;
  }

  [data-project="creatine-de"] .block-vacatures-filter.block-vacatures-filter .vf__card:hover {
    transform: none;
  }
}
/* ═══ BLOCK: vacatures-filter-dark ═══ */
/* ============================================================
   VACATURES-FILTER — Creatine-DE
   Layer 3: Per-block premium overrides
   Light section with search + category filter, job listing
   cards with hover-lift, dot-coded categories, stagger reveal.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (light) ── */
[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle dot pattern */
[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   CONTROLS — search + filter pills
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__controls {
  margin-bottom: clamp(32px, 4vw, 48px);
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__search-wrap {
  position: relative;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__search {
  width: 100%;
  padding: 14px 18px 14px 50px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--t-primary, #0F172A);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__search:focus {
  border-color: var(--t-accent, #10B981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__search::placeholder {
  color: #94a3b8;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__chip {
  padding: 8px 18px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__chip:hover {
  color: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.04);
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__chip--active {
  color: #ffffff;
  background: var(--t-accent, #10B981);
  border-color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__chip--active:hover {
  color: #ffffff;
  background: #059669;
  border-color: #059669;
}

/* ══════════════════════════════════════
   JOB CARDS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08),
              0 8px 24px rgba(255, 255, 255, 0.08),
              0 0 0 1px rgba(16, 185, 129, 0.08);
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card[hidden] {
  display: none;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-dot--forschung {
  background: #10B981;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-dot--produktion {
  background: #3b82f6;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-dot--marketing {
  background: #f59e0b;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-dot--qualitaet {
  background: #8b5cf6;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-dot--logistik {
  background: #ef4444;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-info {
  min-width: 0;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-name {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-primary, #0F172A);
  margin: 0 0 4px;
  line-height: 1.3;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-sep {
  opacity: 0.4;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-tag {
  padding: 2px 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 100px;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 16px;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-btn {
  color: #94a3b8;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card:hover .vf__card-btn {
  color: var(--t-accent, #10B981);
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__empty {
  text-align: center;
  padding: 48px 20px;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__empty[hidden] {
  display: none;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__empty-icon {
  color: #94a3b8;
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__empty-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ══════════════════════════════════════
   COUNT
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__count {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

[data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__count span {
  font-weight: 700;
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   RESPONSIVE — tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
  }

  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-right {
    margin-left: 0;
    align-self: flex-end;
  }

  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__filters::-webkit-scrollbar {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — mobile
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__title {
    font-size: 1.75rem;
  }

  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__search {
    font-size: 1rem;
    padding: 12px 14px 12px 44px;
  }

  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-meta {
    font-size: 0.75rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card,
  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card-btn,
  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__chip,
  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__search {
    transition: none;
  }

  [data-project="creatine-de"] .block-vacatures-filter-dark.block-vacatures-filter-dark .vf__card:hover {
    transform: none;
  }
}

/* ═══ BLOCK: vacatures-marquee ═══ */
/* ============================================================
   VACATURES-MARQUEE — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with dual-direction scrolling marquee chips,
   glassmorphism hover states, ambient glow, stat counters.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (dark) ── */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* grain overlay */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* ── Ambient glows ── */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: vmGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: vmGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes vmGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 20px) scale(1.1); }
}

@keyframes vmGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__inner {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 64px);
  padding: 0 clamp(20px, 4vw, 40px);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   MARQUEE — infinite horizontal scroll
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: vmScroll 45s linear infinite;
  will-change: transform;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__marquee-track--reverse {
  animation: vmScrollReverse 50s linear infinite;
}

@keyframes vmScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes vmScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* pause on hover */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__marquee-wrap:hover .vm__marquee-track {
  animation-play-state: paused;
}

/* ══════════════════════════════════════
   CHIP — individual job card
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: var(--t-text-light, #ffffff);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(16, 185, 129, 0.08);
}

/* ── Chip dot (department color) ── */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-dot--rd {
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-dot--lab {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-dot--qa {
  background: #8b5cf6;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-dot--mkt {
  background: #ec4899;
  box-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-dot--log {
  background: #06b6d4;
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-dot--dev {
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-dot--reg {
  background: #f97316;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

/* ── Chip text elements ── */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-text-light, #ffffff);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-location {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-salary {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card:hover .vm__card-salary {
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   FOOTER — stats + CTA
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: clamp(48px, 6vw, 64px);
  padding: 0 clamp(20px, 4vw, 40px);
}

/* stat row */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__stat-number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-accent, #10B981);
  line-height: 1.1;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* CTA button */
[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.3),
    0 8px 32px rgba(16, 185, 129, 0.2);
  background: #0ea572;
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__btn-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__btn:hover .vm__btn-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__stat-row {
    gap: 24px;
  }

  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__stat-sep {
    height: 32px;
  }

  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card {
    padding: 12px 18px;
    gap: 10px;
  }

  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-title {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__marquee-wrap {
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__stat-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__stat-sep {
    display: none;
  }

  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__stat {
    min-width: 80px;
  }

  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card-salary {
    display: none;
  }

  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__marquee-track,
  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__marquee-track--reverse {
    animation: none;
  }

  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__glow--1,
  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-vacatures-marquee.block-vacatures-marquee .vm__btn:hover {
    transform: none;
  }
}
/* ═══ BLOCK: vacatures-marquee-light ═══ */
/* ============================================================
   VACATURES-MARQUEE — Creatine-DE
   Layer 3: Per-block premium overrides
   Dark section with dual-direction scrolling marquee chips,
   glassmorphism hover states, ambient glow, stat counters.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper (dark) ── */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* grain overlay */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* ── Ambient glows ── */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  animation: vmGlow1 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: vmGlow2 22s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes vmGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 20px) scale(1.1); }
}

@keyframes vmGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -15px) scale(1.05); }
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__inner {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 64px);
  padding: 0 clamp(20px, 4vw, 40px);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-text-light, #ffffff);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   MARQUEE — infinite horizontal scroll
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: vmScroll 45s linear infinite;
  will-change: transform;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__marquee-track--reverse {
  animation: vmScrollReverse 50s linear infinite;
}

@keyframes vmScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes vmScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* pause on hover */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__marquee-wrap:hover .vm__marquee-track {
  animation-play-state: paused;
}

/* ══════════════════════════════════════
   CHIP — individual job card
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  text-decoration: none;
  color: var(--t-text-light, #ffffff);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(16, 185, 129, 0.08);
}

/* ── Chip dot (department color) ── */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-dot--rd {
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-dot--lab {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-dot--qa {
  background: #8b5cf6;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-dot--mkt {
  background: #ec4899;
  box-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-dot--log {
  background: #06b6d4;
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-dot--dev {
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-dot--reg {
  background: #f97316;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

/* ── Chip text elements ── */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-text-light, #ffffff);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-divider {
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-location {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-salary {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  color: var(--t-muted, #64748b);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card:hover .vm__card-salary {
  background: rgba(16, 185, 129, 0.12);
  color: var(--t-accent, #10B981);
}

/* ══════════════════════════════════════
   FOOTER — stats + CTA
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: clamp(48px, 6vw, 64px);
  padding: 0 clamp(20px, 4vw, 40px);
}

/* stat row */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__stat-number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t-accent, #10B981);
  line-height: 1.1;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-muted, #64748b);
  letter-spacing: 0.02em;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* CTA button */
[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--t-accent, #10B981);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 16px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.3),
    0 8px 32px rgba(16, 185, 129, 0.2);
  background: #0ea572;
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__btn-arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__btn:hover .vm__btn-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__stat-row {
    gap: 24px;
  }

  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__stat-sep {
    height: 32px;
  }

  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card {
    padding: 12px 18px;
    gap: 10px;
  }

  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-title {
    font-size: 0.875rem;
  }

  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__marquee-wrap {
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__stat-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__stat-sep {
    display: none;
  }

  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__stat {
    min-width: 80px;
  }

  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card-salary {
    display: none;
  }

  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__marquee-track,
  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__marquee-track--reverse {
    animation: none;
  }

  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__glow--1,
  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-vacatures-marquee-light.block-vacatures-marquee-light .vm__btn:hover {
    transform: none;
  }
}

/* ═══ BLOCK: value-cards ═══ */
/* ============================================================
   VALUE-CARDS — Creatine-DE
   Layer 3: Per-block premium overrides
   4-card value proposition grid with accent top-border,
   hover lift, badge chips, staggered layout.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-value-cards.block-value-cards {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle divider line at top */
[data-project="creatine-de"] .block-value-cards.block-value-cards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.07) 30%, rgba(15, 23, 42, 0.07) 70%, transparent);
  pointer-events: none;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__overline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__title-accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #475569);
  margin: 0;
}

/* ── Grid — 2×2 ── */
[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  list-style: none;
}

[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.10),
    0 20px 48px rgba(0, 0, 0, 0.06);
}

/* accent top border */
[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card:hover .vc__card-img {
  opacity: 1;
}

/* card body */
[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-body {
  padding: clamp(28px, 3vw, 40px);
}

/* ── Icon ── */
[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card:hover .vc__card-img {
  background: rgba(16, 185, 129, 0.14);
}

[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ── Card title ── */
[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
}

/* ── Card text ── */
[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--t-muted, #475569);
  margin: 0 0 20px;
}

/* ── Badge chip ── */
[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-cta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  padding: 5px 14px;
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card:hover .vc__card-cta {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.25);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-value-cards.block-value-cards .vc__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-body {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-value-cards.block-value-cards .vc__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-value-cards.block-value-cards {
    padding: 56px 0;
  }

  [data-project="creatine-de"] .block-value-cards.block-value-cards .vc__header {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-body {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-text {
    font-size: 0.875rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-img,
  [data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-img,
  [data-project="creatine-de"] .block-value-cards.block-value-cards .vc__card-cta {
    transition: none;
  }
}
/* ═══ BLOCK: value-cards-dark ═══ */
/* ============================================================
   VALUE-CARDS — Creatine-DE
   Layer 3: Per-block premium overrides
   4-card value proposition grid with accent top-border,
   hover lift, badge chips, staggered layout.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section ── */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle divider line at top */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.07) 30%, rgba(15, 23, 42, 0.07) 70%, transparent);
  pointer-events: none;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__overline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__title-accent {
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ── Grid — 2×2 ── */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Card ── */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  list-style: none;
}

[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 6px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(255, 255, 255, 0.08),
    0 20px 48px rgba(255, 255, 255, 0.08);
}

/* accent top border */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t-accent, #10B981), #34d399);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card:hover .vc__card-img {
  opacity: 1;
}

/* card body */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-body {
  padding: clamp(28px, 3vw, 40px);
}

/* ── Icon ── */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card:hover .vc__card-img {
  background: rgba(16, 185, 129, 0.14);
}

[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ── Card title ── */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-heading {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
}

/* ── Card text ── */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
}

/* ── Badge chip ── */
[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-cta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  padding: 5px 14px;
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card:hover .vc__card-cta {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.25);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-body {
    padding: 24px;
  }

  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

@media (max-width: 480px) {
  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark {
    padding: 56px 0;
  }

  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__header {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-body {
    padding: 20px;
  }

  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-text {
    font-size: 0.875rem;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card {
    transition: none;
  }

  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-img,
  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-img,
  [data-project="creatine-de"] .block-value-cards-dark.block-value-cards-dark .vc__card-cta {
    transition: none;
  }
}

/* ═══ BLOCK: video-embed ═══ */
/* ============================================================
   VIDEO-EMBED — Creatine-DE
   Layer 3: Per-block premium overrides
   Cinematic video player with custom play overlay, corner
   accents, glassmorphism features strip, ambient glow.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-video-embed.block-video-embed {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: veGlow1 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__glow--2 {
  width: 350px;
  height: 350px;
  bottom: -10%;
  right: 10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: veGlow2 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes veGlow1 {
  0% { transform: translateX(-50%) scale(1); }
  100% { transform: translateX(-50%) translateY(30px) scale(1.1); }
}

@keyframes veGlow2 {
  0% { transform: scale(1); }
  100% { transform: translate(-20px, -15px) scale(1.12); }
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__badge-icon {
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ══════════════════════════════════════
   PLAYER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player-wrap {
  position: relative;
  margin-bottom: clamp(36px, 5vw, 56px);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #000000;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 4px;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player.ve__player--active {
  cursor: default;
  pointer-events: none;
}

/* ── Thumbnail ── */
[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__thumbnail {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player--active .ve__thumbnail {
  opacity: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.02) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

/* ── Play button ── */
[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player:hover .ve__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player--active .ve__play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__play-ring--outer {
  inset: -8px;
  background: rgba(16, 185, 129, 0.15);
  animation: vePulse 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes vePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.4; }
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__play-icon {
  position: relative;
  z-index: 1;
  margin-left: 3px;
}

/* ── Duration badge ── */
[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player--active .ve__duration {
  opacity: 0;
}

/* ── Corner accents ── */
[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player-frame {
  position: absolute;
  inset: -6px;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(16, 185, 129, 0.3);
  border-style: solid;
  border-width: 0;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__corner--tl {
  top: 0;
  left: 0;
  border-top-width: 2px;
  border-left-width: 2px;
  border-top-left-radius: 6px;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__corner--tr {
  top: 0;
  right: 0;
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-right-radius: 6px;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__corner--bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-bottom-left-radius: 6px;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__corner--br {
  bottom: 0;
  right: 0;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-bottom-right-radius: 6px;
}

/* ══════════════════════════════════════
   FEATURES STRIP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__feature:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__feature-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
}

[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__feature-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

/* ══════════════════════════════════════
   IFRAME (injected by JS)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__play-btn {
    width: 64px;
    height: 64px;
  }

  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__play-ring--outer {
    inset: -6px;
  }

  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__play-icon {
    width: 22px;
    height: 22px;
  }

  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__corner {
    width: 16px;
    height: 16px;
  }

  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player-frame {
    inset: -4px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-video-embed.block-video-embed {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player {
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__feature {
    padding: 16px 18px;
  }

  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__play-btn {
    width: 56px;
    height: 56px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__glow--1,
  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__play-ring--outer {
    animation: none;
  }

  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__player,
  [data-project="creatine-de"] .block-video-embed.block-video-embed .ve__feature {
    transition: none;
  }
}
/* ═══ BLOCK: video-embed-light ═══ */
/* ============================================================
   VIDEO-EMBED — Creatine-DE
   Layer 3: Per-block premium overrides
   Cinematic video player with custom play overlay, corner
   accents, glassmorphism features strip, ambient glow.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light {
  position: relative;
  background: var(--t-dark-bg, #0d1117);
  color: var(--t-text-light, #ffffff);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
}

/* ══════════════════════════════════════
   BACKDROP — ambient glow & grain
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__glow--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  animation: veGlow1 16s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__glow--2 {
  width: 350px;
  height: 350px;
  bottom: -10%;
  right: 10%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: veGlow2 20s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes veGlow1 {
  0% { transform: translateX(-50%) scale(1); }
  100% { transform: translateX(-50%) translateY(30px) scale(1.1); }
}

@keyframes veGlow2 {
  0% { transform: scale(1); }
  100% { transform: translate(-20px, -15px) scale(1.12); }
}

/* ══════════════════════════════════════
   INNER CONTAINER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__badge-icon {
  flex-shrink: 0;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-heading, #0F172A);
  margin: 0 0 16px;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__title-accent {
  background: linear-gradient(135deg, var(--t-accent, #10B981), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--t-muted, #64748b);
  margin: 0;
}

/* ══════════════════════════════════════
   PLAYER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player-wrap {
  position: relative;
  margin-bottom: clamp(36px, 5vw, 56px);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #000000;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.10),
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 20px 60px rgba(0, 0, 0, 0.10),
    0 0 0 1px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player:focus-visible {
  outline: 2px solid var(--t-accent, #10B981);
  outline-offset: 4px;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player.ve__player--active {
  cursor: default;
  pointer-events: none;
}

/* ── Thumbnail ── */
[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__thumbnail {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player--active .ve__thumbnail {
  opacity: 0;
  pointer-events: none;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.02) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

/* ── Play button ── */
[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player:hover .ve__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player--active .ve__play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__play-ring--outer {
  inset: -8px;
  background: rgba(16, 185, 129, 0.15);
  animation: vePulse 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes vePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.4; }
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__play-icon {
  position: relative;
  z-index: 1;
  margin-left: 3px;
}

/* ── Duration badge ── */
[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--t-heading, #0F172A);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player--active .ve__duration {
  opacity: 0;
}

/* ── Corner accents ── */
[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player-frame {
  position: absolute;
  inset: -6px;
  pointer-events: none;
  z-index: 0;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(16, 185, 129, 0.3);
  border-style: solid;
  border-width: 0;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__corner--tl {
  top: 0;
  left: 0;
  border-top-width: 2px;
  border-left-width: 2px;
  border-top-left-radius: 6px;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__corner--tr {
  top: 0;
  right: 0;
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-right-radius: 6px;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__corner--bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-bottom-left-radius: 6px;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__corner--br {
  bottom: 0;
  right: 0;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-bottom-right-radius: 6px;
}

/* ══════════════════════════════════════
   FEATURES STRIP
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__feature:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__feature-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-heading, #0F172A);
}

[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__feature-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.45);
}

/* ══════════════════════════════════════
   IFRAME (injected by JS)
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__play-btn {
    width: 64px;
    height: 64px;
  }

  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__play-ring--outer {
    inset: -6px;
  }

  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__play-icon {
    width: 22px;
    height: 22px;
  }

  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__corner {
    width: 16px;
    height: 16px;
  }

  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player-frame {
    inset: -4px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__title {
    font-size: 1.5rem;
  }

  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player {
    border-radius: 12px;
  }

  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__feature {
    padding: 16px 18px;
  }

  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__play-btn {
    width: 56px;
    height: 56px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__glow--1,
  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__glow--2 {
    animation: none;
  }

  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__play-ring--outer {
    animation: none;
  }

  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__player,
  [data-project="creatine-de"] .block-video-embed-light.block-video-embed-light .ve__feature {
    transition: none;
  }
}

/* ═══ BLOCK: werkgebieden ═══ */
/* ============================================================
   WERKGEBIEDEN — Creatine-DE
   Layer 3: Per-block premium overrides
   Career work-areas grid with hover-lift cards, icon accents,
   staggered scroll-reveal, and micro-interactions.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden {
  position: relative;
  background: var(--t-surface, #f8fafb);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle dot pattern */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   GRID — 3-col, responsive
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.08));
  border-radius: 12px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 12px 36px rgba(16, 185, 129, 0.08),
    0 0 0 1px rgba(16, 185, 129, 0.1);
}

/* accent line top */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 10px;
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card:hover .wg__card-icon {
  background: rgba(16, 185, 129, 0.14);
}

/* ── Card title ── */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  line-height: 1.3;
}

/* ── Card description ── */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
  flex: 1;
}

/* ── Card meta / footer ── */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card-arrow {
  color: #94a3b8;
  transition:
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card:hover .wg__card-arrow {
  color: var(--t-accent, #10B981);
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   FOOTER CTA
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__footer {
  text-align: center;
  margin-top: clamp(48px, 6vw, 64px);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__footer-text {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__cta:hover {
  transform: translateY(-2px);
  background: #059669;
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__cta:hover .wg__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden [data-wg-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden [data-wg-reveal].wg--visible {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden [data-wg-card] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden.block-werkgebieden [data-wg-card].wg--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   TABLET — max 768px
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card {
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }
}

/* ══════════════════════════════════════
   MOBILE — max 480px
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden {
    padding: clamp(48px, 10vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card {
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__header {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden [data-wg-reveal],
  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden [data-wg-card] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-werkgebieden.block-werkgebieden .wg__cta:hover {
    transform: none;
  }
}
/* ═══ BLOCK: werkgebieden-dark ═══ */
/* ============================================================
   WERKGEBIEDEN — Creatine-DE
   Layer 3: Per-block premium overrides
   Career work-areas grid with hover-lift cards, icon accents,
   staggered scroll-reveal, and micro-interactions.
   Stripe/Linear/Vercel design benchmark.
   ============================================================ */

/* ── Section wrapper ── */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0e1526 100%);
  color: var(--t-primary, #0F172A);
  font-family: var(--t-body-font, 'Inter', system-ui, -apple-system, sans-serif);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

/* subtle dot pattern */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* ── Inner container ── */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-accent, #10B981);
  margin-bottom: 16px;
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ══════════════════════════════════════
   GRID — 3-col, responsive
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════
   CARD
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--t-border, rgba(15, 23, 42, 0.08));
  border-radius: 12px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(255, 255, 255, 0.08);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 12px 36px rgba(16, 185, 129, 0.08),
    0 0 0 1px rgba(16, 185, 129, 0.1);
}

/* accent line top */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--t-accent, #10B981);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

/* ── Card icon ── */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 10px;
  color: var(--t-accent, #10B981);
  margin-bottom: 20px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card:hover .wg__card-icon {
  background: rgba(16, 185, 129, 0.14);
}

/* ── Card title ── */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card-title {
  font-family: var(--t-heading-font, 'Inter', system-ui, -apple-system, sans-serif);
  font-size: 1.125rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--t-primary, #0F172A);
  margin: 0 0 12px;
  line-height: 1.3;
}

/* ── Card description ── */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  flex: 1;
}

/* ── Card meta / footer ── */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t-accent, #10B981);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card-arrow {
  color: #94a3b8;
  transition:
    color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card:hover .wg__card-arrow {
  color: var(--t-accent, #10B981);
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   FOOTER CTA
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__footer {
  text-align: center;
  margin-top: clamp(48px, 6vw, 64px);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__footer-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--t-accent, #10B981);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 1px 3px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(16, 185, 129, 0.15);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__cta:hover {
  transform: translateY(-2px);
  background: #059669;
  box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.2);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__cta:hover .wg__cta-arrow {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════ */
[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark [data-wg-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark [data-wg-reveal].wg--visible {
  opacity: 1;
  transform: translateY(0);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark [data-wg-card] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark [data-wg-card].wg--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   TABLET — max 768px
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card {
    padding: 28px 24px 24px;
  }

  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }
}

/* ══════════════════════════════════════
   MOBILE — max 480px
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark {
    padding: clamp(48px, 10vw, 72px) 0;
  }

  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card {
    padding: 24px 20px 20px;
  }

  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__header {
    margin-bottom: 36px;
  }

  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark [data-wg-reveal],
  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark [data-wg-card] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__card:hover {
    transform: none;
  }

  [data-project="creatine-de"] .block-werkgebieden-dark.block-werkgebieden-dark .wg__cta:hover {
    transform: none;
  }
}
