/* Bozzi AI — Landing Page (Sichtbarkeit) — Styles */

:root {
  --bz-purple: #5547B0;
  --bz-purple-dark: #4a3da0;
  --bz-cyan: #04AAE9;
  --bz-pink: #FF91C5;
  --bz-white: #FFFFFF;
  --bz-lavender: #F0EFFF;
  --bz-black: #000000;
  --bz-gray-900: #1a1a1a;
  --bz-gray-700: #4a4a4a;
  --bz-gray-500: #767676;
  --bz-gray-300: #c9c9c9;
  --bz-gray-100: #ececec;
  --bz-gray-50: #f7f7f7;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.page-wrap { overflow-x: hidden; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ============== Placeholder ============== */
.ph {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 0.78em;
  color: #5547B0;
  background: rgba(85,71,176,0.08);
  padding: 1px 8px;
  border-radius: 3px;
  display: inline-block;
  line-height: 1.4;
}
.section-title .ph,
.hero-title .ph { font-size: 0.62em; }
.section-purple .ph,
.section-title-light .ph { color: #fff; background: rgba(255,255,255,0.12); }
.team-photo .ph { font-size: 11px; }

/* ============== Nav ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(240,239,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(85,71,176,0.08);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { text-decoration: none; }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  margin-left: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--bz-gray-900);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--bz-purple); }
.nav-actions { display: flex; gap: 12px; align-items: center; }

/* Mobile-nav burger (CSS-only, no JS). Hidden on desktop; the extra
   in-menu CTA is only shown inside the mobile dropdown. */
.nav-burger { display: none; }
.nav-links a.nav-links-cta { display: none; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1.2;
}
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-primary { background: var(--bz-purple); color: #fff; }
.btn-primary:hover { background: var(--bz-purple-dark); }
.btn-cyan { background: var(--bz-cyan); color: #fff; }
.btn-cyan:hover { background: #038fc4; }
.btn-ghost { background: transparent; color: var(--bz-gray-900); border: 1px solid var(--bz-gray-300); }
.btn-ghost:hover { border-color: var(--bz-black); }

/* ============== Hero ============== */
.hero {
  padding: 120px 0 96px;
  position: relative;
}
.hero-lavender { background: var(--bz-lavender); }
.hero > .container { position: relative; }

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--bz-gray-700);
  background: rgba(255,255,255,0.6);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(85,71,176,0.1);
}
.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bz-cyan);
  position: relative;
  display: inline-block;
}
.dot-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--bz-cyan);
  opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hero-title {
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 28px 0;
  max-width: 1100px;
  text-wrap: balance;
}

.hero-sub {
  font-size: 28px;
  line-height: 1.3;
  color: var(--bz-gray-900);
  max-width: 680px;
  margin: 0 0 48px 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--bz-gray-700);
  max-width: 640px;
  margin: 0 0 32px 0;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(85,71,176,0.15);
  border-bottom: 1px solid rgba(85,71,176,0.15);
  max-width: 900px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 0 24px;
}
.hero-trust-item:first-child { padding-left: 0; }
.hero-trust-item:last-child { padding-right: 0; }
.hero-trust-marker {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--bz-purple);
  background: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.hero-trust-item span:last-child {
  font-size: 13px;
  color: var(--bz-gray-700);
  line-height: 1.3;
}
.hero-trust-divider {
  width: 1px;
  background: rgba(85,71,176,0.15);
}

/* ============== Sections ============== */
.section { padding: 112px 0; }
.section-lavender { background: var(--bz-lavender); }
.section-purple { background: var(--bz-purple); color: #fff; }

.section-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bz-purple);
  font-weight: 600;
  margin-bottom: 24px;
}
.section-eyebrow-light { color: var(--bz-cyan); }

.section-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px 0;
  max-width: 900px;
  text-wrap: balance;
}
.section-title-light { color: #fff; }
.section-lead {
  font-size: 18px;
  line-height: 1.5;
  color: var(--bz-gray-700);
  max-width: 700px;
  margin: 0 0 64px 0;
}
.section-lead-light { color: rgba(255,255,255,0.8); }

.story-prose {
  max-width: 680px;
  margin-top: -16px;
}
.story-prose p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--bz-gray-700);
  margin: 0 0 24px 0;
}
.story-prose p:last-child { margin-bottom: 0; }

/* ============== Feature Grid (Was Bozzi tut) ============== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.feature-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 10px;
  border: 1px solid var(--bz-gray-100);
  box-shadow: 0 2px 8px rgba(85,71,176,0.04);
}
.feature-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--bz-cyan);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 12px 0 8px 0;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--bz-gray-700);
  margin: 0;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,170,233,0.10);
  border: 1px solid rgba(4,170,233,0.22);
  color: var(--bz-cyan);
  margin-bottom: 18px;
}
.feature-icon svg { display: block; }
.feature-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

/* ============== Hero metrics ============== */
.hero-metrics {
  margin: 22px 0 0 0;
  font-size: 14px;
  color: var(--bz-gray-700);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.hero-metric-num { color: var(--bz-purple); font-weight: 700; }
.hero-metrics-sep { color: var(--bz-gray-300); }

/* ============== Pull quotes ============== */
.pquote {
  border-left: 2px solid var(--bz-cyan);
  padding: 2px 0 2px 18px;
  margin: 24px 0 0 0;
}
.pquote p {
  font-size: 15px;
  line-height: 1.5;
  font-style: italic;
  color: var(--bz-gray-700);
  margin: 0 0 8px 0;
  text-wrap: pretty;
}
.pquote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--bz-gray-500);
}
.pquote-light p { color: rgba(255,255,255,0.92); }
.pquote-light cite { color: rgba(255,255,255,0.6); }

/* ============== Startflow (So starten Organisationen) ============== */
.startflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 32px 0;
}
.start-step {
  background: #fff;
  border: 1px solid var(--bz-gray-100);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.start-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(4,170,233,0.12);
  color: var(--bz-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.start-step p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--bz-gray-900);
  margin: 0;
  text-wrap: pretty;
}
.start-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--bz-lavender);
  border: 1px solid #e0ddf2;
  border-radius: 10px;
  font-size: 15px;
  color: var(--bz-purple);
  font-weight: 500;
}
.start-note svg { color: var(--bz-cyan); flex-shrink: 0; }
/* .startflow responsive handling lives in the unified mobile block below. */

/* ============== Screenshot Frame ============== */
.screenshot-frame {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--bz-gray-100);
  box-shadow: 0 8px 32px rgba(85,71,176,0.08);
  overflow: hidden;
}
.screenshot-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--bz-gray-100);
  background: var(--bz-gray-50);
}
.screenshot-chrome-clean {
  justify-content: center;
}
.screenshot-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.screenshot-url {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--bz-gray-500);
}
.screenshot-body {
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(
      45deg,
      var(--bz-lavender),
      var(--bz-lavender) 12px,
      #e8e6ff 12px,
      #e8e6ff 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============== Why Section ============== */
.why-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 2fr;
  gap: 80px;
  align-items: start;
}
.why-stat {
  padding-top: 16px;
  border-top: 2px solid var(--bz-purple);
}
.why-big {
  font-size: 168px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--bz-purple);
  margin-bottom: 16px;
}
.why-unit {
  font-size: 72px;
  color: var(--bz-cyan);
  margin-left: 4px;
  letter-spacing: -0.02em;
}
.why-stat-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--bz-gray-900);
  margin-bottom: 6px;
}
.why-stat-source {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--bz-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.why-text { padding-top: 16px; }
.why-title { font-size: 40px; margin-bottom: 56px; }

/* Dual-stat variant: two stat tiles side-by-side, body text in second column */
.why-grid-dual {
  grid-template-columns: minmax(420px, 1fr) 1fr;
  gap: 64px;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.why-grid-dual .why-big {
  font-size: 120px;
  margin-bottom: 12px;
}
.why-grid-dual .why-unit {
  font-size: 56px;
}
.why-grid-dual .why-stat-label {
  font-size: 16px;
}
.why-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--bz-gray-700);
  margin: 0 0 16px 0;
  max-width: 560px;
}

/* ============== Trust ============== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.trust-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 32px;
  border-radius: 10px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(4,170,233,0.10);
  border: 1px solid rgba(4,170,233,0.22);
  color: var(--bz-cyan);
}
.trust-icon svg { display: block; }
.trust-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  color: #fff;
}
.trust-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.trust-whitepaper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.trust-whitepaper span {
  font-style: italic;
}
.trust-whitepaper a {
  color: var(--bz-cyan);
  text-decoration: none;
  font-weight: 600;
}
.trust-whitepaper a:hover { text-decoration: underline; }

/* ============== Trust · Bausteine ============== */
.trust-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.trust-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 28px;
}
.trust-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.trust-panel-head svg { color: var(--bz-cyan); flex-shrink: 0; }
.trust-panel h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.trust-panel p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.it-facts {
  background: rgba(4,170,233,0.07);
  border: 1px solid rgba(4,170,233,0.22);
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 24px;
}
.it-facts-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.it-facts-head svg { color: var(--bz-cyan); flex-shrink: 0; }
.it-facts h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.it-facts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}
.it-facts li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.it-facts li svg { color: var(--bz-cyan); flex-shrink: 0; margin-top: 2px; }

/* ============== Brochure note (Section 3) ============== */
.brochure-note {
  margin-top: 48px;
  padding: 18px 24px;
  background: var(--bz-lavender);
  border: 1px solid #e0ddf2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brochure-note-text {
  font-size: 14px;
  color: var(--bz-gray-700);
}
.brochure-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bz-cyan);
  text-decoration: none;
  white-space: nowrap;
}
.brochure-link:hover { text-decoration: underline; }
.brochure-icon { flex-shrink: 0; }

/* ============== Dataflow (Section 4) · hin und zurück ============== */
.dataflow-intro {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 0 26px 0;
  text-wrap: pretty;
}
.dataflow {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  align-items: stretch;
  gap: 0;
  margin: 0 0 44px 0;
}
.df-zone {
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.df-zone-clear {
  background: #3d3494;
  border: 1px solid rgba(255,255,255,0.18);
}
.df-zone-pseudo {
  background: rgba(4,170,233,0.13);
  border: 1px solid rgba(4,170,233,0.5);
}
.df-zone-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.df-zone-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
}
.df-zone-clear .df-zone-tag { color: rgba(255,255,255,0.78); }
.df-zone-pseudo .df-zone-tag { color: var(--bz-cyan); }
.df-node {
  display: flex;
  gap: 12px;
}
.df-node-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.df-zone-clear .df-node-num { background: rgba(255,255,255,0.16); color: #fff; }
.df-zone-pseudo .df-node-num { background: var(--bz-cyan); color: #08243a; }
.df-node h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 3px 0;
  letter-spacing: -0.01em;
  color: #fff;
}
.df-node p {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  margin: 0;
  text-wrap: pretty;
}
.df-gate {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.df-gate::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  border-left: 2px dashed var(--bz-cyan);
}
.df-gate-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--bz-purple);
  padding: 12px 3px;
}
.df-gate-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.df-gate-arrow-in { background: var(--bz-cyan); color: #08243a; }
.df-gate-arrow-out { background: #fff; color: var(--bz-purple); }
.df-gate-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bz-cyan);
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .dataflow {
    grid-template-columns: 1fr;
  }
  .df-gate {
    padding: 8px 0;
  }
  .df-gate::before {
    top: 50%;
    bottom: auto;
    left: 6px;
    right: 6px;
    width: auto;
    height: 0;
    border-left: 0;
    border-top: 2px dashed var(--bz-cyan);
    transform: translateY(-50%);
  }
  .df-gate-inner {
    flex-direction: row;
    padding: 3px 14px;
  }
  .df-gate-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .df-gate-arrow svg {
    transform: rotate(90deg);
  }
}

/* ============== Team ============== */
.team-grid {
  display: grid;
  gap: 24px;
}
.team-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 880px;
}
.team-card { margin: 0; }
.team-photo {
  aspect-ratio: 5 / 6;
  background: #1a1a1a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  filter: grayscale(1);
  overflow: hidden;
}
.team-photo:not(.team-photo-filled):not(.team-photo-monogram) {
  background:
    repeating-linear-gradient(
      45deg,
      var(--bz-gray-100),
      var(--bz-gray-100) 8px,
      #f0f0f0 8px,
      #f0f0f0 16px
    );
}
.team-photo-filled { background: #1a1a1a; }
.team-photo-monogram { background: #1a1a1a; filter: none; }
.team-photo-monogram svg { width: 100%; height: 100%; display: block; }
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.team-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.team-card strong {
  font-size: 16px;
  font-weight: 600;
}
.team-card .team-role { font-size: 13px; color: var(--bz-gray-700); }
.team-card .team-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--bz-gray-500);
  margin: 10px 0 0 0;
  max-width: 28ch;
}
.team-grid-3 { max-width: 1040px; }
.team-group + .team-group { margin-top: 56px; }
.team-group-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bz-gray-700);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bz-gray-200, rgba(0,0,0,0.1));
  max-width: 1040px;
}
.team-group-intro {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bz-gray-700);
  max-width: 720px;
  margin: -8px 0 24px 0;
  text-wrap: pretty;
}
.team-card-text {
  background: #fff;
  border: 1px solid var(--bz-gray-100);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.team-monogram {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(4,170,233,0.12);
  color: var(--bz-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.team-card-text .team-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--bz-gray-900);
}
.team-card-text .team-role {
  font-size: 13px;
  color: var(--bz-gray-700);
  margin-top: 2px;
}
.team-card-text .team-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--bz-gray-500);
  margin: 12px 0 0 0;
}

/* ============== Contact ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-headline { font-size: 48px; }
.contact-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  padding-top: 4px;
}
.contact-values {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  color: #fff;
}
.contact-values a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(4,170,233,0.5);
  display: inline-block;
  width: fit-content;
  padding-bottom: 1px;
  transition: border-color 0.15s ease;
}
.contact-values a:hover { border-bottom-color: var(--bz-cyan); }
.contact-meta-line {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.contact-cta-row {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ============== Footer ============== */
.footer {
  background: #000;
  color: #fff;
  padding: 64px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
  gap: 24px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 12px 0 0 0;
}
.footer-endorsement {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px 0;
  font-weight: 600;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.footer-grid a, .footer-grid span {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.7;
}
.footer-grid a:hover { color: var(--bz-cyan); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

/* ============== Responsive ==============
   Two modes only: desktop (>= 1025px) and mobile/tablet (<= 1024px).
   1024px is the standard tablet/desktop divide (iPad-landscape width); every
   phone and portrait tablet falls into one fluid "mobile" view.
   Card grids use auto-fit + minmax(min(100%, N), 1fr): they flow from 1 column
   on phones to 2-3 on wide tablets with NO extra breakpoints, and the
   min(100%, N) term caps each track at the container width, so they can never
   overflow — even at 320px (e.g. Galaxy S / S25 at DPR 3 = 360px CSS width).
   Fluid type via clamp() removes the need for per-size font breakpoints. */
@media (max-width: 1024px) {
  /* spacing + fluid typography */
  .hero { padding: clamp(56px, 12vw, 96px) 0 clamp(48px, 10vw, 72px); }
  .section { padding: clamp(56px, 12vw, 96px) 0; }
  .hero-title { font-size: clamp(30px, 7.5vw, 64px); overflow-wrap: break-word; hyphens: auto; }
  .hero-sub { font-size: clamp(19px, 4.2vw, 26px); }
  .section-title { font-size: clamp(28px, 5.5vw, 44px); overflow-wrap: break-word; hyphens: auto; }
  .why-big { font-size: clamp(64px, 20vw, 168px); }
  .why-grid-dual .why-big { font-size: clamp(60px, 18vw, 120px); }
  .why-unit { font-size: clamp(28px, 7vw, 64px); }

  /* container padding scales down on small phones */
  .container { padding: 0 clamp(16px, 5vw, 32px); }

  /* card grids: fluid 1 -> N columns, never wider than the container */
  .feature-grid,
  .trust-grid,
  .team-grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); max-width: none; }
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); }
  .startflow { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

  /* two-part layouts: stack into a single column */
  .why-grid,
  .why-grid-dual { grid-template-columns: 1fr; gap: 40px; }
  .why-stats { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-row { grid-template-columns: 1fr; gap: 6px; }
  .trust-panels { grid-template-columns: 1fr; }
  .it-facts ul { grid-template-columns: 1fr; }

  /* hero + footer bits */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-metrics { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-metrics-sep { display: none; }
  .hero-trust { flex-direction: column; padding: 20px 0; gap: 16px; }
  .hero-trust-item { padding: 0; }
  .hero-trust-divider { display: none; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* Mobile nav: burger toggles a dropdown of the section links + CTA. */
  .nav-inner { position: relative; padding: 14px clamp(16px, 5vw, 32px); }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    cursor: pointer;
    border-radius: 8px;
  }
  .nav-burger-bar {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--bz-gray-900);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle:checked ~ .nav-burger .nav-burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger .nav-burger-bar:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger .nav-burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    flex-direction: column;
    gap: 4px;
    margin-left: 0;
    padding: 12px;
    background: rgba(240,239,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(85,71,176,0.12);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(85,71,176,0.16);
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a { padding: 10px 12px; border-radius: 8px; }
  .nav-links a:hover { background: rgba(85,71,176,0.08); }
  .nav-links a.nav-links-cta { display: inline-flex; margin-top: 4px; justify-content: center; }
  .nav-actions { display: none; }
}
