/* Money Timer — Website
   Dunkles, ruhiges Design im Stil der App (Schwarz/Weiß + dezenter Grün-Akzent). */

:root {
  --bg: #0a0a0b;
  --bg-soft: #111114;
  --surface: #16161a;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.20);
  --text: #ececee;
  --muted: #9a9aa4;
  --muted-2: #6d6d76;
  --accent: #34d399;
  --accent-dim: rgba(52, 211, 153, 0.14);
  --radius: 18px;
  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: rgba(10, 10, 11, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.2px;
}
.brand:hover { text-decoration: none; }
.brand .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 15px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(60% 80% at 80% -10%, var(--accent-dim), transparent 60%),
    radial-gradient(50% 60% at 0% 10%, rgba(255,255,255,0.04), transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: -1px;
}
.hero p.lead {
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 30ch;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 16px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { text-decoration: none; opacity: 0.9; }
.btn-ghost { border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { text-decoration: none; border-color: #fff; }

/* Phone mock */
.phone {
  justify-self: center;
  width: 260px; max-width: 72vw;
  aspect-ratio: 9 / 19.5;
  border-radius: 42px;
  background: #000;
  border: 2px solid rgba(255,255,255,0.14);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), inset 0 0 0 6px #050505;
  padding: 26px 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  position: relative;
}
.phone::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 22px; border-radius: 999px; background: #0d0d0d;
}
.phone .label { font-size: 11px; letter-spacing: 3px; color: var(--muted-2); }
.phone .time {
  font-size: 40px; font-weight: 300; letter-spacing: 1px;
  font-variant-numeric: tabular-nums; color: #fff;
}
.phone .money { font-size: 22px; color: rgba(255,255,255,0.8); font-variant-numeric: tabular-nums; }
.phone .start {
  margin-top: 22px;
  padding: 12px 40px; border-radius: 999px;
  border: 2px solid #fff; color: #fff; font-weight: 600; letter-spacing: 3px; font-size: 13px;
}

/* ---------- Sections ---------- */
section { padding: 68px 0; }
.section-title {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted-2); margin: 0 0 8px;
}
h2 { font-size: clamp(26px, 3.4vw, 34px); margin: 0 0 34px; letter-spacing: -0.5px; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.card .ic {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-dim); color: var(--accent);
  font-size: 22px; margin-bottom: 16px;
}
.card h3 { margin: 0 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* Privacy highlight band */
.band {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band .inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.band h2 { margin-bottom: 14px; }
.band p { color: var(--muted); font-size: 17px; margin: 0 0 10px; }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.checklist li::before {
  content: "✓"; color: var(--accent); font-weight: 700; margin-top: 1px;
}

/* ---------- Legal / content pages ---------- */
.page-head {
  padding: 56px 0 30px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(60% 100% at 0% 0%, rgba(255,255,255,0.04), transparent 70%);
}
.page-head h1 { font-size: clamp(30px, 5vw, 46px); margin: 0 0 8px; letter-spacing: -0.5px; }
.page-head .stand { color: var(--muted-2); font-size: 14px; }

.legal { padding: 44px 0 80px; }
.legal .content { max-width: 760px; }
.legal h2 { font-size: 22px; margin: 40px 0 12px; letter-spacing: -0.2px; }
.legal h3 { font-size: 17px; margin: 26px 0 8px; color: var(--text); }
.legal p, .legal li { color: #cfcfd6; font-size: 16.5px; }
.legal ul { padding-left: 20px; }
.legal li { margin: 6px 0; }
.legal .muted { color: var(--muted); }
.placeholder {
  background: var(--accent-dim);
  border: 1px dashed var(--accent);
  color: var(--text);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.95em;
}
.note {
  margin: 30px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  font-size: 15px;
}
.legal a { word-break: break-word; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--muted);
  font-size: 14.5px;
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  align-items: center;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero p.lead { max-width: none; }
  .phone { grid-row: 1; }
  .features { grid-template-columns: 1fr; }
  .band .inner { grid-template-columns: 1fr; gap: 24px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn) { display: none; }
}
