@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ============ VARIABLES ============ */
:root {
  --violet: #732EAD;
  --violet-light: #9B59B6;
  --cyan: #009EB8;
  --cyan-light: #2BC4D6;
  --magenta: #C72E7A;
  --magenta-light: #E84393;
  --amber: #EDAD21;
  --amber-light: #F0C040;
  --deep-blue: #1F1F33;
  --near-black: #141420;
  --med-gray: #66666E;
  --light-gray: #A0A0A8;
  --light-bg: #FAFAFA;
  --card-bg: #FFFFFF;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--near-black);
  background: var(--light-bg);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed; top: 72px; left: 0; right: 0;
  height: 3px; z-index: 99;
  background: rgba(0,0,0,0.05);
}
.scroll-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--magenta), var(--amber));
  transition: width 0.1s linear;
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--violet);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  border: 2px solid rgba(115,46,173,0.4);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: all 0.2s ease;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--magenta);
  background: rgba(199,46,122,0.1);
}

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 60px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s ease;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--med-gray); font-size: 14px; font-weight: 500;
  position: relative; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--violet); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--violet);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Mobile hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--near-black); margin: 5px 0;
  transition: all 0.3s ease;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: var(--violet); color: #fff;
  padding: 16px 36px; border-radius: 12px;
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(115,46,173,0.35);
}
.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--violet);
  padding: 16px 36px; border-radius: 12px;
  font-size: 15px; font-weight: 600;
  border: 2px solid var(--violet);
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--violet); color: #fff; }

/* ============ SECTION BASICS ============ */
.section-header {
  text-align: center; max-width: 600px; margin: 0 auto 80px;
}
.section-header .overline {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 4px; color: var(--violet); font-weight: 600;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 44px; margin-top: 12px; line-height: 1.2;
}
.section-header p {
  font-size: 17px; color: var(--med-gray); margin-top: 16px; line-height: 1.7;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: visible;
  background: linear-gradient(170deg, #FAF8FF 0%, #F0FAFB 50%, #FFF9F0 100%);
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1200px; align-items: center;
}
.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 56px; line-height: 1.15;
  opacity: 0; transform: translateY(60px);
  animation: slideUp 1s ease forwards 0.3s;
}
.hero-text h1 span {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 18px; color: var(--med-gray); line-height: 1.7;
  margin-top: 24px;
  opacity: 0; transform: translateY(40px);
  animation: slideUp 1s ease forwards 0.6s;
}
.hero-cta {
  display: inline-flex; gap: 16px; margin-top: 40px;
  opacity: 0; transform: translateY(30px);
  animation: slideUp 1s ease forwards 0.9s;
}

/* Head Portrait */
.hero-visual {
  perspective: 1200px;
  display: flex; align-items: center; justify-content: center;
}
.head-scene {
  position: relative;
  width: 420px; height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.head-portrait {
  width: 360px; height: 360px;
  border-radius: 50%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}
.head-portrait-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden; background: #fff;
  box-shadow: 0 25px 80px rgba(115,46,173,0.25), 0 0 0 8px rgba(255,255,255,0.8);
}
.head-portrait-inner img {
  width: 115%; height: 115%;
  object-fit: cover; object-position: center 15%;
  pointer-events: none;
}
.head-splash {
  position: absolute; border-radius: 50%;
  filter: blur(2px); opacity: 0;
  animation: splashIn 1.2s ease forwards;
}
.head-splash:nth-child(1) { width:60px;height:60px;background:var(--violet);top:-10px;right:30px;animation-delay:0.5s; }
.head-splash:nth-child(2) { width:40px;height:40px;background:var(--cyan);bottom:40px;left:-5px;animation-delay:0.7s; }
.head-splash:nth-child(3) { width:50px;height:50px;background:var(--magenta);top:50%;right:-15px;animation-delay:0.9s; }
.head-splash:nth-child(4) { width:30px;height:30px;background:var(--amber);top:15%;left:10px;animation-delay:0.6s; }
.head-splash:nth-child(5) { width:45px;height:45px;background:var(--violet);bottom:-5px;right:40%;animation-delay:0.8s;opacity:0.5; }
.head-splash:nth-child(6) { width:25px;height:25px;background:var(--cyan);top:5%;right:50%;animation-delay:1s; }
.head-drip {
  position: absolute; width: 8px; height: 8px;
  border-radius: 50%;
  animation: dripFall 3s ease-in-out infinite; opacity: 0.6;
}
.head-drip:nth-child(7)  { background:var(--violet);top:10%;right:15%;animation-delay:0s; }
.head-drip:nth-child(8)  { background:var(--cyan);top:20%;left:12%;animation-delay:1.2s; }
.head-drip:nth-child(9)  { background:var(--magenta);bottom:25%;right:8%;animation-delay:0.6s; }
.head-drip:nth-child(10) { background:var(--amber);top:40%;left:5%;animation-delay:1.8s; }
.scroll-hint {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  opacity: 0; animation: slideUp 1s ease forwards 1.2s;
}
.scroll-hint span {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--med-gray);
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: rotate(45deg);
  animation: bounceArrow 2s ease-in-out infinite;
}

/* ============ 3D CUBE SECTION ============ */
.cube-section {
  padding: 120px 60px;
  background: var(--near-black); color: #fff;
  position: relative; overflow: hidden;
}
.cube-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(115,46,173,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(0,158,184,0.1) 0%, transparent 50%);
}
.cube-section-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.cube-text h2 { font-family: var(--font-heading); font-size: 44px; line-height: 1.2; }
.cube-text p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-top: 20px; }
.cube-container {
  perspective: 800px;
  display: flex; align-items: center; justify-content: center;
  height: 400px; cursor: grab;
}
.cube {
  width: 220px; height: 220px;
  position: relative; transform-style: preserve-3d;
  transition: transform 0.1s linear;
}
.cube-face {
  position: absolute; width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  border-radius: 16px; backface-visibility: hidden;
}
.cube-face span { text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.cube-face.front  { background: linear-gradient(135deg, var(--violet), var(--violet-light)); transform: translateZ(110px); }
.cube-face.back   { background: linear-gradient(135deg, var(--cyan), var(--cyan-light)); transform: rotateY(180deg) translateZ(110px); }
.cube-face.right  { background: linear-gradient(135deg, var(--magenta), var(--magenta-light)); transform: rotateY(90deg) translateZ(110px); }
.cube-face.left   { background: linear-gradient(135deg, var(--amber), var(--amber-light)); color: var(--near-black); transform: rotateY(-90deg) translateZ(110px); }
.cube-face.top    { background: linear-gradient(135deg, var(--violet), var(--cyan)); transform: rotateX(90deg) translateZ(110px); }
.cube-face.bottom { background: linear-gradient(135deg, var(--magenta), var(--amber)); transform: rotateX(-90deg) translateZ(110px); }
.cube-shadow {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 30px;
  background: radial-gradient(ellipse, rgba(115,46,173,0.4), transparent 70%);
  filter: blur(10px);
}

/* ============ STATS ============ */
.stats-section {
  padding: 100px 60px;
  background: linear-gradient(180deg, #FAF8FF, #F0FAFB);
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; text-align: center;
}
.stat-card {
  padding: 50px 30px; background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
  transform: translateY(80px) scale(0.9); opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.stat-card.visible { transform: translateY(0) scale(1); opacity: 1; }
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transform: scaleX(0); transition: transform 0.6s ease 0.3s;
  transform-origin: left;
}
.stat-card.visible::before { transform: scaleX(1); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 64px; font-weight: 700;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card:nth-child(2) .stat-number {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-card:nth-child(3) .stat-number {
  background: linear-gradient(135deg, var(--magenta), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
  font-size: 14px; color: var(--med-gray); margin-top: 8px;
  text-transform: uppercase; letter-spacing: 2px;
}
.stat-card:nth-child(1) { transition-delay: 0s; }
.stat-card:nth-child(2) { transition-delay: 0.15s; }
.stat-card:nth-child(3) { transition-delay: 0.3s; }

/* ============ BLOG CARDS ============ */
.blog-section { padding: 120px 60px; background: #fff; }
.blog-cta-buttons {
  text-align: center; margin-top: 48px;
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.blog-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.blog-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transform: translateY(60px) rotateX(10deg); opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom center; cursor: pointer;
  display: flex; flex-direction: column;
}
.blog-card.visible { transform: translateY(0) rotateX(0deg); opacity: 1; }
.blog-card:hover {
  transform: translateY(-8px) rotateY(5deg) scale(1.02);
  box-shadow: 0 20px 60px rgba(115,46,173,0.15);
}
.blog-card:nth-child(1) { transition-delay: 0s; }
.blog-card:nth-child(2) { transition-delay: 0.12s; }
.blog-card:nth-child(3) { transition-delay: 0.24s; }
.blog-card-accent { height: 6px; }
.blog-card:nth-child(1) .blog-card-accent,
.blog-card:nth-child(4) .blog-card-accent { background: var(--violet); }
.blog-card:nth-child(2) .blog-card-accent,
.blog-card:nth-child(5) .blog-card-accent { background: var(--cyan); }
.blog-card:nth-child(3) .blog-card-accent,
.blog-card:nth-child(6) .blog-card-accent { background: var(--magenta); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, #EDE7F6, #E0F7FA);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--violet); font-weight: 600;
}
.blog-card-body h3 { font-size: 18px; margin-top: 8px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: var(--med-gray); margin-top: 12px; line-height: 1.6; flex: 1; }

/* ============ FORSCHUNG TEASER ============ */
.forschung-section {
  padding: 120px 60px;
  background: linear-gradient(180deg, #F0FAFB, #FAF8FF);
}
.forschung-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 20px;
}
.forschung-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 28px; background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transform: translateX(-40px); opacity: 0;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.forschung-item.visible { transform: translateX(0); opacity: 1; }
.forschung-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(115,46,173,0.12);
}
.forschung-item:nth-child(1) { transition-delay: 0s; }
.forschung-item:nth-child(2) { transition-delay: 0.08s; }
.forschung-item:nth-child(3) { transition-delay: 0.16s; }
.forschung-item:nth-child(4) { transition-delay: 0.24s; }
.forschung-dot {
  width: 12px; height: 12px; border-radius: 50%;
  margin-top: 6px; flex-shrink: 0;
}
.forschung-item:nth-child(1) .forschung-dot { background: var(--violet); }
.forschung-item:nth-child(2) .forschung-dot { background: var(--cyan); }
.forschung-item:nth-child(3) .forschung-dot { background: var(--magenta); }
.forschung-item:nth-child(4) .forschung-dot { background: var(--amber); }
.forschung-item h3 { font-size: 16px; line-height: 1.4; }
.forschung-item p { font-size: 13px; color: var(--med-gray); margin-top: 4px; }

/* ============ MAGNETIC ORBS ============ */
.magnetic-section {
  padding: 120px 60px;
  background: var(--deep-blue); color: #fff;
  text-align: center; position: relative; overflow: hidden;
}
.magnetic-section h2 { font-family: var(--font-heading); font-size: 48px; position: relative; z-index: 2; }
.magnetic-section > p {
  font-size: 18px; color: rgba(255,255,255,0.6);
  max-width: 600px; margin: 20px auto 60px; position: relative; z-index: 2;
}
.magnetic-orbs {
  display: flex; justify-content: center; gap: 60px;
  position: relative; z-index: 2;
}
.magnetic-orb {
  width: 160px; height: 160px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.magnetic-orb:hover { transform: scale(1.15); }
.orb-1 { background: linear-gradient(135deg, var(--violet), var(--violet-light)); box-shadow: 0 10px 40px rgba(115,46,173,0.4); }
.orb-2 { background: linear-gradient(135deg, var(--cyan), var(--cyan-light)); box-shadow: 0 10px 40px rgba(0,158,184,0.4); }
.orb-3 { background: linear-gradient(135deg, var(--magenta), var(--magenta-light)); box-shadow: 0 10px 40px rgba(199,46,122,0.4); }
.orb-4 { background: linear-gradient(135deg, var(--amber), var(--amber-light)); box-shadow: 0 10px 40px rgba(237,173,33,0.4); }
.magnetic-orb .orb-icon { font-size: 36px; margin-bottom: 8px; }
.magnetic-orb .orb-label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.glow-bg {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%; filter: blur(120px);
  opacity: 0.15; pointer-events: none;
}
.glow-1 { background: var(--violet); top: -100px; left: -100px; }
.glow-2 { background: var(--cyan); bottom: -100px; right: -100px; }

/* ============ TEXT REVEAL ============ */
.reveal-section {
  padding: 160px 60px; background: #fff;
  text-align: center; overflow: hidden;
}
.reveal-text {
  font-family: var(--font-heading);
  font-size: 56px; line-height: 1.3;
  max-width: 900px; margin: 0 auto;
}
.reveal-word {
  display: inline-block; opacity: 0.1;
  transform: translateY(20px);
  transition: all 0.5s ease; margin: 0 6px;
}
.reveal-word.active { opacity: 1; transform: translateY(0); }
.reveal-word.highlight {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  -webkit-background-clip: text; background-clip: text;
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 120px 60px;
  background: linear-gradient(135deg, var(--near-black), var(--deep-blue));
  text-align: center; position: relative; overflow: hidden;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 48px; color: #fff; position: relative; z-index: 2;
}
.cta-section p {
  font-size: 18px; color: rgba(255,255,255,0.6);
  margin: 20px auto 40px; max-width: 500px; position: relative; z-index: 2;
}
.cta-section .btn-primary { font-size: 17px; padding: 20px 48px; border-radius: 16px; position: relative; z-index: 2; }
.cta-shape {
  position: absolute; border-radius: 50%; opacity: 0.08;
}
.cta-shape:nth-child(1) { width:400px;height:400px;background:var(--violet);top:-150px;right:-100px;animation:shapeDrift 20s ease-in-out infinite; }
.cta-shape:nth-child(2) { width:300px;height:300px;background:var(--cyan);bottom:-100px;left:-50px;animation:shapeDrift 25s ease-in-out infinite reverse; }
.cta-shape:nth-child(3) { width:200px;height:200px;background:var(--magenta);top:50%;left:50%;animation:shapeDrift 18s ease-in-out infinite 2s; }

/* ============ FOOTER ============ */
footer {
  padding: 60px 60px 40px;
  background: var(--near-black); color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 4px 0; transition: color 0.3s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--cyan); }

/* ============ TILT CARDS ============ */
.tilt-card {
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
}

/* ============ PAGE HEADER (Unterseiten) ============ */
.page-header {
  padding: 140px 60px 80px;
  text-align: center;
  background: linear-gradient(170deg, #FAF8FF 0%, #F0FAFB 100%);
}
.page-header .overline {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 4px; color: var(--violet); font-weight: 600;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 52px; margin-top: 12px;
}
.page-header p {
  font-size: 18px; color: var(--med-gray);
  max-width: 600px; margin: 16px auto 0; line-height: 1.7;
}

/* ============ ANIMATIONS ============ */
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes splashIn {
  0% { opacity: 0; transform: scale(0); }
  60% { opacity: 0.7; transform: scale(1.2); }
  100% { opacity: 0.5; transform: scale(1); }
}
@keyframes dripFall {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(15px) scale(0.8); opacity: 0.3; }
}
@keyframes bounceArrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}
@keyframes shapeDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 50px) scale(0.95); }
  75% { transform: translate(30px, 20px) scale(1.05); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text h1 { font-size: 42px; }
  .hero-cta { justify-content: center; }
  .cube-section-inner { grid-template-columns: 1fr; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; max-width: 400px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .magnetic-orbs { flex-wrap: wrap; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    padding: 24px; gap: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .hero { padding: 100px 24px 60px; }
  .hero-text h1 { font-size: 34px; }
  .head-scene { width: 300px; height: 360px; }
  .head-portrait { width: 260px; height: 260px; }
  .section-header h2 { font-size: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .reveal-text { font-size: 32px; }
  .magnetic-orb { width: 120px; height: 120px; }
  .cube { width: 160px; height: 160px; }
  .cube-face { width: 160px; height: 160px; font-size: 16px; }
  .cube-face.front  { transform: translateZ(80px); }
  .cube-face.back   { transform: rotateY(180deg) translateZ(80px); }
  .cube-face.right  { transform: rotateY(90deg) translateZ(80px); }
  .cube-face.left   { transform: rotateY(-90deg) translateZ(80px); }
  .cube-face.top    { transform: rotateX(90deg) translateZ(80px); }
  .cube-face.bottom { transform: rotateX(-90deg) translateZ(80px); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-section { padding: 80px 24px; }
  .cta-section h2 { font-size: 32px; }
  .cta-section p { font-size: 16px; }
  .cta-section .btn-primary { padding: 16px 36px; font-size: 15px; }
  .blog-cta-buttons { flex-direction: column; align-items: center; gap: 20px; }
  .blog-cta-buttons .btn-primary { margin-right: 0; }
}
