/* =========================================================
   TITANMARSCH — "Marble & Iron"
   Brutalist-monumental aesthetic. Inscription typography.
   ========================================================= */

:root {
  /* INK PALETTE — warm near-black, parchment, oxidized iron */
  --ink:        #0c0a08;
  --ink-1:      #110e0a;
  --ink-2:      #181410;
  --ink-3:      #221c15;
  --line:       #2a2218;
  --line-bright:#3a2f22;

  --bone:       #ede4d3;
  --bone-dim:   #c9bfa9;
  --stone:      #847a6a;
  --stone-dark: #5a5145;

  --rust:       #c0451c;
  --rust-deep:  #8a2f10;
  --rust-soft:  #d96a3e;

  --gold:       #d9a441;

  /* TYPE */
  --display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --serif:   'Fraunces', 'Times New Roman', serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* SPACING */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(5rem, 12vw, 9rem);

  /* MOTION */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  background: var(--ink);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

::selection { background: var(--rust); color: var(--bone); }

a { color: inherit; text-decoration: none; }

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

/* ========== ATMOSPHERE: GRAIN + VIGNETTE ========== */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.93  0 0 0 0 0.89  0 0 0 0 0.83  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2%, 1%); }
  40%  { transform: translate(1%, -1%); }
  60%  { transform: translate(-1%, 2%); }
  80%  { transform: translate(2%, 1%); }
  100% { transform: translate(0, 0); }
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 40%, rgba(0,0,0,0.5) 100%),
    radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.35) 100%);
}

/* ========== NAVIGATION ========== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem var(--gutter);
  background: rgba(12, 10, 8, 0.78);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav__mark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav__sigil {
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--rust);
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1.5px solid var(--rust);
  letter-spacing: -0.04em;
  padding-bottom: 0.1rem;
}
.nav__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.16em;
  color: var(--bone);
}

.nav__menu {
  display: flex;
  gap: 1.6rem;
  justify-self: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
  text-transform: uppercase;
}
.nav__menu a {
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}
.nav__menu a::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__menu a:hover { color: var(--bone); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 1.1rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: var(--bone);
  transition: all 0.3s var(--ease);
}
.nav__cta em {
  font-style: normal;
  transition: transform 0.3s var(--ease);
}
.nav__cta:hover { background: var(--rust); color: var(--bone); }
.nav__cta:hover em { transform: translate(2px, -2px); }

@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav { grid-template-columns: 1fr auto; }
}

/* ========== BUTTONS ========== */

.btn {
  --btn-bg: var(--bone);
  --btn-fg: var(--ink);
  --btn-bd: var(--bone);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.4rem 1rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rust);
  z-index: -1;
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--bone); border-color: var(--rust); }
.btn em {
  font-style: normal;
  transition: transform 0.3s var(--ease);
  font-family: var(--serif);
  font-weight: 400;
}
.btn:hover em { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--bone);
  --btn-bd: var(--line-bright);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--xl {
  padding: 1.3rem 2rem;
  font-size: 1.05rem;
}

/* ========== HERO ========== */

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  padding: 5rem var(--gutter) 4rem;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-content: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  /* Faint titan colossus silhouette in background */
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 60% 80% at 50% 60%, rgba(192, 69, 28, 0.08), transparent 70%),
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(217, 164, 65, 0.04), transparent 70%);
  z-index: -1;
}

.hero__strap {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--stone);
  text-transform: uppercase;
}
.hero__strap-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--line-bright), var(--line));
}

.hero__edge {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--stone-dark);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 2;
}
.hero__edge--tl { top: 4.5rem; left: var(--gutter); }
.hero__edge--tr { top: 4.5rem; right: var(--gutter); text-align: right; }
.hero__edge--bl { bottom: 1.5rem; left: var(--gutter); }
.hero__edge--br { bottom: 1.5rem; right: var(--gutter); text-align: right; }
@media (max-width: 720px) {
  .hero__edge { display: none; }
}

.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(4.5rem, 22vw, 22rem);
  line-height: 0.78;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 0;
}
.hero__line {
  display: block;
  position: relative;
}
.hero__line--solid {
  color: var(--bone);
  text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}
.hero__line--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--rust);
  text-stroke: 2px var(--rust);
  margin-top: -0.06em;
}
@media (max-width: 600px) {
  .hero__line--outline {
    -webkit-text-stroke-width: 1.5px;
  }
}

.hero__lede {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  color: var(--bone-dim);
  max-width: 38ch;
  margin: 0 auto;
}

.hero__countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.2rem 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 auto;
}
.countdown__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--stone);
  text-transform: uppercase;
}
.countdown__dot {
  width: 6px;
  height: 6px;
  background: var(--rust);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--rust);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.5; transform: scale(1.3); }
}
.countdown__digits {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--display);
  font-weight: 900;
  color: var(--bone);
}
.cd { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.cd__num {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 1.8ch;
  text-align: center;
}
.cd__unit {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--stone);
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.cd__sep {
  color: var(--rust);
  font-size: 1.6rem;
  font-weight: 900;
  align-self: flex-start;
  margin-top: 0.4rem;
}

.hero__cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  animation: rise 1.1s var(--ease) forwards;
}
[data-reveal="1"] { animation-delay: 0.05s; }
[data-reveal="2"] { animation-delay: 0.20s; }
[data-reveal="3"] { animation-delay: 0.55s; }
[data-reveal="4"] { animation-delay: 0.75s; }
[data-reveal="5"] { animation-delay: 0.95s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ========== TICKER ========== */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-1);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
}
.ticker__track {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.22em;
  color: var(--bone);
  animation: tickerScroll 40s linear infinite;
}
.ticker__track > span {
  text-transform: uppercase;
}
.ticker__diamond {
  color: var(--rust);
  font-size: 0.7rem;
}
@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}

/* ========== SECTION HEAD ========== */

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
  color: var(--rust);
  letter-spacing: -0.03em;
  padding-right: clamp(1rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}
.section-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-transform: uppercase;
}
.section-title em,
.section-title__sub {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--bone-dim);
  text-transform: none;
  font-size: 0.7em;
  letter-spacing: -0.02em;
}

.section-head--inverted .section-num { color: var(--gold); }

/* ========== MANIFEST ========== */

.manifest {
  padding: var(--section-y) var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.manifest__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
@media (max-width: 900px) {
  .manifest__grid { grid-template-columns: 1fr; }
}

.creed {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.4;
  font-weight: 300;
  color: var(--bone);
}
.creed p { margin-bottom: 1.6rem; }
.creed em {
  font-style: italic;
  color: var(--rust);
  font-weight: 500;
}
.creed__sig {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--stone);
  text-transform: uppercase;
}
.creed__line {
  width: 60px;
  height: 1px;
  background: var(--line-bright);
}

.rules {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.rules li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
  margin-inline: -0.6rem;
  padding-inline: 0.6rem;
}
.rules li:hover { background: var(--ink-2); }
.rules li:first-child { border-top: 1px solid var(--line); }
.rules__num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--rust);
  padding-top: 0.35rem;
}
.rules strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--bone);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.rules p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--bone-dim);
  font-size: 0.98rem;
}

/* ========== STRECKE ========== */

.strecke {
  padding: var(--section-y) var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, transparent, rgba(192, 69, 28, 0.02), transparent);
}
.strecke__intro {
  max-width: 60ch;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--bone-dim);
  margin-bottom: 3rem;
  font-weight: 300;
}

.profile {
  background: var(--ink-1);
  border: 1px solid var(--line);
  padding: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 3rem;
}
.profile__caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--stone);
  text-transform: uppercase;
}
.profile__legend {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.profile__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.profile__dot--start { background: var(--bone); }
.profile__dot--vp    { background: var(--rust); }
.profile__dot--peak  { background: var(--gold); }

.profile__svg {
  width: 100%;
  height: auto;
  display: block;
}
.profile__svg .profile__y {
  fill: var(--stone);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-anchor: end;
  letter-spacing: 0.05em;
}
.profile__svg .profile__label {
  fill: var(--bone-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.profile__svg .profile__label--peak {
  fill: var(--gold);
  font-weight: 700;
}

.strecke__data {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}
.strecke__data > div {
  padding: 1.5rem 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-1);
  transition: background 0.3s var(--ease);
}
.strecke__data > div:hover { background: var(--ink-2); }
.strecke__data dt {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.strecke__data dd {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--bone);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.strecke__data dd span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--bone-dim);
  margin-left: 0.4rem;
  letter-spacing: 0;
}

/* ========== ZEITPLAN ========== */

.zeitplan {
  padding: var(--section-y) var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}
.schedule-wrap {
  border: 1px solid var(--line);
  background: var(--ink-1);
  overflow-x: auto;
}
.schedule {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.schedule thead th {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 1.1rem 1.3rem;
  border-bottom: 1.5px solid var(--line-bright);
  background: var(--ink-2);
  font-weight: 500;
}
.schedule tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}
.schedule tbody tr:last-child { border-bottom: none; }
.schedule tbody tr:hover { background: var(--ink-2); }
.schedule tbody td {
  padding: 1.1rem 1.3rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--bone);
  vertical-align: middle;
}
.schedule__time {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.schedule strong {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--rust);
  margin-right: 0.5rem;
}
.schedule__highlight { background: rgba(192, 69, 28, 0.04); }
.schedule__highlight:hover { background: rgba(192, 69, 28, 0.08) !important; }
.schedule__highlight .schedule__time { color: var(--rust); }
.cutoff {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--bone-dim);
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--line-bright);
}
.cutoff--final {
  color: var(--rust);
  border-color: var(--rust);
  background: rgba(192, 69, 28, 0.06);
}
.ta-r { text-align: right; }

.schedule__note {
  font-family: var(--serif);
  font-style: italic;
  color: var(--stone);
  padding: 1.2rem 1.3rem;
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
}

/* ========== ANMELDUNG ========== */

.anmeldung {
  padding: var(--section-y) var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 880px) {
  .tiers { grid-template-columns: 1fr; }
}

.tier {
  background: var(--ink-1);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background 0.3s var(--ease);
}
.tier:hover { background: var(--ink-2); }

.tier > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.tier__label {
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  color: var(--bone);
}
.tier__status {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--stone);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.tier__status--live { color: var(--rust); }
.tier__pulse {
  width: 6px;
  height: 6px;
  background: var(--rust);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.tier__price {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1;
  color: var(--bone);
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  letter-spacing: -0.02em;
}
.tier__price sup {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 0.35em;
  font-style: italic;
  color: var(--bone-dim);
  margin-top: 0.4em;
}
.tier__until {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
}
.tier ul {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--bone-dim);
  flex: 1;
}
.tier ul li {
  position: relative;
  padding-left: 1.2rem;
}
.tier ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--rust);
  font-size: 0.55rem;
}

.tier--past { opacity: 0.45; }
.tier--past .tier__price { color: var(--stone); }

.tier--active {
  background: var(--ink-2);
  outline: 2px solid var(--rust);
  outline-offset: -2px;
  z-index: 2;
}
.tier--active::before {
  content: '◆ AKTIV';
  position: absolute;
  top: -0.7rem;
  left: 1.8rem;
  background: var(--rust);
  color: var(--bone);
  padding: 0.25rem 0.7rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}

.anmeldung__terms {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--stone);
  text-transform: uppercase;
}
.anmeldung__terms strong {
  color: var(--rust);
  font-weight: 700;
}

/* ========== NEXT (MMXXVII) ========== */

.next {
  padding: var(--section-y) var(--gutter);
  background: var(--bone);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}
.next::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.04  0 0 0 0 0.03  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  pointer-events: none;
}
.next > * { position: relative; }

.next .section-head {
  border-bottom-color: rgba(12, 10, 8, 0.15);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.next .section-num {
  border-right-color: rgba(12, 10, 8, 0.15);
  color: var(--rust-deep);
}
.next .section-eyebrow { color: var(--stone-dark); }
.next .section-title { color: var(--ink); }

.next__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .next__grid { grid-template-columns: 1fr; }
}

.next__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.next__big {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(8rem, 28vw, 22rem);
  line-height: 0.78;
  color: var(--ink);
  letter-spacing: -0.05em;
  position: relative;
}
.next__big::after {
  content: '100';
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 2px var(--rust-deep);
  transform: translate(8px, 8px);
  z-index: -1;
}
.next__big-unit {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  letter-spacing: 0.3em;
  color: var(--rust-deep);
  margin-top: -0.5rem;
}
.next__sub {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--stone-dark);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.next__diamond { color: var(--rust-deep); font-size: 0.6rem; }

.next__copy {
  font-family: var(--serif);
  font-weight: 300;
}
.next__lede {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.next__lede em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--rust-deep);
  text-transform: none;
}
.next__copy p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-3);
  margin-bottom: 1.2rem;
}
.next__copy .btn {
  margin-top: 1rem;
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--ink);
}
.next__copy .btn:hover { color: var(--bone); }

/* ========== FAQ ========== */

.faq {
  padding: var(--section-y) var(--gutter);
  max-width: 1100px;
  margin: 0 auto;
}
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: padding 0.3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { padding-left: 1rem; }
.faq__q {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--bone);
  letter-spacing: 0.02em;
}
.faq__icon {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--rust);
  transition: transform 0.4s var(--ease);
  line-height: 1;
}
.faq details[open] .faq__icon { transform: rotate(45deg); }
.faq__a {
  padding: 0 0.5rem 1.6rem;
  max-width: 70ch;
}
.faq__a p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--bone-dim);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ========== FOOTER ========== */

.foot {
  background: var(--ink-1);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) 2rem;
}
.foot__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) {
  .foot__top { grid-template-columns: 1fr; }
}

.foot__mark {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}
.foot__sigil {
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--rust);
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1.5px solid var(--rust);
  letter-spacing: -0.04em;
  padding-bottom: 0.1rem;
}
.foot__quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 300;
  color: var(--bone-dim);
  line-height: 1.4;
  font-style: italic;
}
.foot__quote em {
  color: var(--bone);
}

.foot__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}
@media (max-width: 720px) {
  .foot__grid { grid-template-columns: repeat(2, 1fr); }
}
.foot__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.foot__grid p {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bone-dim);
}
.foot__grid a {
  position: relative;
  transition: color 0.25s var(--ease);
}
.foot__grid a:hover { color: var(--rust); }

.foot__base {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--stone);
  text-transform: uppercase;
}

/* ========== SCROLL OBSERVER REVEALS ========== */

[data-observe] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.1s var(--ease),
    transform 1.1s var(--ease);
}
[data-observe].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-observe] { opacity: 1; transform: none; }
  .grain { animation: none; }
}
