/* ============================================================
   havelo — Website / Landing  ·  nutzt havelo-tokens.css
   Responsive: Desktop ≥1024 · Tablet 640–1023 · Mobile <640
   ============================================================ */

* , *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }

.wrap { max-width: 1200px; margin:0 auto; padding:0 32px; }

/* ---------- buttons ---------- */
.btn {
  font-family:var(--font-body); font-weight:700; font-size:15px;
  min-height:48px; padding:0 24px; border-radius:var(--radius-md);
  border:none; cursor:pointer; display:inline-flex; align-items:center; gap:9px;
  transition: all var(--transition-base); white-space:nowrap;
}
.btn-primary { background:var(--ember); color:var(--cream); box-shadow:var(--shadow-sm); }
.btn-primary:hover { background:var(--ember-d); transform:translateY(-1px); box-shadow:var(--shadow-md); }
.btn-ghost { background:transparent; color:var(--slate); border:1.5px solid var(--slate-40); }
.btn-ghost:hover { border-color:var(--slate); background:var(--slate-06); }
.btn-light { background:var(--cream); color:var(--slate); }
.btn-light:hover { background:#fff; }
.btn-sm { min-height:40px; font-size:14px; padding:0 18px; }
a.btn { text-decoration:none; display:inline-flex; align-items:center; justify-content:center; }

/* ---------- nav ---------- */
.nav {
  position:sticky; top:0; z-index:50;
  background: rgba(251,246,237,0.86);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--slate-12);
}
.nav-inner { display:flex; align-items:center; gap:28px; height:74px; }
.nav .logo { height:34px; }
.nav-links { display:flex; gap:26px; margin-left:8px; }
.nav-links a { font-weight:600; font-size:15px; color:var(--slate-70); transition:color var(--transition-fast); }
.nav-links a:hover { color:var(--ember); }
.nav-cta { margin-left:auto; display:flex; align-items:center; gap:14px; }
.nav-cta .signin { font-weight:700; font-size:15px; }
.nav-burger { display:none; margin-left:auto; width:44px; height:44px; border:none; background:transparent; cursor:pointer; flex-direction:column; gap:5px; justify-content:center; align-items:center; }
.nav-burger span { width:24px; height:2px; background:var(--slate); border-radius:2px; }

/* ---------- hero ---------- */
.hero { position:relative; overflow:hidden; padding:72px 0 84px; }
.hero-grid { display:grid; grid-template-columns: 1.05fr 0.95fr; gap:48px; align-items:center; }
.hero .eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--ember); background:rgba(200,92,36,0.1); border-radius:var(--radius-full);
  padding:6px 14px; font-weight:500; margin-bottom:22px;
}
.hero h1 {
  font-family:var(--font-display); font-weight:700; font-size:62px; line-height:1.03;
  letter-spacing:-0.02em; color:var(--slate);
}
.hero h1 .ember { color:var(--ember); }
.hero p.sub { font-size:19px; line-height:1.6; color:var(--slate-70); max-width:30em; margin-top:22px; }
.hero-actions { display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.hero-trust { display:flex; gap:22px; margin-top:30px; flex-wrap:wrap; }
.hero-trust span { display:inline-flex; align-items:center; gap:8px; font-size:13.5px; color:var(--slate-55); font-weight:600; }
.hero-trust svg { width:18px; height:18px; color:var(--sage); }

/* hero visual */
.hero-visual { position:relative; display:flex; justify-content:center; align-items:center; min-height:440px; }
.hero-arc { position:absolute; border-radius:50%; border:3px solid var(--gold); }
.hero-icon {
  width:200px; height:200px; border-radius:44px; box-shadow:var(--shadow-xl); position:relative; z-index:2;
}
.hero-spark { position:absolute; background:var(--gold);
  clip-path: polygon(50% 0%,60% 40%,100% 50%,60% 60%,50% 100%,40% 60%,0% 50%,40% 40%); }
.float-card {
  position:absolute; z-index:3; background:#fff; border-radius:var(--radius-lg);
  box-shadow:var(--shadow-xl); padding:14px 16px; width:230px;
}
.float-card .fc-head { display:flex; align-items:center; gap:9px; margin-bottom:9px; }
.float-card .fc-ic { width:30px; height:30px; border-radius:var(--radius-md); display:grid; place-items:center; flex-shrink:0; }
.float-card .fc-ic svg { width:16px; height:16px; }
.float-card .fc-title { font-weight:700; font-size:13px; }
.float-card .fc-row { display:flex; align-items:center; gap:8px; font-size:12.5px; padding:3px 0; color:var(--slate-70); }
.float-card .fc-box { width:15px; height:15px; border-radius:4px; border:1.5px solid var(--slate-40); flex-shrink:0; }
.float-card .fc-row.done .fc-box { background:var(--sage); border-color:var(--sage); }
.float-card .fc-price { margin-left:auto; font-family:var(--font-mono); font-size:11px; color:var(--slate-55); }
.float-top { top:30px; right:-6px; }
.float-bot { bottom:34px; left:-10px; width:248px; }
.float-bot .speech-mini { font-family:var(--font-display); font-style:italic; font-size:14px; color:var(--slate); line-height:1.4; }
.float-bot .by { font-family:var(--font-body); font-style:normal; font-weight:700; font-size:11px; color:var(--ember); margin-top:6px; display:block; }

/* ---------- trust band ---------- */
.band { background:var(--slate); color:var(--cream); padding:18px 0; }
.band-inner { display:flex; justify-content:center; gap:42px; flex-wrap:wrap; }
.band-inner span { display:inline-flex; align-items:center; gap:9px; font-size:14px; font-weight:600; color:rgba(251,246,237,0.86); }
.band-inner svg { width:18px; height:18px; color:var(--gold); }

/* ---------- generic section ---------- */
.section { padding:84px 0; }
.section.alt { background:var(--sand); }
.sec-eyebrow { font-family:var(--font-mono); font-size:12.5px; letter-spacing:0.12em; text-transform:uppercase; color:var(--ember); font-weight:500; text-align:center; }
.sec-title { font-family:var(--font-display); font-weight:600; font-size:42px; line-height:1.1; letter-spacing:-0.01em; color:var(--slate); text-align:center; margin-top:12px; }
.sec-title .ember { color:var(--ember); }
.sec-intro { font-size:18px; color:var(--slate-70); text-align:center; max-width:34em; margin:16px auto 0; line-height:1.6; }

/* ---------- mental-load ---------- */
.load-cloud { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; max-width:760px; margin:36px auto 0; }
.load-chip { background:#fff; border:1px solid var(--slate-12); border-radius:var(--radius-full); padding:11px 20px; font-size:15px; color:var(--slate-70); box-shadow:var(--shadow-sm); }
.load-chip.big { font-weight:700; color:var(--slate); font-size:16.5px; }

/* ---------- module grid ---------- */
.mod-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:48px; }
.mcard {
  position:relative; background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-md);
  padding:24px 24px 22px 26px; overflow:hidden; transition:transform var(--transition-base), box-shadow var(--transition-base);
}
.mcard::before { content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--mc); }
.mcard:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.mcard .m-ic { width:46px; height:46px; border-radius:var(--radius-md); display:grid; place-items:center; background:var(--mc-soft); margin-bottom:15px; }
.mcard .m-ic svg { width:24px; height:24px; }
.mcard h3 { font-family:var(--font-body); font-weight:700; font-size:19px; margin-bottom:6px; }
.mcard p { font-size:14.5px; color:var(--slate-70); line-height:1.55; }
.mcard .soon { display:inline-block; margin-top:12px; font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:var(--slate-55); background:var(--sand); border-radius:var(--radius-full); padding:3px 10px; }

/* ---------- archie band ---------- */
.archie-sec { background:var(--slate); color:var(--cream); padding:84px 0; position:relative; overflow:hidden; }
.archie-grid { display:grid; grid-template-columns:280px 1fr; gap:48px; align-items:center; position:relative; z-index:2; }
.archie-portrait { width:240px; height:240px; border-radius:40px; box-shadow:var(--shadow-xl); }
.archie-sec h2 { font-family:var(--font-display); font-weight:600; font-size:40px; line-height:1.1; color:var(--cream); }
.archie-sec h2 .gold { color:var(--gold); }
.archie-sec p { font-size:18px; line-height:1.65; color:rgba(251,246,237,0.82); max-width:34em; margin-top:18px; }
.archie-sec p b { color:var(--cream); }

/* ---------- pricing ---------- */
.price-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; align-items:stretch; max-width:1000px; margin-left:auto; margin-right:auto; }
.ptier { background:#fff; border:1px solid var(--slate-12); border-radius:var(--radius-lg); padding:30px 26px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; }
.ptier.feat { border:2px solid var(--ember); box-shadow:var(--shadow-lg); position:relative; }
.ptier.feat .badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--ember); color:var(--cream); font-size:11px; font-weight:700; border-radius:var(--radius-full); padding:4px 14px; }
.ptier .pname { font-family:var(--font-display); font-weight:600; font-size:27px; }
.ptier .pprice { font-family:var(--font-mono); font-weight:600; font-size:30px; color:var(--ember); margin:10px 0 4px; }
.ptier .pprice small { font-size:13px; color:var(--slate-55); font-weight:400; }
.ptier ul { list-style:none; margin:18px 0 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.ptier li { font-size:14px; color:var(--slate-70); padding-left:24px; position:relative; line-height:1.4; }
.ptier li::before { content:"✓"; position:absolute; left:0; color:var(--sage); font-weight:800; }
.ptier .btn { width:100%; justify-content:center; }

/* ---------- final CTA ---------- */
.final { text-align:center; padding:96px 0; position:relative; overflow:hidden; }
.final h2 { font-family:var(--font-display); font-weight:700; font-size:52px; line-height:1.06; letter-spacing:-0.01em; color:var(--slate); }
.final h2 .ember { color:var(--ember); }
.final p { font-size:19px; color:var(--slate-70); margin:18px auto 0; max-width:30em; }
.final .hero-actions { justify-content:center; }
.final-arc { position:absolute; border-radius:50%; border:3px solid var(--gold); opacity:0.2; }

/* ---------- footer ---------- */
.footer { background:var(--slate); color:rgba(251,246,237,0.7); padding:56px 0 40px; }
.footer-top { display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.footer .logo { height:30px; margin-bottom:14px; }
.footer-tag { font-size:14px; max-width:24em; line-height:1.6; }
.footer-cols { display:flex; gap:56px; flex-wrap:wrap; }
.footer-col h5 { font-size:12px; text-transform:uppercase; letter-spacing:0.08em; color:var(--gold); margin-bottom:14px; font-weight:700; }
.footer-col a { display:block; font-size:14px; padding:5px 0; color:rgba(251,246,237,0.7); }
.footer-col a:hover { color:var(--cream); }
.footer-bottom { margin-top:44px; padding-top:24px; border-top:1px solid rgba(251,246,237,0.14); display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; font-size:12.5px; color:rgba(251,246,237,0.5); font-family:var(--font-mono); }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width:1023px) {
  .wrap { padding:0 28px; }
  .hero { padding:52px 0 64px; }
  .hero-grid { grid-template-columns:1fr; gap:44px; }
  .hero-visual { min-height:380px; order:-1; }
  .hero h1 { font-size:50px; }
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .nav-burger { display:flex; margin-left:auto; }
  .mod-grid { grid-template-columns:repeat(2,1fr); }
  .sec-title { font-size:36px; }
  .archie-grid { grid-template-columns:200px 1fr; gap:34px; }
  .archie-portrait { width:180px; height:180px; }
  .price-grid { grid-template-columns:repeat(3,1fr); gap:14px; }
  .final h2 { font-size:42px; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width:639px) {
  .wrap { padding:0 20px; }
  .nav-inner { height:64px; gap:0; }
  .nav .logo { height:30px; }
  .hero { padding:36px 0 52px; }
  .hero h1 { font-size:38px; }
  .hero p.sub { font-size:17px; }
  .hero-actions .btn { flex:1; justify-content:center; }
  .hero-visual { min-height:330px; }
  .hero-icon { width:150px; height:150px; border-radius:34px; }
  .float-card { width:200px; }
  .float-top { top:8px; right:-8px; }
  .float-bot { bottom:14px; left:-8px; width:212px; }
  .band-inner { gap:14px 26px; }
  .band-inner span { font-size:12.5px; }
  .section { padding:56px 0; }
  .archie-sec { padding:56px 0; }
  .sec-title { font-size:29px; }
  .sec-intro { font-size:16px; }
  .load-chip { font-size:13.5px; padding:9px 15px; }
  .load-chip.big { font-size:14.5px; }
  .mod-grid { grid-template-columns:1fr; gap:14px; margin-top:34px; }
  .archie-grid { grid-template-columns:1fr; gap:24px; text-align:center; }
  .archie-portrait { width:150px; height:150px; margin:0 auto; }
  .archie-sec h2 { font-size:30px; }
  .archie-sec p { font-size:16px; margin-left:auto; margin-right:auto; }
  .price-grid { grid-template-columns:1fr; gap:18px; }
  .final { padding:64px 0; }
  .final h2 { font-size:34px; }
  .footer-top { flex-direction:column; gap:32px; }
  .footer-cols { gap:36px; }
}
