/* ============================================================
   Bitjust crawler snapshot — Dark Luxury Minimalism
   Mirrors the brand aesthetic of the React SPA.
   - Black velvet (#010201) with liquid gold (#f4ac45)
   - Manrope-style display, Inter-style body (system fallbacks)
   - Frosted glass cards, gold dividers, subtle glows
   ============================================================ */

:root {
  --bg:        #010201;
  --bg-soft:   #0a0a0a;
  --bg-card:   rgba(26, 27, 29, 0.4);
  --line:      rgba(249, 250, 252, 0.06);
  --line-2:    rgba(249, 250, 252, 0.1);
  --gold:      #f4ac45;
  --gold-soft: rgba(244, 172, 69, 0.12);
  --gold-faint:rgba(244, 172, 69, 0.04);
  --ink:       #f9fafc;
  --ink-2:     #cfd3d8;
  --ink-3:     #b0b5bc;
  --ink-mute:  #6f7378;
  --ink-faint: #4a4e53;

  --display: ui-rounded, "SF Pro Rounded", "Manrope", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Ambient gold halo + subtle dot field — pure CSS, no JS */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(800px 500px at 75% 0%, rgba(244, 172, 69, 0.08), transparent 60%),
    radial-gradient(600px 400px at 0% 80%, rgba(244, 172, 69, 0.04), transparent 60%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 60%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 60%);
}

main, header, footer, .crumbs { position: relative; z-index: 1; }

a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ───── Navbar ─────────────────────────────────────────── */
.bj-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(1,2,1,0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.bj-nav .container {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.bj-nav-brand {
  font-family: var(--display);
  font-weight: 800; font-size: 22px; letter-spacing: -0.04em;
  color: var(--ink); position: relative;
}
.bj-nav-brand span { color: var(--gold); }
.bj-nav-brand::after {
  content: ""; position: absolute; right: -7px; top: 9px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 10px rgba(244,172,69,0.7);
}
.bj-nav-links {
  display: flex; gap: 30px; list-style: none; flex-wrap: wrap;
  font-family: var(--display);
}
.bj-nav-links a {
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
}
.bj-nav-links a:hover { color: var(--gold); text-decoration: none; }
.bj-nav-cta {
  display: inline-block;
  background: var(--gold); color: var(--bg);
  font-family: var(--display); font-weight: 700;
  padding: 10px 20px; border-radius: 10px;
  font-size: 14px; letter-spacing: -0.01em;
  transition: box-shadow .3s ease, transform .2s ease;
}
.bj-nav-cta:hover {
  text-decoration: none;
  box-shadow: 0 0 30px rgba(244,172,69,0.3);
  transform: translateY(-1px);
}

/* ───── Sections ───────────────────────────────────────── */
section { padding: 88px 0; position: relative; }
section + section::before {
  content: ""; display: block; height: 1px;
  background: linear-gradient(to right, transparent, rgba(244,172,69,0.25), transparent);
  position: absolute; top: 0; left: 10%; right: 10%;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-family: var(--display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; height: 1px; width: 28px; background: var(--gold);
}

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.08;
}
h1 { font-size: clamp(38px, 6vw, 76px); font-weight: 800; margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; margin-bottom: 20px; line-height: 1.12; }
h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.015em; }
h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
h5 { font-size: 13px; font-weight: 600; letter-spacing: -0.005em; }

.gold { color: var(--gold); }
.text-glow { text-shadow: 0 0 40px rgba(244,172,69,0.35); }

p { color: var(--ink-2); margin-bottom: 18px; max-width: 68ch; }
p.lead { font-size: 19px; line-height: 1.65; color: var(--ink-2); }
p.lead-lg { font-size: 21px; line-height: 1.6; max-width: 60ch; }
small.muted { color: var(--ink-mute); font-size: 13px; }

ul, ol { color: var(--ink-2); padding-left: 22px; margin-bottom: 18px; }
li { margin-bottom: 6px; }

/* Gold divider — signature element */
.gold-divider {
  height: 1px; width: 100%;
  background: linear-gradient(to right, transparent, rgba(244,172,69,0.4), transparent);
  margin: 40px 0;
}

/* CTAs */
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 30px; border-radius: 12px;
  font-family: var(--display); font-weight: 700;
  font-size: 15px; letter-spacing: -0.01em;
  transition: all .25s ease; line-height: 1;
}
.btn-primary {
  background: var(--gold); color: var(--bg);
}
.btn-primary::after { content: "→"; font-weight: 600; transition: transform .2s; }
.btn-primary:hover {
  text-decoration: none;
  box-shadow: 0 0 32px rgba(244,172,69,0.3);
  transform: translateY(-2px);
}
.btn-primary:hover::after { transform: translateX(3px); }
.btn-outline {
  border: 1px solid rgba(249,250,252,0.18);
  color: var(--ink); background: transparent;
}
.btn-outline:hover {
  text-decoration: none;
  border-color: rgba(244,172,69,0.45);
  color: var(--gold);
}

/* Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 32px;
  transition: border-color .3s ease, transform .3s ease;
}
.glass-card:hover {
  border-color: rgba(244,172,69,0.25);
  transform: translateY(-2px);
}
.glass-card h3 { color: var(--gold); }

.gold-card {
  background: linear-gradient(135deg, rgba(244,172,69,0.06), rgba(244,172,69,0.02));
  border: 1px solid rgba(244,172,69,0.18);
  border-radius: 18px;
  padding: 28px;
}

/* Grids */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Stats */
.stat { text-align: center; padding: 28px 16px; }
.stat .num {
  display: block; font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  color: var(--gold); margin-bottom: 10px;
  letter-spacing: -0.035em; line-height: 1;
  text-shadow: 0 0 30px rgba(244,172,69,0.25);
}
.stat .lab { font-size: 13.5px; color: var(--ink-2); line-height: 1.4; }
.stat .sub { display: block; font-size: 11px; color: var(--ink-mute); margin-top: 4px; }

.stats-bar {
  border-top: 1px solid rgba(244,172,69,0.15);
  border-bottom: 1px solid rgba(244,172,69,0.15);
  padding: 32px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats-grid > * + * { border-left: 1px solid rgba(244,172,69,0.15); }
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid > * + * { border-left: none; }
  .stats-grid > *:nth-child(odd) { border-right: 1px solid rgba(244,172,69,0.15); }
  .stats-grid > *:nth-child(-n+2) { border-bottom: 1px solid rgba(244,172,69,0.15); }
}

/* Products */
.product-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 48px 0;
}
.product-block.reverse > .product-text { order: 2; }
@media (max-width: 880px) {
  .product-block { grid-template-columns: 1fr; gap: 32px; }
  .product-block.reverse > .product-text { order: 0; }
}
.product-num {
  font-family: var(--display);
  font-size: 84px; font-weight: 800;
  color: rgba(244,172,69,0.18);
  line-height: 0.9; letter-spacing: -0.05em;
  display: inline-block; vertical-align: middle; margin-right: 16px;
}
.product-head { display: flex; align-items: center; margin-bottom: 18px; }
.tag {
  display: inline-block; padding: 5px 14px;
  background: rgba(244,172,69,0.1); color: var(--gold);
  font-family: var(--display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 999px; margin-bottom: 8px;
}
.product-text h3 { font-size: 28px; }
.product-text h4 { font-size: 22px; color: var(--ink); margin: 8px 0 18px; }
.features {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px;
}
.features span {
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  background: rgba(26,27,29,0.4);
  border-radius: 10px;
  font-size: 13.5px; color: var(--ink-2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.product-visual {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 30%, rgba(244,172,69,0.12), transparent 60%),
    linear-gradient(135deg, rgba(244,172,69,0.04), rgba(26,27,29,0.6));
  border: 1px solid rgba(244,172,69,0.15);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-visual .glyph {
  font-family: var(--display); font-size: 80px;
  color: var(--gold); opacity: 0.85;
  text-shadow: 0 0 60px rgba(244,172,69,0.4);
  letter-spacing: -0.05em;
}

/* FAQ */
.faq-list { margin-top: 32px; }
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 8px;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; font-family: var(--display);
  font-weight: 600; color: var(--ink);
  font-size: 18px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; color: var(--gold); font-size: 24px;
  font-weight: 300; transition: transform .25s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin-top: 14px; font-size: 15px; }

/* Breadcrumb */
.crumbs {
  padding: 18px 0; border-bottom: 1px solid var(--line);
  font-size: 13px; color: var(--ink-mute);
  font-family: var(--display);
}
.crumbs a { color: var(--ink-2); }
.crumbs a:hover { color: var(--gold); text-decoration: none; }
.crumbs span.sep { margin: 0 10px; color: var(--ink-faint); }
.crumbs span.cur { color: var(--gold); }

/* Footer */
footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px; margin-bottom: 40px;
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-col h5 {
  font-size: 13px; font-weight: 600; margin-bottom: 16px;
  color: var(--ink); letter-spacing: 0.02em;
}
.foot-col ul { list-style: none; padding: 0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { color: var(--ink-mute); font-size: 13.5px; }
.foot-col a:hover { color: var(--gold); text-decoration: none; }
.foot-tag { color: var(--ink-mute); font-size: 13px; margin-top: 14px; max-width: 28ch; }
.foot-disclaimer {
  border-top: 1px solid var(--line);
  padding-top: 22px; margin-bottom: 18px;
}
.foot-disclaimer p {
  font-size: 11.5px; color: var(--ink-faint);
  line-height: 1.75; max-width: none;
}
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.foot-bottom p { font-size: 12px; color: var(--ink-mute); margin: 0; }

/* ───── Hero ───────────────────────────────────────────── */
.hero {
  padding: 120px 0 88px; min-height: 80vh;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 30%, rgba(244,172,69,0.13), transparent 60%),
    radial-gradient(40% 60% at 100% 100%, rgba(244,172,69,0.06), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-content { max-width: 740px; }

.trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 880px; margin-top: 64px;
}
@media (max-width: 760px) { .trust-row { grid-template-columns: 1fr; } }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .dot {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(244,172,69,0.12);
  border: 1px solid rgba(244,172,69,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700;
  font-family: var(--display); font-size: 16px;
}
.trust-item h4 { font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.trust-item p { font-size: 13px; color: var(--ink-mute); margin: 0; max-width: none; }

/* ───── Auth pages ────────────────────────────────────── */
.auth-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  padding: 64px 0; align-items: center; min-height: 70vh;
}
@media (max-width: 880px) { .auth-grid { grid-template-columns: 1fr; gap: 40px; } }
.auth-side h2 { margin-bottom: 18px; }
.auth-side h2 .br { display: block; }
.auth-side p { color: var(--ink-mute); }
.auth-side ul { list-style: none; padding: 0; margin-top: 32px; }
.auth-side li {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-2); padding: 12px 0;
  font-size: 14.5px;
}
.auth-side li .check {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(244,172,69,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700;
}
.auth-form {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 20px; padding: 40px;
}
.auth-form h1 { font-size: clamp(26px, 3vw, 32px); margin-bottom: 8px; }
.auth-form p.sub { color: var(--ink-mute); margin-bottom: 28px; font-size: 14px; }
.auth-form label {
  display: block; font-family: var(--display);
  font-size: 11px; font-weight: 600;
  color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 8px; margin-top: 18px;
}
.auth-form input {
  width: 100%; padding: 14px 16px; font-size: 14px;
  background: #1a1b1d; border: 1px solid var(--line-2);
  color: var(--ink); border-radius: 10px;
  font-family: inherit; transition: border-color .2s;
}
.auth-form input:focus { outline: none; border-color: rgba(244,172,69,0.4); }
.auth-form input::placeholder { color: var(--ink-mute); }
.auth-form button {
  width: 100%; padding: 16px; margin-top: 26px;
  background: var(--gold); color: var(--bg);
  font-family: var(--display); font-weight: 700;
  border: none; border-radius: 10px; font-size: 15px;
  cursor: pointer; letter-spacing: -0.01em;
  transition: box-shadow .25s, transform .15s;
}
.auth-form button:hover { box-shadow: 0 0 32px rgba(244,172,69,0.3); transform: translateY(-1px); }

/* ───── Legal pages ───────────────────────────────────── */
.legal main { max-width: 780px; margin: 0 auto; padding: 56px 28px 96px; }
.legal h1 { font-size: clamp(34px, 4.5vw, 48px); margin-bottom: 10px; }
.legal section { padding: 28px 0; border: none; }
.legal section + section::before { display: none; }
.legal section h2 {
  font-family: var(--display);
  font-size: 19px; font-weight: 700; margin-bottom: 14px;
  color: var(--ink); letter-spacing: -0.01em;
}
.legal section h3 {
  font-size: 14.5px; font-weight: 600;
  margin: 16px 0 6px; color: var(--ink-3);
  letter-spacing: 0;
}
.legal p {
  font-size: 14.5px; line-height: 1.85;
  color: var(--ink-3); max-width: none;
  margin-bottom: 14px;
}
.legal .last-updated { color: var(--ink-mute); font-size: 13.5px; margin-bottom: 28px; }
.legal hr {
  border: none;
  background: linear-gradient(to right, transparent, rgba(244,172,69,0.4), transparent);
  height: 1px; margin: 28px 0;
}
.legal .eyebrow { margin-bottom: 14px; }

/* Utilities */
.text-center { text-align: center; }
.center-block { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
