/* ============================================================
   ETHYRIA — Production Build
   All audit fixes applied. Original files untouched.
   ============================================================ */

/* ---- Font Faces ---- */

@font-face {
  font-family: "Poppins";
  src:
    url("fonts/poppins_bold.woff2") format("woff2"),
    url("fonts/poppins_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("fonts/inter_regular.woff2") format("woff2"),
    url("fonts/inter_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---- Custom Properties ---- */

/*
 * Global font-size scale: 122% = ~19.5px base.
 * All rem values (including Tailwind utilities) are scaled accordingly.
 * Hero h1 sizes below are pre-computed for this base.
 * Changing this value requires recalibrating all rem-based spacing.
 */
html {
  font-size: 122%;
}

#hero h1 {
  margin-bottom: 1rem;
  line-height: 1.08;
}
@media (min-width: 641px) {
  #hero h1 {
    margin-bottom: 2rem;
    line-height: 1.1;
  }
}

:root {
  /* ── Color Palette ── */
  --ethyria-dark: #100c1f;
  --ethyria-indigo: #08134e;
  --ethyria-blue: #001a79;
  --ethyria-cyan: #01bfff;
  --ethyria-accent: #3184ff;
  --ethyria-purple: #5458fb;

  /* ── Semantic Colors ── */
  --c-primary: rgba(1, 191, 255, 1);
  --c-primary-dim: rgba(1, 191, 255, 0.5);
  --c-primary-subtle: rgba(1, 191, 255, 0.08);
  --c-surface: rgba(255, 255, 255, 0.04);
  --c-border: rgba(255, 255, 255, 0.07);
  --c-border-hover: rgba(255, 255, 255, 0.14);
  --c-text: rgba(255, 255, 255, 0.65);

  /* ── Spacing Scale (8pt grid) ── */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* ── Font Size Scale ── */
  --fs-micro: 0.5rem;
  --fs-xs: 0.65rem;
  --fs-sm: 0.8rem;
  --fs-base: 0.9rem;
  --fs-md: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 3rem;

  /* ── Border Radius Scale ── */
  --r-xs: 10px;
  --r-sm: 15px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-xl: 30px;
  --r-pill: 9999px;

  /* ── Section Spacing ── */
  --section-pad: clamp(2.5rem, 6vw, 4.1rem);
  --section-header-gap: clamp(1.25rem, 2.4vw, 1.85rem);
  --section-header-gap-tight: clamp(1rem, 2vw, 1.4rem);

  /* ── Typography ── */
  --ethyria-card-title-size: var(--fs-xl);
  --ethyria-body-size: var(--fs-md);
  --ethyria-body-line-height: 1.7;

  /* ── Icon Sizes ── */
  --ethyria-icon-box-11: 5.5rem;
  --ethyria-icon-box-12: 6rem;
  --ethyria-icon-box-14: 7rem;
  --ethyria-icon-box-16: 8rem;
  --ethyria-icon-font-11: 2.5rem;
  --ethyria-icon-font-12: 3rem;
  --ethyria-icon-font-14: 3.75rem;
  --ethyria-icon-font-16: 3rem;
}

/* ---- Reset ---- */

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

* {
  scroll-behavior: smooth;
}

/* ---- Skip Link (Accessibility) ---- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: var(--sp-3) var(--sp-5);
  background: var(--ethyria-cyan);
  color: #000;
  font-weight: 700;
  font-size: var(--fs-base);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ---- Base ---- */

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  background: linear-gradient(
    135deg,
    var(--ethyria-dark) 0%,
    var(--ethyria-indigo) 50%,
    var(--ethyria-blue) 100%
  );
  background-attachment: fixed;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  padding-bottom: calc(6rem + env(safe-area-inset-bottom, 0px));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--ethyria-dark) 0%,
    var(--ethyria-indigo) 50%,
    var(--ethyria-blue) 100%
  );
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 16%,
      rgba(49, 132, 255, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 82% 22%,
      rgba(84, 88, 251, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 50% 78%, rgba(1, 191, 255, 0.08), transparent 26%);
  z-index: -1;
  pointer-events: none;
}

/* Scroll margin for anchor navigation */
#hero,
#app-screens,
#features,
#insight-pfad,
#vision,
#science,
#export,
#beta,
#faq,
#discoverability,
#download {
  scroll-margin-top: var(--sp-5);
}

/* Transparent backgrounds for structural elements */
section,
header,
footer,
nav,
main {
  background-color: transparent;
}

header,
section:not(#insight-pfad),
footer {
  text-align: center;
}

/* ---- Typography ---- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding-bottom: 0.1em;
  background: linear-gradient(
    90deg,
    #22d3ee 0%,
    #60a5fa 35%,
    #a78bfa 70%,
    #f0abfc 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Gradient highlight — single source of truth */
.ethyria-gradient-text {
  background: linear-gradient(
    90deg,
    #22d3ee 0%,
    #60a5fa 35%,
    #a78bfa 70%,
    #f0abfc 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---- Pills / eyebrows keep gradient ---- */
.section-pill,
.section-eyebrow {
  background: linear-gradient(
    90deg,
    #22d3ee 0%,
    #60a5fa 35%,
    #a78bfa 70%,
    #f0abfc 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---- Sublines: weiß + Inter ---- */
.section-subtitle,
.text-center > p {
  font-family: "Inter", sans-serif;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

/* ---- Section Shells & Pills ---- */

.section-shell {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section-header {
  margin-bottom: var(--section-header-gap);
}

.section-header-tight {
  margin-bottom: var(--section-header-gap-tight);
}

.section-eyebrow {
  margin-bottom: var(--sp-1);
}

.section-pill {
  display: inline-block;
  padding: var(--sp-1) var(--sp-4);
  border: 1px solid;
  border-radius: var(--r-pill);
  font-size: var(--fs-micro);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: var(--sp-5);
}

.section-pill--app {
  color: var(--ethyria-cyan);
  border-color: rgba(1, 191, 255, 0.3);
}

.section-pill--analysis {
  color: var(--ethyria-accent);
  border-color: rgba(49, 132, 255, 0.3);
}

.section-pill--vision {
  color: var(--ethyria-purple);
  border-color: rgba(84, 88, 251, 0.32);
}

/* Vision cards — mobile-first */
#vision.container {
  padding-left: var(--sp-4);
  padding-right: var(--sp-4);
}
#vision .grid {
  gap: var(--sp-5);
}
#vision .glass-card {
  padding: var(--sp-4);
  border-radius: var(--r-lg);
}
#vision .vision-preview {
  border-radius: var(--r-sm);
}
@media (min-width: 768px) {
  #vision.container {
    padding-left: var(--sp-5);
    padding-right: var(--sp-5);
  }
  #vision .glass-card {
    padding: var(--sp-5);
    border-radius: var(--r-lg);
  }
  #vision .vision-preview {
    border-radius: var(--r-md);
  }
}

.section-title {
  margin-bottom: var(--sp-2);
  line-height: 1.08;
}

.section-subtitle {
  line-height: 1.65;
}

/* ---- Hero Section ---- */

body > main > header.container {
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-7);
}

body > main > header.container > div:first-child {
  margin-bottom: var(--sp-5);
}

body > main > header.container > h1 {
  margin-bottom: var(--sp-5);
}

body > main > header.container > p {
  margin-bottom: 0;
}

body > main > header.container + section.container {
  padding-top: var(--sp-7);
}

/* ---- Navigation ---- */

.nav-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-brand-logo {
  display: block;
  width: auto;
  max-width: min(30rem, calc(100vw - 3rem));
  max-height: 7.2rem;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .nav-brand-logo {
    max-width: min(37.5rem, calc(100vw - 3rem));
    max-height: 9rem;
  }
}

/* ---- Language Switcher ---- */

.language-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.language-flag {
  width: var(--sp-5);
  height: var(--sp-5);
  object-fit: cover;
  border-radius: var(--r-xs);
  opacity: 0.45;
  filter: saturate(0.8) brightness(0.65);
  transition:
    opacity 0.25s ease,
    filter 0.25s ease,
    transform 0.25s ease;
}

.language-flag:hover {
  opacity: 0.8;
  filter: saturate(1) brightness(0.9);
  transform: translateY(-1px);
}

.language-flag.is-active {
  opacity: 1;
  filter: none;
  transform: none;
}

/* ---- App Showcase ---- */

.app-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(var(--sp-6), 4vw, var(--sp-7));
  align-items: stretch;
}

.app-showcase-item {
  width: min(100%, 23rem);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* When the item IS the slider slide, it must fill the track fully;
   the 23rem centering is then re-applied to each direct child. */
.ethyria-slider__track > .ethyria-slider__slide.app-showcase-item {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}
.ethyria-slider__track
  > .ethyria-slider__slide.app-showcase-item
  > .app-showcase-copy,
.ethyria-slider__track
  > .ethyria-slider__slide.app-showcase-item
  > .app-showcase-visual {
  width: min(100%, 23rem);
  margin-inline: auto;
}

.app-showcase-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  flex: 1;
}

.app-showcase-copy h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.72rem);
  line-height: 1.16;
}

.app-showcase-copy p {
  margin: 0;
  max-width: none;
  font-size: clamp(0.98rem, 1.25vw, 1.05rem);
  line-height: 1.72;
  text-align: center;
}

.app-showcase-icon {
  width: var(--ethyria-icon-box-11);
  height: var(--ethyria-icon-box-11);
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ethyria-icon-font-11);
  box-shadow: 0 12px 28px rgba(2, 8, 32, 0.18);
}

.app-showcase-visual {
  position: relative;
}

.app-showcase-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6% -12% 6%;
  background: radial-gradient(
    circle at center,
    rgba(1, 191, 255, 0.24) 0%,
    rgba(49, 132, 255, 0.2) 34%,
    rgba(84, 88, 251, 0.16) 58%,
    transparent 78%
  );
  filter: blur(30px);
  opacity: 0.72;
  z-index: -1;
  pointer-events: none;
}

.app-showcase-visual::after {
  content: "";
  position: absolute;
  inset: auto 12% -14% 12%;
  height: 44%;
  background: radial-gradient(
    circle at center,
    rgba(1, 191, 255, 0.34) 0%,
    rgba(49, 132, 255, 0.18) 42%,
    transparent 76%
  );
  filter: blur(18px);
  opacity: 0.74;
  z-index: -1;
  pointer-events: none;
}

.app-showcase-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 65px rgba(2, 8, 32, 0.42),
    0 0 24px rgba(1, 191, 255, 0.14),
    0 0 52px rgba(49, 132, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.app-showcase-item--featured .app-showcase-image {
  border-color: rgba(1, 191, 255, 0.22);
  box-shadow:
    0 34px 72px rgba(1, 191, 255, 0.16),
    0 0 28px rgba(1, 191, 255, 0.22),
    0 0 64px rgba(49, 132, 255, 0.12),
    0 24px 54px rgba(2, 8, 32, 0.44),
    0 0 0 1px rgba(1, 191, 255, 0.08);
}

@media (min-width: 768px) {
  .app-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(var(--sp-6), 3vw, var(--sp-7));
  }
}

/* ---- Glass Cards ---- */

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(1, 191, 255, 0.1);
  border: 1px solid rgba(1, 191, 255, 0.3);
}

.glass-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: var(--ethyria-card-title-size);
  line-height: 1.3;
}

#export h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.glass-card p,
.glass-card .text-xs.text-gray-400,
.glass-card .text-sm.text-gray-400 {
  font-size: var(--ethyria-body-size);
  line-height: var(--ethyria-body-line-height);
}

/* Center alignment for non-insight-path sections */
section:not(#insight-pfad) .text-left {
  text-align: center;
}

section:not(#insight-pfad) .glass-card > .w-11,
section:not(#insight-pfad) .glass-card > .w-12,
section:not(#insight-pfad) .glass-card > .w-14 {
  margin-inline: auto;
}

section:not(#insight-pfad) .glass-card.flex:not(.flex-col) {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
}

section:not(#insight-pfad) .glass-card > .flex.items-center.gap-4 {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
}

section:not(#insight-pfad) .glass-card .w-11.h-11.rounded-xl {
  width: var(--ethyria-icon-box-11);
  height: var(--ethyria-icon-box-11);
  font-size: var(--ethyria-icon-font-11);
  margin-inline: auto;
}

section:not(#insight-pfad) .glass-card .w-12.h-12.rounded-2xl,
section:not(#insight-pfad) .glass-card .flex-shrink-0.w-12.h-12.rounded-2xl {
  width: var(--ethyria-icon-box-12);
  height: var(--ethyria-icon-box-12);
  font-size: var(--ethyria-icon-font-12);
  margin-inline: auto;
}

section:not(#insight-pfad) .glass-card .w-14.h-14.rounded-2xl {
  width: var(--ethyria-icon-box-14);
  height: var(--ethyria-icon-box-14);
  font-size: var(--ethyria-icon-font-14);
  margin-inline: auto;
}

section:not(#insight-pfad) .glass-card .w-16.h-16.rounded-full {
  width: var(--ethyria-icon-box-16);
  height: var(--ethyria-icon-box-16);
  font-size: var(--ethyria-icon-font-16);
  margin-inline: auto;
}

section:not(#insight-pfad) .glass-card.flex.flex-col > h3,
section:not(#insight-pfad) .glass-card.flex.flex-col > h4,
section:not(#insight-pfad) .glass-card.flex.flex-col > div:not([class*="w-"]) {
  margin-top: calc(var(--sp-1) * -1);
}

section:not(#insight-pfad)
  .glass-card
  > .flex.items-center.gap-4
  > div:last-child {
  margin-top: calc(var(--sp-1) * -1);
}

section:not(#insight-pfad) .glass-card li,
section:not(#insight-pfad) .glass-card[class*="items-start"],
section:not(#insight-pfad) .glass-card [class~="items-start"] {
  align-items: center;
  justify-content: center;
  text-align: center;
}

section:not(#insight-pfad) .glass-card li > div,
section:not(#insight-pfad) .glass-card [class~="text-left"] {
  text-align: center;
}

/* Feature card footer colors */
#features .grid > .glass-card > div:last-child {
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

#features .grid > .glass-card:nth-child(1) > div:last-child {
  color: #06b6d4;
  border-top-color: rgba(6, 182, 212, 0.3);
}

#features .grid > .glass-card:nth-child(2) > div:last-child {
  color: #c084fc;
  border-top-color: rgba(192, 132, 252, 0.3);
}

#features .grid > .glass-card:nth-child(3) > div:last-child {
  color: #60a5fa;
  border-top-color: rgba(96, 165, 250, 0.3);
}

#features .grid > .glass-card:nth-child(4) > div:last-child {
  color: #818cf8;
  border-top-color: rgba(129, 140, 248, 0.3);
}

#features .grid > .glass-card:nth-child(5) > div:last-child {
  color: #67e8f9;
  border-top-color: rgba(103, 232, 249, 0.3);
}

/* ---- Insight Path: Live Dream Phone ---- */

.live-dream-phone {
  background: linear-gradient(
    180deg,
    rgba(5, 18, 66, 0.98) 0%,
    rgba(6, 26, 88, 0.96) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 0 72px rgba(1, 191, 255, 0.14),
    0 0 128px rgba(49, 132, 255, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.62);
}

.live-dream-shell {
  position: relative;
}

.live-dream-shell::before {
  content: "";
  position: absolute;
  inset: 6% 5% -9% 5%;
  background: radial-gradient(
    circle at center,
    rgba(1, 191, 255, 0.26) 0%,
    rgba(49, 132, 255, 0.18) 36%,
    rgba(84, 88, 251, 0.14) 58%,
    transparent 80%
  );
  filter: blur(34px);
  opacity: 0.8;
  z-index: -1;
  pointer-events: none;
}

.live-dream-shell::after {
  content: "";
  position: absolute;
  inset: auto 12% -13% 12%;
  height: 36%;
  background: radial-gradient(
    circle at center,
    rgba(1, 191, 255, 0.32) 0%,
    rgba(49, 132, 255, 0.16) 44%,
    transparent 78%
  );
  filter: blur(22px);
  opacity: 0.78;
  z-index: -1;
  pointer-events: none;
}

.live-dream-entry {
  background: linear-gradient(
    180deg,
    rgba(8, 30, 102, 0.34) 0%,
    rgba(5, 18, 70, 0.58) 100%
  );
  border-color: rgba(103, 232, 249, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(1, 191, 255, 0.06);
}

/* ---- Insight Path: Roadmap Cards ---- */

.roadmap-card {
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
}

.roadmap-card--cyan {
  border: 1px solid rgba(1, 191, 255, 0.18);
}
.roadmap-card--violet {
  border: 1px solid rgba(139, 92, 246, 0.18);
}
.roadmap-card--sky {
  border: 1px solid rgba(56, 189, 248, 0.18);
}
.roadmap-card--indigo {
  border: 1px solid rgba(99, 102, 241, 0.18);
}

.roadmap-card--gradient {
  background: linear-gradient(
    135deg,
    rgba(1, 191, 255, 0.06),
    rgba(139, 92, 246, 0.06)
  );
  border: 1px solid rgba(1, 191, 255, 0.25);
  box-shadow: 0 0 40px rgba(1, 191, 255, 0.07);
}

.roadmap-node {
  width: var(--sp-8);
  height: var(--sp-8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
}

.roadmap-node--cyan {
  background: rgba(1, 191, 255, 0.12);
  border: 2px solid rgba(1, 191, 255, 0.5);
  box-shadow: 0 0 24px rgba(1, 191, 255, 0.35);
}

.roadmap-node--violet {
  background: rgba(139, 92, 246, 0.12);
  border: 2px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.35);
}

.roadmap-node--sky {
  background: rgba(56, 189, 248, 0.12);
  border: 2px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.35);
}

.roadmap-node--indigo {
  background: rgba(99, 102, 241, 0.12);
  border: 2px solid rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.35);
}

.roadmap-node--gradient {
  background: linear-gradient(
    135deg,
    rgba(1, 191, 255, 0.15),
    rgba(139, 92, 246, 0.15)
  );
  border: 2px solid rgba(1, 191, 255, 0.6);
  box-shadow:
    0 0 32px rgba(1, 191, 255, 0.4),
    0 0 12px rgba(139, 92, 246, 0.2);
}

.roadmap-mockup-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-3);
  text-align: left;
}

.roadmap-label {
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 400;
  margin-bottom: var(--sp-1);
}

.roadmap-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
}

.roadmap-tag {
  font-size: var(--fs-micro);
  padding: 3px 9px;
  border-radius: var(--r-md);
  white-space: nowrap;
}

/* ---- Beta Section ---- */

#beta {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

#beta .glass-card > span:first-child {
  font-size: var(--fs-2xl);
  line-height: 1;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.glow-button {
  background: linear-gradient(
    90deg,
    var(--ethyria-cyan) 0%,
    var(--ethyria-accent) 50%,
    var(--ethyria-purple) 100%
  );
  background-size: 170% 170%;
  background-position: 0% 50%;
  color: #ffffff;
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 40px rgba(49, 132, 255, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  text-shadow: 0 1px 2px rgba(8, 19, 78, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-position 0.35s ease,
    filter 0.25s ease;
}

#beta .glow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 13.5rem;
}

.glow-button:hover {
  transform: translateY(-2px) scale(1.015);
  background-position: 100% 50%;
  filter: saturate(1.08) brightness(1.05);
  box-shadow:
    0 24px 54px rgba(49, 132, 255, 0.34),
    0 0 24px rgba(1, 191, 255, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}

#beta input[type="email"] {
  caret-color: var(--ethyria-cyan);
}

#beta input[type="email"]::placeholder {
  color: rgba(125, 211, 252, 0.92);
  opacity: 1;
}

/* ---- Emotion Chart Animation ---- */

@keyframes drawLine {
  from {
    stroke-dashoffset: 800;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fillReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dotPop {
  0% {
    r: 0;
    opacity: 0;
  }
  60% {
    r: 5.5;
    opacity: 1;
  }
  100% {
    r: inherit;
    opacity: 1;
  }
}

.echo-chart .echo-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 0.3s ease;
}
.echo-chart .echo-fill {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.echo-chart circle {
  opacity: 0;
  transition:
    opacity 0.3s ease,
    r 0.3s ease;
}
.echo-chart text:not(.echo-axis) {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.echo-chart.is-animated .echo-line {
  animation: drawLine 2.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.echo-chart.is-animated .echo-fill {
  animation: fillReveal 2s 0.9s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.echo-chart.is-animated circle:nth-of-type(1) {
  animation: dotPop 0.5s 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.echo-chart.is-animated circle:nth-of-type(2) {
  animation: dotPop 0.5s 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.echo-chart.is-animated circle:nth-of-type(3) {
  animation: dotPop 0.5s 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.echo-chart.is-animated circle:nth-of-type(4) {
  animation: dotPop 0.5s 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.echo-chart.is-animated text:not(.echo-axis) {
  animation: fillReveal 0.8s 1.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* ---- Download Section ---- */

#download {
  padding-top: var(--sp-4);
  padding-bottom: var(--sp-5);
}

.google-play-badge {
  width: min(100%, 12rem);
  height: auto;
  margin: var(--sp-2) auto 0;
  display: block;
  border-radius: 15px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.google-play-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
}

/* ---- Floating Beta CTA ---- */

.floating-beta-cta {
  position: fixed;
  left: 50%;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 50;
  width: auto;
  max-width: min(
    calc(
      100% - 1.5rem - env(safe-area-inset-left, 0px) -
        env(safe-area-inset-right, 0px)
    ),
    18.5rem
  );
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-pill);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    90deg,
    var(--ethyria-cyan) 0%,
    var(--ethyria-accent) 50%,
    var(--ethyria-purple) 100%
  );
  background-size: 170% 170%;
  background-position: 0% 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow:
    0 16px 40px rgba(49, 132, 255, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  text-shadow: 0 1px 2px rgba(8, 19, 78, 0.28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    filter 0.25s ease,
    background-position 0.35s ease;
}

.floating-beta-cta::after {
  content: "";
  position: absolute;
  inset: auto -16% -55% -16%;
  height: 120%;
  background: radial-gradient(
    circle at center,
    rgba(49, 132, 255, 0.48) 0%,
    rgba(84, 88, 251, 0.32) 42%,
    transparent 76%
  );
  filter: blur(22px);
  opacity: 0.45;
  z-index: -1;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    filter 0.25s ease;
}

.floating-beta-cta:hover {
  transform: translateX(-50%) translateY(-2px) scale(1.015);
  background-position: 100% 50%;
  filter: saturate(1.08) brightness(1.05);
  box-shadow:
    0 24px 54px rgba(49, 132, 255, 0.34),
    0 0 24px rgba(1, 191, 255, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}

.floating-beta-cta:hover::after {
  opacity: 0.88;
  transform: scale(1.08);
  filter: blur(26px);
}

/* ---- Floating Section Nav ---- */

.floating-section-nav {
  position: fixed;
  top: max(1rem, calc(env(safe-area-inset-top, 0px) + 1rem));
  right: max(1rem, calc(env(safe-area-inset-right, 0px) + 1rem));
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.floating-section-nav:hover {
  transform: translateY(-1px);
}

.floating-section-nav__button {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 4px 14px rgba(2, 8, 32, 0.42));
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    color 180ms ease,
    filter 180ms ease;
}

.floating-section-nav__button:hover:not(:disabled),
.floating-section-nav__button:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  color: rgba(255, 255, 255, 0.96);
  filter: drop-shadow(0 0 12px rgba(1, 191, 255, 0.18))
    drop-shadow(0 4px 14px rgba(2, 8, 32, 0.42));
  outline: none;
}

.floating-section-nav__button:disabled {
  opacity: 0.18;
  cursor: default;
  filter: none;
}

.floating-section-nav__button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.floating-section-nav[data-direction="up"]
  .floating-section-nav__button--up:not(:disabled),
.floating-section-nav[data-direction="down"]
  .floating-section-nav__button--down:not(:disabled) {
  color: rgba(125, 230, 255, 0.95);
  filter: drop-shadow(0 0 14px rgba(1, 191, 255, 0.28))
    drop-shadow(0 4px 14px rgba(2, 8, 32, 0.42));
}

/* ---- Vision Preview ---- */

.vision-preview {
  animation: pulseGlow 4s infinite ease-in-out;
  border-radius: 20px;
}

/* ---- Background Blobs ---- */

.bg-blob {
  position: fixed;
  width: min(400px, 70vw);
  height: min(400px, 70vw);
  background: radial-gradient(
    circle,
    rgba(49, 132, 255, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: -1;
  filter: blur(50px);
  pointer-events: none;
}

img,
svg {
  max-width: 100%;
}

.glass-card,
.nav-brand,
.nav-brand-text {
  min-width: 0;
}

/* ---- Section-specific utility classes (replacing inline styles) ---- */

/* Roadmap vertical line */
.roadmap-line {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(1, 191, 255, 0.5) 10%,
    rgba(139, 92, 246, 0.5) 50%,
    rgba(1, 191, 255, 0.5) 90%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(1, 191, 255, 0.3);
}

/* USP icon backgrounds */
.usp-icon--cyan {
  background: rgba(1, 191, 255, 0.12);
}
.usp-icon--violet {
  background: rgba(139, 92, 246, 0.12);
}
.usp-icon--sky {
  background: rgba(56, 189, 248, 0.12);
}
.usp-icon--indigo {
  background: rgba(99, 102, 241, 0.12);
}
.usp-icon--cyan-border {
  border-color: rgba(1, 191, 255, 0.15);
}

/* Export cards */
.export-card--cyan {
  border-color: rgba(1, 191, 255, 0.2);
  box-shadow: 0 0 40px rgba(1, 191, 255, 0.06);
}
.export-card--violet {
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.06);
}

/* Export trust bar */
.export-trust-bar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Roadmap indicator glow variants */
.roadmap-indicator--violet-glow {
  box-shadow: 0 0 6px rgba(139, 92, 246, 0.6);
}
.roadmap-indicator--cyan-glow {
  box-shadow: 0 0 6px rgba(1, 191, 255, 0.5);
}

/* ---- Honeypot: visually hidden but not display:none ---- */

.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ---- Animations ---- */

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(1, 191, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(1, 191, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 5px rgba(1, 191, 255, 0.2);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes ping {
  75%,
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ---- Responsive ---- */

/* ---- Navigation & Roadmap — mobile base ---- */
.floating-section-nav {
  top: max(0.85rem, calc(env(safe-area-inset-top, 0px) + 0.85rem));
  right: max(0.85rem, calc(env(safe-area-inset-right, 0px) + 0.85rem));
}
.floating-section-nav__button {
  width: 1.8rem;
  height: 1.8rem;
}
.floating-section-nav__button svg {
  width: 1.12rem;
  height: 1.12rem;
}
.nav-brand {
  gap: var(--sp-3);
  max-width: 100%;
}
.nav-brand-text {
  height: auto;
}
.nav-brand-title {
  font-size: clamp(1.45rem, 8vw, 1.85rem);
}
.nav-brand-slogan {
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
}
.roadmap-steps {
  position: relative;
  padding-left: 2rem;
}
.roadmap-steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(1, 191, 255, 0.4) 10%,
    rgba(139, 92, 246, 0.4) 50%,
    rgba(1, 191, 255, 0.4) 90%,
    transparent
  );
}

@media (min-width: 768px) {
  .floating-section-nav {
    top: max(1rem, calc(env(safe-area-inset-top, 0px) + 1rem));
    right: max(1rem, calc(env(safe-area-inset-right, 0px) + 1rem));
  }
  .floating-section-nav__button {
    width: 2rem;
    height: 2rem;
  }
  .floating-section-nav__button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .roadmap-steps {
    padding-left: 0;
  }
  .roadmap-steps::before {
    content: none;
  }
}

/* Defensive mobile fixes for inline-styled SVG/layout elements */
@media (max-width: 767px) {
  .roadmap-steps
    [style*="justify-content: space-between"][style*="align-items: center"] {
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .roadmap-steps [style*="white-space: nowrap"] {
    white-space: normal;
    max-width: 100%;
    line-height: 1.25;
    text-align: center;
  }

  svg[style*="overflow: visible"] {
    overflow: hidden;
    display: block;
    max-width: 100%;
    height: auto;
  }

  [style*="width: 600px"][style*="height: 600px"] {
    width: min(600px, calc(100% - 2rem));
    height: min(600px, calc(100vw - 2rem));
  }

  [style*="width: 800px"][style*="height: 300px"] {
    width: min(800px, calc(100% - 2rem));
    height: min(300px, 45vw);
  }

  [style*="width: 500px"][style*="height: 500px"] {
    width: min(500px, calc(100% - 2rem));
    height: min(500px, calc(100vw - 2rem));
  }

  [style*="width: 400px"][style*="height: 400px"] {
    width: min(400px, calc(100% - 2rem));
    height: min(400px, calc(100vw - 2rem));
  }
}

/* Floating CTA & beta — mobile base */
body {
  padding-bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px));
}
#beta .glow-button {
  min-width: 0;
  width: 100%;
}
.floating-beta-cta {
  bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  max-width: min(
    calc(
      100% - 1.5rem - env(safe-area-inset-left, 0px) -
        env(safe-area-inset-right, 0px)
    ),
    18.5rem
  );
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  line-height: 1.15;
  white-space: nowrap;
  box-shadow:
    0 12px 28px rgba(1, 191, 255, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (min-width: 641px) {
  body {
    padding-bottom: 0;
  }
  #beta .glow-button {
    min-width: 14.5rem;
    width: auto;
  }
  .floating-beta-cta {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    max-width: min(
      calc(
        100% - 1.5rem - env(safe-area-inset-left, 0px) -
          env(safe-area-inset-right, 0px)
      ),
      18.5rem
    );
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-sm);
    line-height: 1.15;
    white-space: nowrap;
    box-shadow:
      0 12px 28px rgba(1, 191, 255, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.08);
  }
}

/* ---- Reduced Motion (Accessibility) ---- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .floating-section-nav,
  .floating-section-nav__button {
    transition: none;
  }

  .vision-preview {
    animation: none;
  }

  .floating-beta-cta {
    transition: none;
  }
}

/* ============================================================
   CONSOLIDATED — Previously inline <style> from HTML
   Design refinements, overrides & component additions.
   ============================================================ */

/* Automatische Input-Labels (z.B. von Browsern) kleiner darstellen */
input[type="email"]:not([type="password"]):not(
    [readonly]
  )::-webkit-input-placeholder,
input[type="email"]:not([type="password"]):not([readonly])::placeholder,
input[type="email"]:not([type="password"]):not([readonly])::-moz-placeholder,
input[type="email"]:not([type="password"]):not(
    [readonly]
  ):-ms-input-placeholder,
#heroBottomEmail::-webkit-input-placeholder,
#heroBottomEmail::placeholder,
#heroBottomEmail::-moz-placeholder,
#heroBottomEmail:-ms-input-placeholder,
#betaEmail::-webkit-input-placeholder,
#betaEmail::placeholder,
#betaEmail::-moz-placeholder,
#betaEmail:-ms-input-placeholder,
#exitEmail::-webkit-input-placeholder,
#exitEmail::placeholder,
#exitEmail::-moz-placeholder,
#exitEmail:-ms-input-placeholder {
  font-size: 8px !important;
  color: #01bfff !important;
  opacity: 1 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: left !important;
  font-family: inherit !important;
  letter-spacing: 0.01em !important;
  background: transparent !important;
}
/* Firefox: autofill label (floating label) noch kleiner */
input[type="email"]:not([type="password"]):not([readonly]):-moz-ui-invalid,
#heroBottomEmail:-moz-ui-invalid,
#betaEmail:-moz-ui-invalid,
#exitEmail:-moz-ui-invalid {
  font-size: 8px !important;
  color: #01bfff !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: left !important;
  font-family: inherit !important;
  letter-spacing: 0.01em !important;
  background: transparent !important;
}
/* Design tokens consolidated into :root above */

/* ---- Hero Inline Form ---- */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .hero-form {
    flex-direction: row;
  }
}
.hero-form input[type="email"] {
  flex: 1;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: #fff;
  font-size: var(--fs-base);
  caret-color: var(--c-primary);
  outline: none;
  transition: border-color 0.3s ease;
}
.hero-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.hero-form input[type="email"]:focus {
  border-color: var(--c-primary-dim);
}
.hero-form button[type="submit"] {
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-pill);
  background: linear-gradient(
    90deg,
    var(--ethyria-cyan) 0%,
    var(--ethyria-accent) 50%,
    var(--ethyria-purple) 100%
  );
  background-size: 170% 170%;
  background-position: 0% 50%;
  color: #ffffff;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-base);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  box-shadow:
    0 16px 40px rgba(49, 132, 255, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  text-shadow: 0 1px 2px rgba(8, 19, 78, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-position 0.35s ease,
    filter 0.25s ease;
}
.hero-form button[type="submit"]:hover {
  transform: translateY(-2px) scale(1.015);
  background-position: 100% 50%;
  filter: saturate(1.08) brightness(1.05);
  box-shadow:
    0 24px 54px rgba(49, 132, 255, 0.34),
    0 0 24px rgba(1, 191, 255, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}
.hero-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---- Social Proof Bar ---- */
.social-proof-bar {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  backdrop-filter: none;
}
.social-proof-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--c-border);
}

/* ---- Scroll Reveal — subtle, fast ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.stagger > .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.stagger > .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

/* ---- Hero Glow — static, no pulse ---- */
.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  translate: -50% 0;
  width: clamp(300px, 55vw, 550px);
  height: clamp(300px, 55vw, 550px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(1, 191, 255, 0.07) 0%,
    transparent 65%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
#hero h1 {
  text-shadow: 0 0 120px rgba(1, 191, 255, 0.08);
}

#beta h2 {
  line-height: 1.08;
  text-shadow: 0 0 120px rgba(1, 191, 255, 0.08);
}
@media (min-width: 641px) {
  #beta h2 {
    line-height: 1.1;
  }
}

/* ---- Section Dividers — minimal line ---- */
.section-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 5;
}
.section-divider::before {
  content: "";
  width: min(40%, 16rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c-border-hover) 50%,
    transparent
  );
}
.section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

/* ---- Typography — consistent, restrained ---- */
/* glass-card headings inherit global gradient from style.css */

/* ---- Glass Card — unified single style ---- */
.glass-card {
  transition: border-color 0.3s ease;
}
.glass-card:hover {
  border-color: var(--c-border-hover);
}

/* ---- Vision Bento Grid ---- */
.vision-bento {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .vision-bento {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
  }
  .vision-card:last-child {
    grid-column: auto;
  }
}
.vision-card {
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
}
.vision-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  transition: border-color 0.4s ease;
}
.vision-card:hover .vision-card__img-wrap {
  border-color: var(--c-border-hover);
}
.vision-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.vision-card:hover .vision-card__image {
  transform: scale(1.03);
}
.vision-card__body {
  padding: var(--sp-5) var(--sp-2) var(--sp-2);
  text-align: center;
}
.vision-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r-sm);
  font-size: var(--fs-micro);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: var(--sp-2);
  color: var(--c-primary);
  background: rgba(1, 191, 255, 0.08);
}
.vision-card__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: var(--fs-xl);
  background: linear-gradient(
    90deg,
    #22d3ee 0%,
    #60a5fa 35%,
    #a78bfa 70%,
    #f0abfc 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 0 var(--sp-2);
  line-height: 1.25;
}
.vision-card__desc {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-text);
  margin: 0;
}
.vision-card--featured .vision-card__img-wrap {
  border-color: rgba(1, 191, 255, 0.12);
}

/* ---- Ethyria Slider v2 — World-Class ---- */
.ethyria-slider {
  position: relative;
  --slider-accent: var(--c-primary, #01bfff);
  --slider-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --slider-duration: 0.6s;
}
.ethyria-slider__track {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  touch-action: pan-y;
}
.ethyria-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100px) scale(0.96);
  pointer-events: none;
  transition:
    opacity var(--slider-duration) var(--slider-ease),
    transform var(--slider-duration) var(--slider-ease);
  will-change: opacity, transform;
}
.ethyria-slider__slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: none;
}
.ethyria-slider__slide.is-exit-left {
  opacity: 0;
  transform: translateX(-100px) scale(0.96);
}
.ethyria-slider__slide.is-exit-right {
  opacity: 0;
  transform: translateX(100px) scale(0.96);
}
.ethyria-slider__slide.is-dragging,
.ethyria-slider__slide.is-dragging.is-active {
  transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .ethyria-slider__slide {
    transition-duration: 0.01ms !important;
    transform: none !important;
  }
  .ethyria-slider__slide.is-active {
    transform: none !important;
  }
  .ethyria-slider__slide.is-exit-left,
  .ethyria-slider__slide.is-exit-right {
    transform: none !important;
  }
}

/* --- Controls bar --- */
.ethyria-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

.ethyria-slider__controls--top {
  margin-top: 0;
  margin-bottom: var(--sp-5);
}

/* --- Navigation arrows --- */
.ethyria-slider__nav {
  position: relative;
  z-index: 10;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  flex-shrink: 0;
  padding: 0;
  outline: none;
  transition:
    color 180ms ease,
    transform 180ms ease,
    filter 180ms ease;
  filter: drop-shadow(0 4px 14px rgba(2, 8, 32, 0.42));
}
.ethyria-slider__nav svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
  margin: auto;
}
.ethyria-slider__nav:hover:not(:disabled) {
  color: rgba(255, 255, 255, 0.96);
  transform: translateX(0) scale(1.08);
  filter: drop-shadow(0 0 12px rgba(1, 191, 255, 0.18))
    drop-shadow(0 4px 14px rgba(2, 8, 32, 0.42));
}
.ethyria-slider__nav:focus-visible:not(:disabled) {
  color: rgba(255, 255, 255, 0.96);
  outline: 2px solid rgba(1, 191, 255, 0.4);
  outline-offset: 2px;
}
.ethyria-slider__nav:active:not(:disabled) {
  transform: scale(0.95);
}
.ethyria-slider__nav:disabled {
  opacity: 0.18;
  cursor: default;
  pointer-events: none;
  transform: none;
  filter: none;
}

/* --- Pill-shaped dot indicators --- */
.ethyria-slider__dots {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.ethyria-slider__dot {
  height: 0.3rem;
  width: 0.3rem;
  border-radius: 100px;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  pointer-events: auto;
  transition:
    width 0.45s var(--slider-ease),
    background 0.45s var(--slider-ease),
    opacity 0.3s ease;
  padding: 0;
  flex-shrink: 0;
  outline: none;
}
.ethyria-slider__dot.is-active {
  width: 1.25rem;
  background: var(--slider-accent);
}
.ethyria-slider__dot:hover:not(.is-active) {
}
.ethyria-slider__dot:focus-visible {
}

@media (min-width: 768px) {
  .ethyria-slider__controls {
    gap: var(--sp-3);
    margin-top: var(--sp-6);
  }
  .ethyria-slider__controls--top {
    display: none;
  }
  .ethyria-slider__nav {
    width: 2.25rem;
    height: 2.25rem;
  }
  .ethyria-slider__nav svg {
    width: 1.4rem;
    height: 1.4rem;
  }
  .ethyria-slider__dot.is-active {
    width: 1.5rem;
  }
}

/* ---- Slider Peek — Desktop (≥1024px) ---- */
@media (min-width: 1024px) {
  .ethyria-slider {
    overflow: hidden;
    margin-inline: -8%;
    padding-inline: 8%;
  }
  .ethyria-slider__track {
    overflow: visible;
  }
  /* Right peek: slide immediately after active */
  .ethyria-slider__slide.is-active
    + .ethyria-slider__slide:not(.is-exit-left):not(.is-exit-right) {
    opacity: 0.12;
    transform: translateX(103%) scale(0.94);
    filter: blur(4px) saturate(0.5);
    pointer-events: none;
  }
  /* Left peek: slide immediately before active */
  .ethyria-slider__slide:has(+ .ethyria-slider__slide.is-active):not(
      .is-exit-left
    ):not(.is-exit-right) {
    opacity: 0.12;
    transform: translateX(-103%) scale(0.94);
    filter: blur(4px) saturate(0.5);
    pointer-events: none;
  }
}
@media (min-width: 1024px) and (prefers-reduced-motion: reduce) {
  .ethyria-slider__slide.is-active + .ethyria-slider__slide,
  .ethyria-slider__slide:has(+ .ethyria-slider__slide.is-active) {
    transition: none !important;
    filter: none !important;
  }
}

/* Features slider: no peek-expansion on desktop — constrain to card width */
[data-slider="features"] {
  max-width: 32rem;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  [data-slider="features"] {
    overflow: visible;
    margin-inline: auto;
    padding-inline: 0;
  }
}

/* ---- Trust Dots — monochrome ---- */
.trust-dot--warm {
  background: rgba(255, 255, 255, 0.4) !important;
  box-shadow: none;
}

/* ---- Scroll Hint Edge ---- */
.scroll-hint-wrapper {
  position: relative;
}
.scroll-hint-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--ethyria-dark, #100c1f) 90%
  );
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s;
}
.scroll-hint-wrapper.scrolled-end::after {
  opacity: 0;
}

/* ---- Stagger Grid (per-child reveal) ---- */
.stagger-grid > *:not(.is-visible) {
  opacity: 0;
  transform: translateY(16px);
}
.stagger-grid > * {
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================================================================
   RESPONSIVE — Mobile-first, restrained
   ================================================================ */
/* Narrow phones only — acceptable edge-case override */
@media (max-width: 390px) {
  html {
    font-size: 108%;
  }
  .hero-form button[type="submit"] {
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-sm);
  }
  .nav-brand-logo {
    max-height: 6rem;
  }
  .section-pill {
    font-size: var(--fs-micro);
    letter-spacing: 0.2em;
  }
  .social-proof-bar {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

/* ---- Layout — mobile base ---- */
#hero {
  padding-top: var(--sp-1);
  padding-bottom: var(--sp-6);
}
#hero > p,
header#hero > p {
  font-size: var(--fs-base);
  margin-bottom: var(--sp-4);
  max-width: none;
}
.hero-form {
  gap: var(--sp-2);
  max-width: 100%;
}
.hero-form input[type="email"] {
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-base);
  height: 2.75rem;
  text-align: center;
}
.hero-form button[type="submit"] {
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-base);
}
.hero-trust-line {
  color: #67e8f9 !important; /* cyan-300, full brightness */
  font-size: var(--fs-sm);
  gap: 0.4rem 0.8rem;
}

/* SEO line directly below trust badges */
.hero-trust-line + p {
  color: #67e8f9 !important; /* cyan-300 */
}
/* section-shell mobile — handled by --section-pad clamp */
.section-shell .text-center.mb-16 {
  margin-bottom: 1.5rem;
}
.section-pill {
  font-size: var(--fs-micro);
  padding: var(--sp-1) var(--sp-3);
  margin-bottom: var(--sp-3);
}
.nav-brand-logo {
  max-height: 6rem;
}
.language-switcher {
  gap: var(--sp-2);
}
.language-flag {
  width: var(--sp-5);
  height: var(--sp-5);
}
.vision-bento {
  gap: var(--sp-5);
}
.vision-card__body {
  padding: var(--sp-5) var(--sp-2) var(--sp-3);
}
.vision-card__title {
  font-size: var(--fs-xl);
}
.vision-card__desc {
  font-size: var(--fs-base);
}
.vision-card__tag {
  font-size: var(--fs-micro);
}
#beta {
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
}
#faq .grid {
  gap: var(--sp-2);
}
#faq .glass-card {
  padding: var(--sp-4);
  border-radius: var(--r-md);
}
#faq h3 {
  margin-bottom: var(--sp-1);
}
#faq p {
  font-size: var(--fs-sm);
}
#science .grid {
  gap: var(--sp-2);
}
#science .glass-card {
  padding: var(--sp-4);
}
#insight-pfad .roadmap-steps {
  gap: var(--sp-5);
}
.live-dream-shell {
  max-width: 100%;
}
.section-divider::before {
  width: 60%;
}
footer {
  padding: var(--sp-5) var(--sp-4);
}

@media (min-width: 641px) {
  #hero {
    padding-top: var(--sp-5);
    padding-bottom: var(--sp-7);
  }
  #hero > p,
  header#hero > p {
    font-size: var(--fs-lg);
    margin-bottom: 0;
    max-width: 48rem;
  }
  .hero-form {
    gap: var(--sp-3);
    max-width: 28rem;
  }
  .hero-form input[type="email"] {
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-base);
    height: auto;
    text-align: left;
  }
  .hero-form button[type="submit"] {
    padding: var(--sp-3) var(--sp-5);
    font-size: var(--fs-base);
  }
  .hero-trust-line {
    font-size: var(--fs-sm);
    gap: 0 var(--sp-4);
  }
  /* section-shell desktop — handled by --section-pad clamp */
  .section-shell .text-center.mb-16 {
    margin-bottom: 4rem;
  }
  .section-pill {
    font-size: var(--fs-micro);
    padding: var(--sp-1) var(--sp-4);
    margin-bottom: var(--sp-5);
  }
  .nav-brand-logo {
    max-height: 7.2rem;
  }
  .language-switcher {
    gap: var(--sp-3);
  }
  .language-flag {
    width: var(--sp-5);
    height: var(--sp-5);
  }
  .vision-bento {
    gap: var(--sp-4);
  }
  .vision-card__body {
    padding: var(--sp-5) var(--sp-2) var(--sp-2);
  }
  .vision-card__title {
    font-size: var(--fs-xl);
  }
  .vision-card__desc {
    font-size: var(--fs-base);
  }
  .vision-card__tag {
    font-size: var(--fs-micro);
  }
  #beta {
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
  }
  #faq .grid {
    gap: var(--sp-5);
  }
  #faq .glass-card {
    padding: var(--sp-5);
    border-radius: var(--r-lg);
  }
  #faq h3 {
    margin-bottom: var(--sp-2);
  }
  #faq p {
    font-size: var(--fs-base);
  }
  #science .grid {
    gap: var(--sp-5);
  }
  #science .glass-card {
    padding: var(--sp-5);
  }
  #insight-pfad .roadmap-steps {
    gap: var(--sp-6);
  }
  .live-dream-shell {
    max-width: 23rem;
  }
  .section-divider::before {
    width: min(40%, 16rem);
  }
  footer {
    padding: var(--sp-6) var(--sp-5);
  }
}
@media (min-width: 768px) {
  #hero > p,
  header#hero > p {
    font-size: var(--fs-lg);
  }
}

@media (min-width: 641px) {
  .vision-bento {
    grid-template-columns: 1fr 1fr;
  }
  .vision-card:last-child {
    grid-column: 1 / -1;
  }
  .features-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }
}

@media (min-width: 1024px) {
  .features-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
  }
}
@media (min-width: 1280px) {
  .features-scroll {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .vision-card__image {
    transition: none;
  }
  .stagger-grid > *:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
  .stagger-grid > * {
    transition: none;
  }
}

/* ---- Smooth Scroll ---- */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ---- Noise overlay — disabled, hidden ---- */
.noise-overlay {
  display: none;
}
.cursor-glow {
  display: none;
}
.hero-starfield {
  display: none;
}

/* ---- Section tints — removed, pure dark ---- */
#app-screens,
#features,
#vision,
#insight-pfad,
#science,
#beta {
  background: none;
}

/* ---- Unified card hover — subtle border shift only ---- */
#faq .glass-card,
#beta .glass-card,
#science .glass-card,
.features-scroll .glass-card {
  transition: border-color 0.3s ease;
}
#faq .glass-card:hover,
#beta .glass-card:hover,
#science .glass-card:hover,
.features-scroll .glass-card:hover {
  border-color: var(--c-border-hover);
  transform: none;
  box-shadow: none;
}

/* ---- Kill card glow pseudo-element ---- */
.features-scroll .glass-card::after {
  display: none;
}

/* ---- Features cards — unified muted color ---- */
.features-scroll .glass-card .text-cyan-400,
.features-scroll .glass-card .text-purple-400,
.features-scroll .glass-card .text-blue-400,
.features-scroll .glass-card .text-indigo-400,
.features-scroll .glass-card .text-sky-400 {
  color: var(--c-primary) !important;
}
.features-scroll .glass-card [class*="bg-cyan-500"],
.features-scroll .glass-card [class*="bg-purple-500"],
.features-scroll .glass-card [class*="bg-blue-500"],
.features-scroll .glass-card [class*="bg-indigo-500"],
.features-scroll .glass-card [class*="bg-sky-500"] {
  background: var(--c-primary-subtle) !important;
}

/* ---- Science cards — unified muted color ---- */
#science .glass-card [class*="usp-icon"] {
  background: var(--c-primary-subtle) !important;
}
#science .text-cyan-400,
#science .text-violet-400,
#science .text-sky-400,
#science .text-indigo-400 {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* ---- Pill badges — no pulse, static ---- */
.animate-pulse {
  animation: none !important;
}

/* ---- Confetti / success pulse — disabled ---- */
@keyframes confettiFall {
  0%,
  100% {
    opacity: 0;
  }
}
@keyframes successPulse {
  0%,
  100% {
    transform: none;
    opacity: 1;
  }
}

/* ---- Gradient text — active everywhere ---- */

/* ---- Hero form glow — removed ---- */
.hero-form button[type="submit"] {
  box-shadow: none;
}
.hero-form button[type="submit"]:hover {
  box-shadow: none;
  filter: none;
  transform: none;
}

/* ================================================================
   COMPONENT CLASSES — Feature Cards, Phone Mockup (#5, #6)
   ================================================================ */

/* Feature card (analysis slider) */
.feature-card {
  padding: var(--sp-5);
  border-radius: var(--r-lg);
}

/* USP / Science card */
.usp-card {
  padding: var(--sp-6);
  border-radius: var(--r-lg);
}

/* ---- Phone Mockup Components ---- */
.mock-statusbar {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 20px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-statusbar__time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.mock-app-header {
  padding: 16px 20px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-app-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(
    135deg,
    rgba(1, 191, 255, 0.25),
    rgba(139, 92, 246, 0.25)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.mock-app-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.mock-app-subtitle {
  font-size: 10px;
  color: rgba(139, 92, 246, 0.8);
  font-weight: 400;
}

.mock-section-label {
  font-size: 11px;
  color: rgba(1, 191, 255, 0.7);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mock-dream-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.mock-emotion-wrap {
  padding: 0 20px 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mock-emotion-tag {
  padding: 3px 10px;
  border-radius: var(--r-md);
  font-size: 10px;
  font-weight: 400;
}

.mock-emotion-tag--red {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.mock-emotion-tag--violet {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
}

.mock-emotion-tag--cyan {
  background: rgba(1, 191, 255, 0.08);
  border: 1px solid rgba(1, 191, 255, 0.2);
  color: #67e8f9;
}

.mock-dream-entry {
  margin: 0 16px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px;
}

.mock-entry-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-entry-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(1, 191, 255, 0.6);
  display: inline-block;
  box-shadow: 0 0 6px rgba(1, 191, 255, 0.5);
}

.mock-typewriter-wrap {
  display: block;
  min-height: 120px;
}

.mock-typewriter {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  display: inline;
}

.mock-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: rgba(1, 191, 255, 0.9);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: blink 1s step-end infinite;
}

.mock-mic-bar {
  margin: 0 16px 16px;
  background: linear-gradient(
    135deg,
    rgba(1, 191, 255, 0.06),
    rgba(139, 92, 246, 0.06)
  );
  border: 1px solid rgba(1, 191, 255, 0.15);
  border-radius: 15px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mock-mic-btn-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.mock-mic-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(1, 191, 255, 0.15);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.mock-mic-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(1, 191, 255, 0.3),
    rgba(139, 92, 246, 0.3)
  );
  border: 1px solid rgba(1, 191, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.mock-mic-info {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.mock-mic-hint {
  font-size: 10px;
  color: rgba(1, 191, 255, 0.6);
}

.mock-analyse-btn {
  background: linear-gradient(
    135deg,
    rgba(1, 191, 255, 0.9),
    rgba(84, 88, 251, 0.8)
  );
  border-radius: var(--r-sm);
  padding: 13px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(1, 191, 255, 0.25);
}

.mock-arrow-label {
  font-size: 11px;
  color: rgba(1, 191, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.mock-arrow-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(1, 191, 255, 0.6), transparent);
}

.mock-arrow-icon {
  font-size: 18px;
  opacity: 0.6;
  animation: bounce 2s infinite;
}

/* ---- Roadmap inline overrides ---- */
.roadmap-card-inline {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
}

.roadmap-nlp-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
}

.roadmap-nlp-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.roadmap-nlp-text {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

.roadmap-nlp-tag {
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 11px;
}

.roadmap-nlp-tag--cyan {
  background: rgba(1, 191, 255, 0.15);
  border: 1px solid rgba(1, 191, 255, 0.3);
  color: #67e8f9;
}

.roadmap-nlp-tag--violet {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}

.roadmap-nlp-tag--red {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.roadmap-nlp-tag--sky {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #7dd3fc;
}

.roadmap-perspective-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.roadmap-perspective-item {
  border-radius: var(--r-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.roadmap-perspective-item--default {
  background: rgba(1, 191, 255, 0.06);
  border: 1px solid rgba(1, 191, 255, 0.15);
}

.roadmap-perspective-item--active {
  background: rgba(139, 92, 246, 0.12);
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.2);
}

.roadmap-perspective-item--muted {
  background: rgba(1, 191, 255, 0.06);
  border: 1px solid rgba(1, 191, 255, 0.12);
}

.roadmap-perspective-emoji {
  font-size: 20px;
}

.roadmap-perspective-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.roadmap-perspective-label--active {
  color: #c4b5fd;
  font-weight: 700;
}

.roadmap-perspective-sub {
  font-size: 9px;
  color: rgba(196, 181, 253, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roadmap-archetype-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roadmap-archetype-card {
  border-radius: var(--r-sm);
  padding: 12px 14px;
}

.roadmap-archetype-card--violet {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.22);
}

.roadmap-archetype-card--red {
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.roadmap-archetype-card--sky {
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.15);
}

.roadmap-archetype-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.roadmap-archetype-desc {
  font-size: 12px;
}

.roadmap-reflection-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(1, 191, 255, 0.15);
  border-radius: 15px;
  padding: 18px 20px;
  text-align: left;
}

.roadmap-reflection-label {
  font-size: 9px;
  color: rgba(1, 191, 255, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.roadmap-reflection-quote {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 14px;
}

.roadmap-reflection-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.roadmap-reflection-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
}

.roadmap-reflection-tag--violet {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
}

.roadmap-reflection-tag--red {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.roadmap-reflection-tag--cyan {
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: #67e8f9;
}

.roadmap-chart-box {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--r-sm);
  padding: 16px;
}

.roadmap-chart-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: left;
}
