/* ============================================================
   Wizkid — Harbor palette (light mode, production default)
   ============================================================ */

:root {
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --max: 1200px;

  /* Harbor brand */
  --brand-50:  #EEF4FD;
  --brand-100: #D7E5FA;
  --brand-200: #AFCAF4;
  --brand-300: #7FA9EC;
  --brand-400: #4F87E1;
  --brand-500: #2F6FE8;
  --brand-600: #1F58C4;
  --brand-700: #1A4699;
  --brand-800: #173A7C;
  --brand-900: #142E60;

  /* Accent */
  --accent-500: #D9A441;
  --accent-600: #B8851F;

  /* Semantic */
  --success-500: #1F8A5B;
  --success-100: #DCF1E6;
  --warning-500: #C77A14;
  --warning-100: #FBEBD2;
  --danger-500:  #C8362E;
  --danger-100:  #FADEDB;
  --info-500:    #2F6FE8;
  --info-100:    #DCE8FB;

  /* Neutrals */
  --bg:           #F6F8FB;
  --surface:      #FFFFFF;
  --surface-alt:  #F0F3F8;
  --border:       #E2E7EE;
  --border-strong:#CBD2DC;
  --text:         #0F1A2B;
  --text-muted:   #516175;
  --text-subtle:  #7A879A;
}

/* ============================================================
   Reset / Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--bg);
  color: var(--text);
}
a { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input  { font-family: inherit; }

/* ============================================================
   Navigation
   ============================================================ */
.wk-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.wk-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.wk-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 17px; letter-spacing: -0.01em;
  color: var(--text);
}
.wk-logo-mark {
  width: 30px; height: 30px;
  display: block;
  flex-shrink: 0;
}
.wk-nav-links {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 500;
}
.wk-nav-links a { color: var(--text-muted); }
.wk-nav-links a:hover { opacity: 0.7; }
.wk-nav-actions { display: flex; align-items: center; gap: 12px; }

.wk-lang {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 12px; font-weight: 600;
}
.wk-lang a {
  display: block;
  padding: 6px 10px;
  color: var(--text-muted);
  transition: background 0.15s;
  font-weight: 600;
}
.wk-lang a.active {
  background: var(--brand-500);
  color: #fff;
}

.wk-nav-cta {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  background: var(--brand-500);
  color: #fff;
  transition: opacity 0.15s;
}
.wk-nav-cta:hover { opacity: 0.88; }

/* ============================================================
   Hero
   ============================================================ */
.wk-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px 60px;
}
.wk-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.wk-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  margin-bottom: 24px;
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-200);
}
.wk-hero-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--brand-500);
  animation: wkpulse 2s infinite;
}
@keyframes wkpulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.wk-hero-eyebrow {
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-subtle);
}
.wk-hero-title {
  font-size: 56px; line-height: 1.05;
  letter-spacing: -0.03em; font-weight: 600;
  margin: 0 0 20px;
  color: var(--text);
  text-wrap: balance;
}
.wk-hero-sub {
  font-size: 18px; line-height: 1.55;
  margin: 0 0 32px;
  max-width: 540px;
  color: var(--text-muted);
  text-wrap: pretty;
}
.wk-hero-cta-row {
  display: flex; align-items: center;
  gap: 16px; margin-bottom: 28px;
  flex-wrap: wrap;
}
.wk-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 15px; font-weight: 500;
  border: none;
  background: var(--brand-500);
  color: #fff;
  transition: transform 0.15s;
}
.wk-btn-primary:hover { transform: translateY(-1px); }
.wk-btn-arrow { transition: transform 0.2s; display: inline-block; }
.wk-btn-primary:hover .wk-btn-arrow { transform: translateX(3px); }

.wk-cta-sub { color: var(--text-muted); font-size: 13px; }

.wk-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.wk-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  background: var(--surface-alt);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.wk-badge-tick { color: var(--success-500); font-weight: 700; }

/* Hero art */
.wk-art-stage {
  position: relative;
  height: 460px; width: 100%;
}
.wk-art-card {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}
.wk-art-card-1 {
  width: 240px; padding: 18px 20px;
  top: 60px; left: 30px; z-index: 3;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}
.wk-art-card-2 {
  width: 220px; padding: 16px 18px;
  top: 240px; right: 20px; z-index: 4;
  background: var(--brand-900);
  color: #fff;
}
.wk-art-card-3 {
  width: 200px; padding: 12px 14px;
  top: 30px; right: 40px; z-index: 3;
  background: var(--surface);
  border: 1px solid var(--border);
}
.wk-art-bg-1 {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 24px;
  top: 100px; right: 60px;
  transform: rotate(8deg);
  opacity: 0.08;
  background: var(--brand-500);
  z-index: 1;
}
.wk-art-bg-2 {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  bottom: -60px; left: -40px;
  border: 1.5px dashed var(--brand-300);
  z-index: 0;
}
.wk-art-dot {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 999px;
  bottom: 80px; left: 280px;
  background: var(--accent-500);
  z-index: 2;
}

/* Art card internals */
.art-bar-row {
  display: flex; gap: 4px; align-items: flex-end;
  height: 44px; margin-top: 12px;
}
.art-bar {
  flex: 1;
  background: var(--brand-200);
  border-radius: 2px;
}
.art-bar.active { background: var(--brand-500); }

.art-compliance-row {
  display: flex; align-items: center; gap: 8px; margin-top: 6px;
}
.art-compliance-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--success-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
}
.art-msg-row {
  display: flex; align-items: center; gap: 8px;
}
.art-avatar {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--accent-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.art-unread-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--brand-500);
  margin-left: auto; flex-shrink: 0;
}

/* ============================================================
   Sections
   ============================================================ */
.wk-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px;
}
.wk-section-head {
  margin-bottom: 48px; max-width: 720px;
}
.wk-section-eyebrow {
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 12px;
  color: var(--brand-600);
}
.wk-section-title {
  font-size: 40px; line-height: 1.1;
  letter-spacing: -0.02em; font-weight: 600;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}
.wk-section-sub {
  font-size: 17px; line-height: 1.5;
  margin: 16px 0 0; max-width: 580px;
  color: var(--text-muted);
}

/* Features */
.wk-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.wk-feature {
  padding: 28px; border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.wk-feature:hover { transform: translateY(-2px); }
.wk-feature-tag {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--brand-500);
}
.wk-feature-title {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--text);
}
.wk-feature-body {
  font-size: 15px; line-height: 1.55;
  margin: 0; text-wrap: pretty;
  color: var(--text-muted);
}

/* Integrations */
.wk-int-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
}
.wk-int-row {
  display: flex; gap: 16px; padding: 22px 0;
  align-items: flex-start;
  border-top: 1px solid var(--border);
}
.wk-int-tick {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand-50); color: var(--brand-600);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.wk-int-title { font-size: 15px; font-weight: 600; margin-bottom: 2px; color: var(--text); }
.wk-int-body  { font-size: 13px; line-height: 1.5; color: var(--text-muted); }

/* ============================================================
   Dashboard Preview Frame
   ============================================================ */
.wk-preview-frame {
  border-radius: 16px; padding: 12px;
  background: var(--brand-900);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}
.wk-preview-chrome {
  display: flex; align-items: center;
  gap: 6px; padding: 8px 12px 14px;
}
.wk-preview-dot {
  width: 12px; height: 12px; border-radius: 999px;
}
.wk-preview-url {
  margin-left: 16px; padding: 4px 12px;
  border-radius: 6px;
  font-family: var(--font-mono); font-size: 11px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  flex: 1; max-width: 280px; text-align: center;
}
.wk-preview-stage {
  border-radius: 10px;
  overflow: hidden;
}

/* ============================================================
   Dashboard (static preview)
   ============================================================ */
.dash {
  display: grid;
  grid-template-columns: 240px 1fr;
  height: 720px;
  overflow: hidden;
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
}
.dash-sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 20px 0; overflow-y: auto;
}
.dash-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 20px 24px;
}
.dash-logo-mark {
  width: 32px; height: 32px;
  display: block; flex-shrink: 0;
}
.dash-logo-text { font-weight: 600; font-size: 17px; letter-spacing: -0.01em; color: var(--text); }

.dash-nav-section {
  font-size: 10px; letter-spacing: 0.14em;
  padding: 0 20px 8px; margin-top: 8px;
  color: var(--text-subtle);
}
.dash-nav-item {
  padding: 9px 17px; margin-right: 12px;
  border-radius: 0 8px 8px 0;
  font-size: 13px; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-muted);
}
.dash-nav-item.active {
  background: var(--brand-50);
  color: var(--brand-700);
  border-left: 3px solid var(--brand-500);
}
.dash-nav-badge {
  font-size: 10px; padding: 2px 7px;
  border-radius: 999px; font-weight: 600;
  background: var(--brand-500); color: #fff;
}

.dash-main { display: flex; flex-direction: column; min-width: 0; }
.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; height: 60px; flex-shrink: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.dash-crumb { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.dash-crumb strong { color: var(--text); }
.dash-actions { display: flex; align-items: center; gap: 10px; }
.dash-search {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 8px; font-size: 13px;
  background: var(--surface-alt);
  color: var(--text-muted); width: 240px;
}
.dash-kbd {
  margin-left: auto; padding: 1px 6px;
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 11px; font-family: var(--font-mono);
  background: var(--surface); color: var(--text-subtle);
}
.dash-btn {
  padding: 7px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 500;
  border: none; font-family: inherit; cursor: pointer;
}
.dash-btn-primary { background: var(--brand-500); color: #fff; }
.dash-btn-secondary { background: var(--surface-alt); color: var(--text); border: 1px solid var(--border); }
.dash-avatar {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--accent-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
}

.dash-content {
  padding: 24px; overflow-y: auto;
  flex: 1; display: flex; flex-direction: column; gap: 16px;
}
.dash-hero-strip {
  padding: 24px 28px; border-radius: 14px;
  background: var(--brand-900); color: #fff;
  position: relative; overflow: hidden;
}
.dash-hero-strip-inner {
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2; gap: 20px;
}
.dash-hero-eyebrow {
  font-size: 11px; letter-spacing: 0.14em;
  margin-bottom: 6px; color: var(--brand-200);
}
.dash-hero-title { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.dash-hero-sub   { font-size: 13px; line-height: 1.5; color: var(--brand-100); }
.dash-hero-decor {
  position: absolute; width: 280px; height: 280px;
  border-radius: 50%; right: -100px; top: -100px;
  background: var(--brand-700); opacity: 0.4; z-index: 1;
}
.dash-btn-accent { background: var(--accent-500); color: #1a1208; border: none; white-space: nowrap; }

.dash-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.dash-stat {
  padding: 16px 18px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
}
.dash-stat-label { font-size: 12px; color: var(--text-muted); }
.dash-stat-value { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
.dash-stat-delta {
  align-self: flex-start; font-size: 11px;
  padding: 3px 8px; border-radius: 999px;
  font-weight: 500; font-family: var(--font-mono);
}
.dash-stat-delta.up   { color: var(--success-500); background: var(--success-100); }
.dash-stat-delta.down { color: var(--danger-500);  background: var(--danger-100); }

.dash-grid-main {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 12px;
}
.dash-panel {
  display: flex; flex-direction: column; min-width: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
}
.dash-panel-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.dash-panel-title { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
.dash-panel-sub   { font-size: 12px; margin-top: 2px; color: var(--text-muted); }
.dash-tabs { display: flex; gap: 16px; }
.dash-tab {
  font-size: 13px; padding-bottom: 6px;
  font-weight: 500; color: var(--text-muted);
}
.dash-tab.active { color: var(--brand-600); border-bottom: 2px solid var(--brand-500); }

.dash-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.dash-table th {
  text-align: left; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 500; padding: 10px 20px;
  color: var(--text-subtle);
  border-bottom: 1px solid var(--border);
}
.dash-table td { padding: 14px 20px; font-size: 13px; border-bottom: 1px solid var(--border); }
.dash-table tr:last-child td { border-bottom: none; }

.dash-pill {
  display: inline-block; padding: 3px 10px;
  border-radius: 999px; font-size: 11px; font-weight: 500;
}
.dash-pill-success { color: var(--success-500); background: var(--success-100); }
.dash-pill-warning { color: var(--warning-500); background: var(--warning-100); }
.dash-pill-danger  { color: var(--danger-500);  background: var(--danger-100); }
.dash-pill-info    { color: var(--info-500);    background: var(--info-100); }

.cap-cell { display: flex; flex-direction: column; gap: 4px; min-width: 80px; }
.cap-bar  { width: 100%; height: 4px; border-radius: 999px; overflow: hidden; background: var(--surface-alt); }
.cap-fill { height: 100%; border-radius: 999px; }
.cap-fill-success { background: var(--brand-500); }
.cap-fill-warning { background: var(--warning-500); }
.cap-fill-danger  { background: var(--danger-500); }

.dash-msgs { padding: 4px 0; }
.dash-msg-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.dash-msg-row:last-child { border-bottom: none; }
.dash-msg-avatar {
  width: 36px; height: 36px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: #fff; flex-shrink: 0;
}
.dash-msg-body { flex: 1; min-width: 0; }
.dash-msg-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2px; font-size: 13px;
}
.dash-msg-unread-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-500); flex-shrink: 0;
}

.dash-link { font-size: 13px; font-weight: 500; color: var(--brand-600); }

/* ============================================================
   Pricing
   ============================================================ */
.wk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; align-items: stretch;
}
.wk-plan {
  padding: 32px 28px; border-radius: 14px;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}
.wk-plan-featured {
  background: var(--brand-900);
  border-color: var(--brand-900);
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.wk-plan-name {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px; color: var(--text-muted);
}
.wk-plan-featured .wk-plan-name { color: var(--brand-200); }
.wk-plan-price {
  font-size: 44px; font-weight: 600;
  letter-spacing: -0.03em; line-height: 1;
}
.wk-plan-unit { font-size: 13px; margin-top: 6px; color: var(--text-muted); }
.wk-plan-featured .wk-plan-unit { color: var(--brand-200); }
.wk-plan-divider { height: 1px; margin: 24px 0; background: var(--border); }
.wk-plan-featured .wk-plan-divider { background: rgba(255,255,255,0.1); }
.wk-plan-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px; line-height: 1.45;
  color: var(--text-muted);
}
.wk-plan-featured .wk-plan-list { color: rgba(255,255,255,0.85); }
.wk-plan-list li::before { display: none; }
.wk-plan-list .tick { color: var(--success-500); margin-right: 8px; }
.wk-plan-featured .wk-plan-list .tick { color: var(--accent-500); }
.wk-pricing-note {
  text-align: center; margin-top: 32px;
  font-size: 13px; color: var(--text-muted);
}

/* ============================================================
   Waitlist
   ============================================================ */
.wk-waitlist { max-width: calc(var(--max) + 64px); }
.wk-waitlist-card {
  border-radius: 20px; padding: 64px 56px;
  background: var(--brand-900); color: #fff;
  position: relative; overflow: hidden;
}
.wk-waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px; position: relative; z-index: 2;
}
.wk-waitlist-points {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.wk-waitlist-point { font-size: 14px; color: var(--brand-100); }
.wk-waitlist-point .tick { color: var(--accent-500); margin-right: 8px; }

.wk-wait-decor { position: absolute; }
.wk-wait-decor-1 {
  width: 360px; height: 360px; border-radius: 50%;
  right: -120px; top: -120px;
  background: var(--brand-700); opacity: 0.4;
}
.wk-wait-decor-2 {
  width: 240px; height: 240px; border-radius: 24px;
  bottom: -60px; right: 30%; transform: rotate(12deg);
  border: 1.5px dashed var(--brand-400);
}

.wk-form {
  padding: 28px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
}
.wk-form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 20px;
}
.wk-form-col-2 { grid-column: span 2; }
.wk-field { display: flex; flex-direction: column; gap: 6px; }
.wk-field label { font-size: 12px; font-weight: 500; color: var(--text-muted); }
.wk-field input {
  padding: 11px 14px; border-radius: 8px;
  font-size: 14px; outline: none;
  border: 1px solid var(--border);
  background: var(--surface); color: var(--text);
  transition: border-color 0.15s;
}
.wk-field input:focus { border-color: var(--brand-500); }
.wk-field input.is-invalid { border-color: var(--danger-500); }
.wk-field-error { font-size: 11px; color: var(--danger-500); margin-top: 4px; }

.wk-form-submit {
  width: 100%; padding: 13px;
  border-radius: 10px; font-size: 15px; font-weight: 500;
  border: none; cursor: pointer;
  background: var(--brand-500); color: #fff;
  transition: transform 0.15s;
}
.wk-form-submit:hover { transform: translateY(-1px); }
.wk-form-privacy {
  font-size: 12px; line-height: 1.5;
  margin: 14px 0 0; text-align: center;
  color: var(--text-subtle);
}

/* Success state */
.wk-success {
  padding: 40px 28px; border-radius: 14px; text-align: center;
  background: var(--surface); border: 1px solid var(--border);
}
.wk-success-icon {
  width: 56px; height: 56px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--success-500); color: #fff;
  font-size: 26px; font-weight: 700;
}
.wk-success h3 {
  color: var(--text); font-size: 22px; font-weight: 600;
  margin: 12px 0 8px; letter-spacing: -0.01em;
}
.wk-success p { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin: 0; }

/* Waitlist left side */
.wk-waitlist-eyebrow { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; color: var(--brand-200); }
.wk-waitlist-title   { font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 600; margin: 0; color: #fff; text-wrap: balance; }
.wk-waitlist-sub     { color: var(--brand-100); font-size: 16px; line-height: 1.55; margin-top: 12px; }

/* ============================================================
   Footer
   ============================================================ */
.wk-footer { margin-top: 60px; border-top: 1px solid var(--border); }
.wk-footer-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 60px 32px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.wk-footer-tagline { color: var(--text-muted); font-size: 13px; line-height: 1.5; margin-top: 12px; max-width: 280px; }
.wk-footer-col-title { font-size: 13px; font-weight: 600; margin-bottom: 14px; letter-spacing: 0.02em; color: var(--text); }
.wk-footer-col-links { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.wk-footer-col-links a { color: var(--text-muted); }
.wk-footer-col-links a:hover { opacity: 0.7; }
.wk-footer-legal {
  max-width: var(--max); margin: 0 auto;
  padding: 20px 32px;
  font-size: 12px; font-family: var(--font-mono);
  border-top: 1px solid var(--border);
  color: var(--text-subtle);
}

/* ============================================================
   Alert / Error banner
   ============================================================ */
.wk-alert {
  padding: 12px 20px; border-radius: 10px; font-size: 14px;
  margin-bottom: 16px;
}
.wk-alert-error { background: var(--danger-100); color: var(--danger-500); border: 1px solid var(--danger-500); }

/* ============================================================
   Responsive
   ============================================================ */
/* Badge toggle — extra badges hidden on mobile, always shown on desktop */
.wk-badge-extra  { display: none; }
.wk-badge-visible { display: inline-flex !important; }
.wk-badge-toggle {
  cursor: pointer;
  border: 1px dashed var(--border-strong);
  background: transparent;
  color: var(--brand-600);
  font-family: inherit;
}
.wk-badge-toggle:hover { background: var(--brand-50); }

@media (min-width: 901px) {
  .wk-badge-extra  { display: inline-flex; }
  .wk-badge-toggle { display: none; }
}

@media (max-width: 900px) {
  .wk-hero-grid,
  .wk-features-grid,
  .wk-int-grid,
  .wk-pricing-grid,
  .wk-waitlist-grid,
  .wk-footer-inner { grid-template-columns: 1fr; }

  .wk-hero-title    { font-size: 40px; }
  .wk-hero-sub      { font-size: 16px; }
  .wk-section-title { font-size: 30px; }
  .wk-art-stage     { height: 320px; }

  /* Waitlist card */
  .wk-waitlist-card   { padding: 40px 24px; }
  .wk-waitlist-title  { font-size: 30px; }
  .wk-waitlist-points { grid-template-columns: 1fr; }

  /* Waitlist form — single column on mobile */
  .wk-form           { padding: 20px; }
  .wk-form-grid      { grid-template-columns: 1fr; gap: 12px; }
  .wk-form-col-2     { grid-column: 1; }

  .wk-nav-links { display: none; }

  .dash { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-grid-main { grid-template-columns: 1fr; }

  .pg-body { padding: 40px 24px; }
  .pg-content-grid { grid-template-columns: 1fr; }
  .pg-two-col { grid-template-columns: 1fr; }
}

/* Extra tightening on very small phones */
@media (max-width: 480px) {
  .wk-hero         { padding: 48px 20px 40px; }
  .wk-section      { padding: 56px 20px; }
  .wk-hero-title   { font-size: 32px; }
  .wk-waitlist-card { padding: 32px 20px; }
  .wk-waitlist-title { font-size: 26px; }
  .wk-form         { padding: 16px; }
  .wk-pricing-grid { gap: 12px; }
  .wk-plan-featured { transform: none; }
  .wk-footer-inner { padding: 40px 20px 32px; gap: 32px; }
}

/* ============================================================
   Inner pages
   ============================================================ */
.pg-wrap { min-height: calc(100vh - 60px); }

.pg-hero {
  background: var(--brand-900);
  color: #fff;
  padding: 64px 32px 56px;
}
.pg-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.pg-eyebrow {
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
  color: var(--brand-200); margin-bottom: 12px;
}
.pg-title {
  font-size: 44px; line-height: 1.08;
  letter-spacing: -0.025em; font-weight: 600;
  margin: 0 0 16px; text-wrap: balance;
}
.pg-subtitle {
  font-size: 18px; line-height: 1.55;
  color: var(--brand-100); margin: 0;
  max-width: 600px;
}

.pg-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 32px 80px;
}

/* Prose content */
.pg-prose {
  max-width: 720px;
  font-size: 16px; line-height: 1.7;
  color: var(--text-muted);
}
.pg-prose h2 {
  font-size: 24px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text); margin: 40px 0 12px;
}
.pg-prose h3 {
  font-size: 18px; font-weight: 600;
  color: var(--text); margin: 28px 0 8px;
}
.pg-prose p  { margin: 0 0 16px; }
.pg-prose ul { margin: 0 0 16px; padding-left: 20px; }
.pg-prose li { margin-bottom: 6px; }
.pg-prose a  { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; }

/* Card grid */
.pg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.pg-card {
  padding: 24px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
}
.pg-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-50); color: var(--brand-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px;
}
.pg-card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin: 0 0 6px; }
.pg-card p  { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* Two-column layout */
.pg-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}

/* Timeline (roadmap) */
.pg-timeline { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.pg-quarter {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 24px; padding: 32px 0;
  border-top: 1px solid var(--border);
}
.pg-quarter:last-child { border-bottom: 1px solid var(--border); }
.pg-quarter-label {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--brand-600); padding-top: 4px;
}
.pg-quarter-items { display: flex; flex-direction: column; gap: 12px; }
.pg-roadmap-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.pg-roadmap-badge {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 999px; white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.pg-badge-shipped  { background: var(--success-100); color: var(--success-500); }
.pg-badge-building { background: var(--brand-50);    color: var(--brand-600); }
.pg-badge-planned  { background: var(--surface-alt); color: var(--text-muted); }
.pg-roadmap-item-text h4 { font-size: 15px; font-weight: 600; color: var(--text); margin: 0 0 2px; }
.pg-roadmap-item-text p  { font-size: 13px; color: var(--text-muted); margin: 0; }

/* Contact form */
.pg-contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}
.pg-contact-info h3 { font-size: 18px; font-weight: 600; color: var(--text); margin: 0 0 8px; }
.pg-contact-info p  { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin: 0 0 24px; }
.pg-contact-detail {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-top: 1px solid var(--border);
  font-size: 14px; color: var(--text-muted);
}
.pg-contact-detail strong { color: var(--text); display: block; font-size: 13px; margin-bottom: 2px; }

.pg-form { display: flex; flex-direction: column; gap: 14px; }
.pg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pg-form textarea {
  padding: 11px 14px; border-radius: 8px; font-size: 14px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text); font-family: inherit; resize: vertical;
  outline: none; transition: border-color 0.15s; min-height: 120px;
}
.pg-form textarea:focus { border-color: var(--brand-500); }

/* Partner page */
.pg-partner-logos {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0;
}
.pg-partner-logo {
  padding: 12px 20px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 14px; font-weight: 600; color: var(--text-muted);
}

/* Section divider */
.pg-section { margin-top: 56px; }
.pg-section-title {
  font-size: 28px; font-weight: 600; letter-spacing: -0.015em;
  color: var(--text); margin: 0 0 24px;
}

@media (max-width: 900px) {
  .pg-hero { padding: 48px 24px 40px; }
  .pg-title { font-size: 32px; }
  .pg-card-grid { grid-template-columns: 1fr 1fr; }
  .pg-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pg-form-row { grid-template-columns: 1fr; }
  .pg-quarter { grid-template-columns: 1fr; gap: 8px; }
}
