/* ---------- TEAM ARES — Production CSS ---------- */

/* ---------- LOKALE FONTS (DSGVO-konform, kein Google-CDN) ---------- */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/anton-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/bebasneue-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/intertight-var.woff2') format('woff2-variations'),
       url('fonts/intertight-var.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/jetbrainsmono-var.woff2') format('woff2-variations'),
       url('fonts/jetbrainsmono-var.woff2') format('woff2');
}

:root {
  --bg: #0a0a0a;
  --bg-2: #111;
  --ink: #f5f5f5;
  --ink-dim: #9a9a9a;
  --silver-1: #c0c0c0;
  --silver-2: #e8e8e8;
  --red: #e63946;
  --red-deep: #7a0a14;
  --rule: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--ink); font-family: 'Inter Tight', system-ui, sans-serif; }
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- Typography ---------- */
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.display { font-family: 'Anton', 'Bebas Neue', Impact, sans-serif; letter-spacing: 0.01em; }
.bebas { font-family: 'Bebas Neue', Impact, sans-serif; letter-spacing: 0.04em; }

.silver-text {
  background: linear-gradient(180deg, #fff 0%, #cfcfcf 45%, #8a8a8a 70%, #d4d4d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.red-stroke-text {
  -webkit-text-stroke: 1.5px var(--red);
  color: transparent;
}

/* ---------- Marquee ---------- */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker { border-bottom: 1px solid var(--rule); border-top: 1px solid var(--rule); background: #000; overflow: hidden; padding: 0.7rem 0; }
.marquee {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 45s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-item:nth-child(6n+2) { color: var(--red); }
.marquee-dot { width: 6px; height: 6px; background: var(--red); display: inline-block; flex-shrink: 0; }

/* ---------- Animations ---------- */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.55; }
  94% { opacity: 1; }
  97% { opacity: 0.7; }
  98% { opacity: 1; }
}
.flicker { animation: flicker 6s infinite; }

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(230,57,70,0.25)) drop-shadow(0 0 60px rgba(230,57,70,0.15)); }
  50%      { filter: drop-shadow(0 0 28px rgba(230,57,70,0.55)) drop-shadow(0 0 100px rgba(230,57,70,0.3)); }
}
.glow-pulse { animation: glowPulse 4.5s ease-in-out infinite; }

/* ---------- Backgrounds ---------- */
.hex-bg {
  background-image:
    radial-gradient(circle at 50% 50%, rgba(230,57,70,0.08), transparent 60%),
    repeating-linear-gradient(60deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(-60deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 28px);
}
.grain::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}

/* ---------- Utility ---------- */
.hairline { height: 1px; background: var(--rule); flex: 1; }
.red-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.tag {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
}
.tag::before { content: ""; width: 6px; height: 6px; background: var(--red); display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  padding: 1em 1.6em;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.05rem; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--rule);
  background: transparent; color: var(--ink);
  cursor: pointer; transition: all 0.25s ease;
}
.btn:hover { border-color: var(--red); color: #fff; }
.btn-primary { background: var(--red); border-color: var(--red); color: #fff; }
.btn-primary:hover { background: #ff4654; box-shadow: 0 0 30px rgba(230,57,70,0.4); }

/* ---------- Form ---------- */
.field {
  display: flex; gap: 0; align-items: stretch;
  border: 1px solid var(--rule); background: rgba(255,255,255,0.02);
}
.field input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: none;
  color: var(--ink); font: 500 1rem 'Inter Tight', sans-serif;
  padding: 1em 1.2em;
}
.field input::placeholder { color: var(--ink-dim); }
.field button {
  border: 0; background: var(--red); color: #fff;
  padding: 0 1.6em; font: 700 0.9rem 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
}
.field button:hover { background: #ff4654; }

/* ---------- Nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem; border-bottom: 1px solid var(--rule);
  position: relative; z-index: 5; background: var(--bg);
}
.nav-brand { display: flex; align-items: center; gap: 0.9rem; }
.nav-brand img { height: 38px; width: auto; }
.nav-brand-text { border-left: 1px solid var(--rule); padding-left: 0.9rem; line-height: 1.1; }
.nav-brand-text .name { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.18em; }
.nav-brand-text .sub { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; color: var(--ink-dim); letter-spacing: 0.2em; }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a.nav-link {
  color: var(--ink-dim); text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a.nav-link:hover { color: var(--red); }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 1.5rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 5rem 3rem 6rem; min-height: 920px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; border-bottom: 1px solid var(--rule);
}
.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 2.5rem; width: 100%; max-width: 480px;
}
.hero-eyebrow .hairline { max-width: 120px; }
.hero-eyebrow .mono {
  font-size: 0.72rem; letter-spacing: 0.3em; color: var(--ink-dim);
  /* kompensiert letter-spacing nach dem letzten Buchstaben — sonst Box rechts breiter als optisch */
  margin-right: -0.3em;
}
.hero-logo { width: 320px; height: auto; }
.hero h1 {
  font-size: clamp(3rem, 8vw, 7.5rem); line-height: 1.05;
  text-transform: uppercase; margin-bottom: 1.8rem; max-width: 1100px;
}
.hero-subtitle {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1.1; max-width: 900px; margin-bottom: 2.6rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-meta { position: absolute; bottom: 2rem; display: flex; flex-direction: column; gap: 0.3rem; }
.hero-meta-left { left: 3rem; }
.hero-meta-right { right: 3rem; text-align: right; }
.hero-meta .label { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: var(--ink-dim); letter-spacing: 0.25em; text-transform: uppercase; }
.hero-meta .value { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.15em; }

/* ---------- Sections ---------- */
section { position: relative; }
.section-inner { padding: 6rem 3rem; border-bottom: 1px solid var(--rule); position: relative; }

/* ---------- Disciplines Grid ---------- */
.disc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); margin-top: 3rem;
}
.disc-card {
  background: var(--bg); border: none; cursor: pointer; text-align: left;
  padding: 1.4rem 1.4rem 1.6rem; position: relative;
  color: var(--ink); font-family: 'Inter Tight', sans-serif;
  transition: background 0.4s ease, transform 0.4s ease;
  overflow: hidden;
}
.disc-card:hover { background: linear-gradient(180deg, rgba(230,57,70,0.05), rgba(255,255,255,0)); }
.disc-card.active {
  background: linear-gradient(180deg, rgba(230,57,70,0.18), rgba(230,57,70,0.04));
  transform: translateY(-4px);
}
.disc-card .num {
  font: 500 0.7rem 'JetBrains Mono', monospace;
  color: var(--red); letter-spacing: 0.2em; position: relative;
}
.disc-card h3 {
  font: 400 1.9rem 'Anton', sans-serif;
  letter-spacing: 0.04em; margin: 0.7rem 0 0.4rem;
  text-transform: uppercase; position: relative;
  transition: color 0.3s;
}
.disc-card.active h3 { color: #fff; }
.disc-card p { font-size: 0.88rem; color: var(--ink-dim); line-height: 1.5; position: relative; }
.disc-card .sweep {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(230,57,70,0.4), transparent);
  transform: translateX(-100%); transition: transform 0.7s ease;
}
.disc-card.active .sweep { transform: translateX(100%); }
.disc-card .corner-x {
  position: absolute; top: 14px; right: 14px; color: var(--red);
  opacity: 0.4; transform: rotate(0) scale(1);
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.disc-card.active .corner-x { opacity: 1; transform: rotate(45deg) scale(1.4); }
.disc-card .reveal-info {
  position: relative;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease 0.1s, margin-top 0.5s ease, padding-top 0.5s ease;
  margin-top: 0; padding-top: 0;
  border-top: 1px solid transparent;
}
.disc-card.active .reveal-info {
  max-height: 80px; opacity: 1;
  margin-top: 1rem; padding-top: 0.9rem;
  border-top-color: rgba(230,57,70,0.4);
}
.disc-filler {
  background: var(--bg); padding: 1.4rem;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center;
}

/* ---------- Dulatov / Über uns ---------- */
.dulatov-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #060606 100%);
  overflow: hidden;
}
.dulatov-section .hex-overlay { position: absolute; inset: 0; opacity: 0.35; pointer-events: none; }
.dulatov-grid {
  position: relative; max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1fr; gap: 5rem; align-items: center;
}
.dulatov-logos {
  display: flex; flex-direction: column; align-items: center; gap: 1.8rem; padding: 1rem;
}
.dulatov-logos img:first-of-type { height: 150px; width: auto; filter: drop-shadow(0 14px 36px rgba(0,0,0,0.6)); }
.dulatov-logos img:last-of-type { height: 90px; width: auto; filter: drop-shadow(0 14px 36px rgba(0,0,0,0.6)); }
.dulatov-copy p { color: var(--ink); font-size: 1.02rem; line-height: 1.75; }
.dulatov-copy .copy-stack { display: flex; flex-direction: column; gap: 1.1rem; max-width: 560px; margin-top: 2rem; }
.dulatov-sign {
  margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--rule);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.3em; color: var(--red); max-width: 560px;
}

/* ---------- Founding / Gründungsangebot ---------- */
.founding-section {
  background: linear-gradient(180deg, #0a0a0a, #120606 50%, #0a0a0a);
}
.founding-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; max-width: 1280px; margin: 0 auto;
}
.founding-benefits { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.benefit-row { display: flex; align-items: flex-start; gap: 1rem; }
.benefit-row .arrow { color: var(--red); font-family: monospace; margin-top: 0.15rem; flex: 0 0 auto; }
.benefit-row .label { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.18em; color: #fff; }
.benefit-row .desc { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.55; margin-top: 0.25rem; }

/* Newsletter card */
.newsletter-card {
  border: 1px solid var(--rule); padding: 2.5rem;
  background: rgba(0,0,0,0.4); position: relative;
}
.corner-tick { position: absolute; width: 24px; height: 24px; }
.corner-tick.tl { top: -1px; left: -1px; border-top: 2px solid var(--red); border-left: 2px solid var(--red); }
.corner-tick.tr { top: -1px; right: -1px; border-top: 2px solid var(--red); border-right: 2px solid var(--red); }
.corner-tick.bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--red); border-left: 2px solid var(--red); }
.corner-tick.br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--red); border-right: 2px solid var(--red); }
.newsletter-card h3 { font-size: 2.4rem; line-height: 0.95; text-transform: uppercase; margin-bottom: 0.8rem; }
.newsletter-card .body { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.6rem; }
.success-msg {
  display: none; border: 1px solid var(--red); padding: 1rem 1.2rem;
  align-items: center; gap: 0.9rem; background: rgba(230,57,70,0.08);
}
.success-msg.show { display: flex; }
.form-note { margin-top: 0.9rem; font-size: 0.7rem; color: var(--ink-dim); font-family: monospace; letter-spacing: 0.18em; }

/* ---------- Footer ---------- */
.site-footer { padding: 4rem 3rem 2.5rem; background: #000; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer-brand img { height: 90px; width: auto; margin-bottom: 1.2rem; }
.footer-brand .name { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.18em; }
.footer-brand .sub { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--ink-dim); letter-spacing: 0.2em; margin-top: 0.4rem; }
.footer-address { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.92rem; }
.footer-ig {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--rule); padding: 0.7rem 1rem;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.15em;
  font-size: 0.9rem; max-width: 280px; transition: border-color 0.2s;
}
.footer-ig:hover { border-color: var(--red); }
.legal-bar {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.2em; color: var(--ink-dim); text-transform: uppercase;
}
.legal-links { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.legal-links a { color: var(--ink-dim); text-decoration: none; transition: color 0.2s; }
.legal-links a:hover { color: var(--red); }
.legal-sep { width: 1px; height: 10px; background: var(--rule); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--rule); padding: 1.5rem; gap: 1.2rem; z-index: 10; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 4rem 2rem 5rem; min-height: 700px; }
  .hero-logo { width: 220px; }
  .hero-meta { display: none; }
  .section-inner { padding: 4rem 2rem; }
  .disc-grid { grid-template-columns: repeat(2, 1fr); }
  .dulatov-grid { grid-template-columns: 1fr; gap: 3rem; }
  .dulatov-logos { order: -1; }
  .founding-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .legal-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav { padding: 0.8rem 1rem; }
  .hero { padding: 3rem 1.5rem 4rem; min-height: 580px; }
  .hero-logo { width: 180px; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-subtitle { font-size: clamp(1rem, 4vw, 1.4rem); }
  .section-inner { padding: 3rem 1.5rem; }
  .disc-grid { grid-template-columns: 1fr; }
  .disc-card h3 { font-size: 1.5rem; }
  .newsletter-card { padding: 1.5rem; }
  .newsletter-card h3 { font-size: 1.8rem; }
  .marquee-item { font-size: 0.7rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
  .glow-pulse { animation: none; }
  .flicker { animation: none; }
  .disc-card, .disc-card .sweep { transition: none; }
}
