:root {
  /* Tokens gelijk aan de Lumo Server (server/desktop/style.css) voor dezelfde sfeer */
  --bg:      #0b0b0f;
  --bg-2:    #101119;
  --panel:   #101119;
  --panel-2: #151725;
  --panel-3: #1b1e31;
  --text:    #ffffff;
  --muted:   #b8b9d4;
  --dim:     #7d80a1;
  --line:    rgba(77, 124, 255, 0.2);
  --line-2:  rgba(77, 124, 255, 0.08);
  --cyan:    #00d9ff;
  --blue:    #4d7cff;
  --violet:  #7b5cff;
  --magenta: #d946ef;
  --glow-c:  rgba(0, 217, 255, 0.24);
  --glow-v:  rgba(123, 92, 255, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Topbar ─────────────────────────────────────────────────────────────── */

header.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 40px;
  border-bottom: 1px solid rgba(0, 217, 255, 0.18);
  background: rgba(11, 11, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 40px;
}

.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-mark strong {
  color: #fff;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.42),
    0 0 18px rgba(123, 92, 255, 0.18);
}

nav.site-nav {
  display: flex;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100vw - 520px);
  overflow-x: auto;
  scrollbar-width: none;
}

nav.site-nav::-webkit-scrollbar { display: none; }

nav.site-nav a {
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #aeb1cf;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

nav.site-nav a:hover { background: rgba(77,124,255,0.14); color: var(--text); }
nav.site-nav a.active {
  background: rgba(0,217,255,0.1);
  border-color: rgba(0,217,255,0.45);
  box-shadow: 0 0 14px rgba(0,217,255,0.12);
  color: var(--text);
}

.topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-btn {
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  transition: all 0.15s;
}

.nav-btn:hover { color: var(--text); border-color: rgba(80,90,180,0.4); }

.nav-btn-primary {
  background: rgba(0, 217, 255, 0.1);
  border-color: rgba(0, 217, 255, 0.3);
  color: var(--cyan);
}

.nav-btn-primary:hover { background: rgba(0, 217, 255, 0.18); }

/* ── Account dropdown ─────────────────────────────────────────────────────── */
.acct-wrap { position: relative; }

.acct-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 12px 0 6px;
  border: 1px solid rgba(0,217,255,0.25);
  border-radius: 8px;
  background: rgba(0,217,255,0.07);
  color: #eafcff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.acct-btn:hover { background: rgba(0,217,255,0.13); border-color: rgba(0,217,255,0.45); }

.acct-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4d7cff, #7b5cff);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
}

.acct-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.acct-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  background: #12121e;
  border: 1px solid rgba(0,217,255,0.18);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  z-index: 200;
}
.acct-menu.open { display: block; }

.acct-menu-header {
  padding: 14px 16px 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.acct-menu-name { font-size: 13px; font-weight: 600; color: #fff; }
.acct-menu-email { font-size: 12px; color: var(--muted); }

.acct-menu-divider { height: 1px; background: rgba(0,217,255,0.1); }

.acct-menu-item {
  display: block; width: 100%;
  padding: 10px 16px;
  border: 0; background: transparent;
  color: var(--muted); font-size: 13px;
  text-align: left; text-decoration: none;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.acct-menu-item:hover { background: rgba(255,255,255,0.05); color: #fff; }
.acct-menu-item--danger { color: #f87171; }
.acct-menu-item--danger:hover { background: rgba(248,113,113,0.08); color: #f87171; }

/* ── Noise + grid overlay ───────────────────────────────────────────────── */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,124,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,124,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 40px 80px;
  overflow: hidden;
}

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

.hero-glow-1 {
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(123,92,255,0.22) 0%, transparent 70%);
  top: 10%; left: 50%; transform: translateX(-50%);
}

.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,217,255,0.12) 0%, transparent 70%);
  top: 30%; left: 20%;
}

.hero-glow-3 {
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(217,70,239,0.1) 0%, transparent 70%);
  top: 20%; right: 15%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: blink 2.5s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin-bottom: 24px;
}

.hero h1 .grad {
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 40%, var(--violet) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--cyan);
  color: #030310;
  font-weight: 600;
  box-shadow: 0 0 32px rgba(0,217,255,0.25), 0 2px 8px rgba(0,0,0,0.3);
}
.btn-primary:hover { box-shadow: 0 0 48px rgba(0,217,255,0.4), 0 2px 12px rgba(0,0,0,0.4); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--muted);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--text); border-color: rgba(80,90,180,0.35); }

/* ── Divider ────────────────────────────────────────────────────────────── */

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
  margin: 0;
}

/* ── Section wrapper ────────────────────────────────────────────────────── */

section.block {
  position: relative;
  padding: 100px 40px;
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Module grid ────────────────────────────────────────────────────────── */

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 64px;
}

.module-tile {
  background: var(--panel);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
}

.module-tile:hover { background: var(--panel-2); }

.module-tile::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,217,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.module-tile:hover::before { opacity: 1; }

.module-tile h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

.module-tile p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

.feature-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-item h4 { font-size: 14.5px; font-weight: 500; margin-bottom: 4px; }
.feature-item p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Waitlist / CTA ─────────────────────────────────────────────────────── */

.cta-band {
  background: linear-gradient(135deg, var(--panel-2) 0%, var(--panel-3) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(123,92,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}

.cta-band p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  position: relative;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

.waitlist-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 18px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}

.waitlist-form input::placeholder { color: var(--dim); }
.waitlist-form input:focus { border-color: rgba(0,217,255,0.4); }

.waitlist-msg { margin-top: 12px; font-size: 13px; color: var(--cyan); min-height: 20px; position: relative; }

/* ── Footer ─────────────────────────────────────────────────────────────── */

footer {
  padding: 48px 40px;
  border-top: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-brand img { width: 24px; height: 24px; object-fit: contain; opacity: .7; }

.footer-brand span {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 300;
}

.footer-copy { font-size: 12.5px; color: var(--dim); }

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12.5px; color: var(--dim); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--muted); }

/* ── Auth pages ─────────────────────────────────────────────────────────── */

.auth-wrap {
  min-height: calc(100vh - 56px);
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.auth-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 44px;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(123,92,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.auth-card h2 { font-size: 22px; font-weight: 500; margin-bottom: 6px; position: relative; }
.auth-card > p { color: var(--muted); font-size: 14px; margin-bottom: 32px; position: relative; }

.auth-wrap-wide {
  align-items: flex-start;
  padding-top: 44px;
  padding-bottom: 44px;
}

.auth-card-wide {
  max-width: 760px;
}

.auth-kicker {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}

.form-section-title {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 28px 0 14px;
  position: relative;
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
  position: relative;
}

.field-span { grid-column: 1 / -1; }

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 14px 0 0;
  position: relative;
}

.check-row input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--cyan);
}

.auth-ok {
  display: none;
  color: #67e8f9;
  background: rgba(0,217,255,.07);
  border: 1px solid rgba(0,217,255,.22);
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 14px;
  position: relative;
}

.auth-text-btn,
.auth-link-button,
.auth-btn-link {
  border: 0;
  background: transparent;
  color: var(--cyan);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: none;
}

.auth-text-btn:hover,
.auth-link-button:hover,
.auth-btn-link:hover {
  text-decoration: underline;
}

.field { margin-bottom: 18px; position: relative; }
.field label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus { border-color: rgba(0,217,255,0.4); box-shadow: 0 0 0 3px rgba(0,217,255,0.07); }

.auth-btn {
  width: 100%;
  padding: 13px;
  background: var(--cyan);
  color: #030310;
  border: none;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: box-shadow 0.18s, transform 0.1s;
  box-shadow: 0 0 24px rgba(0,217,255,0.2);
}

.auth-btn:hover { box-shadow: 0 0 36px rgba(0,217,255,0.35); transform: translateY(-1px); }

.auth-err { color: #f87171; font-size: 13px; margin-top: 12px; min-height: 18px; }
.auth-link { text-align: center; margin-top: 22px; font-size: 13px; color: var(--muted); }
.auth-link a { color: var(--cyan); text-decoration: none; }
.auth-link a:hover { text-decoration: underline; }

/* ── Dashboard / Admin ───────────────────────────────────────────────────── */

.page {
  max-width: 1060px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  margin-top: 56px;
}

.page-head { margin-bottom: 40px; }
.page-head h1 { font-size: 30px; font-weight: 300; letter-spacing: -.01em; }
.page-head p { color: var(--muted); font-size: 14px; margin-top: 6px; }

.stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-bottom: 40px; }
.stat { background: var(--panel); border: 1px solid var(--line); border-radius: 11px; padding: 20px 22px; }
.stat span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.stat strong { display: block; font-size: 30px; font-weight: 300; color: var(--cyan); margin-top: 6px; }

.license-list { display: flex; flex-direction: column; gap: 10px; }

.license-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  transition: border-color 0.15s;
}

.license-card:hover { border-color: rgba(80,90,180,0.3); }
.license-key { font-family: 'Courier New', monospace; font-size: 14px; letter-spacing: .1em; color: var(--text); margin-bottom: 10px; }
.license-meta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; font-size: 12.5px; color: var(--muted); }
.license-features { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }

.feature-tag { background: rgba(77,124,255,.1); color: #7b9fff; border: 1px solid rgba(77,124,255,.2); border-radius: 4px; padding: 2px 8px; font-size: 11px; }

.empty { text-align: center; padding: 60px 20px; color: var(--muted); border: 1px dashed var(--line); border-radius: 12px; }
.empty p { margin-top: 8px; font-size: 14px; }

.copy-btn {
  background: none;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--dim);
  font-size: 11px;
  padding: 2px 9px;
  cursor: pointer;
  margin-left: 8px;
  transition: all .15s;
  vertical-align: middle;
}
.copy-btn:hover { border-color: rgba(0,217,255,.4); color: var(--cyan); }

/* Plan + status badges */
.badge {
  display: inline-block;
  border-radius: 4px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Tabs */
.tabs { display: flex; gap: 2px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.tab { padding: 10px 18px; border-radius: 8px 8px 0 0; font-size: 13.5px; color: var(--muted); cursor: pointer; border: none; background: none; transition: color .15s; }
.tab.active { color: var(--cyan); background: rgba(0,217,255,.06); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Admin tabel */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { text-align: left; color: var(--dim); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 0 12px 12px; border-bottom: 1px solid var(--line); font-weight: 500; }
.data-table td { padding: 13px 12px; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
.data-table tbody tr:hover td { background: rgba(80,90,180,.04); }
.mono { font-family: 'Courier New', monospace; font-size: 12px; letter-spacing: .06em; }

/* Admin formulier */
.create-form { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 24px 28px; margin-bottom: 24px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 14px; align-items: end; }
.form-field label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 7px; }
.form-field input, .form-field select { width: 100%; background: var(--panel-2); border: 1px solid var(--line); border-radius: 8px; padding: 10px 13px; color: var(--text); font-size: 13.5px; outline: none; transition: border-color .15s; }
.form-field input:focus, .form-field select:focus { border-color: rgba(0,217,255,.4); }
.form-field select option { background: var(--panel-2); }
.create-btn { padding: 10px 22px; background: var(--cyan); color: #030310; border: none; border-radius: 8px; font-size: 13.5px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: box-shadow .15s; box-shadow: 0 0 20px rgba(0,217,255,.15); }
.create-btn:hover { box-shadow: 0 0 30px rgba(0,217,255,.3); }
.create-btn:disabled { opacity: .5; cursor: not-allowed; }

.result-box { background: rgba(0,217,255,.06); border: 1px solid rgba(0,217,255,.25); border-radius: 8px; padding: 13px 18px; font-family: monospace; font-size: 14px; color: var(--cyan); display: none; margin-bottom: 18px; letter-spacing: .08em; }

.action-btn { padding: 4px 11px; border-radius: 5px; font-size: 11.5px; cursor: pointer; border: 1px solid; background: none; transition: background .15s; }
.btn-suspend  { border-color: rgba(249,115,22,.35); color: #f97316; }
.btn-suspend:hover { background: rgba(249,115,22,.08); }
.btn-revoke   { border-color: rgba(239,68,68,.35);  color: #ef4444; }
.btn-revoke:hover  { background: rgba(239,68,68,.08); }
.btn-activate { border-color: rgba(0,217,255,.35); color: var(--cyan); }
.btn-activate:hover { background: rgba(0,217,255,.07); }

/* Responsive */
@media (max-width: 900px) {
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .create-form { grid-template-columns: 1fr 1fr; }
  header.topbar { padding: 0 20px; }
  section.block { padding: 60px 20px; }
}

@media (max-width: 600px) {
  .modules-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .waitlist-form { flex-direction: column; }
  .create-form { grid-template-columns: 1fr; }
  .auth-wrap { padding: 22px; }
  .auth-card { padding: 30px 24px; }
  .auth-grid { grid-template-columns: 1fr; }
  .field-span { grid-column: auto; }
}
