:root {
  /* Forfacts brand palette */
  --pink: #E6007E;
  --pink-dark: #B80065;
  --ink: #212529;
  --bg: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "filson-pro", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Decorative brand shapes */
.shape {
  position: fixed;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.shape-tr {
  top: -6rem;
  right: -6rem;
  width: 20rem;
  opacity: 0.06;
}
.shape-bl {
  bottom: -7rem;
  left: -6rem;
  width: 24rem;
  opacity: 0.05;
}

/* Header */
.topbar {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
}

.brands {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo { height: 48px; width: auto; display: block; }

.brand-divider {
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.12);
}

.topbar-account {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.tagline {
  color: rgba(33, 37, 41, 0.5);
  font-size: 12.5px;
}

/* Hero */
.hero {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 72px 24px 48px;
}

.hero-inner {
  width: 100%;
  max-width: 980px;
  animation: fade-in 0.4s ease-out;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink);
}

.hero-title {
  margin: 14px 0 0;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 640px;
}

/* Secties */
.section {
  margin-top: 40px;
}

.section + .section {
  margin-top: 52px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-note {
  color: rgba(33, 37, 41, 0.6);
  font-size: 14.5px;
  line-height: 1.55;
  margin: -6px 0 18px;
  max-width: 580px;
}

/* Demo grid */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}

.demo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: 0 18px 40px rgba(230, 0, 126, 0.14);
}

/* Vergrendelde (uitgelogde) cards */
.demo-card.locked {
  cursor: default;
  background: rgba(0, 0, 0, 0.015);
  border-style: dashed;
}

.demo-card.locked:hover {
  transform: none;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.lock-note {
  color: rgba(33, 37, 41, 0.45);
}

.lock-note svg {
  width: 15px;
  height: 15px;
}

.demo-badge {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  background: rgba(230, 0, 126, 0.08);
}

.demo-card h3 {
  margin: 16px 0 6px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.demo-card p {
  margin: 0 0 22px;
  color: rgba(33, 37, 41, 0.6);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}

.demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.demo-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease;
}

.demo-card:hover .demo-cta {
  color: var(--pink-dark);
}

.demo-card:hover .demo-cta svg {
  transform: translateX(3px);
}

/* Footer */
.footer {
  position: relative;
  z-index: 10;
  text-align: center;
  color: rgba(33, 37, 41, 0.4);
  font-size: 12px;
  padding: 22px;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .hero { padding-top: 48px; }
  .hero-title { font-size: 30px; }
}
