/* ── NAME HERO ── */
.name-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.name-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,216,122,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 85%, rgba(168,212,160,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Feines Grid */
.name-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}

.name-hero-inner {
  position: relative; z-index: 1;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}

.name-line {
  display: flex; align-items: baseline;
  gap: 0.15em;
  user-select: none;
  cursor: default;
}

.name-word {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  display: inline-block;
}

.name-accent {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--yellow);
  display: inline-block;
}

/* Scramble-Zustand: leicht gedimmt während Scrambling */
.scramble.scrambling { opacity: 0.85; }

.name-sub {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
.name-tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
.name-tagline em {
  color: var(--yellow);
  font-style: normal;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Intro-Animation: Name blendet beim Laden ein */
.name-word, .name-accent {
  opacity: 0;
  animation: nameIn 1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.name-word   { animation-delay: 0.1s; }
.name-accent { animation-delay: 0.25s; }
@keyframes nameIn {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

/* Scroll Hint */
.name-scroll-hint {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted); font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase; z-index: 3;
  opacity: 0;
  animation: fadeInHint 0.8s 1.2s cubic-bezier(0.16,1,0.3,1) forwards;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2.2s 1.4s infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity:0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity:1; }
  80%  { transform: scaleY(1); transform-origin: bottom; opacity:0; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity:0; }
}
@keyframes fadeInHint {
  from { opacity:0; transform: translateX(-50%) translateY(10px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}

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

:root {
  --bg: #080A08;
  --surface: #0E120E;
  --surface2: #151A14;
  --border: rgba(255,255,255,0.07);
  --text: #EEF0E8;
  --muted: #5A6355;
  --green: #A8D4A0;
  --yellow: #E8D87A;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-display); overflow-x: hidden; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 60px;
  background: rgba(8,10,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-size: 17px; font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: -0.02em; }
.nav-logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--surface2); border: 1px solid var(--border); color: var(--text); text-decoration: none; padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 500; transition: border-color 0.2s, color 0.2s; }
.nav-cta:hover { border-color: var(--green); color: var(--green); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 140px 60px 80px;
  max-width: 1300px; margin: 0 auto;
  position: relative;
}
.hero-bg-shape { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(120px); }
.hero-bg-shape.s1 { width: 500px; height: 500px; background: rgba(168,212,160,0.06); top: -100px; left: -100px; }
.hero-bg-shape.s2 { width: 400px; height: 400px; background: rgba(232,216,122,0.05); bottom: 0; right: 0; }

.hero-content { position: relative; z-index: 1; }
.hero-tag {
  display: inline-block; font-family: var(--font-mono);
  font-size: 11px; font-weight: 400; color: var(--green);
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(168,212,160,0.08); border: 1px solid rgba(168,212,160,0.2);
  padding: 5px 14px; border-radius: 99px; margin-bottom: 32px;
}
.hero-title { font-size: clamp(40px, 5vw, 72px); font-weight: 800; line-height: 1.0; letter-spacing: -0.04em; display: flex; flex-direction: column; margin-bottom: 28px; }
.hero-title .line { display: block; }
.hero-title .accent { color: var(--yellow); }
.hero-sub { font-size: 16px; color: var(--muted); line-height: 1.8; font-weight: 300; max-width: 400px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary { background: var(--green); color: #0A1009; padding: 13px 28px; border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: #c0e4b8; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); padding: 13px 28px; border-radius: 8px; font-weight: 500; font-size: 14px; text-decoration: none; border: 1px solid var(--border); transition: border-color 0.2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); }

/* ── HERO CARDS ── */
.hero-visual { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.hero-card:hover { border-color: rgba(168,212,160,0.2); }
.hero-card-label { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.hero-card-val { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.hero-card-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }
.status-dot-wrap { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--green); margin-top: 4px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; box-shadow: 0 0 8px var(--green); } 50% { opacity:0.5; box-shadow: 0 0 20px var(--green); } }

/* ── SECTION COMMONS ── */
.section-tag { font-family: var(--font-mono); font-size: 10px; color: var(--yellow); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.section-heading { font-size: clamp(36px, 4vw, 58px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }

/* ── ABOUT ── */
.about-section { padding: 140px 60px; border-top: 1px solid var(--border); }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.about-text { font-size: 16px; color: var(--muted); line-height: 1.85; font-weight: 300; margin-bottom: 18px; }
.about-text:last-of-type { margin-bottom: 0; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.pill { background: var(--surface2); border: 1px solid var(--border); border-radius: 99px; padding: 8px 18px; font-size: 13px; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; }
.pill:hover { border-color: rgba(168,212,160,0.3); }
.pill.de {
  position: relative;
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    0 2px 12px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.06),
    0 4px 20px rgba(221,0,0,0.25),
    0 -4px 20px rgba(255,204,0,0.2),
    0 0 30px rgba(0,0,0,0.3);
  background: linear-gradient(180deg,
    rgba(20,20,20,0.9) 0%,
    rgba(180,0,0,0.15) 50%,
    rgba(255,200,0,0.12) 100%
  );
}
.pill.de::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 99px;
  background: linear-gradient(180deg,
    rgba(60,60,60,0.4) 0%,
    rgba(200,0,0,0.3) 45%,
    rgba(255,200,0,0.25) 100%
  );
  z-index: -1;
  filter: blur(6px);
}

/* ── PRODUCTS ── */
.products-section { padding: 140px 60px; border-top: 1px solid var(--border); }
.products-inner { max-width: 1200px; margin: 0 auto; }
.products-header { margin-bottom: 56px; }

.product-card { display: grid; grid-template-columns: 110px 1fr auto; gap: 40px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 40px 48px; margin-bottom: 16px; transition: border-color 0.3s; }
.product-card:hover { border-color: rgba(168,212,160,0.2); }
.product-card.coming-soon { opacity: 0.45; }
.product-card.coming-soon:hover { border-color: var(--border); }

.product-num { font-family: var(--font-mono); font-size: 11px; color: var(--yellow); letter-spacing: 0.1em; margin-bottom: 10px; }
.product-num.muted { color: var(--muted); }
.product-tag-badge { display: inline-block; background: rgba(168,212,160,0.1); border: 1px solid rgba(168,212,160,0.2); color: var(--green); font-size: 10px; font-weight: 500; padding: 3px 10px; border-radius: 99px; }
.product-tag-badge.muted { background: var(--surface2); border-color: var(--border); color: var(--muted); }

.product-name { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.product-name.muted { color: var(--muted); }
.product-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 500px; margin-bottom: 18px; }
.product-desc.muted { opacity: 0.6; }

.product-features { display: flex; gap: 8px; flex-wrap: wrap; }
.product-features span { background: var(--surface2); border: 1px solid var(--border); font-size: 11px; color: var(--muted); padding: 4px 12px; border-radius: 6px; }
.product-features span.tag-free { border-color: rgba(168,212,160,0.25); color: var(--green); background: rgba(168,212,160,0.08); }

.product-card-right { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; min-width: 160px; }
.btn-product { background: var(--yellow); color: #1A1800; padding: 13px 26px; border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; white-space: nowrap; transition: background 0.2s, transform 0.2s; }
.btn-product:hover { background: #f0e090; transform: translateY(-1px); }
.btn-product-ghost { background: transparent; color: var(--muted); padding: 10px 20px; border-radius: 8px; font-size: 13px; text-decoration: none; border: 1px solid var(--border); white-space: nowrap; text-align: center; transition: color 0.2s, border-color 0.2s; }
.btn-product-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.coming-badge { font-family: var(--font-mono); font-size: 11px; color: var(--muted); border: 1px dashed var(--border); padding: 8px 16px; border-radius: 8px; letter-spacing: 0.06em; }

/* ── CONTACT ── */
.contact-section { padding: 140px 60px; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.contact-deco { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 0; }
.deco-ring { position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.deco-ring.r1 { width: 400px; height: 400px; border: 1px solid rgba(168,212,160,0.06); }
.deco-ring.r2 { width: 700px; height: 700px; border: 1px solid rgba(232,216,122,0.04); }
.deco-ring.r3 { width: 1000px; height: 1000px; border: 1px solid rgba(168,212,160,0.03); }

.contact-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.contact-header { margin-bottom: 48px; }
.contact-sub { font-size: 16px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-top: 14px; }

/* Formular */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.form-group input, .form-group textarea {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 18px;
  color: var(--text); font-family: var(--font-display); font-size: 14px;
  outline: none; resize: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(168,212,160,0.4);
  box-shadow: 0 0 0 3px rgba(168,212,160,0.06);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }

.form-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 4px; }
.form-email { font-size: 13px; color: var(--muted); }
.form-email a { color: var(--yellow); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.form-email a:hover { border-color: var(--yellow); }

.btn-submit {
  background: var(--green); color: #0A1009;
  padding: 13px 28px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: #c0e4b8; transform: translateY(-1px); }

.form-success { display: none; background: rgba(168,212,160,0.1); border: 1px solid rgba(168,212,160,0.2); color: var(--green); padding: 14px 20px; border-radius: 10px; font-size: 14px; text-align: center; }
.form-success.show { display: block; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 32px 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.footer-logo span { color: var(--yellow); }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-section, .products-section, .contact-section { padding: 80px 24px; }
  .product-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .product-card-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  footer { padding: 28px 24px; flex-direction: column; text-align: center; }
  .footer-left { align-items: center; }
}