:root {
  --gold: #d6b25e;
  --gold-light: #f1d58a;
  --gold-dark: #9e7830;
  --dark: #080a0f;
  --dark-2: #10141f;
  --dark-3: #171d2a;
  --white: #fbfaf6;
  --cream: #f4efe4;
  --muted: #b9b3a8;
  --text: #20222a;
  --line: rgba(214, 178, 94, 0.25);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(8, 10, 15, 0.74);
  border-bottom: 1px solid rgba(214, 178, 94, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  letter-spacing: 0.08em;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(214, 178, 94, 0.55);
  border-radius: 50%;
  color: var(--gold-light);
  background: radial-gradient(circle at 30% 20%, rgba(241, 213, 138, 0.22), rgba(214, 178, 94, 0.03) 55%, transparent);
  box-shadow: inset 0 0 22px rgba(214, 178, 94, 0.08);
}

.brand-text {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(251, 250, 246, 0.78);
  font-size: 0.92rem;
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(214, 178, 94, 0.45);
  border-radius: 999px;
  color: var(--gold-light) !important;
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 130px) 0;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 25%, rgba(214, 178, 94, 0.16), transparent 34%),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.10), transparent 24%),
    linear-gradient(135deg, #05070b 0%, #101520 55%, #080a0f 100%);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214, 178, 94, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 178, 94, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 70%);
  opacity: 0.28;
}

.hero::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 178, 94, 0.7), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  font-weight: 750;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 690px;
  color: rgba(251, 250, 246, 0.76);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 720;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #080a0f;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 38px rgba(214, 178, 94, 0.28);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(214, 178, 94, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  color: rgba(251, 250, 246, 0.72);
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.84rem;
}

.hero-panel {
  position: relative;
}

.panel-glow {
  position: absolute;
  inset: -70px -40px;
  background: radial-gradient(circle, rgba(214, 178, 94, 0.20), transparent 62%);
  filter: blur(8px);
}

.status-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(214, 178, 94, 0.28);
  border-radius: 999px;
  color: rgba(251, 250, 246, 0.78);
  background: rgba(8, 10, 15, 0.58);
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 6px rgba(214, 178, 94, 0.12);
}

.lux-card {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(214, 178, 94, 0.26);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, rgba(214, 178, 94, 0.08), transparent 50%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.lux-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 82px;
}

.card-label,
.card-code {
  color: rgba(251, 250, 246, 0.64);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.card-code {
  color: var(--gold-light);
}

.lux-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.lux-card p {
  color: rgba(251, 250, 246, 0.72);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.16);
  border-radius: 18px;
}

.mini-metrics div {
  padding: 16px 12px;
  background: rgba(0, 0, 0, 0.20);
}

.mini-metrics strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.mini-metrics span {
  display: block;
  color: rgba(251, 250, 246, 0.55);
  font-size: 0.78rem;
}

.section-light {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(214, 178, 94, 0.12), transparent 30%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.section-heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.section-heading p,
.split-text,
.feature-copy p,
.partner-grid p,
.contact-box p {
  color: #5e5a52;
  font-size: 1.06rem;
}

.section-dark .section-heading p,
.section-dark .split-text,
.section-dark .product-item p,
.section-dark .card p {
  color: rgba(251, 250, 246, 0.68);
}

.section-heading.narrow {
  max-width: 720px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 28px;
  border: 1px solid rgba(158, 120, 48, 0.18);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 46px rgba(11, 14, 20, 0.06);
}

.card p {
  margin-bottom: 0;
  color: #625f58;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 0.82rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}

.product-list {
  display: grid;
  gap: 16px;
}

.product-item {
  padding: 30px;
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.product-item.featured {
  background:
    linear-gradient(135deg, rgba(214, 178, 94, 0.17), rgba(255, 255, 255, 0.045));
  border-color: rgba(214, 178, 94, 0.38);
}

.product-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 750;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.feature-box {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(158, 120, 48, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(214, 178, 94, 0.15), rgba(255, 255, 255, 0.88)),
    #fff;
  box-shadow: 0 22px 70px rgba(11, 14, 20, 0.08);
}

.check-list,
.partner-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.partner-card li {
  position: relative;
  padding-left: 30px;
  margin: 13px 0;
}

.check-list li::before,
.partner-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
}

.section-gold {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.45), transparent 34%),
    linear-gradient(135deg, #f8f1df, #d6b25e);
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 54px;
  align-items: center;
}

.partner-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 178, 94, 0.28), transparent 38%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  box-shadow: var(--shadow);
}

.partner-card li::before {
  color: var(--gold-light);
}

.dark-cards .card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(214, 178, 94, 0.18);
  box-shadow: none;
}

.contact-section {
  padding-bottom: clamp(78px, 9vw, 116px);
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  gap: 48px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 95% 10%, rgba(214, 178, 94, 0.20), transparent 32%),
    #fff;
  box-shadow: 0 24px 80px rgba(11, 14, 20, 0.08);
  border: 1px solid rgba(158, 120, 48, 0.14);
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
}

.contact-card span,
.contact-card small {
  display: block;
  color: rgba(251, 250, 246, 0.56);
}

.contact-card a {
  display: block;
  margin: 8px 0 12px;
  color: var(--gold-light);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 760;
  letter-spacing: -0.03em;
  word-break: break-word;
}

.site-footer {
  padding: 38px 0;
  color: rgba(251, 250, 246, 0.70);
  background: #05070b;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  display: block;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .split,
  .feature-grid,
  .partner-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .cards.four,
  .cards.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 130px;
  }

  .lux-card-top {
    margin-bottom: 48px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  .hero-actions,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cards.four,
  .cards.three,
  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 82px;
  }

  .card,
  .product-item,
  .partner-card,
  .contact-card {
    padding: 24px;
  }
}
