@font-face {
  font-family: "RUVNOX Michroma";
  src:
    url("assets/fonts/Michroma-Regular.woff2") format("woff2"),
    url("assets/fonts/Michroma-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RUVNOX Quantico Brand";
  src:
    url("assets/fonts/Quantico-Bold.woff2") format("woff2"),
    url("assets/fonts/Quantico-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #000000;
  --surface: #111216;
  --surface-soft: #171920;
  --surface-alt: #343440;
  --surface-olive: #20251a;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(95, 112, 67, 0.65);
  --text: #f3efe8;
  --text-soft: rgba(243, 239, 232, 0.72);
  --text-muted: rgba(243, 239, 232, 0.46);
  --accent: #5f7043;
  --accent-soft: #738853;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --page: min(100% - 32px, 1180px);
  --section-space: 84px;

  --font-head: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(95, 112, 67, 0.14), transparent 280px),
    radial-gradient(circle at 90% 15%, rgba(95, 112, 67, 0.08), transparent 320px),
    linear-gradient(180deg, #050505 0%, #000000 420px);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 80%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: var(--page);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}
.brand span {
  font-size: 1.05rem;
}
.nav {
  display: none;
}
.mobile-links {
  display: flex;
  gap: 10px;
}
.mobile-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 800;
}

.section, .hero {
  width: var(--page);
  margin: 0 auto;
}
.hero {
  padding: 58px 0 84px;
}
.kicker {
  margin: 0 0 18px;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-grid {
  display: grid;
  gap: 34px;
}
.hero-copy {
  max-width: 40rem;
}
h1, h2, h3 { margin-top: 0; font-family: var(--font-head); letter-spacing: -0.05em; }
p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 15vw, 6.35rem);
  font-weight: 950;
  line-height: 0.92;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 10.5vw, 4.3rem);
  font-weight: 930;
  line-height: 0.95;
}
h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}
.lead {
  max-width: 38ch;
  color: var(--text-soft);
  font-size: clamp(1.06rem, 4.5vw, 1.22rem);
  line-height: 1.75;
}
.accent-line {
  display: block;
  color: var(--accent);
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pills span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17, 18, 22, 0.92);
  color: var(--text);
  font-weight: 780;
}
.actions {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
}
.button-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 20px 40px rgba(95, 112, 67, 0.18);
}
.button-secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.subcopy {
  margin: 24px 0 0;
  color: var(--text-muted);
  font-weight: 680;
}

.hero-visual {
  display: grid;
  gap: 16px;
}
.phone-frame {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(17,18,22,0.95), rgba(7,7,8,0.98));
  box-shadow: var(--shadow);
}
.phone-frame img {
  width: 100%;
  border-radius: 26px;
}

.section {
  padding: var(--section-space) 0;
}
.intro-grid,
.dual-grid,
.export-grid,
.privacy-grid,
.status-grid {
  display: grid;
  gap: 18px;
}
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 18, 22, 0.92);
  box-shadow: var(--shadow);
}
.card.soft {
  background: rgba(17, 18, 22, 0.76);
}
.card.privacy {
  background: rgba(52, 52, 64, 0.96);
}
.card h3 + p,
.card h2 + p,
.card p:last-child {
  margin-bottom: 0;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-soft);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}
.metric {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 10vw, 4rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.05em;
}
.body-copy,
.card p,
.card li {
  color: var(--text-soft);
  font-size: 1rem;
}

.card-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.card-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.26);
}
.card-list li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent-soft);
}

.feature-grid {
  display: grid;
  gap: 18px;
}
.feature-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 18, 22, 0.92);
}
.feature-card .feature-top {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-chip {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(95,112,67,0.18);
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 850;
}
.feature-card h3 {
  margin: 0 0 8px;
}
.screenshot-grid {
  display: grid;
  gap: 18px;
}
.shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(17,18,22,0.92);
}
.shot img {
  width: 100%;
}
.shot-caption {
  padding: 16px 18px 18px;
}
.shot-caption strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
}
.shot-caption span { color: var(--text-muted); }

.tabs {
  display: grid;
  gap: 12px;
}
.tab-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 18, 22, 0.92);
}
.tab-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(95,112,67,0.16);
  color: var(--accent-soft);
  font-size: 0.85rem;
  font-weight: 850;
}
.export-grid .card,
.status-grid .card {
  height: 100%;
}
.status-card {
  background: linear-gradient(135deg, rgba(95,112,67,0.82), rgba(17,18,22,0.96));
}
.status-card p,
.status-card .eyebrow { color: rgba(243,239,232,0.92); }

footer.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.footer-inner {
  width: var(--page);
  margin: 0 auto;
  padding: 30px 0 40px;
  display: grid;
  gap: 14px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-links a:hover,
.nav a:hover,
.mobile-links a:hover {
  color: var(--accent-soft);
}

.legal-page {
  width: var(--page);
  margin: 0 auto;
  padding: 58px 0 92px;
}
.legal-wrap {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(17, 18, 22, 0.92);
}
.legal-wrap section + section {
  margin-top: 28px;
}
.note-box {
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(52, 52, 64, 0.96);
  border: 1px solid var(--line);
}

@media (min-width: 720px) {
  :root {
    --page: min(100% - 56px, 1180px);
    --section-space: 96px;
  }
  .actions {
    display: flex;
    flex-wrap: wrap;
  }
  .button { min-width: 190px; }
  .feature-grid,
  .tabs,
  .screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .intro-grid,
  .export-grid,
  .privacy-grid,
  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dual-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
  }
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  :root {
    --page: min(100% - 96px, 1180px);
    --section-space: 112px;
  }
  .mobile-links { display: none; }
  .nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--text-soft);
  }
  .hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(400px, 0.84fr);
    align-items: center;
    gap: 72px;
  }
  h1 {
    font-size: clamp(4.85rem, 7vw, 7rem);
  }
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .screenshot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}






/* =========================================================
   RUVNOX v12 HOTFIX
   Fonts:
   - Michroma Regular = alles außer Wortmarke
   - Quantico Bold = nur Logo-/Wortmarken-Kontext
   ========================================================= */

:root {
  --font-main: "RUVNOX Michroma", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: "RUVNOX Quantico Brand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Michroma überall */
html,
body,
main,
section,
article,
aside,
footer,
header,
nav,
div,
p,
span,
a,
li,
ul,
ol,
figcaption,
label,
input,
textarea,
button,
h1,
h2,
h3,
h4,
h5,
h6,
.card,
.card p,
.body-copy,
.lead,
.subcopy,
.footer-inner,
.footer-links,
.nav,
.mobile-links,
.button,
.kicker,
.eyebrow,
.metric,
.feature-chip,
.tab-tag,
.card-list,
.card-list li,
.shot-caption,
.shot-caption strong,
.legal-wrap,
.legal-wrap p,
.legal-wrap li {
  font-family: var(--font-main) !important;
  font-weight: 400 !important;
}

/* Quantico Bold nur für echte Wortmarken-/Logo-Fallbacks */
.brand,
.brand *,
.brand-wordmark,
.logo-wordmark,
.header-wordmark {
  font-family: var(--font-brand) !important;
  font-weight: 700 !important;
}

/* Header-Bannerlogo erzwingen */
.brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  min-width: 0 !important;
  line-height: 1 !important;
}

.header-logo {
  display: block !important;
  width: auto !important;
  height: 42px !important;
  max-width: min(62vw, 320px) !important;
  border-radius: 0 !important;
  object-fit: contain !important;
}

.brand > span {
  display: none !important;
}

.brand > img:not(.header-logo) {
  display: none !important;
}

.header-inner {
  min-height: 82px !important;
}

/* Lesbarkeit mit Michroma */
h1,
h2,
h3 {
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
}

h1 {
  max-width: 11.5ch !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  line-height: 1.02 !important;
}

h2 {
  line-height: 1.06 !important;
}

h3 {
  line-height: 1.14 !important;
}

p,
li,
.lead,
.body-copy {
  line-height: 1.82 !important;
}

/* Hero entzerren */
.hero-grid {
  align-items: center !important;
}

.hero-copy,
.hero-visual {
  min-width: 0 !important;
}

.hero-copy {
  position: relative !important;
  z-index: 2 !important;
}

.hero-visual {
  position: relative !important;
  z-index: 1 !important;
}

.phone-frame {
  max-width: 430px !important;
  justify-self: center !important;
}

@media (min-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr) !important;
    gap: clamp(96px, 10vw, 170px) !important;
  }

  h1 {
    max-width: 11.4ch !important;
    font-size: clamp(3.55rem, 4.7vw, 5.15rem) !important;
    line-height: 1.02 !important;
  }

  .lead {
    max-width: 45ch !important;
  }

  .phone-frame {
    max-width: 420px !important;
    justify-self: end !important;
  }
}

@media (min-width: 1440px) {
  .hero-grid {
    gap: 180px !important;
  }

  .phone-frame {
    max-width: 440px !important;
  }
}

@media (max-width: 520px) {
  .header-logo {
    height: 34px !important;
    max-width: 230px !important;
  }

  .header-inner {
    min-height: 74px !important;
  }

  h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.6rem) !important;
    max-width: 11.5ch !important;
  }
}
