:root {
  --void: #05060a;
  --void-2: #0b0d14;
  --panel: rgba(14, 16, 24, 0.72);
  --line: rgba(212, 175, 55, 0.22);
  --gold: #d4af37;
  --gold-2: #f0d78c;
  --cyan: #3ee0c6;
  --cyan-2: #8ff6e6;
  --ivory: #f3eee3;
  --muted: #9aa3b5;
  --danger: #e23b4a;
  --ok: #3ee0c6;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--void); color: var(--ivory); }
body {
  font-family: var(--font-ui);
  overflow-x: hidden;
  cursor: none;
}
body.touch { cursor: auto; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

.grain, body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: .09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.orb {
  position: fixed; width: 48vw; height: 48vw; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0; opacity: .18;
}
.orb.a { background: #1a3d3a; top: -18vw; left: -10vw; }
.orb.b { background: #3a2a0a; bottom: -20vw; right: -12vw; }

.cursor {
  position: fixed; width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); mix-blend-mode: screen; pointer-events: none;
  z-index: 200; transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor.hot { width: 42px; height: 42px; background: transparent; border: 1px solid var(--gold-2); }

nav.top {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 10px 16px;
  background: rgba(8, 10, 16, .62);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  z-index: 90;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .16em; font-size: 13px; }
.brand img { width: 34px; height: 34px; object-fit: cover; border-radius: 8px; }
.nav-links { display: flex; gap: 22px; align-items: center; font-size: 13px; color: var(--muted); }
.nav-links a:hover { color: var(--ivory); }
.nav-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, #e6c25a, #b48a1e);
  color: #1a1406; font-weight: 700; letter-spacing: .04em;
  padding: 11px 18px; border-radius: 999px; cursor: none;
  box-shadow: 0 8px 24px rgba(212,175,55,.22);
}
.btn.ghost {
  background: transparent; color: var(--ivory); border-color: var(--line);
  box-shadow: none;
}
.btn.cyan {
  background: linear-gradient(180deg, #63f0d8, #1aa792);
  border-color: #7ff7e6; color: #04221d;
}
.burger { display: none; background: none; border: 0; color: var(--ivory); font-size: 22px; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; position: relative; z-index: 2; }
.hero { min-height: 100vh; padding: 140px 0 80px; display: grid; place-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.kicker {
  color: var(--cyan); letter-spacing: .28em; text-transform: uppercase;
  font-size: 11px; margin-bottom: 18px;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -.02em; }
h1 { font-size: clamp(44px, 7vw, 92px); line-height: .92; }
h1 em { font-style: italic; color: var(--gold-2); }
.lede { margin-top: 22px; color: var(--muted); font-size: 18px; max-width: 540px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.stat { border-top: 1px solid var(--line); padding-top: 12px; }
.stat b { display: block; font-family: var(--font-display); font-size: 28px; color: var(--gold-2); }
.stat span { color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.stage {
  position: relative; border-radius: 28px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 520px;
}
.stage img.hero-img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; filter: saturate(1.05) contrast(1.05); }
.stage .glass {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  background: rgba(6,8,12,.62); border: 1px solid var(--line);
  backdrop-filter: blur(16px); border-radius: 18px; padding: 16px 18px;
  display: grid; grid-template-columns: 88px 1fr; gap: 14px; align-items: center;
}
.ring { width: 88px; height: 88px; }
.journey { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan-2); }

section { padding: 90px 0; position: relative; z-index: 2; }
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
.sec-head h2 { font-size: clamp(36px, 5vw, 64px); }
.sec-head p { color: var(--muted); max-width: 420px; }

.grid-4, .grid-3, .grid-2 { display: grid; gap: 16px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; position: relative; overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.5); }
.card .num { color: var(--gold); letter-spacing: .2em; font-size: 12px; }
.card h3 { font-size: 28px; margin: 8px 0 10px; }
.card p { color: var(--muted); line-height: 1.55; }

.product {
  padding: 0; display: grid; grid-template-rows: 220px 1fr auto;
}
.product img { width: 100%; height: 220px; object-fit: cover; }
.product .body { padding: 22px; }
.product .foot { padding: 0 22px 22px; display: flex; justify-content: space-between; align-items: center; }
.price { font-family: var(--font-display); font-size: 34px; }
.price small { font-size: 14px; color: var(--muted); }

.ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.step {
  padding: 18px; border-radius: 16px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(62,224,198,.06), transparent);
}
.step b { display: block; margin-bottom: 6px; }

form.panel, .panel {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 24px; padding: 26px;
}
label { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 14px 0 6px; }
input, select, textarea {
  width: 100%; background: #0a0c12; border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.notice {
  border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px;
  color: var(--muted); font-size: 13px; margin-top: 12px;
}
.ok { color: var(--ok); }
.warn { color: var(--gold-2); }

footer {
  border-top: 1px solid var(--line); padding: 40px 0 70px; color: var(--muted); font-size: 13px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; }
footer a:hover { color: var(--ivory); }

.page-hero { padding: 150px 0 40px; }
.legal p, .prose p { color: var(--muted); line-height: 1.7; margin: 12px 0; }
.prose h3 { margin-top: 22px; }

.vault-lock { max-width: 520px; margin: 0 auto; text-align: center; }
.access { font-family: ui-monospace, monospace; letter-spacing: .18em; font-size: 18px; text-align: center; }

.toast {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #11141c; border: 1px solid var(--gold); color: var(--ivory);
  padding: 12px 16px; border-radius: 999px; opacity: 0; pointer-events: none;
  z-index: 120; transition: .3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0;
    background: #0b0d14; border: 1px solid var(--line); border-radius: 18px; padding: 16px;
  }
  .burger { display: block; }
  .hero-grid, .grid-4, .grid-3, .grid-2, .ladder, .foot-grid, .row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 48px; }
}
