/* ============================================================
   Glass-Aurora Component Library
   ============================================================
   Required <link> order in HTML:
     1. css/tokens-global.css
     2. css/tokens-werkzeug.css   (OR tokens-buch.css)
     3. css/glass-aurora.css      (this file)

   Without correct load order the cluster-token cascade is undefined.
   ============================================================
   Quelle: docs/superpowers/specs/2026-05-05-glass-aurora-redesign-design.md § 4
   Components: Hero, Glass-Card, Flagship-Card, Comparison, Sticky-CTA,
               FAQ-Accordion, Final-CTA, Story-Section, Gentle-Rec,
               Erkenntnis-Card, Glow-CTA + Ghost-CTA, Topbar + Pill-Glass.
   ============================================================ */

/* ------------------------------------------------------------ */
/* Reveal-Utility (IntersectionObserver, one-shot)              */
/* ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------------------------------------ */
/* 1. Hero-Atmospheric (§ 4.1)                                  */
/*    3-Z-Layer Hero: photo / aurora / grain / content          */
/* ------------------------------------------------------------ */
.hero-atmospheric {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 80px 28px 60px;
  color: #fff;
  isolation: isolate;
}
.hero-atmospheric .photo-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-atmospheric .aurora {
  position: absolute;
  inset: -30%;
  z-index: 1;
  filter: blur(70px);
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, var(--aurora-1) 0%, transparent 45%),
    radial-gradient(circle at 80% 25%, var(--aurora-2) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, var(--aurora-3) 0%, transparent 55%);
  animation: aurora-drift var(--aurora-duration) ease-in-out infinite alternate;
}
.hero-atmospheric .grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: var(--grain-svg);
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-atmospheric .content {
  position: relative;
  z-index: 5;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero-atmospheric .ornament {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.6em;
  color: var(--accent-gold);
  margin: 0 0 18px;
  opacity: 0.85;
}
.hero-atmospheric .kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin: 0 0 18px;
}
.hero-atmospheric h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.hero-atmospheric h1 em {
  font-style: italic;
  color: var(--accent-gold);
}
.hero-atmospheric .lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.92);
}
.hero-atmospheric .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-atmospheric .scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* ------------------------------------------------------------ */
/* 2. Glass-Card (§ 4.2) — light, dark, pill                    */
/* ------------------------------------------------------------ */
.glass-card-light {
  background: var(--glass-bg-light);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 22px;
}
.glass-card-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(255, 153, 0, 0.3);
}

.glass-card-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border-dark);
  border-radius: 12px;
  box-shadow: var(--shadow-glass-floating);
  color: #fff;
  padding: 22px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.glass-card-dark:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glass-floating), 0 0 0 1px rgba(255, 217, 168, 0.35);
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  color: #fff;
}

/* ------------------------------------------------------------ */
/* 3. Flagship-Card (§ 4.3)                                     */
/*    Variant-colors per REVIEWER recommendation #2 — concrete  */
/* ------------------------------------------------------------ */
.flagship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.flagship-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(60, 112, 73, 0.12), rgba(200, 126, 95, 0.08));
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border-light);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 22px 22px 26px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.flagship-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.flagship-card.is-premium {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(196, 39, 45, 0.08));
}
.flagship-card.is-pl {
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(200, 126, 95, 0.08));
}
.cluster-buch .flagship-card {
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.15), rgba(201, 168, 76, 0.08));
}
.cluster-buch .flagship-card.is-premium {
  background: linear-gradient(135deg, rgba(232, 212, 139, 0.18), rgba(201, 168, 76, 0.1));
}
.flagship-card .flagship-card__badge {
  position: absolute;
  top: -10px;
  left: 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--cta-gradient);
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: var(--cta-glow);
}
.flagship-card .flagship-card__frame {
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--glass-border-light);
  border-radius: 10px;
  margin: 6px 0 16px;
  overflow: hidden;
}
.flagship-card .flagship-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flagship-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 8px;
  line-height: 1.2;
}
.flagship-card .flagship-card__meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 33, 24, 0.6);
  margin: 0 0 10px;
}
.flagship-card .flagship-card__usp {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
  color: rgba(15, 33, 24, 0.85);
}
.flagship-card .flagship-card__price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--accent-gold-deep);
}
.flagship-card .flagship-card__detail {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(15, 33, 24, 0.7);
  text-decoration: none;
  border-bottom: 1px dotted rgba(15, 33, 24, 0.4);
  align-self: flex-start;
}
.flagship-card .flagship-card__detail:hover { color: var(--accent-gold-deep); border-bottom-color: var(--accent-gold-deep); }

/* ------------------------------------------------------------ */
/* 4. Comparison-Table-Glass (§ 4.4)                            */
/* ------------------------------------------------------------ */
.comparison-table {
  background: var(--glass-bg-light);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border-light);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.comparison-table__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 0.9fr;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(216, 210, 194, 0.4);
  transition: background 0.2s, transform 0.2s;
  align-items: center;
  font-size: 14px;
}
.comparison-table__row:last-child { border-bottom: none; }
.comparison-table__row.is-head {
  background: var(--table-head-bg);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 600;
  color: rgba(15, 33, 24, 0.75);
}
.comparison-table__row:not(.is-head):hover {
  background: var(--table-row-hover-bg);
  transform: translateY(-1px);
}
.comparison-table__row .comparison-table__cta {
  display: inline-block;
  background: var(--cta-gradient);
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--cta-glow);
}

/* ------------------------------------------------------------ */
/* 5. Sticky-CTA-Mobile-Glass (§ 4.5)                           */
/* ------------------------------------------------------------ */
.sticky-cta-glass {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(26,58,42,0.95), rgba(15,33,24,0.98));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  animation: sticky-pulse 8s ease-in-out infinite;
}
.sticky-cta-glass .sticky-text {
  font-size: 14px;
  line-height: 1.3;
  flex: 1;
  margin-right: 12px;
}
.sticky-cta-glass .sticky-cta-btn {
  display: inline-block;
  background: var(--cta-gradient);
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  box-shadow: var(--cta-glow);
}
.sticky-cta-glass .sticky-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  margin-left: 6px;
}
.sticky-cta-glass .sticky-close:hover { color: #fff; }
@keyframes sticky-pulse {
  0%, 90%, 100% { box-shadow: 0 -8px 32px rgba(0,0,0,0.3); }
  93% { box-shadow: 0 -8px 32px rgba(0,0,0,0.3), 0 0 24px var(--sticky-pulse-glow); }
  96% { box-shadow: 0 -8px 32px rgba(0,0,0,0.3); }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta-glass { animation: none; }
}

/* ------------------------------------------------------------ */
/* 6. FAQ-Accordion-Glass (§ 4.6) — native <details>            */
/* ------------------------------------------------------------ */
.faq-glass details {
  background: var(--glass-bg-light);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  margin: 0 0 12px;
  padding: 14px 20px;
  transition: background 0.3s, box-shadow 0.3s;
}
.faq-glass details[open] {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-card-hover);
}
.faq-glass summary {
  font-family: var(--font-display);
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.faq-glass summary::-webkit-details-marker { display: none; }
.faq-glass summary::after {
  content: '+';
  font-size: 22px;
  color: var(--accent-gold-deep);
  transition: transform 0.2s;
}
.faq-glass details[open] summary::after { content: '−'; }
.faq-glass details > p,
.faq-glass details > div {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(15, 33, 24, 0.8);
}

/* ------------------------------------------------------------ */
/* 7. Final-CTA-Box (§ 4.7) — Mini-Hero variant                 */
/* ------------------------------------------------------------ */
.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 50px 28px;
  margin: 60px auto;
  max-width: 1100px;
  background: linear-gradient(135deg, var(--aurora-base-dark) 0%, var(--aurora-base-mid) 100%);
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: -30%;
  z-index: 0;
  filter: blur(70px);
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 30%, var(--aurora-1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, var(--aurora-3) 0%, transparent 50%);
  animation: aurora-drift var(--aurora-duration) ease-in-out infinite alternate;
}
.final-cta > * { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 14px;
}
.final-cta p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.9);
}
.final-cta .cta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

/* ------------------------------------------------------------ */
/* 8. Story-Section + Drop-Cap + Ornament (§ 4.8)               */
/* ------------------------------------------------------------ */
.story-section {
  position: relative;
  background: var(--section-bg);
  padding: 36px 28px;
  border-radius: 14px;
  max-width: 760px;
  margin: 36px auto;
  overflow: hidden;
  isolation: isolate;
}
.story-section::before {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, var(--aurora-3) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, var(--aurora-1) 0%, transparent 55%);
}
.story-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--grain-svg);
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.story-section > * { position: relative; z-index: 2; }
.story-section .kicker {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold-deep);
  margin: 0 0 12px;
  display: block;
}
.story-section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  margin: 0 0 18px;
  line-height: 1.2;
}
.story-section h2 em {
  font-style: italic;
  color: var(--accent-gold-deep);
}
.story-section p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: rgba(15, 33, 24, 0.88);
}
.story-section p.first-letter::first-letter {
  font-family: var(--font-display);
  font-size: 56px;
  float: left;
  line-height: 1;
  padding: 4px 8px 0 0;
  color: var(--accent-gold-deep);
  font-weight: 600;
}

.ornament {
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.5em;
  color: var(--accent-gold-deep);
  margin: 22px 0;
  opacity: 0.7;
}

/* ------------------------------------------------------------ */
/* 9. Gentle-Recommendation (§ 4.9)                             */
/* ------------------------------------------------------------ */
.gentle-rec {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--glass-bg-light);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 20px 22px;
  max-width: 720px;
  margin: 28px auto;
}
.gentle-rec .cover {
  width: 70px;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0,0,0,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.gentle-rec .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gentle-rec .text { min-width: 0; }
.gentle-rec .label-mini {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold-deep);
  margin: 0 0 6px;
}
.gentle-rec h5 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 6px;
  line-height: 1.25;
}
.gentle-rec p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 10px;
  color: rgba(15, 33, 24, 0.78);
}
.gentle-link {
  font-size: 14px;
  text-decoration: none;
  color: rgba(15, 33, 24, 0.85);
  border-bottom: 1px dotted var(--accent-gold-deep);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.gentle-link:hover {
  color: var(--accent-gold-deep);
  border-bottom-style: solid;
}

/* ------------------------------------------------------------ */
/* 10. Erkenntnis-Card / Feature-Card-Grid (§ 4.10)             */
/* ------------------------------------------------------------ */
.erkenntnisse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 36px auto;
}
.erkenntnis-card {
  position: relative;
  background: var(--glass-bg-light);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 22px 22px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.erkenntnis-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.erkenntnis-card .erkenntnis-card__num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: var(--accent-gold-deep);
  margin: 0 0 10px;
  font-style: italic;
}
.erkenntnis-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 8px;
  line-height: 1.25;
}
.erkenntnis-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: rgba(15, 33, 24, 0.78);
}

/* ------------------------------------------------------------ */
/* 11. Glow-CTA + Ghost-CTA + Gold-CTA (§ 4.1 hero CTAs)        */
/* ------------------------------------------------------------ */
.glow-cta,
.gold-cta {
  display: inline-block;
  background: var(--cta-gradient);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--cta-glow);
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
}
.glow-cta:hover,
.gold-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--cta-glow-hover);
}

.ghost-cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.ghost-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ------------------------------------------------------------ */
/* 12. Topbar + Pill-Glass utility (§ 4.1)                      */
/* ------------------------------------------------------------ */
.topbar {
  position: relative;
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 0 auto 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}
.topbar .dot {
  opacity: 0.5;
  margin: 0 -2px;
}

/* ------------------------------------------------------------ */
/* Mobile responsive (≤700px)                                   */
/* ------------------------------------------------------------ */
@media (max-width: 700px) {
  .hero-atmospheric {
    min-height: 460px;
    padding: 60px 20px 50px;
  }
  .hero-atmospheric .scroll-hint { display: none; }

  .flagship-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .erkenntnisse-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px;
  }

  .comparison-table { margin: 0 12px; }
  .comparison-table__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 14px;
  }
  .comparison-table__row.is-head { display: none; }
  .comparison-table__row > * { font-size: 14px; }

  .final-cta {
    padding: 36px 20px;
    margin: 36px 12px;
  }
  .final-cta .cta-row { grid-template-columns: 1fr; }

  .story-section {
    padding: 28px 20px;
    margin: 24px 12px;
  }
  .story-section p.first-letter::first-letter {
    font-size: 44px;
  }

  .gentle-rec {
    grid-template-columns: 70px 1fr;
    gap: 14px;
    padding: 16px;
    margin: 20px 12px;
  }

  .sticky-cta-glass {
    padding: 10px 12px;
  }
  .sticky-cta-glass .sticky-text { font-size: 13px; }
  .sticky-cta-glass .sticky-cta-btn { font-size: 12px; padding: 7px 14px; }

  .topbar { font-size: 11px; gap: 6px 10px; }
}

@media (max-width: 480px) {
  .hero-atmospheric h1 { font-size: 30px; }
}
