:root {
  --ink:      #12131a;
  --ink-2:    #3a3d4a;
  --muted:    #6d7180;
  --line:     #e6e8ef;
  --bg:       #ffffff;
  --bg-soft:  #f6f7fb;
  --accent:   #1f3a8a;
  --accent-2: #24509e;
  --ok:       #0a7d3b;
  --err:      #b3261e;
  --radius:   10px;
  --maxw:     860px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3 {
  line-height: 1.25;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 1rem; }
h1 span { color: var(--accent); }
h2 { font-size: 1.6rem; margin: 0 0 1rem; }
h3 { font-size: 1.1rem; margin: 0 0 0.4rem; }

p { margin: 0 0 1rem; color: var(--ink-2); }

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

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.lede {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 640px;
  margin-bottom: 1.75rem;
}
.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s ease;
}
.cta:hover { background: var(--accent-2); text-decoration: none; }
.micro {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Sections */
section { padding: 3rem 0; border-bottom: 1px solid var(--line); }

.problem .grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .problem .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.problem article {
  padding: 1.25rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.steps li {
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}

/* Garantie */
.garantie {
  background: var(--bg-soft);
}
.garantie p { max-width: 640px; }

/* Waitlist */
.waitlist form {
  max-width: 460px;
  margin-top: 1.25rem;
}
.waitlist label {
  display: block;
  margin-bottom: 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.waitlist label .opt {
  color: var(--muted);
  font-weight: 400;
}
.waitlist input {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
}
.waitlist input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 58, 138, 0.12);
}
.waitlist button {
  margin-top: 0.4rem;
  padding: 0.85rem 1.4rem;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.waitlist button:hover { background: var(--accent-2); }
#form-msg {
  margin-top: 0.9rem;
  min-height: 1.4em;
  font-size: 0.95rem;
  color: var(--muted);
}
#form-msg.ok  { color: var(--ok); }
#form-msg.err { color: var(--err); }

/* Footer */
footer {
  padding: 2rem 0;
  border-bottom: 0;
  background: #fff;
}
footer nav {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
footer nav a { color: var(--muted); }
footer nav span { margin: 0 0.4rem; }
.copy {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
