/* ==========================================================================
   Gentrix – Variante E ("Interim")

   Übergangsseite für gentrix.io, solange die vollständige Website entsteht.
   Ziel: in wenigen Sekunden erfassbar machen, was Gentrix ist, für wen es
   gebaut ist und wie man Kontakt aufnimmt – und dabei offen sagen, dass die
   Seite noch nicht final ist.

   Bewusst eine einzige Stylesheet-Datei ohne Aufteilung: Diese Seite soll
   sich mit minimalem Aufwand betreiben und später wieder ersetzen lassen.
   ========================================================================== */

/* --------------------------------------------------------------- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { font-weight: inherit; text-wrap: balance; }
p { text-wrap: pretty; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------- Token --- */
:root {
  --bg: #202020;
  --surface: #262827;
  --surface-deep: #1a1c1b;
  --accent: #73ffce;
  --accent-strong: #9affde;

  --text: #f3f4f1;
  --text-muted: #b3b6b0;
  --text-faint: #83867f;
  --line: rgba(243, 244, 241, 0.11);
  --line-strong: rgba(243, 244, 241, 0.2);
  --focus: #a6ffe0;

  --font-display: "Conthrax SB", "Space Grotesk", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas,
    monospace;

  --radius: 14px;
  --radius-sm: 6px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------------------------------------- Base --- */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  line-height: 1.6;
  overflow-wrap: break-word;
}

.wrap {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

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

/* ------------------------------------------------------------- Hinweis --- */
/* Steht ganz oben und ist die erste Information der Seite – der Besucher
   soll gar nicht erst rätseln, warum hier so wenig steht. */
.notice {
  border-bottom: 1px solid rgba(115, 255, 206, 0.22);
  background: rgba(115, 255, 206, 0.07);
}

.notice .wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding-block: 0.85rem;
}

.notice-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.notice p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.notice strong {
  color: var(--accent);
  font-weight: 600;
}

/* ----------------------------------------------------------------- Top --- */
.top {
  padding-block: 1.75rem 0;
}

.logo {
  width: 168px;
  height: auto;
}

/* ---------------------------------------------------------------- Hero --- */
/* Abstände bewusst knapp: Die Seite soll möglichst weit auf einen Blick
   erfassbar sein, inklusive Kontaktmöglichkeit. */
.hero {
  padding-block: 2rem 2.25rem;
}

.eyebrow {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 1.35rem + 2.6vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: 0.005em;
  hyphens: auto;
}

.hero p {
  max-width: 40rem;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
}

/* --------------------------------------------------------------- Punkte --- */
.points {
  display: grid;
  gap: 1rem;
  padding-bottom: 2rem;
}

@media (min-width: 700px) {
  .points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.point {
  min-width: 0;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease),
    background 220ms var(--ease), box-shadow 220ms var(--ease);
}

/* Nur auf Geräten mit echtem Zeiger: Auf Touch bliebe der Hover-Zustand
   nach dem Antippen hängen. */
@media (hover: hover) {
  .point:hover {
    transform: translateY(-3px);
    border-color: rgba(115, 255, 206, 0.42);
    background: #2a2d2c;
    box-shadow: 0 14px 30px -22px rgba(0, 0, 0, 0.85);
  }

  .point:hover h2 svg {
    color: var(--accent-strong);
  }
}

.point h2 svg {
  transition: color 220ms var(--ease);
}

.point h2 {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.point h2 svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.2em;
  color: var(--accent);
}

.point p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ------------------------------------------------------------- Zielgruppe --- */
.audience {
  padding-block: 1.25rem;
  border-block: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--text-faint);
}

/* ------------------------------------------------------------- Kontakt --- */
.contact {
  padding-block: 2.25rem 2.75rem;
}

.contact h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.contact p {
  max-width: 38rem;
  margin-bottom: 1.6rem;
  color: var(--text-muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.8rem 1.7rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #0f231c;
  font-size: 1rem;
  font-weight: 650;
  text-align: center;
  transition: background 150ms var(--ease), transform 150ms var(--ease);
}

.btn:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.mail-direct {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.mail-direct a {
  color: var(--accent);
  border-bottom: 1px solid rgba(115, 255, 206, 0.35);
}

.contact-note {
  margin-top: 1.3rem;
  font-size: 0.88rem;
  color: var(--text-faint);
}

/* --------------------------------------------------------------- Footer --- */
.site-footer {
  padding-block: 1.8rem 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* --------------------------------------------------------- Rechtstexte --- */
.legal {
  padding-block: 2.5rem 4rem;
}

.legal h1 {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 1.4rem + 1.3vw, 2.4rem);
  letter-spacing: 0.005em;
}

.legal h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  font-weight: 650;
}

.legal p,
.legal li {
  max-width: 62ch;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal ul {
  padding-left: 1.3rem;
  list-style: disc;
}

.legal .placeholder {
  padding: 0.1em 0.4em;
  border-radius: var(--radius-sm);
  background: rgba(115, 255, 206, 0.1);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.88em;
}

.back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* ------------------------------------------------------- Touch-Ziele --- */
/* Textlinks sind von Haus aus nur ~22px hoch und damit als Tippziel zu
   klein. Vertikales Padding vergrößert die Trefferfläche, ohne das
   Schriftbild zu verändern. */
.footer-links a,
.mail-direct a {
  display: inline-block;
  padding-block: 0.4rem;
}

@media (max-width: 700px) {
  .footer-links a,
  .mail-direct a {
    padding-block: 0.65rem;
  }

  .footer-inner {
    gap: 0.4rem 1.5rem;
  }
}
