/* ============================================================
   Domein te koop — Webparking B.V.
   Webparking 2.0 design system (v1.1, sept 2026): warme neutrals, magenta < 5%,
   Sentient (display/H1), Hanken Grotesk (body/UI/cijfers tnum), JetBrains Mono (alleen code).
   ============================================================ */

@import url("https://api.fontshare.com/v2/css?f[]=sentient@400,500,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --bg: #ffffff;
  --surface: #f8f7f5;
  --surface-muted: #f1efec;
  --border: #e6e3df;
  --ink: #0f0e0d;
  --ink-soft: #57544e;
  --ink-muted: #6c6963;
  --bg-dark: #0f0e0d;
  --surface-dark: #1a1817;
  --border-dark: #2a2825;
  --text-on-dark: #f8f7f5;
  --text-on-dark-muted: #a5a19a;
  --accent: #c70f49;
  --accent-hover: #a60c3d;
  --accent-soft: #f8e6ed;
  --accent-on-dark: #f0477d;
  --success: #0f7a4a;
  --warning: #b36b00;
  --font-sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Sentient", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace; /* alleen code */
  --hairline: #eae7e2;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow-md: 0 2px 8px rgba(15, 14, 13, 0.06);
  --shadow-hover: 0 4px 20px rgba(15, 14, 13, 0.09);
  --container: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover { color: var(--accent); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow { max-width: 680px; }

/* ---------- Overline / kicker ---------- */

.overline,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: lowercase;
  color: var(--ink-soft);
}

.overline::before,
.kicker::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--accent);
  flex: none;
}

.kicker .divider { color: var(--border); }

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
  display: inline-block;
  margin-right: 6px;
}
.status-available { background: var(--success); }
.status-reserved  { background: var(--warning); }
.status-sold      { background: var(--text-on-dark-muted); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { height: 24px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.header-nav .nav-link:hover { color: var(--accent); }

.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.lang-switch a.active {
  background: var(--ink);
  color: #ffffff;
}

.lang-switch a:not(.active):hover { color: var(--ink); }

/* ---------- Hero ---------- */

.hero { padding: 64px 0 0; }

.domain-name {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 7.5vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.hero-hub .domain-name { font-size: clamp(36px, 6vw, 64px); }

.tagline {
  margin: 0 0 40px;
  max-width: 720px;
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 40px;
  margin-bottom: 32px;
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

.price-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: lowercase;
  color: var(--ink-muted);
}

.price {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.response-note {
  margin: 0 0 64px;
  font-size: 14px;
  color: var(--ink-muted);
}

/* ---------- Facts strip ---------- */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border-top: 1px solid var(--border);
}

.fact {
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--border);
  margin-right: 24px;
}

.fact:last-child { border-right: 0; margin-right: 0; }

.fact-label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 500;
  text-transform: lowercase;
  color: var(--ink-muted);
}

.fact-value {
  margin: 0;
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

/* ---------- Knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 14, 13, 0.04);
}
.btn-primary:hover { background: var(--accent-hover); color: #ffffff; box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--ink); background: var(--surface); color: var(--ink); }

.btn-disabled {
  background: var(--surface-muted);
  color: var(--ink-muted);
  cursor: default;
}

.btn-block { width: 100%; }

.btn .arrow { flex: none; }

/* ---------- Secties ---------- */

.section { padding: 96px 0; }

.section-muted {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-dark { background: var(--bg-dark); }

.section-title {
  margin: 0 0 24px;
  font-size: clamp(24px, 4.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  max-width: 720px;
}

.description {
  max-width: 720px;
  margin: 0 0 48px;
  font-size: 17px;
  color: var(--ink-soft);
}

/* ---------- Use cases ---------- */

.use-cases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.use-cases li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.use-cases .check {
  flex: none;
  margin-top: 2px;
  color: var(--ink);
}

.use-cases span { font-size: 15px; line-height: 1.55; }

/* ---------- Koopproces ---------- */

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.step {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.step-num {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
}

.step h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- Trust (dark) ---------- */

.trust-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: start;
}

.section-dark .overline { color: var(--text-on-dark-muted); }
.section-dark .overline::before { background: var(--accent-on-dark); }

.trust-title {
  margin: 0;
  font-size: clamp(24px, 4.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #f5f2ee;
  max-width: 560px;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
}

.trust-list .shield {
  flex: none;
  margin-top: 2px;
  color: var(--accent-on-dark);
}

/* ---------- Formulier ---------- */

.form-intro {
  margin: 0 0 40px;
  color: var(--ink-soft);
}

.contact-form { margin: 0; display: grid; gap: 20px; }

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.field { display: grid; gap: 6px; margin: 0; }

.field label {
  font-size: 14px;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.field textarea { resize: vertical; line-height: 1.5; }

.bid-input {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  overflow: hidden;
}

.bid-input:focus-within {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.bid-currency {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  color: var(--ink-muted);
  background: var(--surface);
  border-right: 1px solid var(--border);
}

.bid-input input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 14px;
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  color: var(--ink);
  border: 0;
  background: transparent;
}

.bid-input input:focus { outline: none; }

.field-hint {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--ink-muted);
}

/* Honeypot: visueel weg, wel in de DOM voor bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  color: var(--accent-hover);
  font-size: 14px;
  margin: 0;
}

.form-privacy {
  margin: 0;
  font-size: 13px;
  color: var(--ink-muted);
}

.notice {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin: 0 0 24px;
  font-weight: 500;
  font-size: 15px;
}

.notice-success {
  background: #e4f1ea;
  border: 1px solid #bfdccb;
  color: #0f7a4a;
}

.notice-error {
  background: var(--accent-soft);
  border: 1px solid #eec4d1;
  color: var(--accent-hover);
}

/* ---------- Hub cards ---------- */

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.card-status {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 500;
  text-transform: lowercase;
  color: var(--ink-muted);
}

.card-domain {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.card-tagline {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-price {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  font-weight: 500;
}

/* ---------- Sticky CTA ---------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(15, 14, 13, 0.08);
  transform: translateY(100%);
  transition: transform 200ms ease-out;
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 14px;
}

.sticky-domain {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-domain .name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}

.sticky-domain .price {
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- Footer (dark) ---------- */

.site-footer {
  background: var(--bg-dark);
  padding: 64px 0 40px;
  color: var(--text-on-dark-muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-tagline {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--text-on-dark-muted);
}

.footer-brand img { height: 20px; width: auto; opacity: 0.85; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 14px;
}

.footer-links a { color: var(--text-on-dark); }
.footer-links a:hover { color: var(--accent-on-dark); }

.footer-legal {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-on-dark-muted);
}

.footer-legal p { margin: 0; }

/* ---------- Breder scherm ---------- */

@media (min-width: 640px) {
  .container { padding: 0 32px; }
  .use-cases { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 96px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (min-width: 1025px) {
  .section { padding: 128px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
