:root {
  --bg: #060709;
  --bg-card: rgba(18, 19, 26, 0.7);
  --bg-alt: #0B0D13;
  --border: rgba(255, 215, 0, 0.12);
  --text: #F4F4F6;
  --text-muted: #8E92A4;
  --gold: #D4AF37;
  --gold-light: #FFDF73;
  --gold-dark: #8C6D1F;
  --platinum: #E5E4E2;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-title: 'Cinzel', serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.wrap--narrow {
  max-width: 860px;
}

/* Owner Banner */
.owner-banner {
  background: linear-gradient(90deg, #130f00, #2c2100, #130f00);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.65rem 0;
  font-size: 0.85rem;
}

.owner-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.owner-banner__tag {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.owner-banner__text a {
  color: var(--gold-light);
  text-decoration: underline;
  font-weight: 700;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 9, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.brand__logo {
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}

.brand__text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand__sub {
  font-size: 0.75rem;
  color: var(--gold);
  margin-left: 0.35rem;
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--gold-light);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn--gold {
  background: linear-gradient(135deg, #FFDF73 0%, #D4AF37 50%, #A67C1E 100%);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
}

.btn--glass:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 6rem 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.hero__glow {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.gold-gradient {
  background: linear-gradient(135deg, #FFF0B3 0%, #D4AF37 50%, #9E7D23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pillar-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--platinum);
}

.pillar-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 3D Poly Card */
.poly-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.poly-canvas-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.poly-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.poly-info h4 {
  font-size: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.poly-stat {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.p-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--gold-light);
}

.p-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Section */
.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.card__icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Simulator */
.sim-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem;
}

.sim-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.sim-head h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin: 0.75rem 0;
}

.sim-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.range-gold {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}

.toggle-group {
  display: flex;
  gap: 0.5rem;
}

.btn-toggle {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-toggle.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

.form-select, .vip-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
}

.sim-output {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.out-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.out-val {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #fff;
  margin-top: 0.25rem;
}

.out-val--gold {
  color: var(--gold-light);
}

/* Contact Box */
.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
}

.contact-box h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  margin: 1rem 0;
}

.executive-card {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.exec-avatar {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
  font-size: 1.2rem;
}

.exec-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.exec-info p {
  font-size: 0.85rem;
  color: var(--gold);
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-align: left;
  transition: all 0.2s ease;
}

.method-card:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.vip-form {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero__grid, .sim-grid, .form-row, .contact-methods {
    grid-template-columns: 1fr;
  }
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: block;
  }
  .sim-box, .contact-box {
    padding: 2rem;
  }
}
