/* SPDX-License-Identifier: Proprietary */

/* ── CDN Font-Display Override ──
   Tabler Icons is loaded from cdn.jsdelivr.net. We cannot modify the CDN
   stylesheet, so we override font-display here to avoid FOIT (flash of
   invisible text). The browser merges this with the CDN @font-face rule. */
@font-face {
  font-family: 'tabler-icons';
  font-display: swap;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:focus-visible { outline: 2.5px solid rgba(255,255,255,.5); outline-offset: 2px; border-radius: 2px; }
:root {
  --accent:  #E0E0E0;
  --text:    #FFFFFF;
  --muted:   rgba(255,255,255,.65);
  --card-bg: rgba(0,0,0,.35);
  --border:  rgba(255,255,255,.15);
}
html { scroll-behavior: smooth; }
body {
  background: #4a4a4a;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.015) 2px, rgba(255,255,255,.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px),
    linear-gradient(135deg, #4a4a4a 0%, #525252 25%, #484848 50%, #505050 75%, #4a4a4a 100%);
  background-image: url('../concrete.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  text-transform: lowercase;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Utility ── */
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 24px 80px;
  position: relative;
}
.hero-content { position: relative; z-index: 1; }
.hero-logo {
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 200;
  font-family: 'Courier New', monospace;
  letter-spacing: 8px;
  margin-bottom: 40px;
}
.hero-logo .bracket { opacity: 1; }
.hero-tagline {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; min-height: 44px; box-sizing: border-box;
  background: #fff;
  color: #1a1a1a;
  font-size: 14px; font-weight: 300;
  border: none;
  border-radius: 3px;
  cursor: pointer; transition: all .2s;
  letter-spacing: .5px;
}
.btn-primary:hover { background: rgba(255,255,255,.85); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; min-height: 44px; box-sizing: border-box;
  background: transparent;
  color: #fff;
  font-size: 14px; font-weight: 300;
  border: none;
  border-radius: 3px;
  cursor: pointer; transition: all .2s;
  letter-spacing: .5px;
}
.btn-ghost:hover { background: rgba(255,255,255,.05); }

/* ── Section ── */
section { padding: 80px 0; }
.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 300; letter-spacing: 1px; line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 15px; color: var(--muted); max-width: 480px;
  line-height: 1.7; font-weight: 300;
}
.section-divider {
  width: 60px; height: 1px;
  background: rgba(255,255,255,.25);
  margin: 0 auto 48px;
}

/* ── About Cards (slide 36 style) ── */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.about-card h3 {
  font-size: 16px; font-weight: 500;
  margin-bottom: 14px; letter-spacing: .5px;
}
.about-card p, .about-card li {
  font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300;
}
.about-card ul { list-style: none; margin-top: 10px; }
.about-card ul li { padding: 3px 0; }
.about-card ul li::before { content: '\2022'; margin-right: 8px; color: #fff; }

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.3); }
.feature-icon {
  font-size: 28px; margin-bottom: 12px;
  opacity: 1;
}
.feature-card h3 { font-size: 15px; font-weight: 400; margin-bottom: 8px; letter-spacing: .3px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ── How it works ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 40px;
}
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 300;
}
.step h3 { font-size: 16px; font-weight: 400; margin-bottom: 6px; letter-spacing: .3px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ── Sign Up ── */
.signup-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .signup-wrapper { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  body, .policy-body { background-attachment: scroll; }
}

/* ── Tablet breakpoint ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-cards { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .signup-wrapper { gap: 32px; }
  .container { max-width: 720px; }
}

.signup-info .check-list {
  list-style: none; margin-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.signup-info .check-list li {
  display: flex; gap: 10px; align-items: center;
  font-size: 14px; font-weight: 300;
}
.signup-info .check-list li .check { color: #fff; font-size: 16px; }
.signup-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.signup-form-card h3 {
  font-size: 18px; font-weight: 300; margin-bottom: 24px; letter-spacing: .5px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 300;
  margin-bottom: 6px; color: var(--muted); letter-spacing: .3px;
}
.form-group label .req { color: #FF453A; margin-left: 2px; }
.form-group input {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 15px; font-weight: 300;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus { border-bottom-color: rgba(255,255,255,.7); }
.form-group input.error { border-bottom-color: #FF453A; }
.help-text { display: block; font-size: 12px; color: rgba(255,255,255,.65); margin-top: 5px; font-weight: 300; line-height: 1.4; }
.field-error { font-size: 13px; color: #FF6B60; margin-top: 5px; display: none; font-weight: 300; }
.field-error.show { display: block; }
.field-error.show::before { content: '\26A0 '; }
.form-submit {
  width: 100%; margin-top: 8px;
  font-size: 14px; padding: 14px; min-height: 44px; box-sizing: border-box;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.3); border-radius: 3px;
  cursor: pointer; transition: all .2s;
  font-weight: 300; letter-spacing: .5px;
}
.form-submit:hover { background: rgba(255,255,255,.2); }
.form-submit:disabled { opacity: .5; cursor: not-allowed; }
.form-note {
  font-size: 12px; color: var(--muted); text-align: center;
  margin-top: 14px; line-height: 1.5; font-weight: 300;
}
.form-note a { color: #fff; text-decoration: underline; }

/* Alert states */
.alert {
  border-radius: 4px; padding: 14px 16px; font-size: 14px;
  margin-bottom: 20px; display: none; line-height: 1.5; font-weight: 300;
}
.alert.show { display: block; }
.alert-success { background: rgba(125,184,125,.2); border: 1px solid rgba(125,184,125,.4); color: #b5e8b5; }
.alert-error   { background: rgba(255,69,58,.15);  border: 1px solid rgba(255,69,58,.3);  color: #ff7b73; }
.alert-ok-btn {
  display: inline-block; margin-top: 14px; padding: 14px 32px; min-height: 44px; box-sizing: border-box;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px; color: #fff; font-size: 14px; font-weight: 300;
  cursor: pointer; transition: background .2s;
}
.alert-ok-btn:hover { background: rgba(255,255,255,.2); }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
footer .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-size: 18px; font-weight: 200; letter-spacing: 3px;
  font-family: 'Courier New', monospace;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color .2s; font-weight: 300; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: var(--muted); font-weight: 300; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }

/* ── Loading spinner ── */
.spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Niche logo box ── */
.niche-logo-box {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.4);
  padding: 8px 16px;
  margin-top: 32px;
}
.niche-logo-box span {
  font-family: 'Courier New', monospace;
  font-size: 18px; font-weight: 200; letter-spacing: 3px;
}
/* ── Screen-reader only ── */
.sr-only {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* ── Skip-to-main Link ── */
.skip-link { position: absolute; top: -100%; left: 0; background: #1a1a1a; color: #fff; padding: 14px 16px; min-height: 44px; box-sizing: border-box; z-index: 1000; font-size: .875rem; }
.skip-link:focus { top: 0; }

/* ── App Store "coming soon" disabled link ── */
.app-store-soon {
  position: relative;
  opacity: .6;
  cursor: default;
  pointer-events: none;
}
.app-store-soon .app-store-tooltip {
  display: none;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,20,20,.95);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 100;
  border: 1px solid rgba(255,255,255,.15);
}
/* Show tooltip on hover/focus even though pointer-events:none is set on
   the anchor, we re-enable it so the tooltip can appear */
@media (hover: hover) {
  .app-store-soon {
    pointer-events: auto;
  }
  .app-store-soon:hover .app-store-tooltip,
  .app-store-soon:focus .app-store-tooltip,
  .app-store-soon:focus-within .app-store-tooltip {
    display: block;
  }
}
/* For keyboard users / no-hover devices */
.app-store-soon:focus .app-store-tooltip,
.app-store-soon:focus-visible .app-store-tooltip {
  display: block;
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: rgba(20,20,20,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 20px 24px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
}
.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
}
.cookie-banner-text {
  margin-bottom: 14px;
}
.cookie-banner-text a {
  text-decoration: underline;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  padding: 14px 22px;
  min-height: 44px;
  box-sizing: border-box;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}
.cookie-btn-accept {
  background: rgba(255,255,255,.15);
}
.cookie-btn-reject {
  background: transparent;
}
.cookie-btn-manage {
  background: transparent;
  color: #ccc;
  border-color: rgba(255,255,255,.15);
  font-weight: 300;
}
.cookie-dns-link {
  margin-left: auto;
  font-size: 12px;
  color: #bbb;
  text-decoration: underline;
}
.cookie-prefs {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.cookie-prefs-options {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 14px;
}
.cookie-prefs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cookie-prefs-row:last-child { border-bottom: none; }
.cookie-prefs-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.cookie-prefs-name {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}
.cookie-prefs-heading {
  margin: 0 0 8px;
}
.cookie-prefs-desc {
  font-size: 11px;
  font-weight: 300;
  color: #999;
  line-height: 1.4;
}
.cookie-prefs-badge {
  font-size: 10px;
  font-weight: 300;
  color: #888;
  margin-left: 12px;
  white-space: nowrap;
}
.cookie-toggle {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 12px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-track {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
}
.cookie-toggle input:checked + .cookie-toggle-track {
  background: rgba(255,255,255,.4);
}
.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
}
.cookie-toggle input:checked + .cookie-toggle-track::after {
  transform: translateX(16px);
}
.cookie-toggle input:focus-visible + .cookie-toggle-track {
  outline: 2.5px solid rgba(255,255,255,.5);
  outline-offset: 2px;
}
.cookie-prefs-options input[type="checkbox"] {
  accent-color: #737373;
}
.cookie-btn-save {
  padding: 14px 18px;
  min-height: 44px;
  box-sizing: border-box;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
}

/* ── Utility: text-align ── */
.ta-center { text-align: center; }

/* ── Utility: margin ── */
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }

/* ── Utility: positioning ── */
.pos-relative { position: relative; }

/* ── Utility: font-size ── */
.fs-16 { font-size: 16px; }

/* ── Section-sub centered variant ── */
.section-sub-center { text-align: center; margin: 0 auto 8px; }

/* ── Password strength meter ── */
.pw-strength-wrap {
  margin-top: 8px;
  display: flex; align-items: center; gap: 10px;
}
.pw-strength-track {
  flex: 1; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.pw-strength-bar {
  height: 100%; width: var(--pw-width, 0);
  border-radius: 2px;
  transition: width .3s ease, background-color .3s ease;
  background-color: var(--pw-color, transparent);
}
.pw-strength-label {
  font-size: 12px; font-weight: 300;
  min-width: 44px; text-align: right;
  color: var(--pw-color, inherit);
  letter-spacing: .3px;
}

/* ── Toggle password button ── */
.toggle-pw-btn {
  position: absolute; right: 0; top: 37px;
  background: none; border: none;
  color: rgba(255,255,255,.7);
  font-size: 12px; font-weight: 300;
  cursor: pointer; padding: 0;
}

/* ── Checkbox label row ── */
.checkbox-label {
  display: flex; align-items: flex-start; gap: 8px;
  margin: 12px 0; cursor: pointer;
}

/* ── Checkbox input offset ── */
.checkbox-input { margin-top: 3px; }

/* ── Form note inline (left-aligned, no extra margin) ── */
.form-note-inline { margin: 0; text-align: left; line-height: 1.4; }

/* ── Cookie prefs label (non-interactive) ── */
.cookie-prefs-label { cursor: default; }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .delay-1, .delay-2, .delay-3 { animation: none !important; }
  .spinner { animation: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   Redesigned Landing Page — nx- prefixed components
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --nx-bg:    #0E0F11;
  --nx-sf:    #17191D;
  --nx-sf2:   #20232B;
  --nx-ln:    rgba(255,255,255,.08);
  --nx-ln2:   rgba(255,255,255,.15);
  --nx-tx:    #FFFFFF;
  --nx-mut:   rgba(255,255,255,.7);
  --nx-dim:   rgba(255,255,255,.5);
  --nx-coral: #EC6A40;
  --nx-teal:  #3FC7A4;
}

/* ── Body override for redesigned landing ── */
body.nx-body {
  background: #4a4a4a;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.015) 2px, rgba(255,255,255,.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px),
    linear-gradient(135deg, #4a4a4a 0%, #525252 25%, #484848 50%, #505050 75%, #4a4a4a 100%);
  background-image: url('../concrete.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  text-transform: lowercase;
}
body.nx-body a { color: inherit; text-decoration: none; }
.nx-mono { font-family: 'Courier New', Courier, monospace; }

/* ── Nav ── */
.nx-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.nx-logo {
  font-size: 17px; letter-spacing: 1px;
  font-family: 'Courier New', Courier, monospace;
}
/* coral accent kept for CTAs/badges only — logo stays white */
.nx-nav-links {
  display: flex; gap: 20px;
  font-size: 13px; color: rgba(255,255,255,.7);
  font-family: 'Courier New', Courier, monospace;
}
.nx-nav-links a { transition: color .2s; }
.nx-nav-links a:hover { color: #fff; }
.nx-nav-right { display: flex; align-items: center; gap: 14px; }
.nx-nav-webapp {
  font-size: 13px; color: rgba(255,255,255,.7);
  font-family: 'Courier New', Courier, monospace;
  transition: color .2s;
}
.nx-nav-webapp:hover { color: #fff; }
.nx-nav-cta {
  font-size: 12.5px; font-weight: 500;
  padding: 8px 15px; border-radius: 4px;
  background: var(--nx-coral); color: #fff;
  transition: opacity .2s;
}
.nx-nav-cta:hover { opacity: .9; }

/* ── Hero ── */
.nx-hero {
  text-align: center;
  padding: 64px 24px 40px;
  max-width: 700px; margin: 24px auto 0;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 4px;
}
.nx-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 400; padding: 6px 14px; border-radius: 999px;
}
.nx-pill-teal {
  background: rgba(63,199,164,.2);
  color: var(--nx-teal);
  border: 1px solid rgba(63,199,164,.4);
}
.nx-dot {
  width: 6px; height: 6px; border-radius: 50%;
  display: inline-block;
}
.nx-dot-teal { background: var(--nx-teal); }
.nx-hero h1 {
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.2; font-weight: 300;
  letter-spacing: 1px; margin: 20px 0 0;
  color: #fff;
}
.nx-hero-sub {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.8);
  max-width: 460px; margin: 16px auto 0; font-weight: 300;
}
.nx-hero-actions {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 28px; flex-wrap: wrap;
}
.nx-btn-coral {
  font-size: 14px; font-weight: 400;
  padding: 14px 24px; border-radius: 3px;
  background: var(--nx-coral); color: #fff;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all .2s; border: none; cursor: pointer;
  min-height: 44px; box-sizing: border-box;
  letter-spacing: .5px;
}
.nx-btn-coral:hover { opacity: .9; transform: translateY(-1px); }
.nx-btn-outline {
  font-size: 14px; font-weight: 300;
  padding: 14px 24px; border-radius: 3px;
  border: 1px solid var(--border); color: #fff;
  background: transparent; cursor: pointer; transition: all .2s;
  min-height: 44px; box-sizing: border-box;
  letter-spacing: .5px;
}
.nx-btn-outline:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.3); }
.nx-trust-signals {
  display: flex; gap: 18px; justify-content: center;
  margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.8);
  flex-wrap: wrap; font-weight: 300;
}
.nx-trust-signals i { margin-right: 4px; }

/* ── Map Preview ── */
.nx-map-section { padding: 0 40px; max-width: 1080px; margin: 24px auto 0; }
.nx-map-wrap {
  position: relative;
  background: rgba(0,0,0,.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.nx-map-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.nx-map-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.nx-map-chips {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; gap: 7px; align-items: center;
  overflow-x: auto; scrollbar-width: none;
}
.nx-map-chips::-webkit-scrollbar { display: none; }
.nx-chip {
  font-size: 12px; padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.75);
  white-space: nowrap; background: rgba(0,0,0,.3);
  flex-shrink: 0; font-weight: 300;
}
.nx-chip-active {
  background: var(--nx-coral); color: #fff;
  border-color: transparent; font-weight: 500;
}
.nx-chip-filter {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
}
.nx-map-pin {
  position: absolute;
  font-size: 24px;
  transform: translate(-50%, -100%);
}
.nx-map-pin-coral { color: var(--nx-coral); }
.nx-map-pin-teal { color: var(--nx-teal); }
.nx-map-you {
  position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: #5b8cff;
  border: 3px solid rgba(91,140,255,.25);
  transform: translate(-50%, -50%);
}
.nx-map-card {
  position: absolute; left: 14px; bottom: 14px;
  width: 240px;
  background: rgba(0,0,0,.7);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 11px 12px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nx-map-card-row {
  display: flex; align-items: center; gap: 9px;
}
.nx-map-card-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(63,199,164,.18); color: var(--nx-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; flex-shrink: 0;
}
.nx-map-card-name {
  font-size: 13px; font-weight: 500; color: #fff;
}
.nx-map-card-niche {
  color: rgba(255,255,255,.5); font-weight: 400;
}
.nx-map-card-dist {
  font-size: 11px; color: rgba(255,255,255,.65);
}
.nx-map-card-badges {
  display: flex; align-items: center; gap: 8px; margin-top: 9px;
}
.nx-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; padding: 4px 9px; border-radius: 999px;
}
.nx-badge-coral {
  background: rgba(236,106,64,.14); color: var(--nx-coral);
}
.nx-badge-teal {
  background: rgba(63,199,164,.14); color: var(--nx-teal);
}

/* ── Niche Chips Cloud ── */
.nx-niches {
  padding: 28px 40px 36px;
  max-width: 1080px; margin: 24px auto 0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
}
.nx-niches-label {
  font-size: 14px; color: #fff;
  text-transform: lowercase; margin-bottom: 12px;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: .5px;
}
.nx-chip-cloud {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.nx-chip-18 {
  color: var(--nx-coral);
  border-color: rgba(236,106,64,.5);
  background: rgba(236,106,64,.1);
}

/* ── Feature Trio ── */
.nx-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px; margin: 24px auto 0;
  padding: 0 40px;
}
.nx-trio-card {
  background: rgba(0,0,0,.35);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.nx-trio-card .nx-trio-icon {
  font-size: 24px; margin-bottom: 12px; display: block;
}
.nx-icon-teal { color: var(--nx-teal); }
.nx-icon-coral { color: var(--nx-coral); }
.nx-invite-hint { font-size: 12px; opacity: .5; margin-top: 4px; }
.nx-invite-link { color: inherit; text-decoration: underline; }
.nx-trio-card h3 {
  font-size: 16px; font-weight: 400; margin: 0 0 8px;
  color: #fff; letter-spacing: .3px;
}
.nx-trio-card p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,.8); margin: 0; font-weight: 300;
}

@media (max-width: 640px) {
  .nx-trio { grid-template-columns: 1fr; }
  .nx-about-cards { grid-template-columns: 1fr; }
  .nx-nav-links { display: none; }
  .nx-map-wrap { height: 240px; }
  .nx-map-card { width: 200px; }
  .nx-hero h1 { font-size: 26px; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .nx-trio { grid-template-columns: 1fr; }
}

/* ── Landing About (redesigned) ── */
.nx-about {
  padding: 28px 40px 36px;
  max-width: 1080px; margin: 0 auto;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  margin-top: 24px;
}
.nx-about .nx-section-divider {
  width: 60px; height: 1px;
  background: rgba(255,255,255,.25);
  margin: 0 auto 40px;
}
.nx-about h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 300; letter-spacing: 1px;
  text-align: center; margin-bottom: 16px;
  color: #fff;
}
.nx-about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 32px;
}
.nx-about-card {
  background: rgba(0,0,0,.35);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.nx-about-card h3 {
  font-size: 16px; font-weight: 500;
  margin-bottom: 14px; color: #fff; letter-spacing: .5px;
}
.nx-about-card p, .nx-about-card li {
  font-size: 14px; color: rgba(255,255,255,.8);
  line-height: 1.7; font-weight: 300;
}
.nx-about-card ul { list-style: none; margin-top: 10px; }
.nx-about-card ul li { padding: 3px 0; }
.nx-about-card ul li::before { content: '\2022'; margin-right: 8px; color: #fff; }
.nx-about-links {
  margin-top: 16px; display: flex;
  flex-direction: column; gap: 8px;
}
.nx-about-links a {
  font-size: 13px; color: #fff; font-weight: 300;
  transition: color .2s;
}
.nx-about-links a:hover { color: rgba(255,255,255,.7); }

/* ── Landing How It Works (redesigned) ── */
.nx-how {
  padding: 28px 40px 36px;
  max-width: 1080px; margin: 0 auto;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  margin-top: 24px;
}
.nx-how h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 300; letter-spacing: 1px;
  text-align: center; margin-bottom: 16px;
  color: #fff;
}
.nx-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.nx-step {
  display: flex; gap: 14px; align-items: flex-start;
}
.nx-step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 400; color: var(--nx-coral);
}
.nx-step h3 {
  font-size: 16px; font-weight: 400;
  margin: 0 0 6px; color: #fff; letter-spacing: .3px;
}
.nx-step p {
  font-size: 14px; color: rgba(255,255,255,.8);
  line-height: 1.6; margin: 0; font-weight: 300;
}

/* ── Landing Signup (redesigned card) ── */
.nx-signup {
  padding: 28px 40px 36px;
  max-width: 1080px; margin: 0 auto;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.nx-signup h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 300; letter-spacing: 1px;
  text-align: center; margin-bottom: 16px;
  color: #fff;
}
.nx-signup-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; align-items: start;
}
@media (max-width: 768px) {
  .nx-signup-wrapper { grid-template-columns: 1fr; }
}
.nx-signup-info .nx-check-list {
  list-style: none; margin-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.nx-signup-info .nx-check-list li {
  display: flex; gap: 10px; align-items: center;
  font-size: 14px; color: rgba(255,255,255,.85); font-weight: 300;
}
.nx-signup-info .nx-check-list .nx-check-icon {
  color: #fff; font-size: 16px;
}
.nx-signup-info .nx-sub {
  font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.7; font-weight: 300;
}
.nx-signup-card {
  background: rgba(0,0,0,.35);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.nx-signup-card h3 {
  font-size: 18px; font-weight: 300;
  margin-bottom: 24px; color: #fff; letter-spacing: .5px;
}
/* Form inputs inside nx-signup-card */
.nx-signup-card .form-group input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  color: #fff;
}
.nx-signup-card .form-group input:focus {
  border-bottom-color: rgba(255,255,255,.7);
}
.nx-signup-card .form-group input::placeholder {
  color: rgba(255,255,255,.4);
}
.nx-signup-card .form-group label {
  color: rgba(255,255,255,.65);
}
.nx-signup-card .form-submit {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.3); border-radius: 3px;
  font-weight: 300; letter-spacing: .5px;
}
.nx-signup-card .form-submit:hover {
  background: rgba(255,255,255,.2);
}
.nx-signup-card .form-note { color: rgba(255,255,255,.5); }
.nx-signup-card .form-note a { color: #fff; text-decoration: underline; }
.nx-signup-card .alert-success {
  background: rgba(125,184,125,.2);
  border: 1px solid rgba(125,184,125,.4);
  color: #b5e8b5;
}

/* ── Landing Footer (redesigned) ── */
.nx-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: rgba(255,255,255,.75);
  font-family: 'Courier New', Courier, monospace;
  max-width: 1080px; margin: 0 auto;
  flex-wrap: wrap; gap: 12px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.nx-footer-nav {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.nx-footer-nav a {
  font-size: 13px; color: rgba(255,255,255,.75);
  transition: color .2s; font-weight: 300;
}
.nx-footer-nav a:hover { color: #fff; }

/* ── Light mode overrides for nx-body ── */
@media (prefers-color-scheme: light) {
  body.nx-body {
    --nx-tx: #1A1A1A;
    --nx-mut: #6B6B6B;
    --nx-dim: #8A8A8A;
    background-color: #e8e8e8;
    color: var(--nx-tx);
  }
  body.nx-body .nx-nav { background: rgba(255,255,255,.6); border-bottom-color: rgba(0,0,0,.1); }
  body.nx-body .nx-nav-cta { color: #fff; }
  body.nx-body .nx-btn-coral { color: #fff; }
  body.nx-body .nx-signup-card .form-submit { color: #fff; }
  body.nx-body .nx-map-wrap { background: rgba(255,255,255,.3); border-color: rgba(0,0,0,.1); }
  body.nx-body .nx-map-card { background: rgba(255,255,255,.85); }
  body.nx-body .nx-trio-card { background: rgba(255,255,255,.3); }
  body.nx-body .nx-about-card { background: rgba(255,255,255,.3); border-color: rgba(0,0,0,.1); }
  body.nx-body .nx-signup-card { background: rgba(255,255,255,.3); border-color: rgba(0,0,0,.1); }
  body.nx-body .nx-step-num { color: var(--nx-coral); background: rgba(255,255,255,.4); border-color: rgba(0,0,0,.1); }
  body.nx-body .nx-footer { border-top-color: rgba(0,0,0,.1); }
}

/* ══════════════════════════════════════════════════════════════════════════════
   Policy Pages — shared styles for privacy, terms, user policy, accessibility
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Policy: Top bar (privacy-policy.html) ── */
.policy-top-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  max-width: 800px; margin: 0 auto;
}
.policy-top-bar a {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.7);
  transition: color .2s;
}
.policy-top-bar a:hover { color: #fff; }
.policy-top-logo {
  font-family: 'Courier New', monospace;
  font-size: 18px; font-weight: 200; letter-spacing: 3px;
}

/* ── Policy: Page header ── */
.policy-page-header {
  text-align: center;
  padding: 60px 24px 40px;
}
.policy-page-header h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 200;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.policy-page-header p {
  font-size: 15px; color: rgba(255,255,255,.7); font-weight: 300;
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}
.policy-page-header .last-updated {
  font-size: 13px; color: rgba(255,255,255,.7); font-weight: 300;
  margin-top: 8px;
}

/* ── Policy: Container (narrower) ── */
.policy-container { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ── Policy: Section ── */
.pp-section {
  margin-bottom: 32px;
}
.pp-section h2 {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 300;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

/* ── Policy: Cards ── */
.pp-card {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pp-card p {
  font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; font-weight: 300;
  margin-bottom: 12px;
}
.pp-card p:last-child { margin-bottom: 0; }
.pp-card ul { list-style: none; margin-top: 8px; }
.pp-card ul li {
  font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; font-weight: 300;
  padding: 3px 0;
}
.pp-card ul li::before { content: '\2022'; margin-right: 8px; color: rgba(255,255,255,.6); }
.pp-card ul li strong { color: #fff; font-weight: 400; }
.pp-card a { text-decoration: underline; color: rgba(255,255,255,.7); }
.pp-card a:hover { color: #fff; }

/* ── Policy: Section divider ── */
.policy-section-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,.25);
  margin-bottom: 16px;
}

/* ── Policy: Footer ── */
.policy-footer {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 32px 0;
  margin-top: 40px;
}
.policy-footer .policy-container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}

/* ── Policy: Back to top ── */
.policy-back-to-top {
  text-align: center;
  padding: 24px 0;
}
.policy-back-to-top a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.policy-back-to-top a:hover { color: #fff; }

/* ── Policy: Cookie consent banner ── */
.cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,.85);
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 16px 24px;
  z-index: 9999;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cookie-consent-banner p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 300;
  text-transform: lowercase;
}
.cookie-consent-banner a {
  color: #fff;
  text-decoration: underline;
}
.cookie-consent-btn {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 300;
  text-transform: lowercase;
  transition: background .2s;
}

/* ── Terms / User Policy: Nav ── */
.policy-nav {
  padding: 16px 0;
  background: rgba(50,50,50,.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.policy-nav .policy-nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.policy-nav-logo { font-size: 20px; font-weight: 200; letter-spacing: 3px; font-family: 'Courier New', monospace; text-decoration: none; color: #fff; }
.policy-nav-links { display: flex; gap: 20px; list-style: none; }
.policy-nav-links a { font-size: 13px; font-weight: 300; color: #fff; text-decoration: none; }
.policy-nav-links a:hover { color: #fff; }

/* ── Terms / User Policy: Content ── */
.policy-content { padding: 60px 0 80px; }
.policy-content-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.policy-content h1 { font-size: 28px; font-weight: 300; letter-spacing: 1px; margin-bottom: 8px; }
.policy-content h2 { font-size: 18px; font-weight: 400; margin-bottom: 12px; margin-top: 28px; }
.policy-subtitle { font-size: 13px; color: #fff; font-weight: 300; margin-bottom: 32px; }

/* ── Terms / User Policy: Card ── */
.policy-card {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px; padding: 32px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  margin-bottom: 24px;
}
.policy-card p { font-size: 14px; font-weight: 300; color: #fff; margin-bottom: 14px; line-height: 1.8; }
.policy-card p:last-child { margin-bottom: 0; }
.policy-card ul { margin: 10px 0 14px 20px; }
.policy-card ul li { font-size: 14px; font-weight: 300; color: #fff; margin-bottom: 6px; line-height: 1.7; }
.policy-card a { color: #fff; }

/* ── User Policy: Vote footnote ── */
.vote-footnote { font-size: 12px; color: #fff; margin-top: 20px; }

/* ── Terms / User Policy: Footer (simple) ── */
.policy-simple-footer {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 24px 0; text-align: center;
}
.policy-simple-footer span { font-size: 16px; font-weight: 200; letter-spacing: 3px; font-family: 'Courier New', monospace; }

/* ── Accessibility page ── */
.a11y-container { max-width: 700px; margin: 0 auto; padding: 60px 24px; }
.a11y-container h1 { font-size: 28px; font-weight: 200; letter-spacing: 1px; margin-bottom: 24px; font-family: 'Courier New', monospace; }
.a11y-container h2 { font-size: 18px; font-weight: 300; margin: 24px 0 8px; }
.a11y-container p, .a11y-container li { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 12px; }
.a11y-container ul { list-style: none; }
.a11y-container ul li::before { content: '\2022'; margin-right: 8px; color: rgba(255,255,255,.6); }
.a11y-back { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 32px; display: inline-block; }
.a11y-back:hover { color: #fff; }
.a11y-underline-link { text-decoration: underline; }
.a11y-footer { border-top: 1px solid rgba(255,255,255,.15); padding: 24px 0; margin-top: 40px; text-align: center; font-size: 12px; color: rgba(255,255,255,.7); }

/* ── Policy body base (shared by all policy pages) ── */
.policy-body {
  background: #4a4a4a;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.015) 2px, rgba(255,255,255,.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px),
    linear-gradient(135deg, #4a4a4a 0%, #525252 25%, #484848 50%, #505050 75%, #4a4a4a 100%);
  background-image: url('../concrete.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  text-transform: lowercase;
}
.policy-body a { color: inherit; text-decoration: none; }

/* ── Light Mode ── */
@media (prefers-color-scheme: light) {
  :root {
    --text: #1a1a1a;
    --muted: rgba(0,0,0,.55);
  }
  body {
    background-color: #e8e8e8;
    color: var(--text);
  }
  .hero { background: rgba(0,0,0,.05); }
  .bottom-bar a { color: var(--text); border-color: rgba(0,0,0,.15); }
  .bottom-bar a:hover { background: rgba(0,0,0,.08); border-color: rgba(0,0,0,.3); }
  .about-card, .step-card, .feature-card { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.1); }
  .form-group input, .form-group select { background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.2); color: var(--text); }
  .form-group input::placeholder { color: rgba(0,0,0,.4); }
  .form-group label { color: var(--text); }
  .btn-primary { background: #1a1a1a; color: #fff; }
  .btn-primary:hover { background: #333; }
  .btn-ghost { color: var(--text); border-color: rgba(0,0,0,.3); }
  footer { border-top-color: rgba(0,0,0,.1); }
  footer, .footer-links a { color: var(--muted); }
}

/* ── 404 page ── */
.error-page{display:flex;align-items:center;justify-content:center;min-height:100vh;text-align:center;}
.error-page .hero-logo{margin-bottom:24px;}
.error-page h1{font-size:3rem;margin:0 0 .5rem;}
.error-page p{font-size:1.1rem;color:var(--muted);margin:0 0 1.5rem;}
.error-page .btn-primary{display:inline-block;}

/* ── Utility: display toggles ── */
.is-hidden{display:none !important;}
.is-visible-block{display:block !important;}
.is-visible-flex{display:flex !important;}
