/* LeFacetery – Design-Vorschlag, Branding final noch mit dir abzustimmen */
:root {
  --bg: #0c0b0d;
  --bg-elevated: #17161a;
  --text: #f2efe9;
  --text-muted: #a7a3ad;
  --accent: #c9a86a;
  --border: #2a282e;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Georgia", "Cambria", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

a { color: inherit; }

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(12, 11, 13, 0.9);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text);
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

.site-header nav a {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
}

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

/* Hero */
.hero {
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}

.eyebrow {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 20ch;
  margin: 0 auto 1.25rem;
}

.hero .lead {
  max-width: 46ch;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
}

.section-kicker {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  max-width: 30ch;
}

.section-intro {
  color: var(--text-muted);
  max-width: 60ch;
}

.section-note {
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2rem;
}

/* Pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.pillar-label {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Architecture columns */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.arch-col h3 {
  font-size: 1rem;
  color: var(--accent);
}

.arch-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
}

.arch-col li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

/* Business model cards */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.model-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.model-card:hover { border-color: var(--accent); }

.model-card h3 {
  color: var(--text);
  margin-bottom: 0.25rem;
}

.model-sub {
  color: var(--accent);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.model-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
}

.model-card li {
  padding: 0.25rem 0;
  font-size: 0.92rem;
}

/* Proof card */
.proof-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  text-decoration: none;
  max-width: 420px;
}

.proof-card strong {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.6rem;
}

.proof-card span:last-child {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--accent);
  text-decoration: none;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Closing */
.closing {
  padding: 6rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

/* Generic content pages */
.page {
  padding: 4rem 1.5rem;
}

.page .tagline {
  color: var(--accent);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.1rem;
}

/* Card grid (industries / personalities lists) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  text-decoration: none;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  transition: border-color 0.2s ease;
}

.card:hover { border-color: var(--accent); }

.personality-card span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.personality-card em {
  color: var(--accent);
  font-style: normal;
  font-size: 0.85rem;
}

/* Diversity tag grid */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Identity card (personality single page) */
.personality .brand {
  color: var(--text-muted);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.identity-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.identity-field {
  background: var(--bg-elevated);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.identity-label {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.identity-value {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  color: var(--text-muted);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.85rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

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

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

/* Logo mark */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.logo-mark svg { width: 100%; height: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.btn-filled {
  background: var(--accent);
  color: #16130c;
}

.btn-filled:hover { opacity: 0.88; }

.btn-outline {
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover { border-color: var(--accent); }

.btn-small {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-cta-row.centered { justify-content: center; }

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin: 0 0 1.5rem;
}

.accent-text { color: var(--accent); }

/* Stat row */
.stat-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Teaser tiles (homepage) */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.teaser-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.teaser-card:hover { border-color: var(--accent); }

.teaser-kicker {
  display: block;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.teaser-card h3 { margin-bottom: 0.4rem; }

.teaser-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Check list (pain points) */
.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.75rem;
  max-width: 60ch;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.process-step h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }

.process-step p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card-featured {
  border-color: var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -0.7rem;
  left: 2rem;
  background: var(--accent);
  color: #16130c;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.pricing-card h3 {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.pricing-price {
  color: var(--accent);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  margin: 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: grid;
  gap: 0.5rem;
  flex-grow: 1;
}

.cta-pending {
  color: var(--text-muted);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-style: italic;
}

/* FAQ */
.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  max-width: 70ch;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

/* Team */
.team-card span {
  color: var(--accent);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.85rem;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}
