/* Nach landing page — static, no build step */

:root {
  --bg: #0b1220;
  --panel: #121a2b;
  --panel2: #0f172a;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --accent: #f59e0b;
  --accent2: #fbbf24;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.45;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(245, 158, 11, 0.14), transparent 55%),
    radial-gradient(900px 520px at 90% 20%, rgba(96, 165, 250, 0.14), transparent 60%),
    radial-gradient(900px 520px at 50% 110%, rgba(245, 158, 11, 0.10), transparent 55%),
    var(--bg);
}

a {
  color: inherit;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
  font-size: 0.95em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 0.15rem 0.35rem;
  border-radius: 0.4rem;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.75);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  min-width: 0;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(251, 191, 36, 0.95));
  color: #0b1220;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
}

.brand__logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.brand__name {
  font-weight: 850;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
}

.nav__link:hover {
  color: rgba(255, 255, 255, 0.92);
}

.nav__cta {
  text-decoration: none;
  font-weight: 850;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.nav__cta:hover {
  background: var(--accent2);
}

.hero {
  padding: 56px 0 22px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  width: fit-content;
}

h1 {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 3.7vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__accent {
  color: var(--accent2);
}

.lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.fineprint {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0.2px;
  transition: transform 0.06s ease, background 0.2s ease, border-color 0.2s ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--accent);
  color: #0b1220;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn--primary:hover {
  background: var(--accent2);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.glow {
  position: absolute;
  inset: -40px -40px -40px -40px;
  background:
    radial-gradient(520px 340px at 40% 40%, rgba(245, 158, 11, 0.18), transparent 60%),
    radial-gradient(520px 340px at 70% 60%, rgba(96, 165, 250, 0.12), transparent 62%);
  filter: blur(2px);
  pointer-events: none;
}

.phone {
  width: min(380px, 92vw);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  position: relative;
  padding: 12px;
}

.phone__notch {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 140px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.phone__screen {
  border-radius: 26px;
  background:
    radial-gradient(650px 380px at 30% 0%, rgba(251, 191, 36, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(18, 26, 43, 0.96), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 18px 16px 14px;
  min-height: 540px;
  overflow: hidden;
}

.card {
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  padding: 12px 12px;
}

.card__label {
  color: rgba(245, 158, 11, 0.95);
  font-weight: 850;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.card__value {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 700;
}

.bubble {
  width: fit-content;
  margin-top: 12px;
  border-radius: 14px;
  padding: 9px 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}

.bubble--right {
  margin-left: auto;
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.25);
}

.bubble--left {
  margin-right: auto;
}

.nachcard {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, 0.26);
  background: rgba(17, 26, 48, 0.72);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  padding: 14px 14px 12px;
}

.nachcard--muted {
  opacity: 0.82;
  margin-top: 10px;
}

.nachcard__badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: rgba(245, 158, 11, 0.95);
  font-weight: 900;
  font-size: 0.82rem;
}

.nachcard__title {
  margin-top: 10px;
  font-weight: 900;
  font-size: 1.05rem;
}

.nachcard__text {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  font-size: 0.95rem;
}

.nachcard__hint {
  margin-top: 10px;
  color: rgba(245, 158, 11, 0.92);
  font-weight: 900;
  font-size: 0.92rem;
}

.composer {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.composer__field {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.62);
  font-weight: 650;
  font-size: 0.92rem;
}

.composer__send {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.95);
  color: #0b1220;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.section--alt {
  background: rgba(255, 255, 255, 0.02);
}

.section__head h2 {
  margin: 0 0 8px;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 16px 14px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.steps {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.steps__num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: rgba(245, 158, 11, 0.95);
}

.steps__title {
  font-weight: 900;
}

.steps__text {
  color: var(--muted);
  margin-top: 4px;
}

.faq {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 900;
}

.faq__item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background:
    radial-gradient(700px 300px at 25% 25%, rgba(245, 158, 11, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.03);
  padding: 20px;
}

.download h2 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.download__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__meta {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 650;
  margin-top: 6px;
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 700;
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
  .nav__link {
    display: none;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .download {
    flex-direction: column;
    align-items: flex-start;
  }
  .download__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .container {
    width: min(1120px, calc(100% - 28px));
  }
}

