/* ============ TOKENS ============ */
:root {
  --ink: #132A2C;
  --ink-soft: #3E5457;
  --paper: #FAF8F3;
  --paper-raised: #FFFFFF;
  --sand: #EDE6D6;
  --teal: #0E6E63;
  --teal-deep: #0A4F47;
  --coral: #F0693F;
  --line: #DCD4C1;
  --radius: 4px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; width: 100%; }
.mono { font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.04em; }
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--teal); }
section, main { padding: 96px 0; flex: 1; }

/* button */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius);
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { box-shadow: 0 8px 20px rgba(240,105,63,.35); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--teal-deep); border-color: var(--line); }

/* ============ HEADER ============ */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,243,0.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px;
  letter-spacing: 0.04em; display: flex; align-items: baseline; gap: 0;
  text-transform: uppercase; text-decoration: none;
}
.logo span { color: var(--teal); }
.nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 18px; }

/* ============ HERO (index) ============ */
.hero { padding: 88px 0 60px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(36px,5vw,58px); }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero p.lead { font-size: 18px; margin-top: 22px; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-meta { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-meta div { font-family: 'IBM Plex Mono', monospace; }
.hero-meta .num { font-family: 'Fraunces', serif; font-size: 26px; color: var(--ink); display: block; }
.hero-meta .lbl { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }

/* Signature Card */
.doc-card {
  position: relative; background: var(--paper-raised);
  border: 1px solid var(--line); border-radius: 6px; padding: 34px 30px;
  box-shadow: 0 30px 60px -30px rgba(19,42,44,.25); transform: rotate(1.2deg);
}
.doc-card::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px dashed var(--line); border-radius: 3px; pointer-events: none;
}
.doc-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 18px;
}
.doc-head .code { font-family: 'IBM Plex Mono',monospace; font-size: 12px; color: var(--ink-soft); }
.doc-stamp {
  width: 64px; height: 64px; border: 2px solid var(--coral); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--coral); font-family: 'IBM Plex Mono',monospace; font-size: 9px; font-weight: 600;
  transform: rotate(-14deg); letter-spacing: .04em; line-height: 1.2; flex-shrink: 0;
}
.doc-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px dotted var(--line); font-size: 14px; }
.doc-row:last-child { border-bottom: none; }
.doc-row .k { color: var(--ink-soft); flex-shrink: 0; }
.doc-row .v { font-weight: 600; text-align: right; }

/* ============ TRUST STRIP ============ */
.trust { background: var(--sand); padding: 18px 0; }
.trust .wrap { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.trust span { font-family: 'IBM Plex Mono',monospace; font-size: 13px; color: var(--ink-soft); }
.trust strong { color: var(--teal-deep); }

/* ============ SECTION HEAD ============ */
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head h2 { font-size: clamp(28px,3.4vw,40px); }
.sec-head p { margin-top: 14px; font-size: 16px; }

/* ============ GRIDS & LISTS (index) ============ */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.benefit { background: var(--paper-raised); padding: 32px 28px; }
.benefit .idx { font-family: 'IBM Plex Mono',monospace; font-size: 12px; color: var(--teal); }
.benefit h3 { font-size: 19px; margin: 14px 0 10px; }
.benefit p { font-size: 14px; }

.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.steps .step:last-child { border-bottom: 1px solid var(--line); }
.step .n { font-family: 'Fraunces',serif; font-size: 34px; color: var(--sand); -webkit-text-stroke: 1.4px var(--teal); }
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14px; max-width: 56ch; }
.step .time { font-family: 'IBM Plex Mono',monospace; font-size: 12px; color: var(--coral); margin-top: 8px; display: inline-block; }

.facts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.fact { border-left: 2px solid var(--teal); padding: 4px 0 4px 18px; }
.fact h3 { font-size: 16px; margin-bottom: 6px; }
.fact p { font-size: 13.5px; }

.stats { background: var(--ink); color: var(--paper); }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: center; }
.stats h3 { color: #fff; font-size: clamp(38px,6vw,54px); }
.stats p { color: #B9C7C4; font-family: 'IBM Plex Mono',monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-top: 8px; }
.stats-h3-small { font-size: clamp(19px,2.4vw,23px) !important; line-height: 1.3; }
.stats-grid-text .stats-h3-small + p { text-transform: none; letter-spacing: .02em; font-size: 13px; }

/* ============ FOUNDER SECTION ============ */
.founder {
  background: var(--paper-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}
.founder-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px -20px rgba(19,42,44,.2);
  display: block;
}
.founder-text h3 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin-bottom: 18px;
  color: var(--ink);
}
.founder-text p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.founder-text strong {
  color: var(--ink);
}

/* ============ PRICING ============ */
.price-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; max-width: 1120px; margin: 0 auto; align-items: stretch; }
.ticket { position: relative; display: grid; grid-template-columns: 1fr 200px; background: var(--paper-raised); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(19,42,44,.2); height: 100%; }
.ticket.featured { border: 2px solid var(--teal); box-shadow: 0 35px 70px -30px rgba(14,110,99,.25); }
.ticket-badge { position: absolute; top: 12px; right: 12px; background: var(--teal); color: #fff; font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 30px; text-transform: uppercase; z-index: 2; }
.ticket-main { padding: 34px 28px; display: flex; flex-direction: column; justify-content: space-between; }
.ticket-main .eyebrow { margin-bottom: 8px; }
.ticket-main h3 { font-size: 22px; margin-bottom: 18px; line-height: 1.2; }
.ticket ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ticket li { display: flex; gap: 10px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.4; }
.ticket li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.ticket-stub { background: var(--teal-deep); color: #fff; padding: 34px 22px; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.ticket-stub::before { content: ""; position: absolute; top: 0; left: -1px; bottom: 0; border-left: 2px dashed rgba(255,255,255,.25); }
.ticket-stub .price { font-family: 'Fraunces',serif; font-size: 40px; }
.ticket-stub .price sup { font-size: 15px; }
.ticket-stub .cur { font-family: 'IBM Plex Mono',monospace; font-size: 11px; opacity: .75; }
.ticket-stub .btn-primary { margin-top: 16px; width: 100%; justify-content: center; text-align: center; padding: 12px 16px; font-size: 14px; }
.ticket-stub .note { font-size: 11px; opacity: .7; margin-top: 12px; font-family: 'IBM Plex Mono',monospace; text-align: center; }
.perf { position: absolute; width: 14px; height: 14px; background: var(--paper); border-radius: 50%; left: calc(100% - 200px - 7px); }
.perf.top { top: -7px; }
.perf.bottom { bottom: -7px; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; gap: 20px; background: none; border: none; width: 100%; text-align: left; font-family: 'Fraunces',serif; font-size: 17px; color: var(--ink); }
.faq-q .plus { font-family: 'IBM Plex Mono',monospace; font-size: 20px; color: var(--teal); transition: transform .2s ease; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding-bottom: 22px; font-size: 14.5px; max-width: 60ch; }

/* ============ CTA BAND ============ */
.cta-band { background: var(--teal); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(28px,4vw,42px); }
.cta-band p { color: #DDEDE9; margin-top: 14px; }
.cta-band .hero-actions { justify-content: center; margin-top: 30px; }
.cta-band .btn-outline { border-color: #fff; color: #fff; }
.cta-band .btn-outline:hover { background: #fff; color: var(--teal-deep); }

/* ============ UPSELL PAGES & DANKE ============ */
.progress-container { margin-bottom: 32px; text-align: center; }
.progress-track { background: var(--sand); border-radius: 30px; height: 22px; width: 100%; overflow: hidden; position: relative; border: 1px solid var(--line); }
.progress-fill { background: linear-gradient(90deg, var(--teal) 0%, #159a8b 100%); height: 100%; border-radius: 30px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; transition: width 0.4s ease; }
.headline-section { text-align: center; margin-bottom: 32px; }
.headline-section h1 { font-size: clamp(26px, 3.8vw, 36px); margin-bottom: 14px; color: var(--ink); }
.headline-section p.subhead { font-size: 16px; max-width: 62ch; margin: 0 auto; color: var(--ink-soft); }
.upsell-card, .thankyou-card, .legal-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 6px; padding: 36px 32px; box-shadow: 0 20px 50px -25px rgba(19,42,44,.12); margin: 0 auto 36px; max-width: 820px;}

.pitch-text { font-size: 15px; margin-bottom: 28px; display: grid; gap: 16px; }
.warning-box { background: rgba(240, 105, 63, 0.08); border-left: 4px solid var(--coral); padding: 16px 20px; border-radius: 0 4px 4px 0; font-size: 14px; color: var(--ink); margin-bottom: 20px; }
.warning-box strong { color: var(--coral); }

.benefits-list { list-style: none; padding: 0; margin: 0 0 32px 0; display: grid; gap: 16px; }
.benefits-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: var(--ink); }
.benefits-list li .check { color: var(--teal); font-weight: 700; font-size: 18px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.benefits-list strong { color: var(--ink); }

.cta-wrapper { text-align: center; margin-bottom: 36px; }
.btn-upsell { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; padding: 18px 24px; background: var(--coral); color: #ffffff; border-radius: var(--radius); text-decoration: none; border: none; cursor: pointer; box-shadow: 0 10px 25px rgba(240,105,63,.3); transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease; }
.btn-upsell:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(240,105,63,.4); background: #e0582e; }
.btn-upsell .main-text { font-family: 'IBM Plex Sans', sans-serif; font-size: clamp(17px, 2.4vw, 20px); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.btn-upsell .sub-text { font-family: 'IBM Plex Mono', monospace; font-size: 13px; opacity: 0.92; margin-top: 4px; font-weight: 400; }

.timer-section { display: flex; justify-content: center; align-items: center; gap: 18px; margin-bottom: 28px; }
.timer-circle-wrap { text-align: center; }
.timer-circle { width: 70px; height: 70px; border-radius: 50%; border: 3px solid var(--teal); display: flex; align-items: center; justify-content: center; font-family: 'IBM Plex Mono', monospace; font-size: 24px; font-weight: 700; color: var(--teal-deep); background: var(--paper-raised); box-shadow: 0 4px 12px rgba(14,110,99,0.1); }
.timer-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-top: 6px; font-weight: 600; }

.decline-link-wrap { text-align: center; margin-top: 20px; }
.decline-link { color: var(--ink-soft); font-size: 13px; text-decoration: underline; opacity: 0.75; transition: opacity 0.2s ease, color 0.2s ease; }
.decline-link:hover { opacity: 1; color: var(--coral); }

/* Danke Seite Spezifisch */
.status-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,110,99,0.1); color: var(--teal-deep); border: 1px solid var(--teal); padding: 6px 16px; border-radius: 30px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 24px; }
.status-badge::before { content: "✓"; font-weight: bold; }
.info-box { background: var(--sand); border-left: 4px solid var(--teal); padding: 20px 24px; border-radius: 0 4px 4px 0; text-align: left; margin-bottom: 40px; display: flex; gap: 16px; align-items: flex-start; }
.info-box-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.info-box h3 { font-size: 16px; margin-bottom: 4px; font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; }
.info-box p { font-size: 14px; }
.next-steps { text-align: left; border-top: 1px dashed var(--line); padding-top: 36px; }
.next-steps h2 { font-size: 20px; margin-bottom: 24px; text-align: center; }
.steps-list { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step-item { background: var(--paper); padding: 20px; border: 1px solid var(--line); border-radius: 6px; }
.step-item .num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--coral); font-weight: 600; margin-bottom: 8px; display: block; }
.step-item h4 { margin: 0 0 6px; font-size: 15px; font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; color: var(--ink); }
.step-item p { font-size: 13px; line-height: 1.5; }

/* Legal Pages (Impressum & Datenschutz) */
.legal-card h1 { font-size: 32px; margin-bottom: 30px; border-bottom: 1px solid var(--line); padding-bottom: 16px;}
.legal-card h2, .legal-card h3 { margin-top: 30px; margin-bottom: 10px; font-size: 20px;}
.legal-card p { margin-bottom: 16px; font-size: 15px;}
.legal-card a { color: var(--teal); text-decoration: underline;}

/* ============ FOOTER ============ */
footer { display: block !important; position: relative; z-index: 10; background: var(--paper); padding: 56px 0 34px; border-top: 1px solid var(--line); }
.foot-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.foot-grid .logo { margin-bottom: 10px; }
.foot-col h4 { font-family: 'IBM Plex Mono',monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: 14px; }
.foot-col a { display: block; text-decoration: none; font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.foot-col a:hover { color: var(--ink); }
.foot-disclaimer { margin-top: 36px; padding: 18px 22px; background: var(--sand); border-radius: var(--radius); border: 1px solid var(--line); font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.foot-disclaimer strong { color: var(--ink); display: block; margin-bottom: 6px; }
.foot-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--ink-soft); font-family: 'IBM Plex Mono',monospace; }
.foot-bottom a { text-decoration: none; }
.foot-bottom a:hover { color: var(--ink); }

/* Footer Slim für Upsell/Danke/Legal */
footer.slim { padding: 32px 0; text-align: center; }
footer.slim .foot-disclaimer { margin-top: 0; margin-bottom: 24px; text-align: left;}
footer.slim .foot-bottom { justify-content: center; border-top: none; padding-top: 0; margin-top: 0;}

/* ============ RESPONSIVE BREAKPOINTS ============ */
@media(max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
  .facts-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:860px){
  .nav-links{ display:none; }
}

@media(max-width:820px){
  .benefits-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:768px){
  .ticket{ grid-template-columns:1fr; }
  .perf{ display:none; }
  .ticket-stub::before{ border-left:none; border-top:2px dashed rgba(255,255,255,.25); }
}

/* MOBILE OPTIMIZATIONS */
@media(max-width:720px){
  section{ padding:54px 0; }
  .wrap{ padding:0 20px; }
  
  /* Header & Nav */
  .nav{ padding:16px 0; justify-content: center; }
  .logo{ font-size:22px; }
  .nav-cta { display:none; }

  /* Hero section */
  .hero{ padding:40px 0 44px; }
  .hero h1{ font-size:32px; line-height:1.15; }
  .hero p.lead{ font-size:15.5px; margin-top:14px; }
  .hero-actions{ margin-top:24px; flex-direction:column; gap:10px; }
  .hero-actions .btn{ width:100%; justify-content:center; text-align:center; padding:14px 18px; }
  .hero-meta{ margin-top:28px; gap:18px; }
  .hero-meta .num{ font-size:22px; }

  /* Eyebrow Mobile anpassen */
  .eyebrow { 
    font-size: 10.5px; 
    letter-spacing: 0.05em; 
    line-height: 1.4;
  }
  .eyebrow::before { 
    flex-shrink: 0;
  }

  /* Founder Mobile */
  .founder-grid { 
    grid-template-columns: 1fr; 
    gap: 32px; 
    text-align: center; 
  }
  .founder-img { 
    margin: 0 auto; 
    max-width: 240px; 
  }
  .founder-text .eyebrow {
    justify-content: center;
  }

  /* Grids & Cards */
  .doc-card{ padding:24px 18px; }
  .benefits-grid{ grid-template-columns:1fr; }
  .facts-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:1fr; gap:28px; }
  .step{ grid-template-columns:50px 1fr; gap:14px; }
  .step .n{ font-size:28px; }
  
  /* Upsell & Thank You Cards */
  .upsell-card, .thankyou-card, .legal-card { padding: 24px 18px; }
}