/* Design aus LandingPage_Applied-Security.html uebernommen
   (Referenzvorlage), als gemeinsames Stylesheet extrahiert statt Inline-Style,
   damit auch die Newsletter-Archiv-Seiten dasselbe Design nutzen. */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #00102E;
  --navy-2: #0B1E44;
  --cyan: #41BCE8;
  --cyan-deep: #1E9FCB;
  --orange: #F3940D;
  --green: #26D140;
  --gray-bg: #F4F4F4;
  --ink: #1B2430;
  --ink-soft: #5B6674;
  --line: #E4E7EC;
  --sans: 'Inter', sans-serif;
  --disp: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* ---------- NAV ---------- */
header.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 60;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 22px;
  height: 22px;
  background: #fff;
  clip-path: polygon(0 0, 30% 0, 50% 55%, 70% 0, 100% 0, 58% 100%, 42% 100%);
}

nav.links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
}

nav.links a {
  text-decoration: none;
  color: #fff;
  opacity: .85;
  transition: opacity .15s;
}

nav.links a:hover {
  opacity: 1;
}

nav.links a.current {
  opacity: 1;
  color: var(--cyan);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-cta {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  background: var(--cyan);
  color: var(--navy);
  text-decoration: none;
  border-radius: 4px;
  transition: background .15s;
}

.nav-cta:hover {
  background: #fff;
}

/* ---------- NAV DROPDOWN ("Lösungen") ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
  opacity: .85;
  cursor: pointer;
  transition: opacity .15s;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger[aria-expanded="true"] {
  opacity: 1;
}

.nav-dropdown-trigger .chevron {
  transition: transform .15s;
}

.nav-dropdown-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 16, 46, .18);
  padding: 8px;
  z-index: 70;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a,
.nav-dropdown-menu .nav-dropdown-soon {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
}

.nav-dropdown-menu a:hover {
  background: var(--gray-bg);
}

.nav-dropdown-menu strong {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.nav-dropdown-menu span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.nav-dropdown-soon {
  opacity: .55;
  cursor: not-allowed;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 78% 30%, #10233F 0%, #050B18 55%, #030509 100%);
  padding: 90px 0 150px;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(65, 188, 232, .10) 0%, transparent 40%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 64px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero h1 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.01em;
}

.hero h1 .c {
  color: var(--cyan);
}

.hero p.lead {
  margin-top: 18px;
  font-size: 16.5px;
  color: rgba(255, 255, 255, .75);
  max-width: 560px;
}

.hero-checks {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  max-width: 640px;
}

.hcheck {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}

.hcheck .ic {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cyan {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  background: var(--cyan);
  color: var(--navy);
  padding: 14px 26px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s, transform .15s;
  display: inline-block;
}

.btn-cyan:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  background: transparent;
  color: #fff;
  padding: 14px 26px;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: background .15s, border-color .15s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

.badge-circle {
  position: absolute;
  right: 60px;
  bottom: 60px;
  z-index: 3;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  padding: 14px;
  transform: rotate(-8deg);
  box-shadow: 0 14px 30px -8px rgba(243, 148, 13, .5);
}

.wave {
  display: block;
  width: 100%;
  height: 80px;
  margin-top: -2px;
}

/* ---------- RISK SECTION ---------- */
.risks {
  padding: 70px 0 90px;
  background: #fff;
}

.risks h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
  text-align: center;
  margin-bottom: 56px;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  text-align: center;
}

.risk-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--orange);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.risk-icon svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.risk-item h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy);
  margin-bottom: 10px;
}

.risk-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- BENEFITS (dark) ---------- */
.benefits {
  background: var(--navy);
  color: #fff;
  padding: 70px 0;
}

.benefits h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 32px);
  margin-bottom: 18px;
  max-width: 640px;
}

.benefits h2 .c {
  color: var(--cyan);
}

.benefits>.wrap>p {
  color: rgba(255, 255, 255, .7);
  font-size: 15.5px;
  max-width: 640px;
  margin-bottom: 40px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 48px;
}

.bcheck {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 500;
}

.bcheck .ic {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.bcheck b {
  display: block;
  font-family: var(--disp);
  font-weight: 600;
  margin-bottom: 3px;
}

.bcheck span.d {
  color: rgba(255, 255, 255, .65);
  font-size: 13.5px;
  font-weight: 400;
}

/* ---------- BAUSTEINE ---------- */
.bausteine {
  background: var(--gray-bg);
  padding: 80px 0;
}

.bausteine h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}

.bausteine .sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 600px;
  margin: 0 auto 54px;
}

.bstn-card {
  background: #fff;
  border-radius: 6px;
  padding: 40px 44px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 16, 46, .05);
}

.bstn-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.bstn-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--cyan-deep);
  fill: none;
  stroke-width: 1.8;
}

.bstn-num {
  font-family: var(--disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}

.bstn-card h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 8px;
}

.bstn-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 14px;
}

.bstn-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bstn-tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  background: rgba(65, 188, 232, .14);
  padding: 5px 12px;
  border-radius: 20px;
}

.bstn-card.coming-soon {
  opacity: .55;
  filter: grayscale(25%);
}

.badge-soon {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
}

.cta-coming-soon {
  display: inline-block;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

@media (max-width:760px) {
  .bstn-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .risk-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-checks {
    grid-template-columns: 1fr;
  }

  nav.links {
    display: none;
  }

  .badge-circle {
    width: 110px;
    height: 110px;
    font-size: 11px;
    right: 24px;
    bottom: 24px;
  }

  .gated-grid {
    grid-template-columns: 1fr;
  }

  .gated-cover {
    display: none;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- QUIZ ---------- */
.quiz-sec {
  background: #fff;
  padding: 80px 0;
}

.quiz-sec .section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 44px;
}

.quiz-sec h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--navy);
  margin-bottom: 12px;
}

.quiz-sec p {
  color: var(--ink-soft);
  font-size: 15px;
}

.quiz-shell {
  max-width: 680px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 10px;
  padding: 44px;
  color: #fff;
  box-shadow: 0 24px 50px -20px rgba(0, 16, 46, .4);
}

.quiz-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
  gap: 16px;
  flex-wrap: wrap;
}

.quiz-head h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 20px;
}

.quiz-head p {
  color: rgba(255, 255, 255, .6);
  font-size: 13.5px;
  margin-top: 6px;
  max-width: 380px;
}

.quiz-progress {
  font-size: 12.5px;
  color: var(--cyan);
  font-weight: 600;
}

#quiz-question {
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

#quiz-options {
  display: grid;
  gap: 10px;
}

.qopt {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  text-align: left;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: background .15s, border-color .15s;
}

.qopt:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
}

.qopt.correct {
  background: rgba(38, 209, 64, .22);
  border-color: var(--green);
}

.qopt.wrong {
  background: rgba(226, 59, 46, .2);
  border-color: #E23B2E;
}

#quiz-result {
  display: none;
  text-align: center;
  padding: 16px 0;
}

#quiz-result .score {
  font-family: var(--disp);
  font-size: 42px;
  font-weight: 700;
  color: var(--cyan);
}

#quiz-result p {
  color: rgba(255, 255, 255, .7);
  margin-top: 8px;
  font-size: 14px;
}

.qbtn {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  display: none;
}

.qbtn.show {
  display: inline-block;
}

.share-block {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 22px;
}

.share-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  justify-content: center;
  cursor: pointer;
}

.share-toggle input {
  width: 16px;
  height: 16px;
  accent-color: var(--cyan);
}

.share-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.qbtn.share {
  display: inline-block;
  background: var(--cyan);
  color: var(--navy);
  border: none;
  font-weight: 700;
}

.qbtn.share:hover {
  background: #fff;
}

.share-copied {
  display: none;
  text-align: center;
  font-size: 12.5px;
  color: var(--cyan);
  margin-top: 12px;
}

.share-copied.show {
  display: block;
}

/* ---------- GATED CONTENT ---------- */
.gated {
  background: var(--gray-bg);
  padding: 80px 0;
}

.gated-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}

.gated-eyebrow {
  color: var(--cyan-deep);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.gated-eyebrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--cyan-deep);
  fill: none;
  stroke-width: 2;
}

.gated-pitch h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 32px);
  color: var(--navy);
  margin-bottom: 16px;
}

.gated-pitch p.d {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 480px;
}

.gated-list {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

.gitem {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.gitem .ic {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.gated-cover {
  margin-top: 32px;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, var(--navy) 0%, #0B1E44 60%, var(--cyan-deep) 130%);
  border-radius: 8px;
  box-shadow: 0 18px 40px -14px rgba(0, 16, 46, .35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: #fff;
}

.gated-cover .tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cyan);
}

.gated-cover h4 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

.gated-cover .pages {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

.gated-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0, 16, 46, .06);
}

.gated-card .lock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.gated-card .lock-row svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

.gated-card .lock-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--orange);
}

.gated-card h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 18px;
}

.gform label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.gform label span.req {
  color: var(--orange);
}

.gform input[type=text],
.gform input[type=email] {
  width: 100%;
  margin-top: 6px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
}

.gform input[type=text]:focus,
.gform input[type=email]:focus {
  outline: none;
  border-color: var(--cyan-deep);
}

.gform .chk {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 400;
  margin: 16px 0 0;
}

.gform .chk input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--cyan-deep);
}

.gform .chk a {
  color: var(--cyan-deep);
  text-decoration: underline;
}

.gform .err {
  display: none;
  color: #E23B2E;
  font-size: 12px;
  margin-top: -8px;
  margin-bottom: 12px;
}

.gform .err.show {
  display: block;
}

.gform button {
  margin-top: 22px;
  width: 100%;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  background: var(--cyan);
  color: var(--navy);
  padding: 14px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background .15s;
}

.gform button:hover {
  background: var(--cyan-deep);
  color: #fff;
}

.gform .fine {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.5;
}

#gated-success {
  display: none;
  text-align: center;
  padding: 6px 0 4px;
}

#gated-success .ic-ok {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(38, 209, 64, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

#gated-success .ic-ok svg {
  width: 26px;
  height: 26px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.4;
}

#gated-success h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 8px;
}

#gated-success p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.55;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  background: var(--navy);
  color: #fff;
  padding: 13px 22px;
  border-radius: 5px;
  text-decoration: none;
}

.dl-btn:hover {
  background: var(--cyan-deep);
}

.dl-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
}

/* ---------- LEGAL ---------- */
.legal {
  padding: 0 40px 70px;
  background: #fff;
}

.legal-box {
  border-left: 4px solid var(--cyan-deep);
  background: var(--gray-bg);
  padding: 22px 26px;
  font-size: 13.5px;
  color: var(--ink-soft);
  border-radius: 0 6px 6px 0;
}

.legal-box strong {
  color: var(--navy);
}

/* ---------- CTA ---------- */
.cta-sec {
  background: var(--navy);
  padding: 70px 0;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
}

.cta h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 30px);
  max-width: 480px;
}

.cta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .65);
  font-size: 14.5px;
  max-width: 440px;
}

footer.site-footer {
  background: #0B1E44;
  padding: 28px 40px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .15s;
}

.footer-links a:hover {
  color: #fff;
}


/* ---------- NEWSLETTER-ARCHIV (ergaenzt, nicht Teil der Referenzvorlage) ---------- */
.archive-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 40px 0;
  width: 100%;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.archive-intro {
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 40px;
}

.archive-main h1 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  color: var(--navy);
  margin-bottom: 14px;
}

.archive-lede {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 560px;
  margin-bottom: 40px;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 13.5px;
  color: var(--cyan-deep);
  text-decoration: none;
  font-weight: 600;
}

.year-label {
  font-family: var(--disp);
  color: var(--ink-soft);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 34px 0 10px;
}

.archive-group {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 16, 46, .05);
  margin-bottom: 8px;
}

.log-entry {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.log-entry:last-child {
  border-bottom: none;
}

.log-entry:hover {
  background: var(--gray-bg);
}

.log-entry .timestamp {
  font-family: var(--disp);
  color: var(--cyan-deep);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  padding-top: 2px;
  min-width: 5rem;
}

.log-entry .entry-title {
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
  font-size: 15px;
}

.log-entry .entry-summary {
  color: var(--ink-soft);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.5;
}

.issue-meta {
  color: var(--ink-soft);
  font-size: 13.5px;
  margin-bottom: 30px;
  font-family: var(--disp);
}

.newsletter-cta {
  background: var(--navy);
  color: #fff;
  width: 100%;
  position: sticky;
  bottom: 0;
  z-index: 5;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .15);
}

.newsletter-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.newsletter-cta p {
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

.newsletter-cta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-cta-form input[type=email] {
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  min-width: 220px;
}

.newsletter-cta-form input[type=email]:focus {
  outline: none;
  border-color: var(--cyan-deep);
}

.newsletter-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 12px);
  z-index: 100;
  max-width: min(90vw, 420px);
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  padding: 14px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 16, 46, .25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.newsletter-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}