:root {
  --ink: #ffffff;
  --ink-heading: #E6D3A3;
  --muted: rgba(255, 255, 255, 0.62);
  --paper: #1F2A3A;
  --surface: #263851;
  --surface-raised: #2e4460;
  --teal: #6B8F71;
  --teal-strong: #3A5A40;
  --orange: #D9772B;
  --gold: #F2C94C;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

section {
  scroll-margin-top: 126px;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  outline-color: var(--orange);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 20;
  padding: 10px 14px;
  background: #111b26;
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(31, 42, 58, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  overflow: hidden;
}


.brand,
.nav,
.site-header [data-admin-open] {
  position: relative;
}

.brand img {
  width: min(230px, 42vw);
  height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: invert(1);
  mix-blend-mode: screen;
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(230, 211, 163, 0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  color: rgba(230, 211, 163, 0.7);
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--gold);
}

.hero {
  min-height: calc(100dvh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(34px, 6vw, 86px) clamp(18px, 5vw, 72px) 42px;
  background:
    radial-gradient(circle at 75% 45%, rgba(242, 201, 76, 0.12), transparent 38%),
    radial-gradient(circle at 10% 80%, rgba(58, 90, 64, 0.18), transparent 32%),
    var(--paper);
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--ink-heading);
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7.4vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 10ch;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.hero-actions,
.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.secondary-button,
.ghost-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-button {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 32px rgba(217, 119, 43, 0.35);
}

.primary-button:hover {
  background: var(--gold);
  color: #1F2A3A;
}

.secondary-button {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.secondary-button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  transform: translateY(-2px);
}

.small,
.compact {
  min-height: 42px;
  padding: 9px 13px;
}

.full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 34px 0 0;
}

.hero-facts div {
  padding: 16px;
  background: rgba(46, 63, 85, 0.7);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.risk-note {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-facts dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-weight: 900;
}

.hero-art {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: min(74vw, 620px);
  aspect-ratio: 1;
  border-radius: 36% 64% 48% 52% / 58% 38% 62% 42%;
  background:
    linear-gradient(135deg, rgba(242, 201, 76, 0.28), rgba(58, 90, 64, 0.35) 48%, rgba(46, 63, 85, 0.6));
  opacity: 1;
}

.hero-character {
  position: relative;
  z-index: 1;
  width: min(440px, 82vw);
  max-height: 74dvh;
  object-fit: contain;
  border-radius: 32px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.book-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 8%;
  width: min(300px, 68vw);
  padding: 18px;
  background: rgba(46, 63, 85, 0.95);
  border: 1px solid var(--line);
  border-left: 7px solid var(--gold);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.book-note strong,
.book-note span {
  display: block;
}

.note-kicker,
.book-badge {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-band,
.app-features,
.books-section,
.funding-section,
.mission-section,
.offer-section,
.signup-section,
.story-scroll,
.split-section {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px clamp(18px, 5vw, 72px) 36px;
  background: #192433;
}

.trust-strip div {
  min-height: 116px;
  display: grid;
  align-content: center;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.trust-strip strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
}

.intro-grid,
.book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-grid article,
.book-card,
.signup-form,
.contact-strip,
.login-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.app-features {
  background: #192433;
}

.feature-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-lanes article {
  min-height: 260px;
  padding: 28px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
}

.feature-lanes article:nth-child(2) {
  background: rgba(58, 90, 64, 0.35);
}

.feature-lanes article:nth-child(3) {
  background: rgba(242, 201, 76, 0.1);
}

.feature-lanes span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(217, 119, 43, 0.15);
  border: 1px solid rgba(217, 119, 43, 0.3);
  border-radius: 50%;
  color: var(--orange);
  font-weight: 900;
}

.feature-lanes p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.funding-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(58, 90, 64, 0.2), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(242, 201, 76, 0.08), transparent 26%),
    #192433;
}

.funding-slider {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.funding-controls {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  background: rgba(25, 36, 51, 0.8);
  border-bottom: 1px solid var(--line);
}

.funding-tab {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-weight: 900;
}

.funding-tab:last-child {
  border-right: 0;
}

.funding-tab.active {
  background: var(--surface);
  color: var(--gold);
  box-shadow: inset 0 -4px 0 var(--gold);
}

.funding-window {
  position: relative;
  min-height: 430px;
}

.funding-slide {
  display: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
}

.funding-slide.active {
  display: grid;
}

.funding-slide p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.08rem;
  font-weight: 700;
}

.funding-points,
.funding-timeline,
.funding-card-grid {
  display: grid;
  gap: 12px;
}

.funding-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.funding-points button,
.funding-timeline button,
.funding-card-grid button {
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(25, 36, 51, 0.7);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.funding-points button:hover,
.funding-points button.active,
.funding-timeline button:hover,
.funding-timeline button.active,
.funding-card-grid button:hover,
.funding-card-grid button.active {
  transform: translateY(-3px);
  background: rgba(58, 90, 64, 0.4);
  border-color: rgba(107, 143, 113, 0.5);
}

.funding-detail {
  margin: 0 clamp(20px, 5vw, 48px) clamp(20px, 5vw, 36px);
  padding: 20px 22px;
  background: var(--teal-strong);
  color: #fff;
  border-radius: 24px;
}

.funding-detail strong,
.funding-detail p {
  display: block;
  margin: 0;
}

.funding-detail p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.funding-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 clamp(20px, 5vw, 48px) clamp(22px, 5vw, 42px);
}

.funding-arrows button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 18px;
}

.funding-arrows span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 900;
}

.intro-grid article {
  padding: clamp(20px, 3vw, 30px);
}

.intro-grid p,
.book-card p,
.content-panel p,
.signup-copy p {
  color: rgba(255, 255, 255, 0.65);
}

.story-scroll {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: start;
  background: #192433;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-stage {
  position: sticky;
  top: 102px;
  min-height: calc(100dvh - 132px);
  display: grid;
  align-content: center;
  gap: 28px;
}

.story-visual {
  position: relative;
  width: min(360px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.story-visual img {
  position: relative;
  z-index: 2;
  width: 72%;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: translateY(calc(var(--story-float, 0) * -10px));
  transition: transform 220ms ease;
}

.story-orbit {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(15, 89, 100, 0.28);
  border-radius: 50%;
}

.story-orbit::after {
  content: "";
  position: absolute;
  left: calc(var(--story-progress, 25) * 1%);
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(216, 95, 34, 0.16);
  transform: translate(-50%, -50%);
  transition: left 220ms ease;
}

.story-meter {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 4%;
  height: 12px;
  overflow: hidden;
  background: rgba(24, 49, 59, 0.12);
  border-radius: 999px;
}

.story-meter span {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--orange));
  border-radius: inherit;
  transition: width 240ms ease;
}

.story-stage-copy {
  max-width: 620px;
}

.story-stage-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.story-index {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.story-index span {
  width: 42px;
  height: 7px;
  border-radius: 999px;
  background: rgba(24, 49, 59, 0.18);
  transition: width 180ms ease, background 180ms ease;
}

.story-index span.active {
  width: 74px;
  background: var(--orange);
}

.story-steps {
  display: grid;
  gap: min(26vh, 210px);
  padding: 8vh 0 12vh;
}

.story-step {
  min-height: 52vh;
  display: grid;
  align-content: center;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(46, 63, 85, 0.65);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
  transform: translateY(22px);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.story-step.active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(216, 95, 34, 0.48);
}

.story-step span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-step p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: clamp(24px, 6vw, 90px);
  background: linear-gradient(135deg, rgba(58, 90, 64, 0.2), #192433);
}

.visual-panel img {
  width: min(420px, 80vw);
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.content-panel {
  max-width: 760px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 14px 12px 44px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

.mission-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(22px, 5vw, 68px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(21, 93, 102, 0.96), rgba(24, 40, 63, 0.92)),
    url("assets/willi-wordmark.jpg") center / cover;
  color: #fff;
}

.mission-copy {
  max-width: 560px;
}

.mission-copy .eyebrow {
  color: var(--gold);
}

.mission-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.mission-console {
  overflow: hidden;
  background: rgba(46, 63, 85, 0.95);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.mission-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(25, 36, 51, 0.6);
  border-bottom: 1px solid var(--line);
}

.mission-tab {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-weight: 900;
}

.mission-tab:last-child {
  border-right: 0;
}

.mission-tab.active {
  background: rgba(46, 63, 85, 0.9);
  color: var(--orange);
  box-shadow: inset 0 -4px 0 var(--orange);
}

.mission-stage {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  align-items: center;
  padding: clamp(18px, 4vw, 34px);
}

.mission-visual {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.mission-visual img {
  width: min(220px, 48vw);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(24, 49, 59, 0.16);
}

.mission-progress {
  width: 100%;
  height: 12px;
  overflow: hidden;
  background: #ddebe6;
  border-radius: 999px;
}

.mission-progress span {
  display: block;
  width: 24%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: width 220ms ease;
}

.mission-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.answer-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.answer-button {
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(25, 36, 51, 0.6);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.answer-button:hover,
.answer-button:focus-visible {
  transform: translateX(4px);
  border-color: var(--orange);
}

.answer-button.correct {
  background: #e9f7ed;
  border-color: #58a96d;
}

.answer-button.wrong {
  background: #fff0e9;
  border-color: var(--orange);
}

.mission-feedback {
  min-height: 52px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.book-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(24, 49, 59, 0.16);
}

.book-cover {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.book-card.featured {
  background: linear-gradient(145deg, rgba(58, 90, 64, 0.9), rgba(36, 52, 36, 0.95));
  border-color: rgba(107, 143, 113, 0.3);
  color: #fff;
}

.book-card.featured p,
.book-card.featured .book-badge {
  color: rgba(255, 255, 255, 0.82);
}

.book-card strong {
  margin-top: auto;
  font-size: 1.25rem;
}

.book-action {
  min-height: 46px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(25, 36, 51, 0.5);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.book-card.featured .book-action {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 14% 26%, rgba(217, 119, 43, 0.12), transparent 28%),
    linear-gradient(135deg, #192433, var(--paper));
}

.offer-copy {
  max-width: 760px;
}

.offer-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.16rem;
  font-weight: 700;
}

.offer-card {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.offer-card strong {
  display: block;
  margin: 10px 0 18px;
  font-size: 3rem;
  line-height: 1;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

/* ── Urkunden-Download ─────────────────────────────── */
.urkunde-section {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #1a2a1a 0%, #0e1e12 100%);
  text-align: center;
}
.urkunde-inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.urkunde-inner h2 {
  color: #f2c94c;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.urkunde-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 500px;
}
.urkunde-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  margin-top: 0.5rem;
}
.urkunde-hint {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.45) !important;
  letter-spacing: 0.04em;
}

.signup-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(24px, 5vw, 76px);
  align-items: start;
  background: linear-gradient(135deg, rgba(242, 201, 76, 0.06), var(--paper) 58%);
}

.signup-copy {
  position: sticky;
  top: 110px;
}

.contact-strip {
  margin-top: 26px;
  padding: 18px;
}

.contact-strip span,
.contact-strip a,
.site-footer span {
  display: block;
}

.signup-form,
.login-panel {
  padding: clamp(20px, 4vw, 34px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 14px;
}

.form-row {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 8px 0 4px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 650;
}

.consent a {
  color: var(--gold);
  text-decoration: underline;
}

.consent input {
  min-height: 22px;
  margin-top: 2px;
}

.field-error {
  min-height: 20px;
  margin: 5px 0 0;
  color: #a23419;
  font-size: 0.88rem;
  font-weight: 760;
}

.form-success {
  margin: 14px 0 0;
  color: var(--teal);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #111b26;
  color: #fff;
}

.site-footer address {
  color: rgba(230, 211, 163, 0.6);
  font-style: normal;
  text-align: right;
}

.site-footer address strong {
  color: var(--ink);
}

.site-footer address a {
  color: var(--gold);
  text-decoration: none;
}

.site-footer address a:hover {
  text-decoration: underline;
}

/* ── Cookie-Banner ─────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 22, 35, 0.97);
  border-top: 1px solid rgba(242, 201, 76, 0.25);
  backdrop-filter: blur(16px);
  padding: clamp(16px, 3vw, 24px) clamp(18px, 5vw, 64px);
  animation: slideUpBanner 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner[hidden] {
  display: none;
}

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

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-accept {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

.cookie-decline {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-legal-links {
  display: inline-flex;
  gap: 18px;
  margin-top: 10px;
}

.footer-legal-links a {
  font-weight: 700;
  font-size: 0.88rem;
  opacity: 0.8;
}

.admin-dialog {
  width: min(1180px, calc(100vw - 28px));
  max-height: min(860px, calc(100dvh - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-dialog::backdrop {
  background: rgba(5, 28, 34, 0.54);
}

.admin-shell {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 620px;
  background: var(--surface);
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: #103f49;
  color: #fff;
}

.admin-sidebar img {
  width: 132px;
  border-radius: 50%;
}

.admin-sidebar .eyebrow {
  color: var(--gold);
}

.admin-sidebar .ghost-button {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.admin-content {
  padding: clamp(18px, 4vw, 34px);
  overflow: auto;
}

.login-panel {
  max-width: 420px;
}

.hidden {
  display: none;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-top h3 {
  margin: 0;
  font-size: 2rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.stat-grid div {
  padding: 18px;
  background: rgba(25, 36, 51, 0.6);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-grid span,
.stat-grid small {
  display: block;
}

.stat-grid span {
  font-size: 2rem;
  font-weight: 900;
}

.stat-grid small {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(25, 36, 51, 0.7);
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.status-select {
  min-width: 146px;
}

.delete-button {
  min-height: 40px;
  border: 1px solid rgba(162, 52, 25, 0.22);
  border-radius: 8px;
  background: #fff5f0;
  color: #a23419;
  cursor: pointer;
  font-weight: 850;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    overflow: visible;
  }

  .hamburger {
    display: flex;
    grid-column: 1;
    grid-row: 1;
  }

  .site-header [data-admin-open] {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 30, 45, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 0 clamp(18px, 5vw, 64px);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .nav.open {
    max-height: 480px;
    padding-top: 16px;
    padding-bottom: 20px;
    pointer-events: auto;
  }

  .nav a {
    padding: 13px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s;
  }

  .nav.open a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav.open a:nth-child(1) { transition-delay: 0.05s; }
  .nav.open a:nth-child(2) { transition-delay: 0.10s; }
  .nav.open a:nth-child(3) { transition-delay: 0.15s; }
  .nav.open a:nth-child(4) { transition-delay: 0.20s; }
  .nav.open a:nth-child(5) { transition-delay: 0.25s; }
  .nav.open a:nth-child(6) { transition-delay: 0.30s; }
  .nav.open a:nth-child(7) { transition-delay: 0.35s; }

  .walking-willi {
    top: 49px;
    bottom: auto;
    height: 24px;
  }

  .walking-willi img {
    width: 24px;
    height: 24px;
  }

  .hero,
  .story-scroll,
  .split-section,
  .funding-slide,
  .mission-section,
  .offer-section,
  .signup-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 12vw, 4.8rem);
  }

  .hero-art {
    min-height: 560px;
  }

  .intro-grid,
  .book-grid,
  .funding-card-grid,
  .feature-lanes,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .funding-controls {
    grid-template-columns: 1fr;
  }

  .story-stage {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .story-steps {
    gap: 18px;
    padding: 0;
  }

  .story-step {
    min-height: auto;
  }

  .mission-stage {
    grid-template-columns: 1fr;
  }

  .signup-copy {
    position: static;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 184px;
    height: 42px;
  }

  .hero-facts,
  .form-grid,
  .mission-tabs,
  .feature-lanes,
  .trust-strip,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 500px;
  }

  .book-note {
    left: 12px;
    right: 12px;
    bottom: 0;
    width: auto;
  }

  .site-footer,
  .dashboard-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer address {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
