:root {
  --bg: #0a0e0d;
  --surface: #121614;
  --glass-bg: rgba(20, 30, 28, 0.55);
  --glass-bg-strong: rgba(20, 30, 28, 0.8);
  --glass-border: rgba(45, 212, 191, 0.25);
  --glass-border-strong: rgba(45, 212, 191, 0.5);
  --cyan: #2DD4BF;
  --cyan-bright: #5eead4;
  --text: #f2f5f4;
  --text-muted: #93a19d;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(45, 212, 191, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(94, 234, 212, 0.10) 0%, transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(45, 212, 191, 0.08) 0%, transparent 45%),
    linear-gradient(var(--bg), var(--bg));
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  position: relative;
}
/* faint technical grid overlay, sits behind all content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 70%);
}
nav, .wrap, footer { position: relative; z-index: 1; }
a { color: var(--cyan); }
.wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }

.mono { font-family: var(--mono); }

/* Top nav */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 14, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 24px rgba(45, 212, 191, 0.06);
}
nav.site-nav .wrap {
  max-width: 1040px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
nav.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
nav.site-nav .brand img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(45, 212, 191, 0.35));
}
nav.site-nav .brand .brand-title {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  background: linear-gradient(90deg, var(--cyan-bright), var(--text) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
nav.site-nav .links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
nav.site-nav .links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}
nav.site-nav .links a:hover, nav.site-nav .links a.active { color: var(--cyan-bright); }
nav.site-nav .cta {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
  color: #06201c !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.4), 0 4px 20px rgba(45, 212, 191, 0.25);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
nav.site-nav .cta:hover { box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.6), 0 6px 28px rgba(45, 212, 191, 0.4); transform: translateY(-1px); }

header.hero { padding: 88px 0 56px; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  color: var(--cyan-bright);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-bg);
}
.eyebrow::before { content: "●"; color: var(--cyan); font-size: 9px; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--text) 30%, var(--cyan-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h1 .tm { font-size: 0.5em; vertical-align: super; -webkit-text-fill-color: var(--cyan-bright); }
.sub { font-size: 18px; color: var(--text-muted); max-width: 560px; margin: 0 auto 40px; }

form.waitlist {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input[type="email"]::placeholder { color: var(--text-muted); }
input[type="email"]:focus { outline: none; border-color: var(--glass-border-strong); box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15); }
button.submit {
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
  color: #06201c;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.4), 0 6px 24px rgba(45, 212, 191, 0.25);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
button.submit:hover:not(:disabled) { box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.6), 0 8px 32px rgba(45, 212, 191, 0.4); transform: translateY(-1px); }
button.submit:disabled { opacity: 0.6; cursor: default; }
.form-note { margin-top: 14px; font-size: 13px; color: var(--text-muted); font-family: var(--mono); }
.form-status { margin-top: 14px; font-size: 14px; min-height: 20px; }
.form-status.ok { color: var(--cyan-bright); }
.form-status.err { color: #f0997b; }

section {
  padding: 60px 0;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--glass-border) 20%, var(--glass-border) 80%, transparent) 1;
}
section h2 {
  font-size: 24px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
section h2::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--cyan);
  display: inline-block;
  box-shadow: 0 0 8px var(--cyan);
}
section h3 { font-size: 16px; margin: 24px 0 8px; color: var(--text); }
section p { color: var(--text-muted); font-size: 16px; }
section ul { color: var(--text-muted); font-size: 16px; padding-left: 20px; }
section li { margin-bottom: 8px; }

.tiers { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.tier {
  flex: 1;
  min-width: 180px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.tier:hover { border-color: var(--glass-border-strong); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(45, 212, 191, 0.12); }
.tier .name { font-weight: 700; font-size: 15px; margin-bottom: 4px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.04em; }
.tier .price { color: var(--cyan-bright); font-weight: 700; font-size: 22px; margin-bottom: 10px; }
.tier .desc { font-size: 13px; color: var(--text-muted); }

.hero-logo {
  display: block;
  height: 220px;
  width: auto;
  max-width: 100%;
  margin: 44px auto 12px;
  filter: drop-shadow(0 0 40px rgba(45, 212, 191, 0.4));
}

/* App store "coming soon" badges */
.stores { display: flex; gap: 14px; justify-content: center; margin: 28px 0 8px; flex-wrap: wrap; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.store-badge:hover { border-color: var(--glass-border-strong); transform: translateY(-2px); }
.store-badge .label { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge .label small { color: var(--text-muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--mono); }
.store-badge .label strong { font-size: 14px; }
.store-badge .qr {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: repeating-conic-gradient(var(--text) 0% 25%, transparent 0% 50%) 0 0/8px 8px;
  opacity: 0.7;
  flex-shrink: 0;
}

/* About / Mind2Vault pillar cards */
.pillars { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.pillar {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pillar:hover { border-color: var(--glass-border-strong); transform: translateX(2px); }
.pillar .num { color: var(--cyan-bright); font-weight: 700; font-size: 13px; margin-bottom: 4px; font-family: var(--mono); }
.pillar h3 { margin: 0 0 6px; }
.pillar p { margin: 0; }

/* Mind2Vault page specific: data-flow diagram */
.flow { display: flex; align-items: stretch; gap: 0; margin: 32px 0; flex-wrap: wrap; }
.flow-step {
  flex: 1;
  min-width: 140px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  position: relative;
}
.flow-step .tag { font-family: var(--mono); font-size: 10px; color: var(--cyan-bright); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; display: block; }
.flow-step strong { display: block; font-size: 14px; margin-bottom: 4px; }
.flow-step span.desc { font-size: 12.5px; color: var(--text-muted); }
.flow-arrow { display: flex; align-items: center; justify-content: center; padding: 0 8px; color: var(--cyan); font-size: 18px; }

.export-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.export-cta .label strong { display: block; font-size: 15px; }
.export-cta .label span { font-size: 13px; color: var(--text-muted); }
.export-cta .tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan-bright);
  border: 1px solid var(--glass-border);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Legal pages */
.notice {
  background: rgba(240, 153, 123, 0.1);
  border: 1px solid rgba(240, 153, 123, 0.35);
  border-radius: 10px;
  padding: 14px 18px;
  color: #f0997b;
  font-size: 13.5px;
  margin: 32px 0;
  font-family: var(--mono);
}
.legal-section { padding: 28px 0; border-top: 1px solid var(--glass-border); }
.legal-section:first-of-type { border-top: none; }
.legal-section h2 { font-size: 17px; margin: 0 0 10px; }
.legal-section p { color: var(--text-muted); font-size: 15px; margin: 0; }
.last-updated { color: var(--text-muted); font-size: 13px; margin-top: -8px; font-family: var(--mono); }

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.contact-form label {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan-bright);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: -8px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.contact-form select option { background: var(--surface); color: var(--text); }
.contact-form textarea { resize: vertical; min-height: 130px; font-family: inherit; line-height: 1.5; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--glass-border-strong);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15);
}
.contact-form button.submit { align-self: flex-start; }
.contact-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 40px 0 0;
}
.contact-divider::before, .contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}

/* Contact page */
.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}
.contact-row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--glass-border); }
.contact-row:first-child { border-top: none; }
.contact-row .k { color: var(--text-muted); font-size: 14px; }
.contact-row .v { font-size: 14px; font-weight: 600; }

/* Footer — two variants: full (index/about/mind2vault) and minimal (privacy/terms/contact) */
footer.site-footer {
  padding: 44px 0 80px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid var(--glass-border);
  margin-top: 40px;
}
footer.site-footer .links { margin-top: 14px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
footer.site-footer .links a { color: var(--text-muted); text-decoration: none; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
footer.site-footer .links a:hover { color: var(--cyan-bright); }
footer.site-footer.minimal .links a { font-family: inherit; text-transform: none; letter-spacing: normal; font-size: 13px; }

/* Admin dashboard */
.wrap-wide { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

.login-box {
  max-width: 420px;
  margin: 100px auto;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
}
.login-box h1 { font-size: 24px; }
.login-box .sub { font-size: 14px; margin-bottom: 28px; }
.login-box form { display: flex; flex-direction: column; gap: 14px; }
.login-box input[type="email"] { width: 100%; }
.login-box button.submit { width: 100%; }

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0 4px;
}
.admin-topbar .brand-mini { display: flex; align-items: center; gap: 12px; }
.admin-topbar .brand-mini img { height: 32px; width: auto; }
.admin-topbar .brand-mini span { font-family: var(--mono); font-weight: 700; font-size: 14px; letter-spacing: 0.03em; }
.admin-topbar .who { font-size: 13px; color: var(--text-muted); font-family: var(--mono); }
.admin-actions { display: flex; align-items: center; gap: 12px; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-ghost:hover { border-color: var(--glass-border-strong); color: var(--cyan-bright); }

.admin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin: 20px 0; }
.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
}
.stat-card .stat-value { font-size: 28px; font-weight: 800; color: var(--cyan-bright); font-family: var(--mono); }
.stat-card .stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 6px; }
.stat-card .stat-sub { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

.admin-section { padding: 32px 0; border-top: 1px solid var(--glass-border); }
.admin-section:first-of-type { border-top: none; }
.admin-section-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; flex-wrap: wrap; gap: 10px; }
.admin-section-title h2 { margin: 0; }

.badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.badge { font-family: var(--mono); font-size: 11px; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--glass-border); color: var(--text-muted); }
.badge.ok { color: var(--cyan-bright); border-color: var(--glass-border-strong); }
.badge.warn { color: #f0997b; border-color: rgba(240, 153, 123, 0.35); }

table.admin-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 13.5px; }
table.admin-table th, table.admin-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--glass-border); vertical-align: top; }
table.admin-table th { color: var(--cyan-bright); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }
table.admin-table td { color: var(--text-muted); }
.admin-empty { color: var(--text-muted); font-size: 13.5px; padding: 16px 0; }
.admin-note { font-size: 12.5px; color: var(--text-muted); margin-top: 10px; font-family: var(--mono); }

/* Admin — CRM shell layout */
.admin-shell { display: flex; align-items: flex-start; min-height: 100vh; }

.admin-sidebar {
  width: 232px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 24px 14px 24px;
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
}
.admin-sidebar .brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  padding: 0 10px;
  margin-bottom: 24px;
}
.admin-sidebar .brand-mini img { height: 26px; width: auto; }
.admin-sidebar .brand-mini span { font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: 0.03em; }

.sidebar-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.sidebar-nav-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 16px 12px 6px;
}
.sidebar-nav-label:first-child { padding-top: 4px; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-size: 13.5px;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.sidebar-link .sidebar-icon { width: 16px; text-align: center; font-family: var(--mono); font-size: 13px; opacity: 0.75; }
.sidebar-link:hover { color: var(--text); background: var(--glass-bg); }
.sidebar-link.active { color: var(--cyan-bright); background: var(--glass-bg-strong); border-color: var(--glass-border); }

.admin-main { flex: 1; min-width: 0; }

.admin-header-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 40px;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(10, 14, 13, 0.9);
  backdrop-filter: blur(10px);
}
.admin-header-bar h1 { margin: 0; font-size: 19px; }
.admin-header-bar .header-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.admin-header-bar .who { font-size: 12.5px; color: var(--text-muted); font-family: var(--mono); }

.admin-page { display: none; padding: 30px 40px 60px; }
.admin-page.active { display: block; }
.admin-page .admin-section { padding: 0; border-top: none; }

@media (max-width: 900px) {
  .admin-shell { flex-direction: column; }
  .admin-sidebar {
    width: 100%;
    height: auto;
    position: static;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 16px;
  }
  .admin-sidebar .brand-mini { display: none; }
  .sidebar-nav { flex-direction: row; flex: none; }
  .sidebar-nav-label { display: none; }
  .sidebar-link { white-space: nowrap; }
  .admin-header-bar, .admin-page { padding-left: 20px; padding-right: 20px; }
}

/* Admin — Coupons */
.btn-sm { padding: 5px 12px; font-size: 12px; border-radius: 6px; }
.btn-sm + .btn-sm { margin-left: 6px; }
.coupon-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 18px 0 6px; }
.coupon-form input[type="text"] {
  flex: 1;
  min-width: 200px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
}
.coupon-form input[type="text"]:focus { outline: none; border-color: var(--glass-border-strong); box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15); }
.coupon-form button { white-space: nowrap; }
.coupon-error { color: #f0997b; font-size: 12.5px; margin-top: 10px; }
code.coupon-code { font-family: var(--mono); color: var(--cyan-bright); font-size: 13px; letter-spacing: 0.03em; }

/* Products page */
.product-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 4px; }
.product-head h2 { margin: 0; }

.usecase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; margin-top: 22px; }
.usecase-grid .pillar { transform: none; }
.usecase-grid .pillar:hover { transform: translateY(-3px); }

.quote-block {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  border-radius: 12px;
  padding: 26px 28px;
  margin: 28px 0 4px;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
}
.quote-block .cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 12px;
  color: var(--cyan-bright);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   Finalize pass — a11y, heading scale, motion
   ============================================================ */

/* Skip link: hidden until keyboard-focused */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  background: var(--cyan);
  color: #04100e;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid var(--cyan-bright);
  outline-offset: 2px;
}

/* Visually hidden, still read by screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Secondary page titles (replaces inline font-size styles) */
.hero h1.page-title { font-size: 32px; }
.hero h1.page-title-lg { font-size: 34px; }

/* Pillars used as second-level headings (about page) — no section marker */
.pillar h2 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: normal;
  color: var(--text);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}
.pillar h2::before { content: none; display: none; }

/* Visible focus ring for keyboard users across interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* 404 */
.notfound { text-align: center; padding: 96px 0 120px; }
.notfound .code {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  display: block;
  margin-bottom: 18px;
}
.notfound .links { margin-top: 30px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; font-size: 15px; }

/* ============================================================
   Responsive — marketing nav & hero
   Fixes brand title colliding with nav links on phones.
   ============================================================ */

/* Guarantee a dark canvas even before/without the body gradient */
html { background-color: var(--bg); }

@media (max-width: 820px) {
  nav.site-nav .wrap {
    flex-wrap: wrap;
    row-gap: 10px;
    gap: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  nav.site-nav .brand { gap: 10px; flex: 1 1 auto; }
  nav.site-nav .brand img { height: 48px; }
  nav.site-nav .brand .brand-title { font-size: 11.5px; }
  nav.site-nav .links { gap: 18px; }
  header.hero { padding: 60px 0 44px; }
  h1 { font-size: 34px; }
  .hero h1.page-title, .hero h1.page-title-lg { font-size: 27px; }
  .sub { font-size: 16.5px; }
  .hero-logo { height: 170px; }
}

@media (max-width: 600px) {
  /* Wordmark is decorative here — the icon carries the brand */
  nav.site-nav .brand .brand-title { display: none; }
  nav.site-nav .brand { flex: 0 0 auto; }
  nav.site-nav .brand img { height: 40px; }
  nav.site-nav .wrap { flex-wrap: nowrap; justify-content: space-between; gap: 10px; }
  nav.site-nav .links { gap: 14px; flex-wrap: nowrap; }
  nav.site-nav .links a { font-size: 13px; }
  nav.site-nav .cta { padding: 8px 14px; font-size: 12px; }

  .wrap { padding: 0 18px; }
  h1 { font-size: 30px; }
  .hero h1.page-title, .hero h1.page-title-lg { font-size: 25px; }
  .sub { font-size: 16px; }
  .hero-logo { height: 140px; }
  header.hero { padding: 44px 0 36px; }

  form.waitlist { flex-direction: column; }
  form.waitlist input[type="email"],
  form.waitlist button.submit { width: 100%; min-width: 0; }

  .flow-arrow { display: none; }
  .flow { gap: 12px; }
  .export-cta { flex-direction: column; align-items: flex-start; }
  .site-footer .links { gap: 12px 14px; }
}

@media (max-width: 400px) {
  nav.site-nav .links { gap: 11px; }
  nav.site-nav .links a { font-size: 12px; }
  nav.site-nav .cta { padding: 7px 12px; font-size: 11.5px; }
  h1 { font-size: 27px; }
}

/* ============================================================
   MIND2VAULT PAGE
   Built on the existing tokens (--bg / --cyan / --glass-*) so it
   reads as the same product, not a separate microsite.
   ============================================================ */

.wrap-wide { max-width: 1040px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* --- scroll reveal (opt-in, disabled under reduced-motion) --- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.6,.3,1), transform .7s cubic-bezier(.2,.6,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* --- shared section furniture --- */
.m2v-sec { padding: 92px 0; position: relative; }
.m2v-sec + .m2v-sec { border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--glass-border) 18%, var(--glass-border) 82%, transparent) 1; }
.m2v-kicker {
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  display: block; margin-bottom: 18px;
}
.m2v-h2 {
  display: block;               /* beats `section h2 { display:flex }` from the base sheet */
  font-size: clamp(28px, 4.2vw, 44px); font-weight: 800; line-height: 1.1;
  letter-spacing: -.022em; margin: 0 0 20px; color: var(--text);
}
/* this page uses the kicker instead of the cyan dash marker */
.m2v-h2::before { content: none !important; display: none !important; }
.m2v-h2 .accent { color: var(--cyan-bright); display: block; }
.m2v-lead { font-size: 17.5px; line-height: 1.65; color: var(--text-muted); max-width: 660px; margin: 0 0 18px; }
.m2v-lead strong { color: var(--text); font-weight: 600; }
.m2v-center { text-align: center; }
.m2v-center .m2v-lead { margin-left: auto; margin-right: auto; }

/* --- neural field: subtle node/edge network behind the hero --- */
.m2v-neural { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 78% 68% at 50% 42%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse 78% 68% at 50% 42%, #000 30%, transparent 78%); }
.m2v-neural svg { width: 100%; height: 100%; display: block; }
.m2v-neural .edge { fill: none; stroke: var(--cyan); stroke-width: .7; opacity: .17; }
.m2v-neural .pulse {
  fill: none;
  stroke: var(--cyan-bright); stroke-width: 1.4; stroke-linecap: round;
  stroke-dasharray: 3 190; opacity: .85;
  animation: m2v-stream 5.5s linear infinite;
}
@keyframes m2v-stream { from { stroke-dashoffset: 193; } to { stroke-dashoffset: 0; } }
.m2v-neural .node { fill: var(--cyan-bright); animation: m2v-breathe 4.5s ease-in-out infinite; }
@keyframes m2v-breathe { 0%,100% { opacity: .28; r: 2.1; } 50% { opacity: .95; r: 3.1; } }
@media (prefers-reduced-motion: reduce) {
  .m2v-neural .pulse { animation: none; opacity: .3; stroke-dasharray: none; }
  .m2v-neural .node { animation: none; opacity: .5; }
}

/* --- hero --- */
.m2v-hero { position: relative; padding: 104px 0 96px; text-align: center; overflow: hidden; }
.m2v-hero .wrap-wide { position: relative; z-index: 1; }
.m2v-hero .eyebrow { margin-bottom: 26px; }
.m2v-wordmark {
  font-family: var(--mono); font-weight: 700;
  font-size: clamp(13px, 2vw, 16px); letter-spacing: .42em; text-transform: uppercase;
  color: var(--cyan-bright); margin: 0 0 22px; padding-left: .42em;
}
.m2v-hero h1 {
  font-size: clamp(34px, 6.6vw, 76px); line-height: 1.03; font-weight: 800;
  letter-spacing: -.032em; margin: 0 0 26px;
  background: linear-gradient(150deg, var(--text) 22%, var(--cyan-bright) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.m2v-hero h1 .line2 { display: block; }
.m2v-hero .m2v-lead { max-width: 690px; margin: 0 auto 38px; font-size: 18px; }

/* --- buttons --- */
.m2v-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 11px; font-size: 14.5px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
  color: #06201c;
  box-shadow: 0 0 0 1px rgba(45,212,191,.45), 0 8px 32px rgba(45,212,191,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(94,234,212,.7), 0 12px 40px rgba(45,212,191,.45); }
.btn-ghost { background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text); }
.btn-ghost:hover { border-color: var(--glass-border-strong); transform: translateY(-2px); background: var(--glass-bg-strong); }

/* --- "planned / future" badge: keeps roadmap claims honest --- */
.m2v-planned {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase;
  color: #f0b97b; background: rgba(240,185,123,.09);
  border: 1px solid rgba(240,185,123,.34); border-radius: 999px;
  padding: 5px 11px; vertical-align: middle;
}
.m2v-planned::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #f0b97b; }
.m2v-note {
  font-size: 13.5px; line-height: 1.6; color: var(--text-muted);
  border-left: 2px solid var(--glass-border); padding: 2px 0 2px 16px; margin: 22px 0 0; max-width: 660px;
}

/* --- preserve comparison (photos / videos / mind) --- */
.m2v-compare { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin: 38px 0 0; }
.m2v-compare .col {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 24px 22px; transition: border-color .25s ease, transform .25s ease;
}
.m2v-compare .col:hover { border-color: var(--glass-border-strong); transform: translateY(-3px); }
.m2v-compare .col.is-focus { border-color: var(--glass-border-strong); background: var(--glass-bg-strong); box-shadow: 0 12px 44px rgba(45,212,191,.13); }
.m2v-compare .what { font-family: var(--mono); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 12px; }
.m2v-compare .col.is-focus .what { color: var(--cyan-bright); }
.m2v-compare .val { font-size: 21px; font-weight: 700; line-height: 1.25; color: var(--text); }
.m2v-compare .col.is-focus .val { color: var(--cyan-bright); }

/* --- evolution timeline --- */
.m2v-timeline { position: relative; margin: 46px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.m2v-timeline::before {
  content: ""; position: absolute; top: 21px; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan) 12%, var(--cyan) 88%, transparent); opacity: .38;
}
.m2v-stage { position: relative; padding-top: 56px; text-align: center; }
.m2v-stage .dot {
  position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--cyan);
  box-shadow: 0 0 0 5px rgba(45,212,191,.1), 0 0 20px rgba(45,212,191,.55);
}
.m2v-stage .dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--cyan-bright); animation: m2v-breathe 3.4s ease-in-out infinite; }
.m2v-stage:nth-child(2) .dot::after { animation-delay: .5s; }
.m2v-stage:nth-child(3) .dot::after { animation-delay: 1s; }
.m2v-stage:nth-child(4) .dot::after { animation-delay: 1.5s; }
@media (prefers-reduced-motion: reduce) { .m2v-stage .dot::after { animation: none; } }
.m2v-stage h3 { font-family: var(--mono); font-size: 14px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--cyan-bright); margin: 0 0 9px; }
.m2v-stage p { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* --- Mind ID: a data record, deliberately NOT shaped like an ID card --- */
.m2v-record {
  position: relative; margin: 38px 0 0; max-width: 620px;
  background: linear-gradient(160deg, rgba(20,30,28,.92), rgba(12,18,17,.92));
  border: 1px solid var(--glass-border-strong); border-radius: 16px;
  padding: 28px 30px 24px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.5), inset 0 1px 0 rgba(94,234,212,.11);
}
.m2v-record::before { /* holographic sweep */
  content: ""; position: absolute; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(94,234,212,.07) 45%, transparent);
  animation: m2v-sweep 7s ease-in-out infinite; pointer-events: none;
}
@keyframes m2v-sweep { 0% { left: -50%; } 55%, 100% { left: 115%; } }
.m2v-record::after { /* fine scanlines */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(180deg, rgba(94,234,212,.045) 0 1px, transparent 1px 4px);
}
@media (prefers-reduced-motion: reduce) { .m2v-record::before { animation: none; opacity: .35; left: 20%; } }
.m2v-record > * { position: relative; z-index: 1; }
.m2v-rec-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.m2v-rec-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 7px; }
.m2v-rec-id { font-family: var(--mono); font-size: clamp(28px, 5vw, 40px); font-weight: 700; letter-spacing: .1em; color: var(--cyan-bright); line-height: 1; text-shadow: 0 0 26px rgba(45,212,191,.45); }
.m2v-specimen {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--text-muted); border: 1px dashed var(--glass-border); border-radius: 5px; padding: 4px 9px; white-space: nowrap;
}
.m2v-rec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 1px; background: var(--glass-border); border: 1px solid var(--glass-border); border-radius: 10px; overflow: hidden; }
.m2v-rec-cell { background: rgba(10,16,15,.82); padding: 14px 16px; }
.m2v-rec-cell dt { font-family: var(--mono); font-size: 9.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.m2v-rec-cell dd { margin: 0; font-size: 14.5px; font-weight: 600; color: var(--text); font-family: var(--mono); }
.m2v-rec-cell dd.ok { color: var(--cyan-bright); display: flex; align-items: center; gap: 7px; }
.m2v-rec-cell dd.ok::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-bright); box-shadow: 0 0 9px var(--cyan-bright); }
.m2v-corner { position: absolute; width: 15px; height: 15px; border: 1.5px solid var(--cyan); opacity: .55; z-index: 2; }
.m2v-corner.tl { top: 11px; left: 11px; border-right: 0; border-bottom: 0; border-radius: 4px 0 0 0; }
.m2v-corner.tr { top: 11px; right: 11px; border-left: 0; border-bottom: 0; border-radius: 0 4px 0 0; }
.m2v-corner.bl { bottom: 11px; left: 11px; border-right: 0; border-top: 0; border-radius: 0 0 0 4px; }
.m2v-corner.br { bottom: 11px; right: 11px; border-left: 0; border-top: 0; border-radius: 0 0 4px 0; }

/* --- passport field list --- */
.m2v-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px; margin: 30px 0 0; list-style: none; padding: 0; }
.m2v-fields li {
  display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--text);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 13px 16px; margin: 0;
}
.m2v-fields li::before { content: ""; flex: none; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.m2v-fields li .soon { margin-left: auto; font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: #f0b97b; }

/* --- callout: the disclaimers that must not be missed --- */
.m2v-callout {
  background: rgba(240,185,123,.07); border: 1px solid rgba(240,185,123,.3);
  border-radius: 12px; padding: 20px 24px; margin: 30px 0 0;
  font-size: 14.5px; line-height: 1.65; color: var(--text);
}
.m2v-callout strong { color: #f0b97b; display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 8px; }

/* --- use case grid --- */
.m2v-uses { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 14px; margin: 40px 0 0; }
.m2v-use {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 14px;
  padding: 24px 22px; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.m2v-use:hover { border-color: var(--glass-border-strong); transform: translateY(-4px); box-shadow: 0 14px 42px rgba(45,212,191,.12); }
.m2v-use .n { font-family: var(--mono); font-size: 11.5px; font-weight: 700; color: var(--cyan); letter-spacing: .1em; display: block; margin-bottom: 12px; }
.m2v-use h3 { font-size: 15.5px; font-weight: 700; margin: 0 0 9px; color: var(--text); letter-spacing: -.005em; }
.m2v-use p { font-size: 14px; line-height: 1.62; color: var(--text-muted); margin: 0; }

/* --- big philosophical statement --- */
.m2v-statement {
  font-size: clamp(26px, 5.2vw, 54px); font-weight: 800; line-height: 1.08; letter-spacing: -.03em;
  margin: 40px 0 0; text-align: center;
}
.m2v-statement span { display: block; }
.m2v-statement span:nth-child(1) { color: var(--text); }
.m2v-statement span:nth-child(2) { color: rgba(94,234,212,.72); }
.m2v-statement span:nth-child(3) { color: var(--cyan-bright); }

/* --- two dates --- */
.m2v-dates { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 0; margin: 44px 0 0; }
.m2v-date {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 32px 28px; text-align: center;
}
.m2v-date.digital { background: var(--glass-bg-strong); border-color: var(--glass-border-strong); box-shadow: 0 14px 46px rgba(45,212,191,.13); }
.m2v-date .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 16px; }
.m2v-date.digital .tag { color: var(--cyan-bright); }
.m2v-date .when { font-size: 12.5px; color: var(--text-muted); font-family: var(--mono); letter-spacing: .06em; margin-bottom: 8px; }
.m2v-date .d { font-size: clamp(20px, 3.2vw, 28px); font-weight: 800; color: var(--text); letter-spacing: -.018em; }
.m2v-date.digital .d { color: var(--cyan-bright); }
.m2v-dates .sep { display: flex; align-items: center; justify-content: center; padding: 0 20px; }
.m2v-dates .sep span { width: 1px; height: 100%; background: linear-gradient(180deg, transparent, var(--cyan), transparent); opacity: .5; }

/* --- closing / final CTA --- */
.m2v-final { text-align: center; padding: 104px 0 112px; position: relative; overflow: hidden; }
.m2v-final .m2v-h2 { max-width: 860px; margin-left: auto; margin-right: auto; }

/* --- responsive --- */
@media (max-width: 860px) {
  .m2v-sec { padding: 68px 0; }
  .m2v-hero { padding: 72px 0 68px; }
  .m2v-timeline { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .m2v-timeline::before { display: none; }
  .m2v-stage { padding-top: 46px; }
}
@media (max-width: 600px) {
  .wrap-wide { padding: 0 18px; }
  .m2v-sec { padding: 56px 0; }
  .m2v-hero { padding: 52px 0 56px; }
  .m2v-wordmark { letter-spacing: .3em; }
  .m2v-hero .m2v-lead { font-size: 16.5px; }
  .m2v-actions { flex-direction: column; }
  .m2v-actions .btn-primary, .m2v-actions .btn-ghost { width: 100%; }
  .m2v-timeline { grid-template-columns: 1fr; gap: 26px; }
  .m2v-record { padding: 24px 20px 20px; }
  .m2v-dates { grid-template-columns: 1fr; gap: 14px; }
  .m2v-dates .sep { display: none; }
  .m2v-final { padding: 68px 0 76px; }
}
