/* ═══════════════════════════════════════════
   FONTS — self-hosted, DSGVO-konform
═══════════════════════════════════════════ */

@font-face {
  font-family: 'Instrument Serif';
  font-style:  normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/InstrumentSerif-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style:  italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/InstrumentSerif-Italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style:  normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/figtree-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style:  italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/figtree-latin-300-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style:  normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/figtree-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style:  normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/figtree-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style:  normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/figtree-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style:  normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/geist-mono-cyrillic-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style:  normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/geist-mono-cyrillic-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style:  normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/geist-mono-cyrillic-500-normal.woff2') format('woff2');
}

/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --black:      #07060a;
  --surf-1:     #0e0c12;
  --surf-2:     #151219;
  --surf-3:     #1c1824;
  --border:     rgba(255,255,255,0.07);
  --border-h:   rgba(255,255,255,0.13);
  --text:       #f2efe8;
  --text-m:     rgba(242,239,232,0.50);
  --text-d:     rgba(242,239,232,0.26);
  --gold-l:     #f0c860;
  --gold:       #d4a847;
  --gold-d:     #a07820;
  --gold-dim:   rgba(212,168,71,0.12);
  --gold-glow:  rgba(212,168,71,0.08);
  --green:      #3ecf8e;
  --green-dim:  rgba(62,207,142,0.10);
  --serif:      'Instrument Serif', Georgia, serif;
  --sans:       'Figtree', system-ui, sans-serif;
  --mono:       'Geist Mono', ui-monospace, monospace;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   BASE
═══════════════════════════════════════════ */
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold-dim);
  color: var(--gold-l);
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ═══════════════════════════════════════════
   NOISE OVERLAY
═══════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.45;
}

/* ═══════════════════════════════════════════
   AMBIENT ORBS
═══════════════════════════════════════════ */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 700px; height: 500px;
  background: rgba(212,168,71,0.07);
  top: -150px; left: 50%;
  transform: translateX(-50%);
}
.orb-2 {
  width: 350px; height: 350px;
  background: rgba(212,168,71,0.05);
  bottom: 25%; right: -80px;
}
.orb-3 {
  width: 250px; height: 250px;
  background: rgba(160,120,32,0.06);
  top: 40%; left: -60px;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
section { position: relative; z-index: 1; }

.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-left: 3rem;
  padding-right: 3rem;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(7,6,10,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav__logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}
.nav__logo img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-font-smoothing: antialiased;
  transform: translateZ(0);
  backface-visibility: hidden;
  filter: none;
}
.nav__logo .star {
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.875rem;
  color: var(--text-m);
  font-weight: 300;
  letter-spacing: 0.01em;
  transition: color 150ms ease;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  border: 1px solid rgba(212,168,71,0.4);
  color: var(--gold);
  background: transparent;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 200ms ease;
  display: inline-block;
}
.nav__cta:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold-l);
  box-shadow: 0 0 24px rgba(212,168,71,0.15);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero__watermark {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 220px;
  letter-spacing: -8px;
  color: rgba(212,168,71,0.04);
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  line-height: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(212,168,71,0.25);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-family: var(--mono);
  color: var(--gold);
  margin-bottom: 2.5rem;
  background: rgba(212,168,71,0.05);
}
.hero__badge .stars {
  font-size: 0.8125rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  max-width: 860px;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.hero__h1 .gold {
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stars {
  font-size: 2rem;
  letter-spacing: 6px;
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: 1.125rem;
  color: var(--text-m);
  max-width: 480px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__note {
  font-size: 0.75rem;
  color: var(--text-d);
  margin-top: 1.25rem;
  font-family: var(--mono);
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  transition: all 200ms ease;
  letter-spacing: 0.01em;
}
.btn--gold {
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  color: #07060a;
  font-weight: 600;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212,168,71,0.3);
  filter: brightness(1.08);
}
.btn--ghost {
  background: transparent;
  color: var(--text-m);
  border: 1px solid var(--border-h);
  font-weight: 300;
}
.btn--ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════
   METRICS STRIP
═══════════════════════════════════════════ */
.metrics {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surf-1);
}
.metrics__grid {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metrics__item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.metrics__item:last-child { border-right: none; }
.metrics__val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 400;
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.metrics__label {
  font-size: 0.75rem;
  color: var(--text-d);
  font-weight: 300;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════ */
.sec__eye {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.sec__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.sec__line {
  width: 48px;
  height: 1px;
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  opacity: 0.6;
}
.sec__sub {
  font-size: 1.0625rem;
  color: var(--text-m);
  max-width: 460px;
  font-weight: 300;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how { padding-top: 8rem; padding-bottom: 8rem; }

.how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}
.how__steps { display: flex; flex-direction: column; }
.how__step {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.how__step:first-child { padding-top: 0; }
.how__step:last-child { border-bottom: none; }
.how__step:hover .how__num {
  border-color: rgba(212,168,71,0.5);
  color: var(--gold);
}
.how__num {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--text-d);
  flex-shrink: 0;
  transition: all 200ms ease;
  background: var(--surf-2);
}
.how__step-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1875rem;
  font-weight: 400;
  margin-bottom: 0.375rem;
}
.how__step-desc {
  font-size: 0.875rem;
  color: var(--text-m);
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   TAGS
═══════════════════════════════════════════ */
.tag {
  display: inline-block;
  font-size: 0.625rem;
  font-family: var(--mono);
  padding: 3px 9px;
  border-radius: 4px;
  margin-top: 0.625rem;
  letter-spacing: 0.03em;
  border: 1px solid;
}
.tag--gold  { background: rgba(212,168,71,0.08); color: var(--gold);   border-color: rgba(212,168,71,0.2); }
.tag--auto  { background: rgba(62,207,142,0.08); color: var(--green);  border-color: rgba(62,207,142,0.2); }
.tag--co    { background: rgba(212,168,71,0.06); color: var(--gold-l); border-color: rgba(212,168,71,0.15); }

/* ═══════════════════════════════════════════
   PREVIEW CARD
═══════════════════════════════════════════ */
.preview {
  background: var(--surf-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 96px;
  box-shadow: 0 0 80px rgba(212,168,71,0.04);
}
.preview__bar {
  background: var(--surf-3);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--border);
}
.preview__dot { width: 10px; height: 10px; border-radius: 50%; }
.preview__label {
  font-size: 0.6875rem;
  color: var(--text-d);
  font-family: var(--mono);
  margin-left: 0.5rem;
}
.preview__body { padding: 1.375rem; }
.preview__review {
  background: var(--surf-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.875rem;
}
.preview__stars {
  font-size: 1rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.375rem;
}
.preview__author {
  font-size: 0.6875rem;
  color: var(--text-d);
  font-family: var(--mono);
  margin-bottom: 0.5rem;
}
.preview__text {
  font-size: 0.8125rem;
  color: var(--text-m);
  line-height: 1.65;
  font-weight: 300;
  font-style: italic;
}
.preview__routing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-family: var(--mono);
  margin-bottom: 0.875rem;
  border: 1px solid;
}
.preview__routing--auto {
  background: rgba(62,207,142,0.06);
  border-color: rgba(62,207,142,0.2);
  color: var(--green);
}
.preview__routing--co {
  background: rgba(212,168,71,0.06);
  border-color: rgba(212,168,71,0.2);
  color: var(--gold);
}
.preview__response {
  background: var(--surf-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}
.preview__resp-label {
  font-size: 0.625rem;
  font-family: var(--mono);
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.preview__resp-text {
  font-size: 0.8125rem;
  color: var(--text-m);
  line-height: 1.7;
  font-weight: 300;
}
.preview__resp-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  font-family: var(--mono);
  color: var(--text-d);
}
.pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-anim 1.8s ease-in-out infinite;
}
.preview__routing--auto .pulse { background: var(--green); }
.preview__routing--co   .pulse { background: var(--gold); }
.resp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   ROUTING SECTION
═══════════════════════════════════════════ */
.routing-sec { padding-top: 5rem; padding-bottom: 8rem; }

.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4rem;
}
.route-card {
  background: var(--surf-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 250ms ease;
  position: relative;
  overflow: hidden;
}
.route-card::after {
  content: '★★★★★';
  position: absolute;
  bottom: -10px;
  right: -4px;
  font-size: 72px;
  letter-spacing: -4px;
  opacity: 0.035;
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  line-height: 1;
}
.route-card--auto { border-top: 2px solid var(--gold); }
.route-card--co   { border-top: 2px solid rgba(212,168,71,0.35); }
.route-card:hover { border-color: rgba(212,168,71,0.25); }
.route-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-family: var(--mono);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(212,168,71,0.25);
  background: rgba(212,168,71,0.08);
  color: var(--gold);
}
.route-card__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.route-card__desc {
  font-size: 0.875rem;
  color: var(--text-m);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.route-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.route-card__features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-m);
  font-weight: 300;
}
.route-card__features li::before {
  content: '→';
  color: var(--gold);
  opacity: 0.5;
  font-family: var(--mono);
}

/* ═══════════════════════════════════════════
   ONBOARDING
═══════════════════════════════════════════ */
.onboard { padding-top: 5rem; padding-bottom: 8rem; }

.ob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 4rem;
}
.ob-step {
  background: var(--surf-1);
  padding: 2.5rem 1.875rem;
  transition: background 200ms ease;
  position: relative;
  overflow: hidden;
}
.ob-step:hover { background: var(--surf-2); }
.ob-step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 400;
  color: rgba(212,168,71,0.07);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.ob-step__icon {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  display: block;
}
.ob-step__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.ob-step__desc {
  font-size: 0.8125rem;
  color: var(--text-m);
  line-height: 1.65;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing { padding-top: 8rem; padding-bottom: 8rem; text-align: center; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 4rem;
  text-align: left;
}
.price-card {
  background: var(--surf-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transition: all 250ms ease;
  position: relative;
}
.price-card:hover {
  border-color: rgba(212,168,71,0.2);
  transform: translateY(-3px);
}
.price-card--featured {
  border-color: rgba(212,168,71,0.35);
  background: linear-gradient(160deg, rgba(212,168,71,0.05) 0%, var(--surf-1) 55%);
  box-shadow: 0 0 60px rgba(212,168,71,0.06);
}
.price-card__popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  color: #07060a;
  font-size: 0.625rem;
  font-family: var(--mono);
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.price-card__name {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--text-d);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.price-card__amount {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card__period {
  font-size: 0.75rem;
  color: var(--text-d);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.price-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}
.price-card__features {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-m);
  font-weight: 300;
}
.price-card__check {
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card__cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: none;
  transition: all 200ms ease;
  width: 100%;
  letter-spacing: 0.01em;
  cursor: pointer;
  font-family: var(--sans);
}
.price-card__cta--gold {
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  color: #07060a;
  font-weight: 600;
}
.price-card__cta--gold:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(212,168,71,0.25);
}
.price-card__cta--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212,168,71,0.3);
}
.price-card__cta--outline:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.stripe-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-d);
  font-family: var(--mono);
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════
   TRUST
═══════════════════════════════════════════ */
.trust {
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust__text {
  font-size: 0.75rem;
  color: var(--text-d);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.trust__logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.trust__logo {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--text-d);
  border: 1px solid var(--border);
  padding: 0.375rem 1rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  transition: all 200ms ease;
  display: inline-block;
}
.trust__logo:hover {
  border-color: rgba(212,168,71,0.2);
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer__brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-m);
}
.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a {
  font-size: 0.8125rem;
  color: var(--text-d);
  transition: color 150ms ease;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  font-size: 0.6875rem;
  color: var(--text-d);
  font-family: var(--mono);
}



.footer__links_copy {
  display: flex;
  gap: 1.5rem;
}
.footer__links_copy a {
  font-size: 0.8125rem;
  color: var(--text-d);
  transition: color 150ms ease;
}
.footer__links_copy a:hover { color: var(--gold); }
.footer__copy {
  font-size: 0.6875rem;
  color: var(--text-d);
  font-family: var(--mono);
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gold-text {
  background: linear-gradient(135deg, #f0c860 0%, #d4a847 50%, #a07820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.hero__badge  { animation: fadeUp 0.9s 0.0s ease both; }
.hero__h1     { animation: fadeUp 0.9s 0.1s ease both; }
.hero__stars  { animation: fadeUp 0.9s 0.15s ease both; }
.hero__sub    { animation: fadeUp 0.9s 0.2s ease both; }
.hero__ctas   { animation: fadeUp 0.9s 0.3s ease both; }
.hero__note   { animation: fadeUp 0.9s 0.4s ease both; }



/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
═══════════════════════════════════════════ */

/* ── NAV LOGIN BUTTON ──────────────────────────────────── */
.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__login {
  font-size: 0.8125rem;
  color: rgba(242,239,232,0.5);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: all 200ms;
  white-space: nowrap;
}
.nav__login:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

/* ── GLOBAL OVERFLOW FIX ───────────────────────────────── */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  max-width: 100vw;
}
*, *::before, *::after {
  box-sizing: border-box;
  min-width: 0;
}
img, video, svg, iframe {
  max-width: 100%;
}

/* ── TABLET (max 900px) ─────────────────────────────────── */
@media (max-width: 900px) {
  .how__grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .route-grid    { grid-template-columns: 1fr; }
  .price-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ob-grid       { grid-template-columns: 1fr; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links    { display: none; }
}

/* ── MOBILE (max 600px) ──────────────────────────────────── */
@media (max-width: 600px) {

  /* Container */
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
    max-width: 100%;
  }

  /* NAV */
  .nav {
    padding: 0 1rem;
    height: 52px;
  }
  .nav__links  { display: none; }
  .nav__login  { display: none; }
  .nav__cta {
    font-size: 0.75rem;
    padding: 7px 12px;
    white-space: nowrap;
  }
  .nav__logo {
    font-size: 1rem;
  }

  /* HERO */
  .hero {
    padding: 4.5rem 1.25rem 3rem;
    text-align: center;
  }
  .hero__h1 {
    font-size: clamp(2.5rem, 11vw, 3.75rem);
    word-break: break-word;
    line-height: 1.1;
  }
  .hero__sub {
    font-size: 0.9375rem;
    padding: 0;
  }
  .hero__ctas {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    padding: 0 4px;
  }
  .hero__ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9375rem;
  }
  .hero__watermark {
    font-size: 28vw;
    top: 4rem;
  }
  .hero__badge {
    font-size: 0.6875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .hero__stars { font-size: 1.25rem; letter-spacing: 4px; }
  .hero__note  { font-size: 0.75rem; }

  /* METRICS */
  .metrics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 1rem 1.25rem;
  }
  .metrics__val   { font-size: 1.75rem; }
  .metrics__label { font-size: 0.6875rem; }

  /* SECTIONS */
  .sec__title { font-size: clamp(1.625rem, 7.5vw, 2.25rem); line-height: 1.15; }
  .sec__sub   { font-size: 0.9375rem; }

  /* HOW IT WORKS */
  .how__grid  { grid-template-columns: 1fr; gap: 2rem; }
  .how__steps { padding: 0; }
  .how__step  { gap: 12px; }
  #demo-container { display: none; }

  /* ROUTE CARDS */
  .route-grid { grid-template-columns: 1fr; gap: 14px; }
  .route-card { padding: 1.5rem 1.25rem; }
  .route-card__title { font-size: 1.375rem; }

  /* ONBOARDING */
  .ob-grid { grid-template-columns: 1fr; gap: 14px; }
  .ob-step { padding: 1.25rem; }

  /* PRICING */
  .price-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .price-card {
    padding: 1.375rem 1.25rem;
  }
  .price-card--featured { order: -1; }
  .price-card__amount   { font-size: 2.5rem; }
  .price-card__cta {
    padding: 13px;
    font-size: 0.9375rem;
    text-align: center;
  }

  /* TRUST */
  .trust__logos {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  /* FOOTER */
  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }
  .footer__copy { font-size: 0.75rem; }

  /* STRIPE NOTE */
  .stripe-note { font-size: 0.75rem; }

  /* TAG PILLS */
  .tag { font-size: 0.6875rem; padding: 4px 10px; }
}

/* ── SEHR KLEINES HANDY (max 380px) ────────────────────── */
@media (max-width: 380px) {
  .hero__h1 { font-size: 1.875rem; }
  .nav__cta { font-size: 0.75rem; padding: 7px 12px; }
  .metrics__grid { grid-template-columns: 1fr; }
}

/* ── DEMO ANIMATION CONTAINER ───────────────────────────── */
#demo-container {
  position: sticky;
  top: 96px;
  height: 620px;       /* Gesamthöhe der Box — nie ändernd */
}

.demo-shell { width: 100%; height: 100%; display: flex; flex-direction: column; }

.demo-browser {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
}

.demo-screen {
  flex: 1;
  background: #f8f9fa;
  height: 600px;
  overflow: hidden;
  position: relative;
}
.demo-screen::-webkit-scrollbar { width: 0 !important; background: transparent; }
.demo-screen {
  flex: 1;
  background: #f8f9fa;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.demo-shell { width: 100%; }

.demo-browser {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}

.demo-screen {
  flex: 1;
  background: #f8f9fa;
  height: 600px;
  overflow: hidden;
  position: relative;
}


.footer__copy a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms;
}
.footer__copy a:hover {
  color: var(--gold);
}




/* ── MOBILE VIDEO DEMO ──────────────────────────────── */
/* Mobile Demo Video */
.demo-video-wrap { display: none; }
.demo-js-wrap    { display: block; }
@media (max-width: 900px) {
  .demo-video-wrap {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .demo-js-wrap { display: none; }
  .demo-video-wrap video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    display: block;
  }
}
/* Datenschutz title */
.page-title-short { display: none; }
@media (max-width: 600px) {
  .page-title-long  { display: none; }
  .page-title-short { display: block; }
}







.at-replacement::before {
    content: "@";
}


.dot-replacement::before {
    content: ".";
}


.impressum-box p {

    font-family: sans-serif;
}
/* ── SCROLL TO TOP ── */
#scroll-top {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c860, #d4a847, #a07820);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212, 168, 71, 0.35);
  align-items: center;
  justify-content: center;
  transition: opacity 200ms, transform 200ms;
}
#scroll-top:hover {
  transform: scale(1.1);
}

/* ══════════════════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz, AGB, Kontakt)
══════════════════════════════════════════════════════════ */
.legal-wrap {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  z-index: 1;
}
.legal-nav {
  position: sticky;
  top: 0;
  background: rgba(7,6,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
.legal-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-logo .star {
  background: linear-gradient(135deg, #f0c860, #d4a847, #a07820);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.legal-back {
  font-size: 0.8125rem;
  color: var(--text-d);
  font-family: var(--mono);
  text-decoration: none;
  transition: color 200ms;
}
.legal-back:hover { color: var(--gold); }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 48px 120px;
}
.legal-eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}
.legal-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 0.8125rem;
  color: var(--text-d);
  font-family: var(--mono);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal-body { color: var(--text-m); font-weight: 300; line-height: 1.8; }
.legal-body h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text);
  margin: 40px 0 14px;
}
.legal-body h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  margin: 24px 0 10px;
  letter-spacing: 0.01em;
}
.legal-body p { margin-bottom: 16px; font-size: 0.9375rem; }
.legal-body ul,
.legal-body ol {
  margin: 0 0 16px 24px;
  font-size: 0.9375rem;
}
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--gold); opacity: 0.8; text-decoration: none; transition: opacity 200ms; }
.legal-body a:hover { opacity: 1; }
.legal-body strong { color: var(--text); font-weight: 500; }
.legal-body .highlight {
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,71,0.2);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
}
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 20px 0;
}
.legal-body th {
  text-align: left;
  padding: 10px 14px;
  background: var(--surf-2);
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.legal-body td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.legal-body tr:last-child td { border-bottom: none; }

/* Cookie Banner */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; padding: 0 16px 16px; }
.cookie-inner { max-width: 860px; margin: 0 auto; background: #1a1720; border: 1px solid rgba(212,168,71,0.2); border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 20px; box-shadow: 0 -8px 40px rgba(0,0,0,0.4); }
.cookie-text { flex: 1; }
.cookie-title { font-size: 0.875rem; font-weight: 600; color: #f2efe8; margin: 0 0 4px; }
.cookie-desc { font-size: 0.8125rem; color: rgba(242,239,232,0.5); margin: 0; }
.cookie-desc a { color: rgba(212,168,71,0.7); text-decoration: none; }
.cookie-btn { padding: 10px 24px; border-radius: 8px; font-size: 0.8125rem; font-weight: 600; cursor: pointer; font-family: inherit; }
.cookie-btn--accept { background: linear-gradient(135deg,#f0c860,#d4a847,#a07820); color: #07060a; border: none; }
.cookie-btn--decline { background: transparent; color: rgba(242,239,232,0.5); border: 1px solid rgba(255,255,255,0.15); }
.cookie-btn--decline:hover { color: #f2efe8; border-color: rgba(255,255,255,0.3); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Legal Mobile */
html, body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
.page-content { word-break: break-word; overflow-wrap: break-word; }

@media (max-width: 600px) {
  .legal-nav { padding: 0 20px; }
  .legal-content { padding: 40px 20px 80px; }
  .nav { padding: 0 1.25rem; height: 56px; }
  .nav__links { display: none !important; }
  .nav__cta { font-size: 0.8125rem; padding: 8px 14px; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .page-content h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .page-content h2 { font-size: 1.25rem; }
  .page-content p, .page-content li { font-size: 0.9375rem; line-height: 1.75; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .cookie-inner { flex-direction: column; gap: 10px; }
  .cookie-actions { flex-direction: column; width: 100%; }
  .cookie-btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   LANDINGPAGE — Cookie Banner & Utilities
══════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

#cookie-banner {
  animation: slideUp 400ms ease;
}
.cookie-btn--essential {
  background: transparent;
  color: rgba(242,239,232,0.45);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn--essential:hover {
  color: rgba(242,239,232,0.7);
  border-color: rgba(255,255,255,0.2);
}
.cookie-btn--accept:hover { filter: brightness(1.08); }

@media (max-width: 600px) {
  #cookie-banner { padding: 0 12px 12px; }
  .cookie-inner {
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
  }
  .cookie-actions {
    flex-direction: row;
    width: 100%;
  }
  .cookie-btn { flex: 1; text-align: center; }
}