@charset "UTF-8";

/* =========================================================
   0) ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-anim {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(.16,1,.3,1) forwards;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1),
              transform 0.7s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim { opacity: 1; animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   1) FONTS, VARIABLES, RESET
   ========================================================= */
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-VariableFont.woff2") format("woff2"),
       url("../fonts/DMSans-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-max: 1180px;
  --gold:     #c9a96e;
  --gold-lt:  #e8d4a8;
  --gold-dim: rgba(201,169,110,0.18);
  --bg:       #090909;
  --surface:  #111113;
  --border:   rgba(255,255,255,0.07);
  --border-gold: rgba(201,169,110,0.25);
  --text:     #ededee;
  --muted:    #666770;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   2) BACKGROUND — solid dark, no blur noise
   ========================================================= */
.main { position: relative; z-index: 1; }

.main-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}
.main-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 60%);
}

/* =========================================================
   3) HEADER
   ========================================================= */
.header {
  position: relative;
  z-index: 10;
  background: rgba(9,9,9,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 24px;
}

.header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: flex; align-items: center; text-decoration: none; color: inherit; }
.brand-logo { width: 108px; height: auto; display: block; }

.actions { display: flex; align-items: center; gap: 10px; }

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 11px 18px;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); opacity: 0.9; }
.btn:focus { outline: 2px solid var(--border-gold); outline-offset: 2px; }
.btn img { width: 10px; height: auto; }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-gold); }

.btn-gold {
  color: #0f0f0f;
  background: linear-gradient(135deg, #c9a96e 0%, #e8d4a8 50%, #c9a96e 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(201,169,110,0.2);
}
.btn-gold:hover { box-shadow: 0 6px 28px rgba(201,169,110,0.35); opacity: 1; }

/* =========================================================
   4) HERO
   ========================================================= */
.hero {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 28px 20px 48px;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  min-height: min(580px, calc(100vh - 140px));
  border-radius: 20px;
  overflow: hidden;
  background: #0e0e10;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 32px 80px rgba(0,0,0,0.6);
}

/* thin gold decorative line */
.hero-frame::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-lt) 50%, var(--gold) 60%, transparent 100%);
  opacity: 0.7;
  z-index: 4;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(9,9,9,0.92) 0%,
      rgba(9,9,9,0.75) 35%,
      rgba(9,9,9,0.15) 65%,
      rgba(9,9,9,0) 100%),
    linear-gradient(to bottom,
      rgba(9,9,9,0) 30%,
      rgba(9,9,9,0.4) 100%);
}

.hero-stroke {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 520px;
  padding: clamp(28px, 5vw, 60px);
  padding-top: clamp(48px, 12vh, 100px);
}

.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}

.hero-title {
  margin: 0 0 32px;
  line-height: 1.0;
}

.hero-big {
  display: block;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(38px, 4vw, 58px);
  color: #fff;
  text-wrap: nowrap;
}

/* gold on the number line */
.hero-big:nth-child(2) {
  background: linear-gradient(135deg, #c9a96e 0%, #f0e0b8 45%, #c9a96e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-big--white {
  color: rgba(255,255,255,0.55) !important;
  background: none !important;
  -webkit-text-fill-color: rgba(255,255,255,0.55) !important;
  font-size: clamp(22px, 2.4vw, 34px) !important;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.hero-girl {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}
.hero-girl > img {
  height: 105%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  transform: scaleX(-1);
  filter: drop-shadow(-30px 0 50px rgba(0,0,0,0.8));
}

.hero-cta-link { text-decoration: none; }
.hero-cta {
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(201,169,110,0.25);
}

/* =========================================================
   5) WELCOME PACKAGE TABLE
   ========================================================= */
.wp-section {
  max-width: var(--page-max);
  margin: 60px auto 0;
  padding: 0 20px;
  text-align: center;
}

.wp-title {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.wp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: 1px solid var(--border-gold);
}

.wp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  font-size: 13px;
}

.wp-table thead th {
  padding: 14px 12px;
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  white-space: nowrap;
}

.wp-table tbody tr {
  transition: background 0.15s;
}
.wp-table tbody tr:hover {
  background: rgba(201,169,110,0.04);
}
.wp-table tbody td {
  padding: 16px 12px;
  text-align: center;
  color: #a8aab0;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.wp-table tbody tr:last-child td {
  border-bottom: none;
}
.wp-num {
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
}
.wp-offer {
  text-align: left;
  font-weight: 600;
  color: var(--text) !important;
  padding-left: 20px !important;
}
.wp-slot {
  font-weight: 500;
  color: var(--gold-lt) !important;
}
.wp-bold {
  font-weight: 700;
  color: var(--text) !important;
}
.wp-muted { color: var(--muted) !important; }
.wp-slot a {
  color: var(--gold-lt);
  text-decoration: none;
  border-bottom: 1px solid var(--border-gold);
  transition: color 0.15s, border-color 0.15s;
}
.wp-slot a:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.4);
}

/* =========================================================
   6) LEAD + STEPS
   ========================================================= */
.bl-lead {
  max-width: var(--page-max);
  margin: 72px auto 0;
  padding: 0 20px;
  text-align: center;
}
.bl-lead-title {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.bl-lead-sub {
  margin: 0 0 8px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.bl-steps-wrap {
  max-width: var(--page-max);
  margin: 20px auto 0;
  padding: 0 20px;
}
.bl-steps-heading {
  display: none;
}
.bl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bl-step {
  position: relative;
  padding: 28px 24px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid var(--border-gold);
  transition: border-color 0.2s, background 0.2s;
}
.bl-step:hover {
  border-color: rgba(201,169,110,0.5);
  background: rgba(201,169,110,0.03);
}

.step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 300;
  font-size: 15px;
  line-height: 1;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  margin-bottom: 18px;
}

.bl-step h5 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.bl-step p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================================
   7) FOOTER
   ========================================================= */
.footer {
  margin-top: 72px;
}
.footer-container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 20px 48px;
}

.footer-line {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.footer-providers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 40px 0 56px;
}
.footer-providers a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(22px, 3vw, 30px);
  width: clamp(90px, 11vw, 150px);
}
.footer-providers img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.4;
  transition: opacity 0.2s;
  filter: grayscale(1);
}
.footer-providers img:hover {
  opacity: 0.75;
  filter: grayscale(0);
}

.footer-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 24px 0;
}
.footer-cards img {
  height: 24px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(1);
  transition: opacity 0.2s;
}
.footer-cards img:hover { opacity: 0.7; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 14px 0;
  text-align: center;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  margin-top: 28px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}
.footer-icons img {
  height: 38px;
  width: auto;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.footer-icons img:hover { opacity: 0.85; }
.footer-icons img[alt="18+"] { max-height: 32px; }

.footer-license {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.footer-license a { color: var(--muted); text-decoration: underline; transition: color 0.15s; }
.footer-license a:hover { color: var(--gold); }

/* =========================================================
   8) FLOATING CTA
   ========================================================= */
.float-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(90px);
  z-index: 100;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #0f0f0f;
  background: linear-gradient(135deg, #c9a96e 0%, #e8d4a8 50%, #c9a96e 100%);
  box-shadow: 0 8px 28px rgba(201,169,110,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.2s;
}
.float-cta:hover {
  box-shadow: 0 12px 40px rgba(201,169,110,0.5);
  transform: translateX(-50%) translateY(-1px);
}

/* =========================================================
   9) RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero-girl > img { max-width: 105%; }
  .hero-copy { max-width: 460px; }
  .bl-lead-sub { font-size: clamp(30px, 6vw, 50px); }
}

@media (max-width: 768px) {
  .float-cta--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .footer-providers a { height: 24px; width: clamp(80px, 20vw, 130px); }
  .wp-section { margin-top: 44px; }
}

@media (max-width: 720px) {
  html, body { overflow-x: hidden; }
  .bl-steps { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .bl-lead { margin-top: 44px; }
  .bl-lead-sub { font-size: 28px; }
  .bl-lead-title { font-size: 11px; }
  .bl-steps-wrap { padding: 0 14px; }
  .wp-title { font-size: 11px; }
  .wp-table { font-size: 12px; min-width: 680px; }
  .wp-table thead th, .wp-table tbody td { padding: 10px 8px; }
}

@media (max-width: 560px) {
  .actions a:first-child { display: none; }
  .btn { padding: 10px 14px; }

  .float-cta {
    bottom: 16px;
    padding: 14px 28px;
    font-size: 13px;
    width: calc(100% - 32px);
    max-width: 360px;
    border-radius: 6px;
  }

  /* hero */
  .hero {
    padding: 12px 10px 28px;
    min-height: calc(100vh - 220px);
  }
  .hero-frame {
    border-radius: 16px;
    min-height: calc(100vh - 180px);
  }
  .hero-bg > img { object-position: 65% bottom; }

  .hero-copy {
    position: absolute;
    left: 50%;
    bottom: 0;
    top: auto;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    padding: 32px 20px 36px;
    text-align: center;
    z-index: 3;
  }
  .hero-eyebrow { display: none; }
  .hero-big { font-size: clamp(30px, 9vw, 48px); text-wrap: normal; }
  .hero-big:nth-child(2) { font-size: clamp(30px, 9vw, 48px); }
  .hero-cta { width: 100%; font-size: 13px; }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(9,9,9,0.92) 0%,
      rgba(9,9,9,0.45) 42%,
      rgba(9,9,9,0) 68%
    );
    z-index: 1;
  }
  .hero-girl {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
  .hero-girl > img {
    display: block;
    width: 100%;
    height: auto;
    transform: scaleX(-1);
  }

  .bl-step { padding: 20px 18px; }
  .wp-section { padding: 0 10px; margin-top: 32px; }

  .main-bg::before {
    background-image: none;
  }
}

@media (max-width: 480px) {
  .brand-logo { width: 84px; }
  .actions { gap: 8px; }
  .actions .btn { font-size: 11px; padding: 8px 12px; border-radius: 6px; }
  .bl-lead-sub { font-size: 24px; }
  .footer-icons { gap: 18px; }
  .footer-icons img { height: 30px; }
}

@media (max-width: 375px) {
  .hero-frame { border-radius: 12px; min-height: calc(100vh - 50px); }
  .bl-lead-sub { font-size: 22px; }
}
