@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Syne:wght@700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy-950: #0a1628; --navy-900: #0f1e35; --navy-800: #142848;
  --navy-700: #1c3460; --navy-50: #f4f7fc;
  --cyan-500: #06b6d4; --cyan-400: #22d3ee; --cyan-300: #67e8f9; --cyan-100: #cffafe;
  --ink-900: #0b1220; --ink-700: #2a3447; --ink-500: #5a6478;
  --ink-400: #8090a8; --ink-300: #b6c0d0; --ink-200: #d8dfe8;
  --ink-100: #eef2f7; --ink-50: #f8fafc;
  --green-500: #10b981; --red-500: #ef4444; --amber-500: #f59e0b;
  --font-d: 'Syne', system-ui, sans-serif;
  --font-s: 'Inter', system-ui, sans-serif;
  --font-m: 'IBM Plex Mono', ui-monospace, monospace;
  --shadow: 0 4px 14px rgba(15,30,53,.08), 0 1px 3px rgba(15,30,53,.05);
  --shadow-lg: 0 20px 40px -12px rgba(15,30,53,.18), 0 8px 16px -8px rgba(15,30,53,.10);
  --radius: 10px; --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-s); color: var(--ink-900); background: #fff; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; }

/* ── Container ── */
.c { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Typography ── */
h1 { font-family: var(--font-d); font-size: clamp(24px, 2.2vw, 34px); line-height: 1.1; letter-spacing: -.01em; font-weight: 700; }
h2 { font-family: var(--font-d); font-size: clamp(20px, 1.9vw, 28px); line-height: 1.15; letter-spacing: -.01em; font-weight: 700; }
h3 { font-family: var(--font-s); font-size: 16px; line-height: 1.3; letter-spacing: 0; font-weight: 600; }
.lead { font-size: 17px; line-height: 1.6; color: var(--ink-500); }
.eye { font-family: var(--font-m); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--cyan-500); }
.mono { font-family: var(--font-m); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 20px; border-radius: var(--radius); border: 1px solid transparent; font-weight: 600; font-size: 14px; cursor: pointer; transition: all .14s; white-space: nowrap; font-family: var(--font-s); text-decoration: none; }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-sm { padding: 7px 13px; font-size: 13px; }
.btn-primary { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.btn-primary:hover { background: var(--navy-800); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-cyan { background: var(--cyan-500); color: var(--navy-950); border-color: var(--cyan-500); font-weight: 700; }
.btn-cyan:hover { background: var(--cyan-400); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink-900); border-color: var(--ink-200); }
.btn-ghost:hover { border-color: var(--ink-900); background: var(--ink-50); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.93); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--ink-100); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 64px; }
.logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-d); font-weight: 700; font-size: 17px; color: var(--ink-900); }
.logo-mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); display: grid; place-items: center; color: var(--cyan-400); font-family: var(--font-m); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.logo-inv { color: #fff; }
.nav { display: flex; gap: 2px; flex: 1; }
.nav a { padding: 7px 12px; border-radius: 7px; font-size: 13px; font-weight: 500; color: var(--ink-700); transition: all .1s; }
.nav a:hover, .nav a.act { background: var(--navy-50); color: var(--navy-900); }
.header-cta { display: flex; gap: 8px; align-items: center; }

/* ── Hero (B) ── */
.hero { background: radial-gradient(1100px 550px at 70% 0%, rgba(34,211,238,.17), transparent 55%), linear-gradient(180deg, #0a1628 0%, #0f1e35 100%); color: #fff; position: relative; overflow: hidden; padding: 72px 0 88px; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 80%); pointer-events: none; }
.hero .c { position: relative; z-index: 1; }
.badge { display: inline-flex; align-items: center; gap: 9px; padding: 5px 14px; border-radius: 999px; background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.25); color: var(--cyan-300); font-family: var(--font-m); font-size: 11px; letter-spacing: .06em; }

/* ── Stats bar ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: 13px; overflow: hidden; margin-top: 48px; }
.stat { background: rgba(15,30,53,.85); padding: 20px 22px; backdrop-filter: blur(8px); }
.stat-label { font-family: var(--font-m); font-size: 11px; color: var(--cyan-300); text-transform: uppercase; letter-spacing: .1em; }
.stat-val { font-family: var(--font-s); font-size: 24px; font-weight: 700; margin-top: 5px; letter-spacing: -.01em; }
.stat-sub { font-family: var(--font-m); font-size: 11px; color: var(--ink-400); margin-top: 3px; }

/* ── Domain search ── */
.domain-wrap { background: #fff; padding: 22px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--ink-100); margin-top: -36px; position: relative; z-index: 2; }
.domain-form { display: flex; gap: 8px; padding: 6px; background: var(--ink-50); border-radius: 11px; border: 1px solid var(--ink-100); }
.domain-form input { flex: 1; border: 0; outline: 0; padding: 10px 12px; font-family: var(--font-m); font-size: 14px; color: var(--ink-900); background: transparent; }
.domain-form input::placeholder { color: var(--ink-400); }
.domain-result { margin-top: 9px; padding: 12px 14px; border-radius: 9px; background: #fff; border: 1px solid var(--ink-100); display: flex; align-items: center; gap: 10px; font-size: 13px; animation: fadein .3s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }

/* ── Pills ── */
.pill-ok { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 999px; background: rgba(16,185,129,.1); color: #047857; font-family: var(--font-m); font-size: 11px; }
.pill-down { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 999px; background: rgba(239,68,68,.1); color: #b91c1c; font-family: var(--font-m); font-size: 11px; }
.dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-ok { background: var(--green-500); animation: pulse 2s infinite; }
.dot-down { background: var(--red-500); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); } 50% { box-shadow: 0 0 0 5px rgba(16,185,129,0); } }

/* ── Sections ── */
.sec { padding: 88px 0; }
.sec-sm { padding: 60px 0; }
.sec-dark { background: var(--ink-900); color: #fff; padding: 80px 0; }
.sec-navy { background: var(--navy-50); }
.tc { text-align: center; }

/* ── Grid ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ── Cards ── */
.card { background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg); padding: 26px; transition: all .18s; }
.card:hover { border-color: var(--ink-200); box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-icon { width: 42px; height: 42px; border-radius: 9px; background: var(--navy-50); color: var(--navy-700); display: grid; place-items: center; margin-bottom: 14px; }

/* ── Terminal ── */
.term { background: #0b1220; color: #c9d1d9; border-radius: 11px; padding: 18px 20px; font-family: var(--font-m); font-size: 12px; line-height: 1.7; border: 1px solid rgba(255,255,255,.06); box-shadow: 0 20px 40px -12px rgba(0,0,0,.4); }
.term .tg { color: #7ee787; } .term .tk { color: #ff7b72; } .term .tb { color: #79c0ff; }
.term .tc { color: #8b949e; } .term .ty { color: #ffa657; }
.term-bar { display: flex; gap: 5px; align-items: center; margin-bottom: 11px; padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,.08); }
.term-bar span { width: 10px; height: 10px; border-radius: 50%; }
.term-bar span:nth-child(1) { background: #ff5f57; }
.term-bar span:nth-child(2) { background: #febc2e; }
.term-bar span:nth-child(3) { background: #28c840; }
.term-ttl { margin-left: 8px; font-size: 10px; color: #8b949e; }

/* ── Dark strip ── */
.dark-strip { background: var(--ink-900); color: #fff; border-radius: var(--radius-lg); padding: 30px; }

/* ── Migration steps ── */
.mig-step { display: flex; gap: 14px; align-items: center; }
.mig-num { width: 30px; height: 30px; border-radius: 50%; background: var(--navy-900); color: var(--cyan-400); display: grid; place-items: center; font-family: var(--font-m); font-size: 12px; font-weight: 600; flex-shrink: 0; }

/* ── Plan (single) ── */
.plan-single { background: #fff; border: 2px solid var(--navy-900); border-radius: 18px; padding: 36px; max-width: 480px; margin: 0 auto; position: relative; box-shadow: var(--shadow-lg); }
.plan-badge { position: absolute; top: -12px; right: 22px; background: var(--cyan-500); color: var(--navy-950); padding: 4px 12px; border-radius: 999px; font-family: var(--font-m); font-size: 11px; font-weight: 600; letter-spacing: .06em; }
.plan-name { font-size: 12px; font-weight: 600; color: var(--ink-500); text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-m); }
.plan-price { font-family: var(--font-d); font-size: 52px; font-weight: 700; letter-spacing: -.03em; display: flex; align-items: baseline; gap: 6px; margin-top: 14px; }
.plan-price .cur { font-size: 22px; color: var(--ink-500); font-weight: 500; font-family: var(--font-s); }
.plan-price .per { font-size: 14px; font-weight: 500; color: var(--ink-500); font-family: var(--font-m); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; margin: 22px 0 26px; }
.plan-features li { display: flex; gap: 9px; align-items: flex-start; color: var(--ink-700); }

/* ── Period toggle ── */
.tog { display: inline-flex; padding: 3px; background: var(--ink-50); border: 1px solid var(--ink-100); border-radius: 999px; }
.tog button { padding: 7px 16px; border: 0; background: transparent; border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--ink-500); cursor: pointer; transition: all .13s; display: flex; align-items: center; gap: 7px; }
.tog button.act { background: #fff; color: var(--ink-900); box-shadow: 0 1px 2px rgba(15,30,53,.06); }
.save-pill { font-family: var(--font-m); font-size: 10px; padding: 2px 5px; border-radius: 3px; background: rgba(16,185,129,.15); color: #047857; }

/* ── Comparison table ── */
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cmp-table th { text-align: left; padding: 12px 14px; font-weight: 600; color: var(--ink-700); border-bottom: 1px solid var(--ink-100); }
.cmp-table td { padding: 13px 14px; border-bottom: 1px solid var(--ink-100); color: var(--ink-700); }
.cmp-table tr:hover td { background: var(--ink-50); }
.cmp-velox { background: var(--navy-50) !important; color: var(--cyan-500) !important; font-weight: 700 !important; }

/* ── Status widget ── */
.status-widget { background: #fff; border: 1px solid var(--ink-100); border-radius: 13px; padding: 18px; box-shadow: var(--shadow); }
.status-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--ink-100); font-size: 13px; }
.status-row:last-child { border-bottom: 0; }
.status-name { display: flex; gap: 9px; align-items: center; }
.sparkline { display: inline-flex; gap: 2px; align-items: flex-end; height: 16px; }
.sparkline span { display: block; width: 3px; background: var(--green-500); border-radius: 1px; }

/* ── Testimonials ── */
.test { background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg); padding: 26px; transition: all .18s; }
.test:hover { box-shadow: var(--shadow); border-color: var(--ink-200); }

/* ── CTA dark ── */
.cta-dark { background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%); color: #fff; padding: 88px 0; position: relative; overflow: hidden; }
.cta-dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 350px at 50% 100%, rgba(34,211,238,.11), transparent 60%); pointer-events: none; }

/* ── Footer ── */
.footer { background: var(--ink-900); color: var(--ink-400); padding: 56px 0 28px; }
.footer a { color: var(--ink-400); }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; font-family: var(--font-m); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; font-family: var(--font-m); color: var(--ink-400); }

/* ── Cookie ── */
.cookie { position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 480px; background: #fff; border: 1px solid var(--ink-100); border-radius: 13px; padding: 18px; box-shadow: var(--shadow-lg); z-index: 100; font-size: 13px; line-height: 1.5; color: var(--ink-700); animation: fadein .35s ease; }
.cookie h4 { color: var(--ink-900); font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.cookie-actions { display: flex; gap: 7px; margin-top: 12px; flex-wrap: wrap; }

/* ── Checkout ── */
.page-head { background: linear-gradient(180deg, #0a1628, #0f1e35); color: #fff; padding: 40px 0 36px; }
.stepper { display: flex; gap: 6px; align-items: center; margin-top: 20px; flex-wrap: wrap; }
.step-pill { display: flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 999px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); }
.step-pill.done { background: rgba(34,211,238,.12); border-color: rgba(34,211,238,.3); }
.step-pill.active { background: rgba(34,211,238,.18); border-color: rgba(34,211,238,.4); }
.step-num { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-m); font-size: 11px; font-weight: 600; background: rgba(255,255,255,.08); color: rgba(255,255,255,.4); }
.step-pill.done .step-num, .step-pill.active .step-num { background: var(--cyan-500); color: var(--navy-950); }
.step-pill.done .step-num { background: var(--cyan-400); }
.step-lbl { font-family: var(--font-m); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.45); }
.step-pill.done .step-lbl, .step-pill.active .step-lbl { color: #fff; }
.step-sep { flex: 0 1 18px; height: 1px; background: rgba(255,255,255,.1); }
.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: flex-start; padding: 40px 0 60px; }
.checkout-box { background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg); padding: 30px; }
.sidebar-box { background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg); padding: 26px; position: sticky; top: 84px; }
.inp-label { display: block; font-size: 12px; font-weight: 600; color: var(--ink-700); margin-bottom: 5px; font-family: var(--font-m); text-transform: uppercase; letter-spacing: .06em; }
.inp { width: 100%; padding: 10px 12px; border: 1px solid var(--ink-200); border-radius: 8px; font-family: var(--font-s); font-size: 14px; outline: 0; transition: border-color .12s; }
.inp:focus { border-color: var(--cyan-500); box-shadow: 0 0 0 3px rgba(6,182,212,.12); }
.inp-mono { font-family: var(--font-m); }
.g2-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.span2 { grid-column: span 2; }
.domain-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.dtab { padding: 10px; border-radius: 8px; border: 2px solid var(--ink-100); background: #fff; cursor: pointer; font-size: 13px; font-weight: 500; color: var(--ink-700); text-align: center; transition: all .13s; }
.dtab.act { border-color: var(--navy-900); background: var(--navy-50); color: var(--navy-900); }
.plan-radio { display: flex; gap: 14px; padding: 16px; border-radius: 11px; border: 2px solid var(--ink-100); cursor: pointer; transition: all .14s; text-align: left; width: 100%; align-items: center; margin-bottom: 10px; }
.plan-radio.sel { border-color: var(--cyan-500); background: rgba(6,182,212,.05); }
.radio-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--ink-200); flex-shrink: 0; display: grid; place-items: center; transition: all .14s; }
.plan-radio.sel .radio-dot { border-color: var(--cyan-500); background: var(--cyan-500); }
.radio-inner { width: 8px; height: 8px; border-radius: 50%; background: #fff; display: none; }
.plan-radio.sel .radio-inner { display: block; }
.bank-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bank-btn { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 9px; border: 2px solid var(--ink-100); background: #fff; cursor: pointer; text-align: left; transition: all .14s; width: 100%; }
.bank-btn:hover { border-color: var(--ink-200); background: var(--ink-50); }
.bank-btn.sel { border-color: var(--navy-900); background: var(--navy-50); }
.bank-logo { width: 34px; height: 34px; border-radius: 7px; display: grid; place-items: center; flex-shrink: 0; }
.bank-name { font-size: 13px; font-weight: 600; color: var(--ink-900); flex: 1; }
.bank-check { width: 16px; height: 16px; border-radius: 50%; background: var(--cyan-500); color: #fff; display: none; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.bank-btn.sel .bank-check { display: flex; }
.step-nav { display: flex; gap: 8px; margin-top: 22px; }
.step-nav .btn-primary { flex: 1; }
.sum-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; }
.sum-row.total { font-size: 17px; font-weight: 700; border-top: 1px solid var(--ink-200); margin-top: 6px; padding-top: 12px; }
.sum-row span:last-child { font-family: var(--font-m); }
.ideal-badge { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 9px; border: 2px solid var(--cyan-500); background: rgba(6,182,212,.06); margin-bottom: 16px; }
.accept-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-700); margin-bottom: 16px; line-height: 1.5; }
.accept-row a { color: var(--cyan-500); }
.hint { font-size: 13px; color: var(--ink-500); line-height: 1.5; margin-top: 10px; }

/* ── Bedankt ── */
.bedankt-hero { background: var(--navy-950); color: #fff; padding: 72px 0 56px; }
.check-circle { width: 72px; height: 72px; border-radius: 50%; background: rgba(16,185,129,.12); border: 2px solid var(--green-500); display: grid; place-items: center; margin: 24px auto 18px; }
.stage-row { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--ink-100); }
.stage-row:last-child { border-bottom: 0; }
.stage-circle { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.sc-done { background: var(--green-500); color: #fff; }
.sc-active { background: var(--cyan-500); color: #fff; }
.sc-pending { background: var(--ink-100); color: var(--ink-400); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .g2 { grid-template-columns: 1fr; gap: 32px; }
  .g3 { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .bank-grid { grid-template-columns: 1fr; }
}

/* ── Typografie override — Inter voor alle titels ── */
h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(22px, 1.8vw, 30px); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(18px, 1.5vw, 24px); font-weight: 600; line-height: 1.2; }
h3 { font-size: 16px; font-weight: 600; line-height: 1.3; }
.stat-val { font-family: 'Inter', system-ui, sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.plan-price { font-family: 'Inter', system-ui, sans-serif; letter-spacing: -0.02em; }
.pagetitle { font-family: 'Inter', system-ui, sans-serif; font-size: 26px; font-weight: 700; }
