/* ═══════════════════════════════════════════
   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 .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;
  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 {
  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);
}

/* ═══════════════════════════════════════════
   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
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .how__grid     { grid-template-columns: 1fr; gap: 3rem; }
  .route-grid    { grid-template-columns: 1fr; }
  .price-grid    { grid-template-columns: 1fr; }
  .ob-grid       { grid-template-columns: 1fr; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .container     { padding-left: 1.25rem; padding-right: 1.25rem; }
  .metrics__grid { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav           { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav__links    { display: none; }
  .hero          { padding-left: 1.25rem; padding-right: 1.25rem; }
}