:root {
  --ink: #070707;
  --panel: #11110f;
  --panel-2: #181713;
  --paper: #f4efe5;
  --muted: #b9b1a3;
  --gold: #d4af62;
  --gold-bright: #f0d697;
  --line: rgba(240, 214, 151, .24);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }
img, video { max-width: 100%; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 99; background: var(--paper); color: var(--ink); padding: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,7,7,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-row { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: .16em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-bright); font-family: Georgia, serif; font-size: 22px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 22px; color: #ded7cb; font-size: .92rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold-bright); }
.menu-button { display: none; margin-left: auto; border: 1px solid var(--line); background: transparent; color: white; border-radius: 999px; padding: 9px 13px; }
.lang { color: var(--muted); font-size: .82rem; border-left: 1px solid var(--line); padding-left: 18px; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border: 1px solid var(--gold); border-radius: 999px; background: transparent; color: var(--paper); font-weight: 700; }
.button.gold { background: var(--gold); color: #181108; }
.button:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: #181108; }
.button.small { min-height: 38px; padding: 0 16px; font-size: .88rem; }

.hero { min-height: 710px; display: grid; align-items: end; padding: 90px 0 70px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 30%, rgba(212,175,98,.16), transparent 35%), linear-gradient(to top, #070707 8%, rgba(7,7,7,.42) 58%, rgba(7,7,7,.8)); }
.hero-media { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(244,239,229,.48); letter-spacing: .18em; text-transform: uppercase; background: linear-gradient(135deg, #25231e, #090909 55%, #21170b); }
.hero-media::before { content: ""; width: min(62vw, 740px); aspect-ratio: 16/8; border: 1px solid rgba(240,214,151,.28); position: absolute; transform: rotate(-3deg); }
.hero .wrap { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 12px; color: var(--gold-bright); text-transform: uppercase; font-size: .78rem; font-weight: 800; letter-spacing: .2em; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.03; font-weight: 500; }
h1 { margin: 0; max-width: 920px; font-size: clamp(3.2rem, 8vw, 7.5rem); letter-spacing: -.045em; }
.hero-copy { max-width: 720px; margin: 24px 0 0; color: #d8d0c3; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.section { padding: 92px 0; border-bottom: 1px solid var(--line); }
.section.soft { background: var(--paper); color: #171511; }
.section.alt { background: var(--panel); }
.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 36px; }
.section-head > div { max-width: 780px; }
h2 { font-size: clamp(2.4rem, 5vw, 4.9rem); margin: 0 0 16px; letter-spacing: -.035em; }
.lede { margin: 0; max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.soft .lede, .soft .card p { color: #5f594f; }

.grid-3, .grid-4 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { min-height: 310px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel-2); }
.soft .card { background: #fffdf8; border-color: rgba(23,21,17,.16); }
.card-kicker { color: var(--gold); font-size: .75rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.card h3 { margin: 18px 0 12px; font-size: 2rem; }
.card p { color: var(--muted); }
.card .text-link { margin-top: auto; color: var(--gold-bright); font-weight: 800; }
.soft .text-link { color: #7b5311; }
.card-media-wrap { position: relative; width: calc(100% + 56px); margin: -28px -28px 20px; }
.card-media { display: block; width: 100%; height: auto; }
.lock-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 11px 30px; background: rgba(9,9,9,.72); border: 1px solid var(--gold); border-radius: 999px; color: var(--gold-bright); font-weight: 800; letter-spacing: .3em; text-transform: uppercase; font-size: .95rem; white-space: nowrap; box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.future-card:has(.card-media-wrap)::before { display: none; }

.media-shell { min-height: 420px; border: 1px solid var(--line); border-radius: 24px; display: grid; place-items: center; background: linear-gradient(145deg, #201e19, #0b0b0b); color: var(--muted); text-transform: uppercase; letter-spacing: .16em; text-align: center; padding: 30px; }
.media-shell strong { display: block; color: var(--paper); font-family: Georgia, serif; text-transform: none; letter-spacing: 0; font-size: clamp(2rem, 4vw, 4rem); margin-bottom: 10px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.facts { display: grid; gap: 10px; margin: 26px 0; padding: 0; list-style: none; }
.facts li { padding: 12px 0; border-bottom: 1px solid var(--line); }

.future-card { min-height: 280px; position: relative; overflow: hidden; }
.future-card::before { content: "LOCKED"; position: absolute; right: -28px; top: 22px; width: 130px; text-align: center; transform: rotate(42deg); color: var(--gold-bright); font-size: .68rem; letter-spacing: .15em; }
.interest-button[disabled] { opacity: .72; cursor: default; background: #2b291f; color: var(--gold-bright); }
.demo-note { margin-top: 16px; color: var(--muted); font-size: .82rem; }

.form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; background: #0b0b0a; color: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; }
.form-status { color: var(--gold-bright); min-height: 1.5em; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

.page-hero { padding: 120px 0 80px; background: radial-gradient(circle at 80% 0, rgba(212,175,98,.17), transparent 32%); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6.6rem); }
.page-hero .hero-copy { max-width: 820px; }
.page-hero .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.page-hero .hero-text h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); }
.hero-visual img { width: 100%; height: auto; display: block; border-radius: 24px; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.55); }
@media (max-width: 900px) { .page-hero .hero-grid { grid-template-columns: 1fr; } .hero-visual { order: -1; } }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.stat { padding: 22px; border: 1px solid var(--line); border-radius: 14px; }
.stat strong { display: block; font-family: Georgia, serif; color: var(--gold-bright); font-size: 2.2rem; }

.site-footer { padding: 50px 0; color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 900px) {
  .header-row { min-height: 68px; }
  .menu-button { display: inline-block; }
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #090909; padding: 20px; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .nav .button { width: 100%; }
  .lang { border: 0; padding: 0; }
  .hero { min-height: 650px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .brand { font-size: .86rem; }
  .hero { min-height: 600px; padding-bottom: 48px; }
  h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .section { padding: 68px 0; }
  .grid-3, .grid-4, .stat-row, .form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .card { min-height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
