/* ============================================================
   MonkeySuite – Landingpage
   ============================================================ */

/* ================================ Navbar ================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(16px) saturate(150%);
  background: rgba(7, 11, 24, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(7, 11, 24, 0.9); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.nav-links { display: flex; gap: 6px; margin-left: 12px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 500; color: var(--ink-muted);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.06); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-inner { gap: 12px; }
}

/* ================================= Hero ================================== */
.hero { padding: 92px 0 84px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: 44px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 8px;
  border-radius: var(--r-pill);
  background: rgba(109,94,252,.12);
  border: 1px solid var(--brand-line);
  font-size: 12.5px; font-weight: 600; color: #c4b5fd;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid; place-items: center; font-size: 11px;
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.grad {
  background: linear-gradient(105deg, #a78bfa 0%, #22d3ee 48%, #f472b6 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  font-size: 17.5px; line-height: 1.65; color: var(--ink-soft);
  max-width: 560px; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-facts { display: flex; gap: 26px; flex-wrap: wrap; color: var(--ink-muted); font-size: 13.5px; }
.hero-facts span { display: inline-flex; align-items: center; gap: 7px; }
.hero-facts b { color: var(--ink); font-weight: 600; }

/* Vorschau-Karte im Hero */
.hero-visual { position: relative; }
.mock {
  border-radius: var(--r-xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(165deg, rgba(22,32,61,.95), rgba(10,17,38,.95));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
  transition: transform .5s cubic-bezier(.2,.9,.3,1);
}
.mock:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg) translateY(-4px); }
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #475569; display: block; }
.mock-bar i:nth-child(1) { background: #fb7185; }
.mock-bar i:nth-child(2) { background: #fbbf24; }
.mock-bar i:nth-child(3) { background: #34d399; }
.mock-bar span { margin-left: 10px; font-size: 12px; color: var(--ink-faint); font-family: var(--mono); }
.mock-body { padding: 18px; display: grid; gap: 12px; }
.mock-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r-md); background: rgba(255,255,255,.04); border: 1px solid var(--line); }
.mock-row .ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 16px; background: rgba(109,94,252,.16); flex: none; }
.mock-row .t { font-size: 13.5px; font-weight: 600; }
.mock-row .s { font-size: 11.5px; color: var(--ink-faint); }
.mock-row .badge { margin-left: auto; }

/* ============================== Abschnitte =============================== */
section.band { padding: 84px 0; position: relative; }
section.band.alt { background: linear-gradient(180deg, transparent, rgba(109,94,252,.045), transparent); }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.sec-head .kicker {
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-2); margin-bottom: 14px;
}
.sec-head h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.03em; margin-bottom: 14px; }
.sec-head p { color: var(--ink-muted); font-size: 16px; line-height: 1.65; }

/* =============================== Module ================================== */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .modules { grid-template-columns: 1fr; } }

.module-card {
  position: relative;
  padding: 28px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.module-card::before {
  content: '';
  position: absolute; inset: -1px -1px auto -1px; height: 3px;
  background: linear-gradient(90deg, var(--m-c1, #6d5efc), var(--m-c2, #22d3ee));
  opacity: .85;
}
.module-card:hover { transform: translateY(-5px); border-color: var(--brand-line); box-shadow: var(--shadow-md); }
.module-card .m-ico {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center; font-size: 24px;
  background: linear-gradient(135deg, var(--m-c1, #6d5efc), var(--m-c2, #22d3ee));
  box-shadow: 0 10px 26px rgba(109,94,252,.35);
  margin-bottom: 18px;
}
.module-card h3 { font-size: 20px; margin-bottom: 8px; }
.module-card > p { color: var(--ink-muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; }
.module-card ul { display: grid; gap: 9px; }
.module-card li {
  display: flex; gap: 10px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5;
}
.module-card li::before { content: '✓'; color: var(--ok); font-weight: 800; flex: none; }

/* ============================== Workflow ================================= */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 940px) { .flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .flow { grid-template-columns: 1fr; } }
.flow-step {
  padding: 22px; border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  position: relative;
}
.flow-step .n {
  width: 30px; height: 30px; border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
  background: var(--brand-soft); color: #c4b5fd;
  border: 1px solid var(--brand-line);
  margin-bottom: 14px;
}
.flow-step h4 { font-size: 15.5px; margin-bottom: 7px; }
.flow-step p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.55; }

/* ============================== Features ================================= */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 940px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  padding: 20px; border-radius: var(--r-lg);
  border: 1px solid var(--line); background: rgba(255,255,255,.025);
  transition: background .18s, border-color .18s;
}
.feat:hover { background: rgba(255,255,255,.05); border-color: var(--line-strong); }
.feat .fi { font-size: 22px; margin-bottom: 12px; }
.feat h4 { font-size: 15px; margin-bottom: 6px; }
.feat p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.55; }

/* ================================ Preis ================================== */
.price-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: stretch; }
@media (max-width: 900px) { .price-wrap { grid-template-columns: 1fr; } }

.price-card {
  position: relative;
  padding: 34px;
  border-radius: var(--r-xl);
  border: 1px solid var(--brand-line);
  background: linear-gradient(165deg, rgba(109,94,252,.14), rgba(34,211,238,.06));
  box-shadow: var(--glow);
  overflow: hidden;
}
.price-card .ribbon {
  position: absolute; top: 20px; right: -34px;
  transform: rotate(38deg);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .1em;
  padding: 6px 42px;
}
.price-amount { display: flex; align-items: baseline; gap: 8px; margin: 8px 0 6px; }
.price-amount .num { font-size: 60px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price-amount .per { color: var(--ink-muted); font-size: 16px; }
.price-card ul { display: grid; gap: 11px; margin: 24px 0 28px; }
.price-card li { display: flex; gap: 11px; font-size: 14px; color: var(--ink-soft); }
.price-card li::before { content: '✓'; color: var(--ok); font-weight: 800; }

.pay-card { padding: 30px; }
.pay-card h3 { font-size: 18px; margin-bottom: 8px; }
.coins { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0; }
.coin {
  padding: 7px 13px; border-radius: var(--r-pill);
  border: 1px solid var(--line-strong); background: rgba(255,255,255,.04);
  font-size: 12.5px; font-weight: 700; font-family: var(--mono); color: var(--ink-soft);
}

/* ================================= FAQ =================================== */
.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: rgba(255,255,255,.025); overflow: hidden;
  transition: border-color .18s, background .18s;
}
.faq details[open] { border-color: var(--brand-line); background: rgba(109,94,252,.06); }
.faq summary {
  padding: 17px 20px; cursor: pointer; font-weight: 600; font-size: 15px;
  list-style: none; display: flex; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; margin-left: auto; font-size: 20px; color: var(--brand-2);
  transition: transform .22s; font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 20px 18px; color: var(--ink-muted); font-size: 14px; line-height: 1.65; }

/* =============================== CTA-Band ================================ */
.cta-band {
  text-align: center;
  padding: 62px 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--brand-line);
  background:
    radial-gradient(700px 260px at 50% 0%, rgba(109,94,252,.28), transparent 70%),
    linear-gradient(165deg, rgba(22,32,61,.9), rgba(10,17,38,.9));
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; letter-spacing: -0.03em; }
.cta-band p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 28px; font-size: 16px; }

/* ================================ Footer ================================= */
.foot { border-top: 1px solid var(--line); padding: 44px 0 34px; margin-top: 80px; }
.foot-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-muted); }
.foot-links a:hover { color: var(--ink); }
.foot-bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-faint); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ============================ Reveal-Animation =========================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.9,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================== Auth-Seite =============================== */
.auth-page { min-height: 100vh; display: grid; place-items: center; padding: 32px 20px; }
.auth-card {
  width: min(430px, 100%);
  padding: 34px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(165deg, rgba(22,32,61,.92), rgba(10,17,38,.94));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.auth-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  padding: 4px; border-radius: var(--r-md);
  background: rgba(8,13,28,.6); border: 1px solid var(--line);
  margin-bottom: 24px;
}
.auth-tabs button {
  padding: 9px; border: none; background: transparent; border-radius: var(--r-sm);
  color: var(--ink-muted); font-size: 13.5px; font-weight: 600; cursor: pointer;
  transition: all .16s;
}
.auth-tabs button.active { background: var(--brand-soft); color: #c4b5fd; box-shadow: inset 0 0 0 1px var(--brand-line); }
.auth-card h1 { font-size: 22px; margin-bottom: 6px; }
.auth-card .sub { color: var(--ink-muted); font-size: 13.5px; margin-bottom: 24px; }
.auth-err {
  padding: 11px 14px; border-radius: var(--r-md);
  background: var(--err-soft); border: 1px solid rgba(251,113,133,.4);
  color: #fecdd3; font-size: 13px;
}
.auth-foot { margin-top: 22px; text-align: center; font-size: 12.5px; color: var(--ink-faint); }
.auth-foot a { color: var(--brand-2); }
.pw-meter { height: 4px; border-radius: 99px; background: rgba(255,255,255,.09); overflow: hidden; }
.pw-meter i { display: block; height: 100%; width: 0; border-radius: 99px; transition: width .25s, background .25s; }
