/* =========================================================
   DANIL — Silent-Income
   Cinematic luxury editorial. Dark / bone / champagne gold.
   ========================================================= */

:root {
  --void:   #060606;
  --ink:    #0b0b0c;
  --ink-2:  #121214;
  --bone:   #f3efe6;
  --bone-2: #cfc9bd;
  --muted:  rgba(243, 239, 230, 0.5);
  --faint:  rgba(243, 239, 230, 0.12);
  --gold:   #c8a96a;
  --gold-2: #e7cf9e;
  --line:   rgba(243, 239, 230, 0.1);

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;
  --mono:  "JetBrains Mono", monospace;

  --pad: clamp(1.25rem, 5vw, 6rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 900px) { body { cursor: auto; } }

::selection { background: var(--gold); color: var(--void); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- GRAIN ---------- */
.grain {
  position: fixed; inset: -50%;
  z-index: 9000; pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
  animation: grain 0.6s steps(2) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-3%, 2%); }
}

/* ---------- CURSOR ---------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor {
  width: 36px; height: 36px;
  border: 1px solid var(--bone);
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s;
}
.cursor-dot {
  width: 5px; height: 5px; background: var(--bone);
  transform: translate(-50%, -50%);
}
.cursor.is-hover { width: 64px; height: 64px; background: rgba(255,255,255,0.06); }
@media (max-width: 900px) { .cursor, .cursor-dot { display: none; } }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9500;
  background: var(--void);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: var(--pad);
  transition: transform 1s var(--ease);
}
.preloader.done { transform: translateY(-101%); }
.preloader__inner {
  width: 100%; display: flex; align-items: baseline; justify-content: space-between;
}
.preloader__name {
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.3em;
  color: var(--muted);
}
.preloader__count {
  font-family: var(--serif); font-size: clamp(4rem, 18vw, 14rem);
  line-height: 0.8; color: var(--bone); font-weight: 300;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--pad);
  transition: padding .4s var(--ease), background .4s;
  mix-blend-mode: difference;
}
.nav.scrolled {
  padding: 1rem var(--pad);
  mix-blend-mode: normal;
  background: rgba(6,6,6,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 0.65rem; }
.nav__mark {
  font-family: var(--serif); font-weight: 600; font-size: 1.3rem;
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--bone); border-radius: 50%;
}
.nav__brand-text { font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.02em; }
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: 0.82rem; letter-spacing: 0.04em; color: var(--bone);
  position: relative; padding: 0.2rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 0.7rem 1.3rem; border: 1px solid var(--bone); border-radius: 100px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.nav__cta:hover { background: var(--bone); color: var(--void); }
.nav__cta-arrow { transition: transform .35s var(--ease); }
.nav__cta:hover .nav__cta-arrow { transform: translateX(4px); }

.nav__burger { display: none; background: none; border: 0; flex-direction: column; gap: 6px; cursor: pointer; }
.nav__burger span { width: 26px; height: 1.5px; background: var(--bone); transition: .3s var(--ease); }
.nav.open .nav__burger span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav.open .nav__burger span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ---------- MOBILE MENU ---------- */
.menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease);
  pointer-events: none; /* geschlossen: fängt KEINE Klicks ab (sonst blockt es auf iOS alles darunter) */
}
.menu.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.menu__links { display: flex; flex-direction: column; gap: 0.5rem; }
.menu__links a {
  font-family: var(--serif); font-size: clamp(2.5rem, 11vw, 4rem);
  font-weight: 300; line-height: 1.05;
}
.menu__links a:hover { font-style: italic; color: var(--gold); }
.menu__foot {
  position: absolute; bottom: var(--pad); left: var(--pad); right: var(--pad);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 0.75rem; color: var(--muted);
}

/* ---------- SHARED ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-2);
}
.eyebrow i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.3 } }

.ital { font-style: italic; font-weight: 300; color: var(--gold-2); }

.about__label {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem;
}
.about__label span { color: var(--gold); }

/* buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.92rem; letter-spacing: 0.02em; padding: 1rem 1.8rem;
  border-radius: 100px; overflow: hidden; transition: color .4s var(--ease);
}
.btn span { position: relative; z-index: 2; }
.btn--primary { background: var(--bone); color: var(--void); font-weight: 500; }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--gold); transform: translateY(101%); transition: transform .45s var(--ease);
}
.btn--primary:hover { color: var(--void); }
.btn--primary:hover::before { transform: translateY(0); }
.btn--ghost { border: 1px solid var(--faint); color: var(--bone); }
.btn--ghost:hover { border-color: var(--bone); }
.btn__play { font-size: 0.65rem; color: var(--gold); }

.link-underline {
  display: inline-block; font-size: 0.95rem; color: var(--gold-2);
  border-bottom: 1px solid var(--faint); padding-bottom: 3px; transition: border-color .35s;
}
.link-underline:hover { border-color: var(--gold); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-rows: auto 1fr;
  padding: 5rem var(--pad) 2.25rem;
  overflow: hidden;
}

/* ---- full-bleed studio photo ---- */
.hero__media { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__photo {
  position: absolute; inset: 0;
  background-image: url("assets/hero-hq.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 60%;
  filter: contrast(1.06) brightness(1.05);
  transform-origin: 50% 55%;
  animation: kenburns 30s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.03); } to { transform: scale(1.1); } }
/* clean cinematic veils — top for nav, bottom-left for the headline */
.hero__veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,6,6,0.78) 0%, rgba(6,6,6,0.1) 16%, transparent 30%),
    linear-gradient(0deg, rgba(6,6,6,0.78) 2%, rgba(6,6,6,0.25) 22%, transparent 42%),
    linear-gradient(90deg, rgba(6,6,6,0.82) 0%, rgba(6,6,6,0.3) 34%, transparent 58%);
}

/* viewfinder corner brackets framing the whole hero */
.hero__corner {
  position: absolute; width: 30px; height: 30px; z-index: 2;
  border: 1.6px solid var(--gold-2);
  animation: cornerIn 1.2s var(--ease) 1s both;
}
.hero__corner--tl { top: 22px; left: 22px; border-right: 0; border-bottom: 0; }
.hero__corner--tr { top: 22px; right: 22px; border-left: 0;  border-bottom: 0; }
.hero__corner--bl { bottom: 22px; left: 22px;  border-right: 0; border-top: 0; }
.hero__corner--br { bottom: 22px; right: 22px; border-left: 0;  border-top: 0; }
@keyframes cornerIn { from { opacity: 0; } to { opacity: 0.6; } }

/* huge faint wordmark behind, upper-right */
.hero__wordmark {
  position: absolute; top: 7%; right: -1%; z-index: 1;
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(6rem, 21vw, 19rem); line-height: 0.8; letter-spacing: -0.03em;
  color: rgba(243,239,230,0.06); white-space: nowrap; user-select: none;
}

/* top row: eyebrow + location */
.hero__row--top {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 1.2rem;
}
.hero__loc { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; }

/* content anchored bottom-left, over the photo */
.hero__content {
  position: relative; z-index: 3;
  align-self: end; max-width: 820px;
  animation: heroContent 1.2s var(--ease) 0.5s both;
}
@keyframes heroContent {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3rem, 10.5vw, 10rem);
  line-height: 0.84; letter-spacing: -0.03em; margin: 0;
  text-shadow: 0 10px 70px rgba(6,6,6,0.55);
}
.hero__line { display: block; overflow: hidden; }
.hero__line .word { display: inline-block; }
.hero__lede {
  margin-top: 1.7rem; max-width: 44ch; color: var(--bone-2);
  font-size: clamp(0.98rem, 1.4vw, 1.18rem); line-height: 1.6;
  text-shadow: 0 2px 20px rgba(6,6,6,0.7);
}
.hero__actions { margin-top: 1.9rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 2.25rem; right: var(--pad); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.hero__scroll-line { width: 1px; height: 48px; background: var(--faint); position: relative; overflow: hidden; }
.hero__scroll-line i {
  position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold); animation: scrolldash 2s var(--ease) infinite;
}
@keyframes scrolldash { 0% { top: -50%; } 100% { top: 100%; } }

@media (max-width: 760px) {
  .hero { padding-top: 5.5rem; }
  .hero__photo { background-size: 205%; background-position: 52% 62%; }
  .hero__title { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hero__corner { width: 20px; height: 20px; }
  .hero__corner--tl, .hero__corner--tr { top: 14px; }
  .hero__corner--bl, .hero__corner--br { bottom: 14px; }
  .hero__corner--tl, .hero__corner--bl { left: 14px; }
  .hero__corner--tr, .hero__corner--br { right: 14px; }
  .hero__scroll { display: none; }
  .hero__wordmark { font-size: 34vw; top: 12%; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-block: 1px solid var(--line);
  padding: 1.6rem 0; overflow: hidden; white-space: nowrap;
  background: var(--ink);
}
.marquee__track { display: inline-flex; align-items: center; gap: 2.5rem; animation: marquee 32s linear infinite; }
.marquee__track span {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--bone);
}
.marquee__track .dot { color: var(--gold); font-style: normal; font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   STATS
   ========================================================= */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--pad);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.8rem;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1; color: var(--bone);
}
.stat__num .suf { color: var(--gold); }
.stat__label { font-size: 0.85rem; color: var(--muted); max-width: 22ch; line-height: 1.4; }
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: clamp(5rem, 12vw, 11rem) var(--pad); }
.about__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about__portrait {
  aspect-ratio: 3/4; border-radius: 6px; overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(200,169,106,0.22), transparent 60%),
    linear-gradient(160deg, var(--ink-2), var(--void));
  border: 1px solid var(--line);
  display: grid; place-items: center; position: relative;
}
.about__portrait img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 1.2s var(--ease);
}
.about__portrait:hover img { transform: scale(1.04); }
.about__portrait::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(6,6,6,0.55));
  pointer-events: none;
}
.about__caption { display: block; margin-top: 1rem; font-family: var(--mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; }
.about__text h2 {
  font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04; letter-spacing: -0.02em; margin-bottom: 1.8rem;
}
.about__text p { color: var(--bone-2); margin-bottom: 1.2rem; max-width: 52ch; line-height: 1.7; }
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } }

/* =========================================================
   WORK / METHOD
   ========================================================= */
.work { padding: clamp(4rem, 9vw, 8rem) var(--pad); }
.work__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3.5rem; }
.work__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -0.02em; }
.work__title-link { color: inherit; text-decoration: none; cursor: none; white-space: nowrap; transition: color .3s; }
.work__title-link .ital { text-decoration: underline transparent; text-underline-offset: 8px; text-decoration-thickness: 1px; transition: text-decoration-color .3s; }
.work__title-link:hover .ital { text-decoration-color: var(--gold); }
.work__title-arrow { font-family: var(--mono); font-size: 0.38em; vertical-align: middle; margin-left: 0.32em; color: var(--gold); display: inline-block; transition: transform .3s; }
.work__title-link:hover .work__title-arrow { transform: translateX(5px); }
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.card {
  position: relative; padding: 2.5rem 2rem; border-radius: 8px;
  border: 1px solid var(--line); background: linear-gradient(180deg, var(--ink), var(--void));
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transition: transform .5s var(--ease), border-color .5s, background .5s, box-shadow .5s;
  will-change: transform;
}
.card:hover { box-shadow: 0 36px 90px rgba(0,0,0,0.6); }
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: 8px; padding: 1px;
  background: linear-gradient(160deg, rgba(200,169,106,0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s; pointer-events: none;
}
.card:hover { border-color: transparent; background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.card:hover::before { opacity: 1; }
.card--feature { background: linear-gradient(180deg, #15130d, var(--ink)); border-color: rgba(200,169,106,0.25); }
.card__badge {
  position: absolute; top: -1px; right: 1.5rem; transform: translateY(-50%);
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--gold); color: var(--void); padding: 0.35rem 0.75rem; border-radius: 100px; font-weight: 500;
}
.card__index { font-family: var(--mono); font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; }
.card__title { font-family: var(--serif); font-weight: 400; font-size: 1.8rem; }
.card__desc { color: var(--muted); font-size: 0.95rem; line-height: 1.65; flex-grow: 1; }
.card__list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.card__list li { font-size: 0.85rem; color: var(--bone-2); padding-left: 1.3rem; position: relative; }
.card__list li::before { content: "→"; position: absolute; left: 0; color: var(--gold); }
.card__cta { font-family: var(--mono); font-size: 0.82rem; color: var(--bone); letter-spacing: 0.04em; transition: color .3s, letter-spacing .3s; cursor: none; }
.card__cta:hover { color: var(--gold); letter-spacing: 0.1em; }
/* ganze "Die Software"-Karte klickbar -> coredex.ai/zugriff (stretched link) */
.card--feature { cursor: none; }
.card--feature .card__cta::after { content: ""; position: absolute; inset: 0; z-index: 3; border-radius: 8px; }
.card--feature:hover .card__cta { color: var(--gold); letter-spacing: 0.1em; }
@media (max-width: 900px) { .work__grid { grid-template-columns: 1fr; } }

/* =========================================================
   QUOTE
   ========================================================= */
.quote { position: relative; padding: clamp(5rem, 12vw, 11rem) var(--pad); text-align: center; }
.quote__mark {
  font-family: var(--serif); font-size: clamp(8rem, 22vw, 22rem); line-height: 0.6;
  color: var(--faint); position: absolute; top: 3rem; left: 50%; transform: translateX(-50%);
}
.quote__text {
  font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 4.5vw, 4rem);
  line-height: 1.2; letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto; position: relative;
}
.quote__cite { display: block; margin-top: 2rem; font-family: var(--mono); font-size: 0.85rem; color: var(--gold-2); letter-spacing: 0.08em; }

/* =========================================================
   RESULTS
   ========================================================= */
.results { padding: clamp(4rem, 9vw, 8rem) var(--pad); }
.results__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 3.5rem; letter-spacing: -0.02em; }
.results__grid { columns: 2; column-gap: 1.2rem; }
.t-card {
  break-inside: avoid; margin-bottom: 1.2rem; padding: 2rem;
  border: 1px solid var(--line); border-radius: 8px;
  background: linear-gradient(180deg, var(--ink), var(--void));
  transition: border-color .4s, transform .4s var(--ease);
}
.t-card:hover { border-color: rgba(200,169,106,0.3); transform: translateY(-4px); }
.t-card p { font-family: var(--serif); font-weight: 300; font-size: 1.15rem; line-height: 1.5; color: var(--bone); margin-bottom: 1.5rem; }
.t-card figcaption { display: flex; flex-direction: column; gap: 0.2rem; }
.t-card figcaption strong { font-weight: 600; font-size: 0.9rem; }
.t-card figcaption span { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 760px) { .results__grid { columns: 1; } }

/* =========================================================
   PHILOSOPHY / MISSION
   ========================================================= */
.philosophy { padding: clamp(4rem, 9vw, 8rem) var(--pad); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.philosophy__sticky { position: sticky; top: 8rem; }
.philosophy__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.06; letter-spacing: -0.02em; }
.philosophy__list { display: flex; flex-direction: column; }
.law { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; padding: 2.2rem 0; border-top: 1px solid var(--line); }
.law:last-child { border-bottom: 1px solid var(--line); }
.law__num { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 2rem; color: var(--gold); line-height: 1; }
.law h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin-bottom: 0.7rem; line-height: 1.2; }
.law p { color: var(--muted); line-height: 1.65; max-width: 48ch; }
@media (max-width: 820px) { .philosophy { grid-template-columns: 1fr; } .philosophy__sticky { position: static; } }

/* =========================================================
   PRESS
   ========================================================= */
.press { padding: clamp(3rem, 6vw, 5rem) var(--pad); border-block: 1px solid var(--line); text-align: center; }
.press__label { display: block; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; }
.press__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem); }
.press__logos span, .press__logos a { font-family: var(--serif); font-weight: 400; font-size: clamp(1.1rem, 2.4vw, 1.8rem); letter-spacing: 0.06em; color: var(--bone-2); opacity: 0.55; transition: opacity .3s, color .3s; }
.press__logos span:hover, .press__logos a:hover { opacity: 1; color: var(--gold-2); }
.press__logos a { position: relative; }
.press__logos a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--gold-2); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.press__logos a:hover::after { transform: scaleX(1); }

/* =========================================================
   CTA
   ========================================================= */
.cta { position: relative; padding: clamp(6rem, 14vw, 12rem) var(--pad); text-align: center; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 60%, rgba(200,169,106,0.16), transparent 55%); }
.cta .eyebrow { margin-bottom: 1.5rem; }
.cta__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.5rem, 8vw, 7rem); line-height: 1; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.cta__sub { color: var(--bone-2); max-width: 46ch; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta__form { display: flex; gap: 0.7rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.cta__form input {
  flex: 1; min-width: 220px; background: transparent; border: 1px solid var(--faint);
  border-radius: 100px; padding: 1rem 1.5rem; color: var(--bone); font-family: var(--sans); font-size: 0.95rem;
  transition: border-color .3s;
}
.cta__form input::placeholder { color: var(--muted); }
.cta__form input:focus { outline: none; border-color: var(--gold); }
.cta__fine { display: block; margin-top: 1.5rem; font-family: var(--mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.footer__big {
  font-family: var(--serif); font-weight: 300; font-size: clamp(5rem, 28vw, 24rem);
  line-height: 0.8; letter-spacing: -0.03em; color: rgba(243,239,230,0.04);
  text-align: center; margin-bottom: 2rem; user-select: none;
}
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__h { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.footer__col a { font-size: 0.95rem; color: var(--bone-2); transition: color .3s; width: fit-content; }
.footer__col a:hover { color: var(--bone); }
.footer__muted { font-size: 0.85rem; color: var(--muted); }
.footer__credit {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-bottom: 2rem; padding: 0.85rem 1.4rem;
  border: 1px solid var(--line); border-radius: 100px;
  font-size: 0.9rem; color: var(--bone-2);
  transition: border-color .35s var(--ease), color .35s var(--ease), background .35s var(--ease);
}
.footer__credit em { font-style: italic; color: var(--gold-2); }
.footer__credit-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.footer__credit-arrow { transition: transform .35s var(--ease); color: var(--gold-2); }
.footer__credit:hover { border-color: rgba(200,169,106,0.5); color: var(--bone); background: rgba(200,169,106,0.06); }
.footer__credit:hover .footer__credit-arrow { transform: translateX(5px); }

.footer__bar { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 640px) { .footer__grid { grid-template-columns: 1fr; } }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   APPLICATION MODAL  (Venture / Software Bewerbung)
   ========================================================= */
.apply { position: fixed; inset: 0; z-index: 10000; display: none; }
.apply.open { display: flex; align-items: center; justify-content: center; padding: 0.8rem; }
.apply__overlay { position: absolute; inset: 0; background: rgba(6,6,6,0.82); backdrop-filter: blur(8px); animation: applyFade .35s var(--ease); cursor: pointer; }
.apply__dialog {
  position: relative; width: min(560px, 100%); max-height: calc(100dvh - 1.6rem); overflow-y: auto;
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border: 1px solid var(--faint); border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
  animation: applyUp .45s var(--ease);
}
@keyframes applyFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes applyUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.apply__x {
  position: absolute; top: 14px; right: 16px; width: 38px; height: 38px;
  font-size: 1.5rem; line-height: 1; color: var(--bone-2);
  background: transparent; border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer; transition: .25s;
}
.apply__x:hover { color: var(--gold-2); border-color: var(--gold); }
.apply__eyebrow { font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.apply__title { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 400; margin: .5rem 0 .4rem; line-height: 1.05; }
.apply__intro { color: var(--muted); font-size: .95rem; margin-bottom: 1.6rem; max-width: 44ch; }
.apply__form { display: flex; flex-direction: column; gap: 1rem; }
.apply__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.apply__form label { display: flex; flex-direction: column; gap: .4rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--bone-2); }
.apply__form input, .apply__form textarea {
  font-family: var(--sans); font-size: .98rem; color: var(--bone); cursor: text;
  background: rgba(243,239,230,0.04); border: 1px solid var(--line); border-radius: 10px;
  padding: .8rem .9rem; transition: border-color .25s, background .25s; resize: vertical;
  text-transform: none; letter-spacing: 0;
}
.apply__form input::placeholder, .apply__form textarea::placeholder { color: rgba(243,239,230,0.32); }
.apply__form input:focus, .apply__form textarea:focus { outline: none; border-color: var(--gold); background: rgba(231,207,158,0.06); }
.apply__submit {
  margin-top: .4rem; font-family: var(--sans); font-weight: 600; font-size: .98rem;
  color: var(--void); background: var(--gold-2); border: none; border-radius: 100px;
  padding: .95rem 1.4rem; cursor: pointer; transition: .25s;
}
.apply__submit:hover { background: var(--bone); }
.apply__submit:disabled { opacity: .6; cursor: default; }
.apply__fine { font-size: .8rem; color: var(--muted); text-align: center; }
.apply__error { font-size: .85rem; color: #eab0a0; text-align: center; line-height: 1.5; }
.apply__error a { color: var(--gold-2); text-decoration: underline; }
.apply__done { text-align: center; padding: 1rem 0; }
.apply__done .apply__intro { margin: 0 auto 1.6rem; }
.apply__check { width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem; color: var(--void); background: var(--gold-2); }
@media (max-width: 560px) { .apply__row { grid-template-columns: 1fr; } }

/* Footer Legal-Links (Impressum / Datenschutz) */
.footer__legal { display: inline-flex; gap: 1.25rem; }
.footer__legal a { color: inherit; text-decoration: none; opacity: 0.7; transition: color .25s var(--ease), opacity .25s; }
.footer__legal a:hover { color: var(--gold); opacity: 1; }
