/* ============================================================
   nexyo TrustFabric — Landingpage
   Local Font (DSGVO-konform, kein CDN)
   ============================================================ */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --nexyo-teal: #00BFA6;
  --nexyo-teal-dim: #00A693;
  --tf-indigo-900: #0F0F1E;
  --tf-indigo-800: #1A1A33;
  --tf-indigo-700: #25254D;
  --tf-violet-500: #6B4EFF;
  --tf-violet-300: #9B85FF;
  --tf-paper: #F7F7FB;
  --tf-paper-dim: #E5E5EE;
  --tf-ink: #14141F;
  --tf-ink-dim: #4A4A5C;
  --tf-ok: #2BB673;
  --tf-warn: #F2B544;
  --tf-risk: #E4574C;
  --container: 1200px;
  --pad-section: clamp(56px, 8vw, 96px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--tf-ink);
  background: var(--tf-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--tf-violet-500); text-decoration: none; }
a:hover { color: var(--nexyo-teal); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--pad-section) 0; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.18; color: var(--tf-ink); letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -0.02em; margin-bottom: 20px; }
h3 { font-size: 1.0625rem; margin-bottom: 10px; }
h4 { font-size: 0.9375rem; margin-bottom: 6px; }

p { margin-bottom: 14px; max-width: 64ch; }

code, .mono { font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tf-violet-500);
  margin-bottom: 10px;
}

/* ============================================================ Nav ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 30, 0.85);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(155, 133, 255, 0.12);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--tf-paper);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-brand:hover { color: var(--tf-paper); }
.nav-logo { height: 28px; width: auto; flex-shrink: 0; display: block; }
.nav-brand-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.nav-brand-sub {
  color: var(--tf-violet-300);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(247, 247, 251, 0.78);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--nexyo-teal); }

.nav-right { display: flex; align-items: center; gap: 16px; margin-left: 12px; }

.lang {
  display: flex;
  gap: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 4px;
}
.lang a {
  color: rgba(247, 247, 251, 0.6);
  padding: 4px 10px;
  border-radius: 6px;
}
.lang a.active { background: var(--tf-violet-500); color: #fff; }
.lang a:hover { color: var(--tf-paper); }
.lang a.active:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--tf-paper);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--tf-indigo-900);
    padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(155, 133, 255, 0.18);
    gap: 14px;
    display: none;
    margin-left: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-right { margin-left: auto; }
}

/* ============================================================ Buttons ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--nexyo-teal);
  color: var(--tf-indigo-900);
}
.btn-primary:hover { background: var(--nexyo-teal-dim); color: var(--tf-indigo-900); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--tf-paper);
  border-color: rgba(247, 247, 251, 0.28);
}
.btn-secondary:hover { border-color: var(--nexyo-teal); color: var(--nexyo-teal); }
.btn-light {
  background: var(--tf-indigo-900);
  color: var(--tf-paper);
}
.btn-light:hover { background: var(--tf-indigo-800); color: var(--tf-paper); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--tf-indigo-900);
  border-color: var(--tf-indigo-900);
}
.btn-ghost:hover { background: var(--tf-indigo-900); color: var(--tf-paper); }

/* ============================================================ Hero ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(107, 78, 255, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(0, 191, 166, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, var(--tf-indigo-900) 0%, var(--tf-indigo-800) 100%);
  color: var(--tf-paper);
  padding: clamp(72px, 10vw, 120px) 0 clamp(72px, 9vw, 110px);
  overflow: hidden;
}
.hero-weave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--tf-paper); margin-bottom: 24px; max-width: 18ch; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--nexyo-teal) 0%, var(--tf-violet-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: rgba(247, 247, 251, 0.82);
  max-width: 56ch;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-pills {
  margin-top: 48px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  font-weight: 500;
}
.hero-pill {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(155, 133, 255, 0.12);
  border: 1px solid rgba(155, 133, 255, 0.28);
  color: var(--tf-violet-300);
  font-size: 0.75rem;
}

/* ============================================================ Section heads ============================================================ */
.section-head { margin-bottom: 36px; max-width: 56ch; }
.section-head h2 { margin-bottom: 10px; }
.section-head .lede { color: var(--tf-ink-dim); font-size: 0.9375rem; }

/* ============================================================ Six silos ============================================================ */
.silo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .silo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .silo-grid { grid-template-columns: 1fr; } }

.silo {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--tf-paper-dim);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.silo:hover { border-color: var(--tf-violet-300); transform: translateY(-2px); }
.silo h3 { font-size: 1rem; margin-bottom: 6px; color: var(--tf-indigo-700); }
.silo p { font-size: 0.875rem; color: var(--tf-ink-dim); margin: 0; }
.silo-tagline {
  margin-top: 32px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--tf-indigo-700);
  font-style: italic;
  text-align: center;
}

/* ============================================================ Regulation timeline ============================================================ */
.regs {
  background: var(--tf-indigo-900);
  color: var(--tf-paper);
}
.regs h2 { color: var(--tf-paper); }
.regs .section-head .lede { color: rgba(247, 247, 251, 0.7); }
.timeline { margin: 32px 0; }
.timeline-svg { width: 100%; height: auto; }
.regs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 1024px) { .regs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .regs-grid { grid-template-columns: 1fr; } }

.reg {
  padding: 18px;
  background: rgba(155, 133, 255, 0.06);
  border: 1px solid rgba(155, 133, 255, 0.18);
  border-radius: 12px;
}
.reg .date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nexyo-teal);
  margin-bottom: 6px;
}
.reg h4 { color: var(--tf-paper); margin-bottom: 6px; }
.reg p { font-size: 0.8125rem; color: rgba(247, 247, 251, 0.72); margin: 0; line-height: 1.5; }

/* ============================================================ Trust formula ============================================================ */
.formula-eq {
  text-align: center;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 24px 0 56px;
  color: var(--tf-indigo-700);
}
.formula-eq .x { color: var(--tf-violet-500); margin: 0 8px; font-weight: 500; }
.formula-eq .term { background: linear-gradient(180deg, transparent 60%, rgba(0, 191, 166, 0.18) 60%); padding: 0 4px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  padding: 28px;
  background: linear-gradient(180deg, #fff 0%, var(--tf-paper) 100%);
  border: 1px solid var(--tf-paper-dim);
  border-radius: 16px;
}
.trust-card .icon { width: 48px; height: 48px; margin-bottom: 16px; }
.trust-card h3 { color: var(--tf-indigo-700); }
.trust-card .sub { font-size: 0.8125rem; font-weight: 600; color: var(--tf-violet-500); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }
.trust-card p { color: var(--tf-ink-dim); font-size: 0.875rem; margin: 0; }

/* ============================================================ Architecture ============================================================ */
.arch { background: linear-gradient(180deg, var(--tf-paper) 0%, #fff 100%); }
.arch-svg-wrap {
  background: #fff;
  border: 1px solid var(--tf-paper-dim);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0 40px;
}
.arch-svg-wrap svg { width: 100%; height: auto; }
.planes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .planes { grid-template-columns: 1fr; } }
.plane {
  padding: 20px;
  border-left: 3px solid var(--tf-violet-500);
  background: #fff;
  border-radius: 0 12px 12px 0;
  border-top: 1px solid var(--tf-paper-dim);
  border-right: 1px solid var(--tf-paper-dim);
  border-bottom: 1px solid var(--tf-paper-dim);
}
.plane:nth-child(1) { border-left-color: #6B4EFF; }
.plane:nth-child(2) { border-left-color: #8B6BFF; }
.plane:nth-child(3) { border-left-color: #00BFA6; }
.plane:nth-child(4) { border-left-color: #2EC4B6; }
.plane:nth-child(5) { border-left-color: #9B85FF; }
.plane:nth-child(6) { border-left-color: #F2B544; }
.plane h3 { color: var(--tf-indigo-700); font-size: 0.9375rem; }
.plane p { font-size: 0.875rem; color: var(--tf-ink-dim); margin-bottom: 8px; }
.plane .examples { font-size: 0.75rem; color: var(--tf-violet-500); font-weight: 500; }

/* ============================================================ Proposals ============================================================ */
.proposals { background: var(--tf-indigo-900); color: var(--tf-paper); }
.proposals h2 { color: var(--tf-paper); }
.proposals .section-head .lede { color: rgba(247, 247, 251, 0.72); }
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .prop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .prop-grid { grid-template-columns: 1fr; } }
.prop {
  padding: 24px;
  background: rgba(155, 133, 255, 0.05);
  border: 1px solid rgba(155, 133, 255, 0.16);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.prop.vision { border: 1px solid var(--tf-violet-500); background: rgba(107, 78, 255, 0.08); }
.prop-icon { width: 48px; height: 48px; margin-bottom: 14px; }
.prop-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--nexyo-teal);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prop-vision-badge {
  display: inline-flex;
  padding: 2px 8px;
  background: var(--tf-violet-500);
  color: #fff;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.prop h3 { color: var(--tf-paper); font-size: 1rem; margin-bottom: 10px; }
.prop p { color: rgba(247, 247, 251, 0.78); font-size: 0.875rem; margin-bottom: 14px; line-height: 1.55; }
.prop .connectors {
  font-size: 0.75rem;
  color: var(--tf-violet-300);
  font-family: ui-monospace, monospace;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(155, 133, 255, 0.2);
}

/* ============================================================ Wedge ============================================================ */
.wedge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
@media (max-width: 760px) { .wedge-grid { grid-template-columns: 1fr; } }
.wedge-col { padding: 28px; border-radius: 16px; }
.wedge-col.left { background: var(--tf-paper); border: 1px solid var(--tf-paper-dim); }
.wedge-col.right { background: linear-gradient(135deg, var(--tf-indigo-700) 0%, var(--tf-violet-500) 100%); color: #fff; }
.wedge-col h3 { margin-bottom: 6px; }
.wedge-col.left h3 { color: var(--tf-ink-dim); }
.wedge-col.right h3 { color: #fff; }
.wedge-col .time { font-size: 1.375rem; font-weight: 600; margin-bottom: 14px; letter-spacing: -0.015em; }
.wedge-col.left .time { color: var(--tf-risk); }
.wedge-col.right .time { color: var(--nexyo-teal); }
.wedge-col ul { list-style: none; padding: 0; }
.wedge-col li { padding: 5px 0 5px 22px; position: relative; font-size: 0.875rem; }
.wedge-col.left li::before { content: "—"; position: absolute; left: 0; color: var(--tf-ink-dim); }
.wedge-col.right li::before { content: "✓"; position: absolute; left: 0; color: var(--nexyo-teal); font-weight: 700; }
.wedge-quote {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  color: var(--tf-indigo-700);
  margin-top: 24px;
  letter-spacing: -0.015em;
}

/* ============================================================ MCP ============================================================ */
.mcp { background: linear-gradient(135deg, var(--tf-indigo-900) 0%, var(--tf-indigo-700) 100%); color: var(--tf-paper); }
.mcp h2 { color: var(--tf-paper); }
.mcp .lede { color: rgba(247, 247, 251, 0.78); }
.mcp-svg-wrap {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(155, 133, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin: 24px 0;
}
.mcp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 660px) { .mcp-stats { grid-template-columns: 1fr; } }
.mcp-stat { padding: 18px; background: rgba(155, 133, 255, 0.08); border-radius: 12px; text-align: center; }
.mcp-stat .num { display: block; font-size: 1.625rem; font-weight: 700; color: var(--nexyo-teal); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
.mcp-stat .lbl { font-size: 0.8125rem; color: rgba(247, 247, 251, 0.72); }

/* ============================================================ Ecosystem ============================================================ */
.ecosystem { background: var(--tf-paper); }
.ecosystem-svg-wrap {
  margin: 24px auto;
  max-width: 760px;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--tf-paper-dim);
}

/* ============================================================ Roles ============================================================ */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .roles-grid { grid-template-columns: 1fr; } }
.role {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--tf-paper-dim);
  border-radius: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.role-glyph {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--tf-violet-500), var(--nexyo-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
}
.role h4 { font-size: 0.9375rem; color: var(--tf-indigo-700); margin-bottom: 4px; }
.role p { font-size: 0.8125rem; color: var(--tf-ink-dim); margin: 0; line-height: 1.5; }

/* ============================================================ CTA ============================================================ */
.cta { background: linear-gradient(135deg, var(--tf-indigo-900) 0%, var(--tf-violet-500) 100%); color: var(--tf-paper); text-align: center; }
.cta h2 { color: var(--tf-paper); margin-bottom: 12px; }
.cta .lede { color: rgba(247, 247, 251, 0.85); margin-bottom: 32px; max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ Track record ============================================================ */
.track {
  background: #fff;
  padding: 36px 0;
  border-top: 1px solid var(--tf-paper-dim);
  border-bottom: 1px solid var(--tf-paper-dim);
}
.track-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.track-item .num {
  display: block;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--tf-indigo-700);
  letter-spacing: -0.02em;
  line-height: 1;
}
.track-item .lbl { font-size: 0.8125rem; color: var(--tf-ink-dim); margin-top: 6px; }

/* ============================================================ Footer ============================================================ */
.footer { background: var(--tf-indigo-900); color: rgba(247, 247, 251, 0.72); padding: 56px 0 32px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(155, 133, 255, 0.16);
  margin-bottom: 24px;
}
.footer-brand { font-weight: 600; color: var(--tf-paper); }
.footer-brand strong { color: var(--tf-violet-300); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: rgba(247, 247, 251, 0.72); font-size: 0.875rem; }
.footer-links a:hover { color: var(--nexyo-teal); }
.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
}
.footer-statement { color: rgba(247, 247, 251, 0.55); font-style: italic; }

/* ============================================================ Modals ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 30, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-box {
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--tf-ink-dim);
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.modal-close:hover { background: var(--tf-paper); color: var(--tf-ink); }
.modal-box h3 { font-size: 1.5rem; margin-bottom: 16px; }
.modal-box h4 { margin-top: 18px; margin-bottom: 6px; }
.modal-box p, .modal-box li { font-size: 0.9375rem; color: var(--tf-ink-dim); }
.modal-box ul { padding-left: 20px; }
.modal-box li { margin-bottom: 6px; }

/* ============================================================ nexyo Trust — additions ============================================================ */

.nav-brand-mark { width: 32px; height: 32px; flex-shrink: 0; display: block; }
.nav-brand strong { color: var(--tf-violet-300); }

/* Hero */
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; pointer-events: none; }
.hero-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--nexyo-teal);
  margin-bottom: 28px;
}

/* Dark sections (resolution, cascade) reuse the regs treatment */
.resolution, .cascade {
  background: var(--tf-indigo-900);
  color: var(--tf-paper);
}
.resolution h2, .cascade h2 { color: var(--tf-paper); }
.resolution .section-head .lede, .cascade .section-head .lede { color: rgba(247, 247, 251, 0.72); }

/* Section 4 — formula on dark */
.resolution .formula-eq { color: var(--tf-paper); margin-bottom: 8px; }
.resolution .formula-eq .term { background: linear-gradient(180deg, transparent 58%, rgba(0,191,166,0.32) 58%); }
.resolution .formula-eq .x { color: var(--tf-violet-300); }

/* Section 5 — Haus & Tuer */
.modell { background: #fff; }
.house-art {
  max-width: 760px;
  margin: 8px auto 36px;
  background: var(--tf-paper);
  border: 1px solid var(--tf-paper-dim);
  border-radius: 18px;
  padding: 28px;
}
.house-art svg { width: 100%; height: auto; }

/* Section 7 — Kaskade */
.cascade-svg-wrap {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(155, 133, 255, 0.2);
  border-radius: 16px;
  padding: 28px;
  margin: 24px 0;
}
.cascade-svg-wrap svg { width: 100%; height: auto; }
.cascade-note {
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(247, 247, 251, 0.72);
}

/* Section 8 — Onboarding steps */
.onboarding-sec { background: var(--tf-paper); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--tf-paper-dim);
  border-radius: 14px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--nexyo-teal);
  color: var(--tf-indigo-900);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 12px;
}
.step h4 { color: var(--tf-indigo-700); }
.step p { font-size: 0.8125rem; color: var(--tf-ink-dim); margin: 0; }

/* Section 8 — methods */
.methods { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--tf-paper-dim);
  border-radius: 12px;
  font-size: 0.875rem;
  color: var(--tf-ink-dim);
}
.method-status {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.method-status.ok { background: rgba(43, 182, 115, 0.14); color: #1F8A57; }
.method-status.soon { background: rgba(242, 181, 68, 0.16); color: #B47F18; }
.method-status.plan { background: rgba(107, 78, 255, 0.12); color: var(--tf-violet-500); }
.onboarding-cta { margin-top: 28px; }

/* Section 9 — self-hosted */
.selfhost { background: linear-gradient(180deg, #fff 0%, var(--tf-paper) 100%); }

/* Section 11 — track line */
.track-line {
  text-align: center;
  margin: 22px auto 0;
  max-width: 60ch;
  font-size: 0.9375rem;
  color: var(--tf-ink-dim);
}

/* Footer disclaimer */
.footer-disclaimer {
  margin-top: 18px;
  font-size: 0.75rem;
  color: rgba(247, 247, 251, 0.4);
  max-width: 70ch;
}

/* Onboarding sub-page */
.ob-hero { text-align: left; }
.ob-back { margin-top: 40px; }
.ob-back a { font-weight: 600; }

/* ============================================================ Trust Console section ============================================================ */
.console-sec { background: var(--tf-indigo-900); color: var(--tf-paper); }
.console-sec h2 { color: var(--tf-paper); }
.console-sec .section-head .lede { color: rgba(247, 247, 251, 0.72); }

.console-frame {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(155, 133, 255, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #fff;
}
.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #E9E9F0;
  border-bottom: 1px solid var(--tf-paper-dim);
}
.console-dot { width: 10px; height: 10px; border-radius: 50%; background: #C3C3D0; }
.console-dot:nth-child(1) { background: #E4574C; }
.console-dot:nth-child(2) { background: #F2B544; }
.console-dot:nth-child(3) { background: #2BB673; }
.console-url {
  margin-left: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  color: var(--tf-ink-dim);
  background: #fff;
  border: 1px solid var(--tf-paper-dim);
  border-radius: 6px;
  padding: 3px 12px;
}
.console-body { display: flex; min-height: 320px; }
.console-side {
  width: 200px;
  flex-shrink: 0;
  background: var(--tf-indigo-900);
  padding: 18px 14px;
}
.console-brand {
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 20px;
}
.console-brand strong { color: var(--tf-violet-300); font-weight: 700; }
.console-brand span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(247, 247, 251, 0.5);
  margin-top: 2px;
}
.console-nav { display: flex; flex-direction: column; gap: 3px; }
.console-nav span {
  font-size: 0.8125rem;
  color: rgba(247, 247, 251, 0.7);
  padding: 7px 10px;
  border-radius: 7px;
}
.console-nav span.active { background: var(--nexyo-teal); color: var(--tf-indigo-900); font-weight: 600; }
.console-main { flex: 1; background: var(--tf-paper); padding: 22px 24px; }
.console-h { font-weight: 600; font-size: 1rem; color: var(--tf-ink); margin-bottom: 14px; }
.console-table { display: flex; flex-direction: column; gap: 6px; }
.console-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--tf-paper-dim);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 0.8125rem;
  color: var(--tf-ink);
}
.console-row-head {
  background: transparent;
  border: 0;
  padding: 0 14px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tf-ink-dim);
}
.cs-badge {
  justify-self: start;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.cs-badge.ok { background: rgba(43, 182, 115, 0.16); color: #1F8A57; }
.cs-badge.warn { background: rgba(242, 181, 68, 0.18); color: #B47F18; }
.cs-badge.run { background: rgba(107, 78, 255, 0.14); color: var(--tf-violet-500); }

.console-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.console-point {
  font-size: 0.8125rem;
  color: rgba(247, 247, 251, 0.72);
  line-height: 1.55;
  padding-left: 14px;
  border-left: 2px solid var(--nexyo-teal);
}
.console-point strong { color: var(--tf-paper); font-weight: 600; }

@media (max-width: 760px) {
  .console-points { grid-template-columns: 1fr; }
  .console-side { width: 132px; padding: 14px 9px; }
  .console-nav span { font-size: 0.6875rem; padding: 6px 7px; }
  .console-row { grid-template-columns: 1.4fr 1.2fr; }
  .console-row span:nth-child(2) { display: none; }
  .console-main { padding: 16px 14px; }
}
