:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #0e7490;
  --brand-2: #06b6d4;
  --ok: #16a34a;
  --warn: #d97706;
  --border: #dbe4ee;
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef6fb 0%, var(--bg) 25%, var(--bg) 100%);
  line-height: 1.5;
}

h1, h2, h3 { font-family: Manrope, Inter, sans-serif; line-height: 1.2; margin: 0 0 10px; }
h1 { font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 2.3vw, 2rem); }
h3 { font-size: 1.1rem; }
p { margin: 0 0 10px; }

.container { width: min(1080px, 92vw); margin: 0 auto; }
.narrow { width: min(720px, 92vw); }
.section { padding: 52px 0; }
.section.alt { background: rgba(255, 255, 255, 0.7); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(8px); background: rgba(248, 250, 252, 0.85); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.logo { font-family: Manrope, Inter, sans-serif; font-weight: 800; letter-spacing: -0.02em; }
.lang-link { color: var(--brand); text-decoration: none; font-weight: 600; }

.hero { position: relative; overflow: hidden; padding: 72px 0 56px; }
.hero-shape {
  position: absolute;
  inset: -140px -120px auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, rgba(14, 116, 144, 0.08) 45%, transparent 68%);
  pointer-events: none;
}
.hero-grid { display: grid; gap: 22px; grid-template-columns: 1.3fr 1fr; align-items: start; }
.kicker { color: var(--brand); font-weight: 700; letter-spacing: 0.01em; margin-bottom: 12px; }
.lead { color: #1e293b; font-size: 1.08rem; max-width: 64ch; }
.hero-cta { margin-top: 22px; }
.muted { color: var(--muted); font-size: 0.94rem; }

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 26px rgba(2, 12, 27, 0.06);
}
.hero-panel ul { margin: 0; padding-left: 18px; }
.hero-panel li { margin: 0 0 8px; }

.grid-3 { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 5px 18px rgba(2, 12, 27, 0.04);
}

.steps { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.steps li {
  position: relative;
  padding: 15px 16px 14px 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(14, 116, 144, 0.14);
  color: #0c4a6e;
  font-size: 0.86rem;
  font-weight: 700;
}
.steps { counter-reset: step; }

.trust-list { padding-left: 18px; margin: 10px 0 0; }
.trust-list li { margin: 0 0 8px; }

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin: 0 0 10px;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { margin-top: 10px; color: #334155; }

.cta { background: linear-gradient(135deg, #f0faff 0%, #eaf7f7 100%); border-top: 1px solid var(--border); }

.waitlist-form {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.waitlist-form label { display: grid; gap: 6px; font-weight: 600; font-size: 0.94rem; }
.waitlist-form input,
.waitlist-form select {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px;
  font-size: 1rem;
  background: #fff;
}
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.15);
}
.consent { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.consent input { margin-top: 3px; }
.error { color: #b91c1c; min-height: 1em; }
.form-message { min-height: 1.3em; font-weight: 600; }
.form-message.ok { color: var(--ok); }
.form-message.fail { color: #b91c1c; }

.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

.btn {
  appearance: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 1rem;
  cursor: pointer;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #0f766e 100%);
  border-color: #0f766e;
  color: #fff;
  font-weight: 700;
}
.btn:hover { filter: brightness(0.98); }
.btn:focus-visible { outline: 3px solid rgba(14, 116, 144, 0.24); outline-offset: 2px; }
.btn[disabled] { opacity: 0.7; cursor: not-allowed; }

.site-footer { border-top: 1px solid var(--border); padding: 20px 0 34px; }
.footer-inner { display: flex; gap: 14px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.site-footer nav { display: flex; gap: 12px; }
.linklike {
  border: 0;
  background: transparent;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  display: grid;
  place-items: center;
  padding: 16px;
  z-index: 50;
}

.modal-backdrop[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(520px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(2, 12, 27, 0.2);
  padding: 14px;
  z-index: 60;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0 0 10px; color: #334155; font-size: 0.94rem; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.modal {
  width: min(560px, 96vw);
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: 0 20px 60px rgba(2, 12, 27, 0.3);
}

.paid-variant .hero {
  background: radial-gradient(circle at 70% 0%, rgba(14, 116, 144, 0.14) 0%, transparent 45%);
}
.paid-variant .kicker {
  font-size: 1.1rem;
  color: #0c4a6e;
}

@media (max-width: 920px) {
  .hero-grid,
  .grid-3 { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; }
}

@media (max-width: 520px) {
  .section { padding: 40px 0; }
  .btn { width: 100%; }
}
