:root {
  --bg: #080810;
  --bg2: #0F0F1A;
  --bg3: #14141F;
  --surface: #1A1A28;
  --border: rgba(255,255,255,0.07);
  --text: #F0EEE8;
  --muted: rgba(240,238,232,0.45);
  --faint: rgba(240,238,232,0.10);
  --accent: #C89B3C;
  --accent2: #E8B84B;
  --accent-bg: rgba(200,155,60,0.10);
  --accent-glow: rgba(200,155,60,0.18);
  --chip-bg: rgba(200,155,60,0.10);
  --chip-border: rgba(200,155,60,0.30);
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Raleway', sans-serif;
  --fm: 'JetBrains Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.d {
  font-family: var(--fd);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.dxl {
  font-size: clamp(52px, 8vw, 104px);
}

.dlg {
  font-size: clamp(38px, 5vw, 68px);
}

.dmd {
  font-size: clamp(26px, 3vw, 44px);
}

.lbl {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.al {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 16px;
  flex-shrink: 0;
}

.ad {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-p {
  background: var(--accent);
  color: #080810;
}

.btn-p:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.btn-o {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-o:hover {
  background: var(--accent-bg);
}

.chip {
  display: inline-block;
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  padding: 5px 14px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  opacity: 0.12;
}

.hero-bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.hero-name {
  max-width: 820px;
  margin-bottom: 36px;
}

.hero-name em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 56px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 48px;
  max-width: 900px;
}

.hs {
  flex: 1;
  padding: 0 40px 0 0;
  border-right: 1px solid var(--border);
}

.hs:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 40px;
}

.hs:first-child {
  padding-left: 0;
}

.hs-n {
  font-family: var(--fd);
  font-size: 50px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.hs-l {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.au {
  animation: fadeUp 0.7s ease both;
}

.au1 {
  animation: fadeUp 0.7s 0.15s ease both;
}

.au2 {
  animation: fadeUp 0.7s 0.3s ease both;
}

.au3 {
  animation: fadeUp 0.7s 0.45s ease both;
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 24px;
  }
  .hero {
    padding: 80px 24px 60px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  .hs {
    border-right: none;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--border);
  }
  .hero-bg {
    display: none;
  }
}
:root {
  --gold:    #C89B3C;
  --bg:      #080810;
  --surface: #0D0D1A;
  --border:  rgba(255,255,255,.07);
  --text:    #F0EEE8;
  --muted:   rgba(240,238,232,.4);
  --green:   #4CAF8A;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --mono:    'JetBrains Mono', monospace;
}