:root {
  /* Shared brand tokens — kept identical to apps/jijkanmeer-site/styles.css
     and apps/workshop-site/index.html so the three products read as one
     family. Change all three together if these ever move. Retheme from the
     original dark palette to this light one: owner's explicit choice,
     2026-08-17 ("de workshop pagina en chat genie pagina voelen anders dan
     de hoofdpagina" — Chat Genie was the one dark-themed product in the
     family). */
  --bg: #fffaf5;
  --panel: #ffffff;
  --border: #eadfd8;
  --text: #241a33;
  --muted: #695e72;
  --accent: #ff7658;
  --accent-hover: #ad3927;
  --danger: #d64550;
  /* Rest of the shared family palette (apps/jijkanmeer-site/styles.css'
     --pink/--purple/--purple-deep/--gold/--teal/--cream) - the tokens
     above already alias 1:1 to that file's --ink/--cream-soft/--coral/
     --coral-deep/--muted/--line, just under this app's own names. */
  --pink: #f55391;
  --purple: #9b5de5;
  --purple-deep: #30224f;
  --gold: #ffc640;
  --teal: #2cbfa8;
  --cream: #fff7ed;
  --shadow-soft: 0 18px 50px rgba(66, 36, 80, 0.10);
  --shadow-card: 0 30px 80px rgba(74, 40, 91, 0.14);
  font-family: -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* Shared nav pattern - kept identical (same markup, same rules) across
   apps/jijkanmeer-site/styles.css, apps/workshop-site/index.html, and here,
   so the three products share one consistent navigation menu. Change all
   three together if this ever moves. */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(234, 223, 216, 0.82);
  background: rgba(255, 250, 245, 0.91);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 850;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: flex;
  width: 42px;
  height: 42px;
  padding: 4px;
  color: #ad3927;
  background: linear-gradient(145deg, #ffe6d7, #ffd1e2);
  border-radius: 14px;
}

.brand-mark svg { width: 100%; height: 100%; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 15px;
  border-radius: 999px;
  color: #51475a;
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-list a:hover {
  color: var(--text);
  background: #f3e9e4;
  transform: translateY(-1px);
}

.nav-list a[aria-current="page"] {
  padding-inline: 19px;
  color: #fff;
  background: var(--text);
}

.nav-list a[aria-current="page"]:hover {
  color: #fff;
  background: #30224f;
}

.product-menu {
  position: relative;
}

.product-menu details {
  position: relative;
}

.product-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 15px;
  border-radius: 999px;
  color: #51475a;
  font-size: 0.91rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.product-menu summary::-webkit-details-marker {
  display: none;
}

.product-menu summary:hover,
.product-menu details[open] summary {
  color: var(--text);
  background: #f3e9e4;
}

.current-product summary {
  padding-inline: 19px;
  color: #fff;
  background: var(--text);
}

.current-product summary:hover,
.current-product details[open] summary {
  color: #fff;
  background: #30224f;
}

.product-menu summary span {
  font-size: 0.8em;
  transition: transform 160ms ease;
}

.product-menu details[open] summary span {
  transform: rotate(180deg);
}

.product-dropdown {
  position: absolute;
  z-index: 40;
  top: calc(100% + 7px);
  right: 0;
  display: grid;
  min-width: 170px;
  padding: 6px;
  border: 1px solid rgba(56, 42, 82, 0.13);
  border-radius: 14px;
  background: #fffaf5;
  box-shadow: 0 16px 34px rgba(44, 29, 63, 0.18);
}

.product-dropdown a {
  justify-content: flex-start;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 9px;
  white-space: nowrap;
}

.product-dropdown a[aria-current="page"] {
  color: var(--text);
  background: #f3e9e4;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--text);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.lang-switch {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  margin-left: 4px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.lang-switch:hover {
  color: var(--text);
  border-color: var(--muted);
}

.wrap { max-width: 880px; margin: 0 auto; padding: 48px 24px; }
.narrow { max-width: 420px; }
.wrap.wide { max-width: 1180px; }

/* Marketing-page layout (homepage hero/benefits) - wider than .wrap, which
   stays as the narrow form-page container login/account/topup already
   use. Ported from apps/jijkanmeer-site/styles.css so the homepage reads
   as one family with jijkanmeer.nl/workshop.jijkanmeer.nl instead of its
   own bespoke layout. */
.shell { width: min(calc(100% - 48px), 1180px); margin-inline: auto; }

.section { padding: 104px 0; }

@media (max-width: 860px) {
  .section { padding: 84px 0; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 198, 64, 0.22), transparent 28%),
    linear-gradient(145deg, #fffaf4 0%, #fff0e7 45%, #f8edff 100%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-glow-one {
  top: 9%;
  left: -90px;
  width: 250px;
  height: 250px;
  background: rgba(255, 198, 64, 0.19);
  animation: glow-drift 10s ease-in-out infinite;
}

.hero-glow-two {
  top: 12%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(245, 83, 145, 0.12);
  animation: glow-drift 13s ease-in-out -4s infinite reverse;
}

@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 18px) scale(1.08); }
}

@keyframes hero-arrive {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  min-height: 640px;
  padding-top: 54px;
  padding-bottom: 72px;
  gap: 60px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}
.has-js .hero-copy { animation: hero-arrive 700ms cubic-bezier(.2, .85, .3, 1) both; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 8px 14px;
  color: var(--accent-hover);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 75, 49, 0.14);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(109, 56, 73, 0.06);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 118, 88, 0.13);
}

.hero-copy h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(115deg, var(--accent-hover), var(--pink) 48%, var(--purple) 95%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  font-size: 1.05rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(67, 37, 75, 0.10);
  transition: transform 180ms cubic-bezier(.2, .8, .3, 1.4), box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(67, 37, 75, 0.17);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-warm {
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--purple));
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 25px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  z-index: 1;
}
.has-js .hero-visual { animation: hero-arrive 760ms 120ms cubic-bezier(.2, .85, .3, 1) both; }

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  padding: 6px 16px;
  color: var(--accent-hover);
  background: #fdece3;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
    min-height: auto;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 48px;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
    justify-self: center;
    margin-inline: auto;
  }

  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }

  .hero-proof {
    display: grid;
    justify-content: start;
    max-width: 255px;
    margin-inline: auto;
    text-align: left;
  }
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-top: 24px;
  box-shadow: 0 20px 50px rgba(59, 34, 68, 0.08);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}
.btn:hover { background: var(--accent-hover); }
.btn.secondary { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn.google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #1f1f1f;
  border: 1px solid #dadce0;
}
.btn.google:hover { background: #f8f9fa; }
.btn.google::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FFC107' d='M43.611,20.083H42V20H24v8h11.303c-1.649,4.657-6.08,8-11.303,8c-6.627,0-12-5.373-12-12s5.373-12,12-12c3.059,0,5.842,1.154,7.961,3.039l5.657-5.657C34.046,6.053,29.268,4,24,4C12.955,4,4,12.955,4,24s8.955,20,20,20s20-8.955,20-20C44,22.659,43.862,21.35,43.611,20.083z'/%3E%3Cpath fill='%23FF3D00' d='M6.306,14.691l6.571,4.819C14.655,15.108,18.961,12,24,12c3.059,0,5.842,1.154,7.961,3.039l5.657-5.657C34.046,6.053,29.268,4,24,4C16.318,4,9.656,8.337,6.306,14.691z'/%3E%3Cpath fill='%234CAF50' d='M24,44c5.166,0,9.86-1.977,13.409-5.192l-6.19-5.238C29.211,35.091,26.715,36,24,36c-5.202,0-9.619-3.317-11.283-7.946l-6.522,5.025C9.505,39.556,16.227,44,24,44z'/%3E%3Cpath fill='%231976D2' d='M43.611,20.083H42V20H24v8h11.303c-0.792,2.237-2.231,4.166-4.087,5.571c0.001-0.001,0.002-0.001,0.003-0.002l6.19,5.238C36.971,39.205,44,34,44,24C44,22.659,43.862,21.35,43.611,20.083z'/%3E%3C/svg%3E");
}
.btn.danger { background: transparent; border: 1px solid var(--danger); color: var(--danger); }
.btn.danger:hover { background: var(--danger); color: #fff; }

.token-bar { background: #f1e6da; border-radius: 999px; height: 8px; overflow: hidden; margin: 12px 0 8px; }
.token-bar-fill { background: linear-gradient(90deg, var(--accent), #9b5de5); height: 100%; border-radius: 999px; transition: width 0.3s ease; }

form { display: flex; flex-direction: column; gap: 12px; }
label { font-size: 0.9rem; color: var(--muted); }
input[type=text], input[type=email], input[type=password] {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
}

.error { color: var(--danger); font-size: 0.9rem; }
.muted { color: var(--muted); font-size: 0.9rem; }

table { width: 100%; border-collapse: collapse; table-layout: fixed; }
th, td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--border); }

.compact-table { font-size: 0.88rem; }
.compact-table th:nth-child(1), .compact-table td:nth-child(1) { width: 21%; }
.compact-table th:nth-child(2), .compact-table td:nth-child(2) { width: 14%; }
.compact-table th:nth-child(3), .compact-table td:nth-child(3) { width: 9%; }
.compact-table th:nth-child(4), .compact-table td:nth-child(4) { width: 10%; }
.compact-table th:nth-child(5), .compact-table td:nth-child(5),
.compact-table th:nth-child(6), .compact-table td:nth-child(6),
.compact-table th:nth-child(7), .compact-table td:nth-child(7) { width: 11%; }
.compact-table th:nth-child(8), .compact-table td:nth-child(8) { width: 6%; }
.ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.badge-form { display: inline-block; margin: 0; }
.badge-btn {
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  cursor: pointer;
  background: #fff0bd;
  color: #9a5200;
}
.badge-btn.pro { background: #dff5ea; color: #1f7a55; }
.badge-btn.disabled { background: #fde3e3; color: #9d2f2f; }
.badge-btn.plain { background: #f1e6da; color: var(--text); }
.badge-btn:hover { opacity: 0.8; }

.icon-btn-sm {
  margin: 0;
  padding: 5px 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
}
.icon-btn-sm:hover { border-color: var(--danger); color: var(--danger); }
th { color: var(--muted); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; }

.badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 0.8rem; }
.badge.trial { background: #fff0bd; color: #9a5200; }
.badge.pro { background: #dff5ea; color: #1f7a55; }
.badge.disabled { background: #fde3e3; color: #9d2f2f; }
