/* NollAI — Unternehmensseite.
   Eigenes Theme nach der Logo-Vorlage (15.08.2026): Dunkelnavy-Grund,
   Silber-Typo, Blau-Verlauf-Akzente, dezente Glows. Bewusst ohne externe
   Fonts und ohne JavaScript: schnell, datensparsam, wartungsarm — dasselbe
   Prinzip wie hallomut.de, aber eine eigene visuelle Identität (die drei
   Marken duerfen nie wie eine Seite aussehen). */

:root {
  --bg: #050b18;
  --bg-raised: #081226;
  --bg-card: rgba(255, 255, 255, 0.035);
  --border: rgba(120, 165, 230, 0.16);
  --border-strong: rgba(120, 165, 230, 0.32);
  --fg: #e9eef6;
  --muted: #a6b4ca;
  --subtle: #7d8ba3;
  --accent: #66b5ff;
  --accent-deep: #2f7bff;
  --accent-grad: linear-gradient(135deg, #2f7bff 0%, #66b5ff 100%);
  --silver-grad: linear-gradient(180deg, #f7f9fc 0%, #c9d3e0 100%);
  --radius: 14px;
  --radius-lg: 22px;
  --shell: 1080px;
  --font:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
    Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent-deep);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ── Header ───────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 11, 24, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--fg);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand svg {
  height: 30px;
  width: auto;
}

.brand .brand-ai {
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

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

.site-nav .nav-cta {
  color: #fff;
  background: var(--accent-grad);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
}

/* ── Hero ─────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 5.5rem 1.25rem 4.5rem;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-one {
  width: 480px;
  height: 480px;
  background: rgba(47, 123, 255, 0.16);
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  background: rgba(102, 181, 255, 0.08);
  bottom: -120px;
  right: -80px;
}

.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

/* Die Grafik bringt ihren eigenen Grund mit (Basiston ~rgb(0,0,4)) und ist
   an den Raendern in Transparenz ausgefedert. Die "Buehne" darunter traegt
   am Logo exakt diesen Basiston und laeuft nach aussen in den Seitengrund
   aus — deshalb gibt es keine sichtbare Kante: kein Rahmen, kein Schatten,
   kein Kasten. */
.hero-logo {
  width: min(460px, 86vw);
  height: auto;
  margin: -0.5rem 0 -1.6rem;
}

.hero-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 620px 500px at 50% 300px,
    #010208 0%,
    rgba(1, 2, 8, 0.9) 38%,
    rgba(1, 2, 8, 0) 72%
  );
}

.hero h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero .lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 600px;
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.4rem;
}

.button {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
}

.button-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 6px 26px rgba(47, 123, 255, 0.35);
}

.button-secondary {
  color: var(--fg);
  border: 1px solid var(--border-strong);
}

.button-secondary:hover,
.button-primary:hover {
  filter: brightness(1.08);
}

/* ── Sektionen ────────────────────────────────────────── */

.section {
  padding: 4rem 1.25rem;
}

.section-alt {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-shell {
  max-width: var(--shell);
  margin: 0 auto;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.section h2 {
  font-size: clamp(1.45rem, 3.4vw, 2rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section .intro {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 2.2rem;
}

.prose p + p {
  margin-top: 1rem;
}

.prose {
  color: var(--muted);
  max-width: 720px;
}

.prose strong {
  color: var(--fg);
}

/* ── Karten-Raster ────────────────────────────────────── */

.grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Produkte ─────────────────────────────────────────── */

.product-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
}

.product-smtp::before {
  background: linear-gradient(90deg, #f0b429, #f6d365);
}

.product-hallomut::before {
  background: linear-gradient(90deg, #3b82f6, #7fd4c1);
}

.product-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product-smtp .product-name span {
  color: #f0b429;
}

.product-hallomut .product-name span {
  color: #7fd4c1;
}

.product-claim {
  color: var(--fg);
  font-weight: 600;
}

.product-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

.product-card .button {
  align-self: flex-start;
  margin-top: 0.4rem;
}

.product-note {
  color: var(--subtle);
  font-size: 0.85rem;
  margin-top: 1.4rem;
}

/* ── Philosophie ──────────────────────────────────────── */

.principles {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 760px;
}

.principles li {
  padding-left: 1.7rem;
  position: relative;
  color: var(--muted);
}

.principles li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-grad);
}

.principles strong {
  color: var(--fg);
}

/* ── Kontakt ──────────────────────────────────────────── */

.contact-box {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.8rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(47, 123, 255, 0.12), transparent 65%),
    var(--bg-card);
}

.contact-box h2 {
  margin-bottom: 0.6rem;
}

.contact-box p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 1.4rem;
}

/* ── Footer ───────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.2rem 1.25rem 2.6rem;
}

.footer-shell {
  max-width: var(--shell);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: space-between;
  align-items: center;
  color: var(--subtle);
  font-size: 0.88rem;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

/* ── Rechtsseiten ─────────────────────────────────────── */

.legal-main {
  padding: 3.5rem 1.25rem 4.5rem;
}

.legal-shell {
  max-width: 760px;
  margin: 0 auto;
}

.legal-shell h1 {
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.legal-updated {
  color: var(--subtle);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-shell h2 {
  font-size: 1.15rem;
  margin: 1.8rem 0 0.5rem;
}

.legal-shell p,
.legal-shell address,
.legal-shell li {
  color: var(--muted);
  font-style: normal;
}

.legal-shell ul {
  padding-left: 1.2rem;
}
