
:root {
  --bg: #060608;
  --bg-alt: #101018;
  --card: #15151f;
  --accent: #f9c56a;
  --accent-soft: rgba(249, 197, 106, 0.14);
  --text: #f4f4f7;
  --muted: #a6a6b3;
  --border: #2a2a3a;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --max-width: 1120px;
}

/* Base reset */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #151522 0, #050509 55%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Header and navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5, 5, 9, 0.98), rgba(5, 5, 9, 0.86));
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Image logo */
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.main-nav a:hover {
  border-color: rgba(249, 197, 106, 0.6);
  background: rgba(249, 197, 106, 0.06);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  color: var(--text);
  font-size: 1rem;
}

/* Layout */

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.1rem 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 1.6rem 0 2.6rem;
}

.hero-home h1 {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.hero-home .lead {
  font-size: clamp(0.98rem, 1.05vw, 1.05rem);
  color: var(--muted);
  max-width: 34rem;
}

.hero-content {
  position: relative;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-placeholder {
  width: 100%;
  min-height: 220px;
  border-radius: 24px;
  border: 1px solid rgba(249, 197, 106, 0.3);
  background: radial-gradient(
      circle at top left,
      rgba(249, 197, 106, 0.32),
      transparent 55%
    ),
    radial-gradient(circle at bottom, #060612, #020206);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

/* Sections */

.page-hero {
  padding: 1.4rem 0 1.6rem;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  margin-bottom: 0.3rem;
}
.page-hero .lead {
  color: var(--muted);
  font-size: 0.98rem;
}

.content-section {
  margin: 1.6rem 0 2.1rem;
}

.pillars h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

/* Grids */

.grid-3 {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.grid-2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.1rem 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.48);
}

/* Metrics */

.metrics {
  margin-top: 0.6rem;
  padding: 1.4rem 1.2rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(249, 197, 106, 0.35);
  background: linear-gradient(
    135deg,
    rgba(249, 197, 106, 0.14),
    rgba(5, 5, 12, 0.95)
  );
  box-shadow: var(--shadow-soft);
}
.metrics-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.2rem;
  align-items: flex-end;
}
.metric-number {
  font-size: 1.6rem;
  font-weight: 600;
}
.metric-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.metrics-footnote {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Split layout */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.split-media {
  display: grid;
  gap: 0.8rem;
}

/* Steps */

.steps {
  margin-top: 1rem;
}
.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(249, 197, 106, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: rgba(249, 197, 106, 0.09);
}
.step-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* CTA band */

.cta-band {
  margin-top: 2.2rem;
  padding: 1.4rem 1.4rem;
  border-radius: 999px;
  background: radial-gradient(
    circle at left,
    rgba(249, 197, 106, 0.42),
    rgba(4, 4, 8, 1)
  );
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(249, 197, 106, 0.6);
  box-shadow: var(--shadow-soft);
}
.cta-content h2 {
  margin: 0 0 0.25rem;
}
.cta-content p {
  margin: 0;
  color: var(--bg);
  font-weight: 500;
}
.cta-actions {
  display: flex;
  gap: 0.6rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.btn.primary {
  background: radial-gradient(circle at top left, #ffd58b, #e59a37);
  color: #1b1207;
  box-shadow: 0 0 20px rgba(249, 197, 106, 0.6);
}
.btn.primary:hover {
  filter: brightness(1.05);
}
.btn.ghost {
  background: rgba(249, 197, 106, 0.05);
  border-color: rgba(249, 197, 106, 0.6);
  color: var(--accent);
}
.btn.ghost:hover {
  background: rgba(249, 197, 106, 0.12);
}

.text-link {
  font-size: 0.9rem;
}

/* Forms */

.simple-form {
  display: grid;
  gap: 0.9rem;
  max-width: 460px;
  margin-top: 0.6rem;
}
.simple-form label {
  font-size: 0.85rem;
  display: grid;
  gap: 0.2rem;
}
.simple-form input,
.simple-form textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 14, 0.9);
  color: var(--text);
  font: inherit;
}
.simple-form input:focus,
.simple-form textarea:focus {
  outline: 1px solid var(--accent);
}
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* FAQ */

.faq details {
  background: rgba(8, 8, 16, 0.95);
  border-radius: 12px;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.6rem 0.9rem;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq p {
  margin-top: 0.4rem;
}

/* Misc */

.feature-cards article {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 1rem 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.checklist {
  list-style: none;
  padding-left: 0;
}
.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--accent);
  font-size: 0.9rem;
}

.story-list article {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 0.9rem 0.9rem;
  border: 1px solid var(--border);
  margin-bottom: 0.7rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.1rem 1.1rem 1.6rem;
  background: radial-gradient(circle at top, #171722, #050508);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-sub {
  margin-top: 0.4rem;
}

/* Utilities */

.muted {
  color: var(--muted);
}

/* Responsive tweaks */

@media (max-width: 960px) {
  main {
    padding-inline: 0.9rem;
  }
  .hero {
    gap: 2rem;
  }
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 1.2rem;
  }
  .hero-media {
    order: -1;
  }
  .hero-placeholder {
    min-height: 190px;
  }
  .split {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1300px) {
  body {
    font-size: 0.95rem;
  }

  .site-header {
    padding-inline: 0.9rem;
  }

  .logo-img {
    height: 28px;
  }

  .main-nav ul {
    position: absolute;
    right: 0.8rem;
    top: 3.1rem;
    background: rgba(5, 5, 9, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    padding: 0.55rem 0.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    min-width: 210px;
    display: none;
  }
  .main-nav ul.open {
    display: flex;
  }
  .main-nav a {
    width: 100%;
    padding: 0.45rem 0.7rem;
    white-space: normal;
  }
  .nav-toggle {
    display: inline-flex;
  }

  main {
    padding-inline: 0.8rem;
    padding-bottom: 2.4rem;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .cta-band {
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-content p {
    color: var(--text);
    font-weight: 400;
  }

  .metrics-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps {
    margin-top: 0.4rem;
  }
  .step {
    grid-template-columns: minmax(0, 1fr);
  }
  .step-number {
    margin-bottom: 0.3rem;
  }
}


.lux-hero-frame {
  border: 3px solid #f2b544; /* your gold */
  padding: 0;
  overflow: hidden;
}

.lux-hero-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* Video shells */

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(249, 197, 106, 0.3);
  box-shadow: var(--shadow-soft);
  background: #000;
  aspect-ratio: 16 / 9;
}

.hero-video,
.inline-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Optional: add a subtle fade on load */
.video-frame video {
  opacity: 0;
  transition: opacity 300ms ease-out;
}
.video-frame video.loaded {
  opacity: 1;
}


@media (max-width: 480px) {
  .hero-home h1 {
    font-size: 1.9rem;
  }
  .hero-home .lead {
    font-size: 0.95rem;
  }
  .cta-band {
    padding-inline: 1rem;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
