/* FutureCruce — Stylesheet */
:root {
  --fc-ink:        #0f1729;
  --fc-ink-soft:   #475569;
  --fc-rule:       #e2e8f0;
  --fc-paper:      #ffffff;
  --fc-paper-2:    #f8fafc;
  --fc-deep:       #1e3a5f;
  --fc-accent:     #2563eb;     /* compass-blue */
  --fc-accent-2:   #6db4ff;
  --fc-success:    #16a34a;
  --fc-warn:       #d97706;
  --fc-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fc-serif:      'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
  --fc-radius:     10px;
  --fc-shadow:     0 12px 32px rgba(15,23,41,.08);
  --fc-shadow-lg:  0 24px 60px rgba(15,23,41,.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fc-sans);
  color: var(--fc-ink);
  background: var(--fc-paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--fc-accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--fc-deep); }

/* ── Header ────────────────────────────────────────────────────────── */
.fc-header {
  border-bottom: 1px solid var(--fc-rule);
  background: var(--fc-paper);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.94);
}
.fc-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.fc-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: inherit;
}
.fc-brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.fc-brand__text { display: flex; flex-direction: column; line-height: 1.05; gap: 1px; }
.fc-brand__text strong { font-size: 1.1rem; letter-spacing: -.3px; }
.fc-brand__claim-big {
  font-size: .72rem;
  font-weight: 700;
  color: var(--fc-deep);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.fc-brand__claim-small {
  font-size: .6rem;
  color: var(--fc-ink-soft);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.fc-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: .95rem;
}
.fc-nav a {
  color: var(--fc-ink);
  font-weight: 500;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
}
.fc-nav a.is-active { color: var(--fc-accent); border-bottom-color: var(--fc-accent); }
.fc-nav a:hover { color: var(--fc-accent); }
.fc-nav__login, .fc-nav__app {
  background: var(--fc-ink);
  color: var(--fc-paper) !important;
  padding: .5rem 1rem !important;
  border-radius: var(--fc-radius);
  border-bottom: none !important;
  font-weight: 600;
}
.fc-nav__login:hover, .fc-nav__app:hover {
  background: var(--fc-accent);
  color: var(--fc-paper) !important;
}
.fc-nav__user { font-size: .82rem; color: var(--fc-ink-soft); }

/* ── Main / Container ──────────────────────────────────────────────── */
.fc-main { min-height: calc(100vh - 200px); }
.fc-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.fc-container--narrow { max-width: 720px; }

/* ── Hero ──────────────────────────────────────────────────────────── */
.fc-hero {
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(109,180,255,.18), transparent 60%),
    radial-gradient(700px 400px at 90% 10%, rgba(37,99,235,.15), transparent 60%),
    linear-gradient(180deg, var(--fc-paper-2) 0%, var(--fc-paper) 80%);
  border-bottom: 1px solid var(--fc-rule);
}
.fc-hero__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.fc-eyebrow {
  font-size: .78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fc-accent);
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.fc-eyebrow--big {
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--fc-deep);
  margin-bottom: .3rem;
}
.fc-eyebrow--small {
  font-size: .72rem;
  letter-spacing: 2.5px;
  color: var(--fc-ink-soft);
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.fc-h1 {
  font-family: var(--fc-serif);
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--fc-ink);
  font-weight: 400;
  margin-bottom: 1rem;
}
.fc-h1 .grad {
  background: linear-gradient(90deg, var(--fc-deep) 0%, var(--fc-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fc-lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--fc-ink-soft);
  max-width: 42ch;
  margin-bottom: 1.8rem;
}
.fc-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── Buttons ───────────────────────────────────────────────────────── */
.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.4rem;
  font-size: .98rem;
  font-weight: 600;
  border-radius: var(--fc-radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, transform .12s;
}
.fc-btn--primary {
  background: var(--fc-ink);
  color: var(--fc-paper);
}
.fc-btn--primary:hover {
  background: var(--fc-accent);
  color: var(--fc-paper);
  transform: translateY(-1px);
}
.fc-btn--ghost {
  background: transparent;
  color: var(--fc-ink);
  border-color: var(--fc-rule);
}
.fc-btn--ghost:hover { border-color: var(--fc-ink); color: var(--fc-ink); }

/* Hero visual: einfaches Compass-Visual mit Logo */
.fc-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-hero__visual img {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 16px 32px rgba(30,58,95,.18));
}

/* ── Section ───────────────────────────────────────────────────────── */
.fc-section { padding: 4rem 1.5rem; }
.fc-section--alt { background: var(--fc-paper-2); }
.fc-section__inner { max-width: 1080px; margin: 0 auto; }
.fc-section__title {
  font-family: var(--fc-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--fc-ink);
}
.fc-section__lead {
  font-size: 1.1rem;
  color: var(--fc-ink-soft);
  max-width: 62ch;
  margin-bottom: 2.5rem;
}

/* ── Feature-Grid ──────────────────────────────────────────────────── */
.fc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.fc-feature {
  background: var(--fc-paper);
  border: 1px solid var(--fc-rule);
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.fc-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-shadow);
  border-color: var(--fc-accent);
}
.fc-feature__icon {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fc-deep), var(--fc-accent));
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.fc-feature h3 { font-size: 1.15rem; margin-bottom: .5rem; color: var(--fc-ink); font-weight: 700; }
.fc-feature p  { color: var(--fc-ink-soft); font-size: .95rem; line-height: 1.6; }

/* ── Steps (Methode-Slot) ─────────────────────────────────────────── */
.fc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: stepnum;
}
.fc-step {
  position: relative;
  padding: 1.5rem 1.4rem 1.5rem 3.4rem;
  background: var(--fc-paper);
  border-radius: 10px;
  border: 1px solid var(--fc-rule);
}
.fc-step::before {
  counter-increment: stepnum;
  content: counter(stepnum);
  position: absolute;
  left: 1.2rem; top: 1.4rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--fc-deep);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.fc-step h4 { font-size: 1rem; margin-bottom: .35rem; }
.fc-step p  { font-size: .88rem; color: var(--fc-ink-soft); line-height: 1.5; }

/* ── Forms ─────────────────────────────────────────────────────────── */
.fc-form { max-width: 440px; margin: 0 auto; }
.fc-field { margin-bottom: 1rem; }
.fc-field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fc-ink-soft);
  margin-bottom: .4rem;
}
.fc-field input, .fc-field select, .fc-field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--fc-rule);
  border-radius: var(--fc-radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--fc-paper);
}
.fc-field input:focus { outline: none; border-color: var(--fc-accent); }

.fc-notice {
  padding: 1rem 1.2rem;
  border-radius: var(--fc-radius);
  margin-bottom: 1rem;
  font-size: .94rem;
}
.fc-notice--info    { background: #eff6ff; border: 1px solid #bfdbfe; color: var(--fc-deep); }
.fc-notice--success { background: #ecfdf5; border: 1px solid #a7f3d0; color: var(--fc-success); }
.fc-notice--error   { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.fc-notice--warn    { background: #fffbeb; border: 1px solid #fde68a; color: var(--fc-warn); }
.fc-notice code { background: rgba(0,0,0,.06); padding: 1px 6px; border-radius: 4px; font-size: .9em; }

/* ── Card / Panel ──────────────────────────────────────────────────── */
.fc-card {
  background: var(--fc-paper);
  border: 1px solid var(--fc-rule);
  border-radius: 12px;
  padding: 1.6rem;
  margin-bottom: 1rem;
}
.fc-card h2 { font-size: 1.3rem; margin-bottom: .5rem; }
.fc-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }

/* ── Footer (DocMind-Stil) ────────────────────────────────────────── */
.fc-footer {
  background: linear-gradient(135deg, var(--fc-ink) 0%, var(--fc-deep) 100%);
  color: rgba(255,255,255,.9);
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.fc-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.fc-footer__col { display: flex; flex-direction: column; gap: .8rem; }
.fc-footer__brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: #fff;
  margin-bottom: .3rem;
}
.fc-footer__logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.fc-footer__brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.fc-footer__brand-text strong { font-size: 1.1rem; color: #fff; letter-spacing: -.3px; }
.fc-footer__brand-text small {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  font-weight: 500;
}
.fc-footer__desc {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  max-width: 32ch;
  margin-top: .4rem;
}
.fc-footer__heading {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .5rem;
}
.fc-footer__heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--fc-accent);
  border-radius: 1px;
}
.fc-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .9rem;
}
.fc-footer__links a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .15s;
}
.fc-footer__links a:hover { color: #fff; }

.fc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 1rem;
}
.fc-footer__bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.fc-footer__bottom-inner a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
}
.fc-footer__bottom-inner a:hover { color: #fff; }
.fc-footer__powered {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.fc-footer__powered strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
}

/* ── Legal-Pages ───────────────────────────────────────────────────── */
.fc-legal__h1 {
  font-family: var(--fc-serif);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: .5rem;
  color: var(--fc-ink);
}
.fc-legal__section {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--fc-rule);
}
.fc-legal__section:last-child { border-bottom: none; }
.fc-legal__section h2 {
  font-family: var(--fc-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -.3px;
  margin-bottom: .8rem;
  color: var(--fc-ink);
  display: flex;
  align-items: baseline;
  gap: .6rem;
}
.fc-legal__num {
  font-family: var(--fc-sans);
  font-size: .82rem;
  font-weight: 700;
  color: var(--fc-accent);
  padding: .15rem .55rem;
  background: #eff6ff;
  border-radius: 100px;
  letter-spacing: .5px;
}
.fc-legal__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fc-ink-soft);
}
.fc-legal__body p,
.fc-legal__body ul,
.fc-legal__body ol { margin-bottom: 1rem; }
.fc-legal__body ul, .fc-legal__body ol { padding-left: 1.5rem; }
.fc-legal__body strong { color: var(--fc-ink); }
.fc-legal__body a { color: var(--fc-accent); text-decoration: underline; }

/* ── Admin-spezifisch ──────────────────────────────────────────────── */
.fc-admin {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 80px);
}
.fc-admin__side {
  background: var(--fc-paper-2);
  border-right: 1px solid var(--fc-rule);
  padding: 1.8rem 1rem;
}
.fc-admin__side a {
  display: block;
  padding: .6rem .9rem;
  color: var(--fc-ink);
  border-radius: 6px;
  font-weight: 500;
  margin-bottom: .15rem;
}
.fc-admin__side a:hover { background: rgba(0,0,0,.04); }
.fc-admin__side a.is-active { background: var(--fc-ink); color: var(--fc-paper); }
.fc-admin__side h4 {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fc-ink-soft);
  margin: 1.4rem .9rem .4rem;
  font-weight: 700;
}
.fc-admin__body { padding: 2rem 2.5rem; }
.fc-tenant-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .8rem;
  background: var(--fc-paper);
  border: 1px solid var(--fc-rule);
  border-radius: 100px;
  font-size: .85rem;
  margin-bottom: 1.5rem;
}
.fc-tenant-pill strong { color: var(--fc-deep); }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .fc-hero__inner { grid-template-columns: 1fr; gap: 2rem; padding-top: 3rem; }
  .fc-hero__visual { display: none; }
  .fc-features, .fc-steps { grid-template-columns: 1fr; }
  .fc-footer__inner { grid-template-columns: 1fr; text-align: center; }
  .fc-footer__meta { text-align: center; }
  .fc-admin { grid-template-columns: 1fr; }
  .fc-admin__side { border-right: none; border-bottom: 1px solid var(--fc-rule); }
  .fc-nav { gap: .8rem; font-size: .88rem; }
  .fc-nav__user { display: none; }
}
