/* ============================================================
   SOULEYA – Component Styles
   ============================================================ */

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  background: var(--glass-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-nav-b);
  transition: background var(--transition-normal);
}

.site-header.scrolled {
  background: var(--glass-nav);
  border-bottom-color: var(--glass-nav-b);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-wordmark {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: var(--tracking-widest);
  color: var(--gold1);
  text-transform: uppercase;
}

.nav-cta {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold2);
  background: rgba(200, 169, 110, 0.10);
  border: 1px solid rgba(200, 169, 110, 0.25);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.nav-cta:hover {
  background: rgba(200, 169, 110, 0.20);
  border-color: rgba(200, 169, 110, 0.45);
  color: var(--gold2);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-32) var(--space-6) var(--space-16);
  background: #282828 url('https://images.unsplash.com/photo-1518241353330-0f7941c2d9b5?w=1400&h=800&fit=crop&crop=center') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Vignette – dunkle Ränder für Lesbarkeit */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(20, 20, 20, 0.4) 0%, rgba(20, 20, 20, 0.85) 100%);
  pointer-events: none;
}

/* Gold-Wash Overlay mit Shimmer */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200, 169, 110, 0.18);
  pointer-events: none;
  animation: shimmer 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  animation: fade-up 1s ease-out 0.5s both;
}

.hero-enso {
  margin: 0 auto var(--space-10);
}

.hero-wordmark {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 400;
  color: var(--gold1);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero-tagline {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold2);
  line-height: 2.2;
  margin-bottom: var(--space-12);
}

/* ── WAITLIST FORM ── */
.waitlist-form {
  display: flex;
  gap: var(--space-3);
  max-width: 460px;
  margin: 0 auto var(--space-8);
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: var(--space-4) var(--space-6);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-h);
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: all var(--transition-normal);
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--glass);
  box-shadow: 0 0 24px var(--gold-glow);
}

.waitlist-form .btn-gold {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-sm);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold3), var(--gold2));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 40px rgba(200, 169, 110, 0.4);
  transform: translateY(-1px);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--gold1);
  border: 1px solid rgba(200, 169, 110, 0.3);
}

.btn-outline:hover {
  background: rgba(200, 169, 110, 0.1);
  border-color: var(--gold1);
}

.btn-dark {
  background: var(--dark);
  color: var(--gold1);
}

.btn-dark:hover {
  background: var(--darker);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ── COUNTER ── */
.origin-counter {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  color: #a09a90;
  text-transform: uppercase;
}

.origin-counter .count {
  color: var(--gold1);
  font-weight: 400;
  font-size: var(--text-lg);
  animation: counter-glow 3s ease-in-out infinite;
}

/* ── SECTION LAYOUT ── */
.section {
  padding: var(--space-24) 0;
}

.section--dark {
  background: var(--dark);
}

.section--darker {
  background: var(--darker);
}

/* ── LIGHT SECTIONS ── */
.section--apricot  { background: var(--apricot); }
.section--mint     { background: var(--mint); }
.section--rose     { background: var(--rose); }
.section--lavender { background: var(--lavender); }

.section--apricot,
.section--mint,
.section--rose,
.section--lavender {
  color: var(--text-dark);
}

/* Headings auf Light */
.section--apricot h2, .section--mint h2, .section--rose h2, .section--lavender h2,
.section--apricot h3, .section--mint h3, .section--rose h3, .section--lavender h3,
.section--apricot h4, .section--mint h4, .section--rose h4, .section--lavender h4 {
  color: var(--text-dark);
}

/* Body-Text auf Light */
.section--apricot p, .section--mint p,
.section--rose p, .section--lavender p {
  color: #6a6060;
}

/* Section-Sub auf Light */
.section--apricot .section-sub, .section--mint .section-sub,
.section--rose .section-sub, .section--lavender .section-sub {
  color: #6a6060;
}

/* Divider auf Light */
.section--apricot .divider, .section--mint .divider,
.section--rose .divider, .section--lavender .divider {
  background: var(--gold3);
  opacity: 0.5;
}

/* Benefit-Items auf Light */
.section--mint .benefit-item,
.section--apricot .benefit-item {
  border-bottom-color: var(--divider);
}

.section--mint .benefit-icon,
.section--apricot .benefit-icon {
  background: rgba(168, 137, 78, 0.12);
  color: var(--gold3);
}

.section--mint .benefit-text h4,
.section--apricot .benefit-text h4 {
  color: var(--gold3);
}

/* FAQ auf Light */
.section--apricot .faq-item {
  border-bottom-color: var(--divider);
}

.section--apricot .faq-question {
  color: var(--text-dark);
}

.section--apricot .faq-question:hover {
  color: var(--gold3);
}

.section--apricot .faq-icon {
  color: var(--gold3);
}

.section-label {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold3);
  text-align: center;
  margin-bottom: var(--space-2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: var(--space-4);
  color: var(--text-h);
}

.section-sub {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-sec);
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-12);
  font-weight: 400;
  line-height: var(--leading-relaxed);
}

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--gold-border);
  background: var(--glass-nav);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: rgba(200, 169, 110, 0.15);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold1);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-3);
  color: var(--gold2);
  letter-spacing: var(--tracking-wide);
}

.feature-card p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

/* ── ORIGIN SOUL BENEFITS ── */
.benefits-list {
  max-width: 600px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(200, 169, 110, 0.1);
  color: var(--gold1);
  font-size: var(--text-lg);
}

.benefit-text h4 {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--gold2);
  margin-bottom: var(--space-1);
  letter-spacing: var(--tracking-wide);
}

.benefit-text p {
  font-size: var(--text-base);
}

/* ── FAQ ACCORDION ── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text-h);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold2);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold3);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-6);
}

.faq-answer p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--glass-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--divider-l);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-wordmark {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: var(--tracking-widest);
  color: var(--gold1);
  text-transform: uppercase;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: var(--space-8);
}

.footer-links a {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold2);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--text-muted);
  opacity: 0.5;
}

/* ── CONFIRMATION OVERLAY ── */
.confirmation {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.confirmation.active {
  display: flex;
}

.confirmation-card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  border-radius: var(--radius-2xl);
  padding: var(--space-12) var(--space-10);
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: fade-up 0.5s ease-out;
}

.confirmation-card h3 {
  font-size: var(--text-3xl);
  color: var(--gold1);
  margin-bottom: var(--space-4);
}

.confirmation-card p {
  margin-bottom: var(--space-6);
}

.referral-box {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-6);
}

.referral-box input {
  flex: 1;
  background: none;
  border: none;
  color: var(--gold2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
}

.referral-box .btn-copy {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold1);
  cursor: pointer;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.referral-box .btn-copy:hover {
  background: rgba(200, 169, 110, 0.1);
}

/* ── TOAST MESSAGES ── */
.toast {
  position: fixed;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--glass-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-text);
  z-index: 300;
  transition: transform var(--transition-normal);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ── BLOG PREVIEW CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.blog-card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-normal);
}

.blog-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.blog-card .label {
  color: var(--gold3);
  margin-bottom: var(--space-3);
}

.blog-card h4 {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-h);
  margin-bottom: var(--space-3);
}

.blog-card p {
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}

.blog-card .read-more {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold1);
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(200, 169, 110, 0.08);
}

.blog-card__meta {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold3);
}

.blog-card__like {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.blog-card__like:hover {
  border-color: rgba(200, 169, 110, 0.3);
  color: var(--gold1);
  background: rgba(200, 169, 110, 0.08);
}

.blog-card__like.liked {
  color: var(--gold1);
  border-color: rgba(200, 169, 110, 0.25);
  background: rgba(200, 169, 110, 0.1);
}

.blog-card__like-count {
  min-width: 1ch;
}

/* ── DASHBOARD ── */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.dash-card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.dash-card--full {
  grid-column: 1 / -1;
}

.dash-card h3 {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--gold-text);
  margin-bottom: var(--space-4);
}

.seeds-display {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--gold);
}

.seeds-label {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--divider);
  border-radius: var(--radius-full);
  margin-top: var(--space-4);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold3), var(--gold2));
  border-radius: var(--radius-full);
  transition: width 1s ease-out;
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.15), rgba(212, 188, 139, 0.08));
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold2);
}

.activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--divider-l);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-reason {
  font-size: var(--text-sm);
  color: var(--text-body);
}

.activity-amount {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  color: var(--gold1);
  letter-spacing: var(--tracking-wide);
}

.activity-date {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.share-buttons {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ── MAGIC LINK LOGIN ── */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.login-card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  border-radius: var(--radius-2xl);
  padding: var(--space-12) var(--space-10);
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.login-card h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
  color: var(--text-h);
}

.login-card p {
  margin-bottom: var(--space-8);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.login-form input[type="email"],
.login-form input[type="text"] {
  padding: var(--space-3) var(--space-6);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-h);
  font-size: var(--text-sm);
  text-align: center;
  font-family: var(--font-body);
}

.login-form input[type="email"]:focus,
.login-form input[type="text"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* OTP-Code-Eingabe */
.otp-input {
  font-family: var(--font-body) !important;  /* Quicksand statt Josefin Sans */
  font-size: var(--text-base) !important;
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .dash-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .hero-wordmark {
    font-size: var(--text-4xl);
  }

  .section {
    padding: var(--space-16) 0;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-4);
  }
}


/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════ */

/* Override static hero when used as slider */
.hero--slider {
  background: #282828;  /* hero always dark – image hero */
  padding: 0;
}

.hero--slider::before,
.hero--slider::after {
  display: none;
}

/* Slides container – fills full hero */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  animation: slowZoom 8s ease-out forwards;
}

/* Subtle warm gold tint over B&W */
.hero-slides::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200, 169, 110, .06);
  z-index: 1;
  mix-blend-mode: color;
}

/* Gradient overlay for text readability */
.hero-slides::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, .25) 0%,
    rgba(20, 20, 20, .1)  30%,
    rgba(20, 20, 20, .5)  65%,
    rgba(20, 20, 20, .95) 100%
  );
}

@keyframes slowZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* Slide progress dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  transition: all .4s;
  cursor: pointer;
}

.hero-dot.active {
  background: var(--gold2);
  width: 24px;
  border-radius: 3px;
}

/* Hero content above slides */
.hero--slider .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 720px;
  padding: 120px 24px 80px;
  animation: fade-up 1s ease-out 0.5s both;
}

.hero--slider h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .3);
}

.hero--slider h1 em {
  font-style: italic;
  color: var(--gold2);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .85);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .3);
}

/* ── Hero Form (pill-shaped, inside hero) ── */
.hero-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(200, 169, 110, .25);
  overflow: hidden;
}

.hero-form input[type="email"] {
  flex: 1;
  border: none;
  background: none;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: #fff;
  outline: none;
}

.hero-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, .5);
}

.hero-form button {
  border: none;
  background: linear-gradient(135deg, var(--gold3), var(--gold1), var(--gold2));
  color: var(--dark);
  font-family: var(--font-label);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 32px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .3s;
}

.hero-form button:hover { opacity: .9; }

.hero-form button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ── Hero Counter ── */
.hero-counter {
  font-family: var(--font-label);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.hero-counter strong {
  color: var(--gold2);
  font-size: .8rem;
}


/* ═══════════════════════════════════════════════════════════
   WAS IST SOULEYA – 2-Column Grid
   ═══════════════════════════════════════════════════════════ */

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.what-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.25;
}

.what-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.what-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200, 169, 110, .12);
  mix-blend-mode: multiply;
}

.highlight {
  color: var(--gold3);
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════
   FEATURE CARDS – Image Layout (overrides icon layout)
   ═══════════════════════════════════════════════════════════ */

.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Override: remove icon-based padding for image-layout feature cards */
.feature-card {
  padding: 0;
  text-align: left;
}

.feature-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: transform .5s, filter .5s;
}

.feature-card:hover .feature-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(200, 169, 110, .1), rgba(20, 20, 20, .6));
}

.feature-body {
  padding: 28px 24px;
}

.feature-label {
  font-family: var(--font-label);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold3);
  margin-bottom: 8px;
  display: block;
}

.feature-body h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-h);
  margin-bottom: 12px;
}

.feature-body p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   SO FUNKTIONIERT'S
   ═══════════════════════════════════════════════════════════ */

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.how-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  max-height: 520px;
}

.how-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200, 169, 110, .1);
  mix-blend-mode: multiply;
}

.how-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-h);
  margin-bottom: 32px;
  line-height: 1.25;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold2);
  flex-shrink: 0;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-h);
  margin-bottom: 4px;
}

.step p {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   FIRST LIGHT SECTION
   ═══════════════════════════════════════════════════════════ */

.origin-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.origin-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--text-h);
  margin-bottom: 16px;
  line-height: 1.2;
}

.origin-desc {
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: var(--leading-relaxed);
}

.origin-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit .benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(168, 137, 78, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit h4 {
  font-family: var(--font-label);
  font-size: .8rem;
  letter-spacing: .05em;
  margin-bottom: 2px;
}

.benefit p {
  font-size: .88rem;
  line-height: 1.6;
}

.origin-visual {
  position: relative;
  padding-bottom: 28px;
  padding-right: 28px;
}

.origin-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 520px;
  position: relative;
}

.origin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200, 169, 110, .12);
  mix-blend-mode: multiply;
}

.origin-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold2);
  line-height: 1;
}

.badge-text {
  font-family: var(--font-label);
  font-size: .5rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold3);
  margin-top: 4px;
}


/* ═══════════════════════════════════════════════════════════
   FIRST LIGHT – Profil-Mockup-Layout
   ═══════════════════════════════════════════════════════════ */

.fl-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.fl-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 12px;
}

.fl-headline {
  font-size: clamp(1.5rem, 4vw, 2.125rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-h);
  line-height: var(--leading-snug);
  margin-bottom: 16px;
}

.fl-subline {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  margin-bottom: 20px;
}

.fl-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fl-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--text-body);
}

.fl-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border-s);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gold-text);
}

.fl-profile-side {
  display: flex;
  justify-content: center;
}

.fl-profile {
  width: 320px;
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.fl-banner {
  height: 110px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #D8CFBE, #C8A96E 60%, #B08840);
}

.fl-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-solid) 0%, transparent 70%);
}

.fl-avatar-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.fl-enso-wrap {
  position: relative;
  width: 120px;
  height: 120px;
}

.fl-enso-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fl-avatar-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

@keyframes first-light-glow {
  0%, 100% { opacity: .4; }
  50%       { opacity: 1; }
}

.fl-glow { animation: first-light-glow 3s ease-in-out infinite; }

.fl-p-body { padding: 8px 20px 20px; text-align: center; }

.fl-p-name {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--text-h);
  margin-bottom: 2px;
}

.fl-p-handle {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 4px;
}

.fl-p-level {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-text);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border-s);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.fl-p-level-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.fl-p-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.fl-p-stat-num { display: block; font-size: var(--text-base); color: var(--text-h); }
.fl-p-stat-lbl { font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }

.fl-p-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 12px;
}

.fl-p-tag {
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  color: var(--gold-text);
  border: 1px solid var(--gold-border-s);
  background: var(--gold-bg);
}

.fl-p-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--divider);
}

.fl-p-badge-icon { width: 18px; height: 18px; }

.fl-p-badge-text {
  font-size: 9px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-text);
}

.fl-p-badge-sub {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 700px) {
  .fl-section { grid-template-columns: 1fr; }
  .fl-profile-side { order: -1; }
}


/* ═══════════════════════════════════════════════════════════
   IMPULSE CARDS
   ═══════════════════════════════════════════════════════════ */

.impulse-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.impulse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.impulse-card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.impulse-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.impulse-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.impulse-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform .5s, filter .5s;
}

.impulse-card:hover .impulse-card-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.impulse-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200, 169, 110, .12);
  mix-blend-mode: multiply;
}

.impulse-card-body {
  padding: 24px;
}

.impulse-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-h);
  margin-bottom: 8px;
  margin-top: 8px;
}

.impulse-card-body p {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   FAQ HEADER
   ═══════════════════════════════════════════════════════════ */

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}


/* ═══════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════ */

.cta-final {
  padding: var(--space-24) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1619781458519-5c6115c0ee98?w=1400&h=600&fit=crop&crop=center') center/cover;
}

.cta-final-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, .82);
}

.cta-final .container {
  position: relative;
  z-index: 2;
}

.cta-final h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}

.cta-final p {
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold3), var(--gold1), var(--gold2));
  color: var(--dark);
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: opacity .3s;
}

.cta-btn:hover { opacity: .9; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – New Sections
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .what-grid,
  .how-grid,
  .origin-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .impulse-grid {
    grid-template-columns: 1fr;
  }

  /* Flip image order on mobile: image on top */
  .what-image {
    order: -1;
  }

  /* Hero form stacks vertically on mobile */
  .hero-form {
    flex-direction: column;
    border-radius: var(--radius-xl);
    max-width: 100%;
  }

  .hero-form button {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 14px;
  }

  .hero--slider .hero-content {
    padding: 100px 20px 60px;
  }

  .hero--slider h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .origin-visual {
    padding-bottom: 40px;
    padding-right: 16px;
  }
}


/* ============================================================
   NEUE DASHBOARD-KOMPONENTEN
   ============================================================ */

/* ── Theme-Toggle ── */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: var(--radius-full);
  color: var(--gold2);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(200, 169, 110, 0.2);
  border-color: rgba(200, 169, 110, 0.4);
}

.site-header .container {
  gap: var(--space-3);
}

/* ── Expand / Collapse Panels ── */
.dash-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.dash-expand.open {
  max-height: 800px;
}

.btn-expand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  width: 100%;
  justify-content: center;
  font-size: var(--text-xs);
}

.btn-expand .expand-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-expand.open .expand-icon {
  transform: rotate(180deg);
}

/* ── Profil-Karte ── */
.profile-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.profile-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.profile-avatar-wrap img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid rgba(200, 169, 110, 0.3);
  display: block;
}

.avatar-upload-label {
  display: block;
  margin-top: var(--space-1);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold3);
  cursor: pointer;
  text-align: center;
  transition: color var(--transition-fast);
}

.avatar-upload-label:hover {
  color: var(--gold1);
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.profile-form input,
.profile-form select {
  padding: 8px var(--space-3);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-h);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  width: 100%;
}

.profile-form input:focus,
.profile-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.profile-form select option {
  background: var(--bg-solid);
  color: var(--text-h);
}

.profile-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.profile-save-row {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--space-1);
}

.profile-save-row .btn {
  font-size: var(--text-xs);
  padding: 8px var(--space-5);
}

.profile-message {
  font-size: var(--text-xs);
  color: var(--gold2);
  min-height: 1.1em;
  text-align: right;
}

/* ── Standort-Autocomplete ── */
.location-autocomplete {
  position: relative;
}

.location-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--glass-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  z-index: 50;
  max-height: 180px;
  overflow-y: auto;
  box-shadow: var(--glass-shadow);
  display: none;
}

.location-suggestions.open {
  display: block;
}

.location-suggestions li {
  padding: 8px var(--space-3);
  cursor: pointer;
  font-size: var(--text-xs);
  color: var(--text-body);
  border-bottom: 1px solid var(--divider-l);
  transition: background var(--transition-fast);
  list-style: none;
  line-height: 1.4;
}

.location-suggestions li:last-child {
  border-bottom: none;
}

.location-suggestions li:hover,
.location-suggestions li.active {
  background: rgba(200, 169, 110, 0.1);
  color: var(--gold2);
}

.location-suggestions li .suggestion-main {
  font-weight: 500;
}

.location-suggestions li .suggestion-sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ── Community-Karte / Mapbox ── */
.dash-map-container {
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-4);
  border: 1px solid rgba(200, 169, 110, 0.1);
}

.dash-map-container .mapboxgl-canvas {
  border-radius: var(--radius-lg);
}

/* Mapbox-Attributierung (dark styling) */
.mapboxgl-ctrl-attrib a {
  color: var(--gold3) !important;
}

/* ── Expand-Inhalt Seeds ── */
.seeds-earn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-6);
  padding-top: var(--space-6);
}

.seeds-earn-item {
  text-align: center;
}

.seeds-earn-amount {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--gold1);
}

/* ── Activity Expand ── */
.activity-expand-inner {
  padding-top: var(--space-4);
}


/* ============================================================
   LIGHT THEME – Spezifische Komponenten-Overrides
   (CSS-Variablen werden vollständig über tokens.css gesteuert)
   ============================================================ */

/* Theme Toggle im Light-Modus: dezentere Darstellung */
[data-theme="light"] .theme-toggle {
  background: var(--gold-bg);
  border-color: var(--gold-border-s);
  color: var(--gold-text);
}

[data-theme="light"] .theme-toggle:hover {
  background: var(--gold-bg-hover);
}

/* Nav-CTA (LOGIN) im Light-Modus – analog zum Theme-Toggle */
[data-theme="light"] .nav-cta {
  background: var(--gold-bg);
  border-color: var(--gold-border-s);
  color: var(--gold-text);
}

[data-theme="light"] .nav-cta:hover {
  background: var(--gold-bg-hover);
}

/* Mapbox-Attributierung im Light-Modus */
[data-theme="light"] .mapboxgl-ctrl-attrib a {
  color: var(--gold-text) !important;
}

/* Placeholder-Farbe Light Mode */
[data-theme="light"] .login-form input::placeholder,
[data-theme="light"] .profile-form input::placeholder,
[data-theme="light"] input::placeholder {
  color: var(--text-muted);
}

/* Header Light Mode – opaker für bessere Lesbarkeit über Slider-Bildern */
[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(200, 169, 110, 0.25);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
}

/* Mobile Responsiveness für neue Komponenten */
@media (max-width: 768px) {
  .profile-name-row {
    grid-template-columns: 1fr;
  }

  .profile-save-row {
    justify-content: stretch;
  }

  .profile-save-row .btn {
    width: 100%;
  }
}


/* ═══════════════════════════════════════════════════════════
   JOURNEY / TRANSFORMATION – Problem → Lösung Visual
   ═══════════════════════════════════════════════════════════ */

/* Dark canvas wrapper */
.journey-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(160deg, #282828 0%, #1C1C1C 55%, #161616 100%);
  margin-bottom: var(--space-10);
}

/* Three-column zone label bar at top */
.journey-zone-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: var(--space-3) var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.jz-label {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: #606060;
}

.jz-problem { text-align: left; }

.jz-center {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: #C8A96E;
  opacity: 0.82;
}

.jz-solution {
  text-align: right;
  color: #C8A96E;
  opacity: 0.72;
}

/* The SVG scales to container */
.journey-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Narrative text – immer einspaltig, zentriert */
.journey-narrative {
  display: flex;
  flex-direction: column;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.journey-col {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
}

.journey-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--divider);
  border-radius: var(--radius-full);
  padding: 3px 12px;
  margin-bottom: var(--space-4);
}

.journey-badge--gold {
  color: var(--gold-text);
  border-color: var(--gold-border);
  background: var(--gold-bg);
}

.journey-quote {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-style: italic;
  line-height: var(--leading-snug);
  color: var(--text-h);
  margin-bottom: var(--space-4);
}

.journey-col--solution .journey-quote,
.journey-col .journey-quote--gold {
  color: var(--gold-text);
}

.journey-col .journey-body {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.journey-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) 0;
}

/* ── SVG Animations ── */
@keyframes j-soul-breathe {
  0%, 100% { opacity: 0.48; transform: scale(1); }
  50%       { opacity: 0.64; transform: scale(1.09); }
}

@keyframes j-dead-flicker {
  0%, 100% { opacity: 0.28; }
  40%       { opacity: 0.40; }
  56%       { opacity: 0.07; }
  70%       { opacity: 0.24; }
}

@keyframes j-enso-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes j-soul-pulse {
  0%, 100% { opacity: 0.88; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.11); }
}

@keyframes j-comm-pulse {
  0%, 100% { opacity: 0.68; }
  50%       { opacity: 1; }
}

@keyframes j-sol-breathe {
  0%, 100% { opacity: 0.65; }
  50%       { opacity: 1; }
}

.j-soul-iso-grp {
  transform-box: fill-box;
  transform-origin: center;
  animation: j-soul-breathe 3.5s ease-in-out infinite;
}

.jd-line {
  animation: j-dead-flicker 4.5s ease-in-out infinite;
}
.jd-1 { animation-delay: 0s; }
.jd-2 { animation-delay: 0.8s; }
.jd-3 { animation-delay: 1.5s; }
.jd-4 { animation-delay: 2.2s; }
.jd-5 { animation-delay: 3.0s; }

.j-enso-grp {
  transform-box: fill-box;
  transform-origin: center;
  animation: j-enso-spin 22s linear infinite;
}

.j-soul-con-grp {
  transform-box: fill-box;
  transform-origin: center;
  animation: j-soul-pulse 2.8s ease-in-out infinite;
}

.j-comm {
  transform-box: fill-box;
  transform-origin: center;
  animation: j-comm-pulse 3.2s ease-in-out infinite;
}
.j-ca { animation-delay: 0s; }
.j-cb { animation-delay: 0.65s; }
.j-cc { animation-delay: 1.3s; }
.j-cd { animation-delay: 1.95s; }
.j-ce { animation-delay: 2.6s; }

.j-sol-glow {
  animation: j-sol-breathe 5s ease-in-out infinite;
}

/* Mobile */
@media (max-width: 768px) {
  .journey-zone-bar {
    padding: var(--space-2) var(--space-4);
  }

  .jz-label {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
}
