/* ==========================================================================
   NORDWERT — Day-Trading Ausbildung (Landing)
   Mobile-first. Farben zentral in :root, damit Re-Skin schnell geht.
   ========================================================================== */

@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-var-italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo Black';
  src: url('../fonts/archivo-black.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink:        #0A0B0D;
  --ink-2:      #101317;
  --ink-3:      #171B21;
  --line:       #262B33;
  --paper:      #F2F1ED;
  --muted:      #9CA1AA;
  --brand:      #2FD69B;
  --brand-dim:  #1FA97A;
  --brand-deep: #0F6E4F;
  --warn:       #E0736B;

  --wrap:   1160px;
  --radius: 10px;

  --f-display: 'Archivo Black', 'Helvetica Neue', Arial, sans-serif;
  --f-body:    'Archivo', 'Helvetica Neue', Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

::selection { background: var(--brand); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand); color: var(--ink);
  padding: 10px 16px; font-weight: 600; z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}
.wrap--narrow { max-width: 720px; }

/* ---------- Typografie ---------- */

.display {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.45rem, 10.5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.display__accent {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 5.4vw, 2.6rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.h2 em {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--brand);
}
.h2--center { text-align: center; }

.kicker {
  font-size: 0.73rem;
  text-wrap: balance;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin: 0 0 18px;
}

.lede {
  font-size: 1.06rem;
  color: #C9CDD4;
  max-width: 46ch;
  margin: 0 0 28px;
}

.sub {
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 40px;
}
.sub--center { margin-inline: auto; text-align: center; }
.sub em { color: var(--paper); font-style: italic; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.btn--brand {
  background: var(--brand);
  color: #06251A;
  box-shadow: 0 4px 0 var(--brand-deep);
}
.btn--brand:hover { background: #38E7A9; }
.btn--brand:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--brand-deep); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn--block { width: 100%; }

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

/* ---------- Topbar ---------- */

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(10, 11, 13, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 40;
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 13px;
}
.wordmark { text-decoration: none; display: block; }
.wordmark__name {
  display: block;
  font-family: var(--f-display);
  font-size: 1.12rem;
  letter-spacing: 0.12em;
  line-height: 1;
}
.wordmark__sub {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.topbar__contact { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; }
.topbar__lang {
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 9px;
  line-height: 1;
}
.topbar__lang:hover { color: var(--brand); border-color: var(--brand); }
.topbar__tel { font-weight: 600; text-decoration: none; white-space: nowrap; }
.topbar__tel:hover { color: var(--brand); }
.topbar__wa {
  display: none;
  text-decoration: none;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 14px;
}
.topbar__wa:hover { color: var(--brand); }

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

.hero { position: relative; overflow: hidden; padding-block: 54px 60px; }
.hero__glow {
  position: absolute;
  inset: -30% -20% auto -20%;
  height: 620px;
  background:
    radial-gradient(52% 60% at 30% 22%, rgba(47, 214, 155, 0.20), transparent 70%),
    radial-gradient(46% 52% at 82% 8%, rgba(31, 169, 122, 0.13), transparent 72%);
  pointer-events: none;
}
.hero__inner { position: relative; }

.hero__risk {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 48ch;
  border-left: 2px solid var(--line);
  padding-left: 14px;
  margin: 0;
}

/* Volumenprofil-Artefakt */
.profile {
  margin: 44px 0 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #12161B, #0C0E12);
  overflow: hidden;
}
.profile__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.profile__tag { color: var(--brand); }
.profile__body { padding: 16px; }
.profile__rows { display: flex; flex-direction: column; gap: 7px; }
.prow {
  position: relative;
  height: 26px;
  display: flex;
  align-items: center;
  padding-left: 62px;
}
.prow::before {
  content: "";
  position: absolute;
  left: 62px; top: 0; bottom: 0;
  width: calc((100% - 62px) * var(--f, 0.5));
  background: linear-gradient(90deg, rgba(47, 214, 155, 0.42), rgba(47, 214, 155, 0.10));
  border-left: 2px solid rgba(47, 214, 155, 0.55);
  border-radius: 0 3px 3px 0;
}
.prow--poc::before {
  background: linear-gradient(90deg, rgba(47, 214, 155, 0.85), rgba(47, 214, 155, 0.22));
  border-left-color: var(--brand);
}
.prow__lbl {
  position: absolute;
  left: 0;
  font-variant-numeric: tabular-nums;
  font-size: 0.74rem;
  color: var(--muted);
}
.prow__poc {
  position: relative;
  margin-left: 12px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #06251A;
}
.profile__cap {
  padding: 12px 16px 15px;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  color: var(--muted);
}

/* ---------- Bänder ---------- */

.band { padding-block: 62px; }
.band--tight { padding-block: 10px 44px; }
.band--alt { background: var(--ink-2); }
.band--rule {
  border-block: 1px solid var(--line);
  padding-block: 34px;
}

/* ---------- VSL ---------- */

.vsl {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(60% 90% at 50% 45%, rgba(47, 214, 155, 0.10), transparent 70%),
    linear-gradient(180deg, #13171D, #0B0D11);
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 22px;
}
.vsl__play {
  width: 74px; height: 74px;
  border-radius: 50%;
  border: 0;
  background: var(--brand);
  box-shadow: 0 4px 0 var(--brand-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.vsl__play:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--brand-deep); }
.vsl__tri {
  width: 0; height: 0;
  margin-left: 5px;
  border-left: 20px solid #06251A;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.vsl__note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 34ch;
}

/* ---------- Fakten ---------- */

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 18px;
}
.fact { display: flex; flex-direction: column; gap: 6px; }
.fact__num {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 7vw, 2.5rem);
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.fact__lbl {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ---------- Prosa ---------- */

.prose-grid__body p {
  margin: 0 0 18px;
  color: #C3C8D0;
  max-width: 62ch;
}
.pull {
  margin: 26px 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--brand);
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.4;
  color: var(--paper);
}

/* ---------- Module (editoriale Nummernreihen) ---------- */

.modules { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.module {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.module__num {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--brand);
  letter-spacing: 0.04em;
  padding-top: 3px;
}
.module__h {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1.12rem;
  margin: 0 0 6px;
}
.module__txt p { margin: 0; color: var(--muted); max-width: 62ch; }
.module__meta {
  grid-column: 2;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #858B94;
  margin-top: 10px;
}

/* ---------- Artefakt (Journal) ---------- */

.artifact {
  margin: 30px 0 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink-3);
  overflow: hidden;
}
.artifact__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.artifact__id { color: #8A9099; }
/* Schmale Viewports: Tabelle scrollt in sich, statt abgeschnitten zu werden */
.artifact__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.artifact__table { width: 100%; min-width: 380px; border-collapse: collapse; font-size: 0.88rem; }
.artifact__table th,
.artifact__table td {
  text-align: left;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
}
.artifact__table th {
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.artifact__table td:last-child,
.artifact__table th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.artifact__table tbody tr:last-child td { border-bottom: 0; }
.artifact__cap {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  color: var(--muted);
}

/* ---------- Mentoren ---------- */

.mentors { display: grid; gap: 16px; }
.mentor {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: var(--ink);
}
.mentor--invert { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.mentor__mono {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--ink-3);
  color: var(--brand);
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.mentor--invert .mentor__mono { background: var(--ink); }
.mentor__name {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1.08rem;
  margin: 0 0 3px;
}
.mentor__role {
  margin: 0 0 12px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dim);
}
.mentor--invert .mentor__role { color: #0F6E4F; }
.mentor__bio { margin: 0; color: var(--muted); font-size: 0.95rem; }
.mentor--invert .mentor__bio { color: #4A4F57; }

/* ---------- Stimmen ---------- */

.quotes { display: grid; gap: 16px; }
.quote {
  margin: 0;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink-2);
}
.quote p { margin: 0 0 14px; font-size: 1rem; color: #D5D9DF; }
.quote cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.quotes__note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: #858B94;
}

/* ---------- Ablauf ---------- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.step {
  border-top: 2px solid var(--brand);
  padding-top: 16px;
}
.step__num {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.step__h { font-family: var(--f-body); font-weight: 600; font-size: 1.08rem; margin: 0 0 8px; }
.step p { margin: 0; color: var(--muted); }

/* ---------- FAQ ---------- */

.faq {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 34px 17px 0;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--brand);
}
.faq[open] summary::after { content: "–"; }
.faq p { margin: 0 0 18px; color: var(--muted); max-width: 62ch; }

/* ---------- Formular ---------- */

.band--form { background: var(--ink-2); border-top: 1px solid var(--line); }
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.88rem; font-weight: 600; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select {
  width: 100%;
  padding: 13px 14px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 1rem;
}
.field input:focus, .field select:focus { border-color: var(--brand); outline: none; }
.field--err input, .field--err select { border-color: var(--warn); }
.field__err { display: none; font-size: 0.8rem; color: var(--warn); }
.field--err .field__err { display: block; }

.field--check {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 4px;
}
.field--check input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--brand); }
.field--check label { font-size: 0.85rem; font-weight: 400; color: var(--muted); }
.field--check a { color: var(--brand); }
.field--check .field__err { grid-column: 2; }

.form__foot { margin: 6px 0 0; font-size: 0.8rem; color: #858B94; text-align: center; }

/* ---------- Risikohinweis ---------- */

.band--risk { background: var(--ink); border-top: 1px solid var(--line); padding-block: 44px; }
.risk__h {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.band--risk p { font-size: 0.84rem; color: #7C828C; margin: 0 0 12px; }

/* ---------- Footer ---------- */

.footer { border-top: 1px solid var(--line); padding-block: 30px 96px; background: var(--ink); }
.footer__row { display: grid; gap: 12px; }
.footer__brand { margin: 0; font-family: var(--f-display); font-size: 0.9rem; letter-spacing: 0.1em; }
.footer__links { display: flex; gap: 20px; font-size: 0.88rem; }
.footer__links a { color: var(--muted); text-decoration: none; }
.footer__links a:hover { color: var(--brand); }
.footer__line { margin: 0; font-size: 0.84rem; color: #858B94; }

/* ---------- Sticky CTA (mobil) ---------- */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 11, 13, 0.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  z-index: 45;
  transform: translateY(110%);
  transition: transform .2s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }

/* ==========================================================================
   Breakpoints
   ========================================================================== */

/* Schmale Phones: der längere englische Wortmarken-Untertitel darf die
   Topbar nicht zweizeilig machen */
@media (max-width: 430px) {
  .wordmark__sub { font-size: 0.56rem; letter-spacing: 0.13em; white-space: nowrap; }
  .topbar__contact { gap: 10px; }
  .topbar__lang { padding: 5px 7px; }
}

@media (min-width: 560px) {
  .cta-row { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .topbar__wa { display: inline; }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .module { grid-template-columns: 64px 1fr 120px; align-items: start; }
  .module__meta { grid-column: 3; grid-row: 1; text-align: right; margin-top: 3px; }
  .footer__row {
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
  }
  .footer__line { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .band { padding-block: 92px; }
  .band--rule { padding-block: 44px; }
  .hero { padding-block: 76px 90px; }
  .hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 54px;
    align-items: center;
  }
  .profile { margin-top: 0; }
  .lede { font-size: 1.14rem; }

  .prose-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; }
  .prose-grid__head .h2 { position: sticky; top: 96px; }

  .journal-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 54px; align-items: center; }
  .artifact { margin-top: 0; }

  .mentors { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 26px; }

  .vsl { aspect-ratio: 16 / 8.4; }

  .sticky-cta { display: none; }
  .footer { padding-bottom: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
