@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;800;900&family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #09090B;
  --bg-subtle: #111115;
  --card: #15151A;
  --card-glass: rgba(23, 23, 28, 0.75);
  --border: rgba(200, 162, 101, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --gold-1: #EAD098;
  --gold-2: #C8A265;
  --gold-3: #987332;
  --gold-glow: rgba(200, 162, 101, 0.28);
  --ink: #FFFFFF;
  --muted: #A1A1A8;
  --dim: #71717A;
  --danger: #EF4444;
  --w: 620px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200, 162, 101, 0.14), transparent 70%),
    radial-gradient(circle at 90% 40%, rgba(200, 162, 101, 0.06), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(200, 162, 101, 0.05), transparent 50%);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Luxury Gold Text Gradient */
.gold-txt, .flame {
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Geometric Gold Monogram Crest */
.crest-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}
.crest-icon {
  width: 52px;
  height: 52px;
}

/* ---------- stepbar ---------- */
.stepbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.stepbar__in {
  max-width: var(--w);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.step { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.step i {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  background: #1C1C22;
  color: var(--dim);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.step--on { color: var(--gold-1); font-weight: 700; }
.step--on i {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #0C0A06;
  border: none;
  box-shadow: 0 0 12px var(--gold-glow);
}
.step--done { color: var(--muted); }
.step--done i {
  background: rgba(200, 162, 101, 0.2);
  color: var(--gold-1);
  border: 1px solid var(--border);
}
.step__line { width: 24px; height: 1px; background: rgba(255, 255, 255, 0.12); }

/* ---------- layout ---------- */
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: 520px; margin: 0 auto; padding: 0 20px; }
.sec { padding: 56px 0; border-top: 1px solid var(--border-subtle); }
.sec h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 5.8vw, 28px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 20px;
}
.sec__lede { color: var(--muted); font-size: 15px; margin: -10px 0 24px; }
.last { text-align: center; }

/* ---------- hero ---------- */
.hero {
  min-height: calc(100svh - 52px);
  min-height: calc(100dvh - 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 20px;
  text-align: center;
  box-sizing: border-box;
}

.hero__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__mid {
  width: 100%;
  margin: 12px 0 0;
  padding: 0;
}

.hero__bot {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 14px;
}
.subline-badge::before, .subline-badge::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-2);
}

.timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 16px;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.14) 0%, rgba(120, 20, 20, 0.22) 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 16px rgba(239, 68, 68, 0.12);
  font-size: 15px;
  font-weight: 600;
  color: #FCA5A5;
  letter-spacing: 0.02em;
}
.timer b { 
  color: #FF5A5A; 
  font-variant-numeric: tabular-nums; 
  font-weight: 900; 
  font-size: 18px;
  letter-spacing: 0.04em;
}
.timer__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5A5A;
  box-shadow: 0 0 8px #FF5A5A;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 7.5vw, 40px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 12px 0 0;
}
h1 .hero-main-title {
  display: block;
  font-size: clamp(28px, 9vw, 46px);
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #FFF0D0 0%, #DFBE7B 40%, #B89251 80%, #906B2C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
h1 .hero-sub-title {
  display: block;
  font-size: clamp(14.5px, 4.4vw, 19px);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}

/* Animated Gold Pointer Arrow */
.pointer-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 14px auto 14px;
  color: #FFF0D0;
  background: linear-gradient(135deg, rgba(200, 162, 101, 0.22) 0%, rgba(200, 162, 101, 0.08) 100%);
  border: 1.5px solid rgba(200, 162, 101, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(200, 162, 101, 0.35), inset 0 0 10px rgba(200, 162, 101, 0.2);
  animation: bounceGoldArrow 1.5s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pointer-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(200, 162, 101, 0.6), inset 0 0 14px rgba(200, 162, 101, 0.3);
}
.pointer-arrow svg {
  stroke: #FFF0D0;
  filter: drop-shadow(0 2px 8px rgba(200, 162, 101, 0.8));
}
@keyframes bounceGoldArrow {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 14px rgba(200, 162, 101, 0.3);
  }
  50% {
    transform: translateY(6px);
    box-shadow: 0 0 26px rgba(200, 162, 101, 0.7);
  }
}

/* Floating Glass Micro-Cards Section */
.glass-features {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.glass-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.glass-badge-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--gold-1);
}
.glass-badge span {
  font-size: 12px;
  font-weight: 700;
  color: #EEEEF0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- video card ---------- */
.vcard {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-glass);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(200, 162, 101, 0.08);
  margin: 0;
}
.vcard__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(120% 90% at 50% 20%, rgba(200, 162, 101, 0.2), transparent 70%),
    #0E0E12;
  display: grid;
  place-items: center;
}
.vcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.vcard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(12, 10, 8, 0.2) 0%, rgba(12, 10, 8, 0.6) 100%);
  pointer-events: none;
}
.vcard__art {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #181820 0%, #0C0C10 100%);
  padding: 20px;
  text-align: center;
}
.vcard__art-crest {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  opacity: 0.9;
}
.vcard__art-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-1);
}
.vcard__art-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.play {
  position: relative;
  z-index: 3;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 10px 30px var(--gold-glow), 0 0 0 6px rgba(200, 162, 101, 0.2);
  border: none;
  cursor: pointer;
  padding-left: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.play:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 40px var(--gold-glow), 0 0 0 8px rgba(200, 162, 101, 0.3);
}

.event-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #111116;
  border-top: 1px solid var(--border-subtle);
}
.event-bar__left {
  text-align: left;
}
.event-bar__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #FFF;
  letter-spacing: 0.02em;
}
.event-bar__desc {
  font-size: 12px;
  color: var(--muted);
}
.event-bar__badge {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #0C0A06;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 11px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- CTA Button ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 19px 24px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 4.2vw, 17px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #F3E0B5 0%, #D4AF67 40%, #B88E44 80%, #9C7228 100%);
  color: #0C0A06;
  box-shadow: 0 10px 30px var(--gold-glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(200, 162, 101, 0.45);
}
.cta:active {
  transform: translateY(1px);
}
.cta__note {
  text-align: center;
  color: var(--dim);
  font-size: 14px;
  margin: 12px 0 0;
  padding-bottom: 2px;
}
.cta__note b { color: var(--gold-1); }

/* ---------- Content Sections ---------- */
.topics {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.topics li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 18px;
  border-radius: 12px;
}
.topics i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(200, 162, 101, 0.15);
  border: 1px solid var(--border);
  color: var(--gold-1);
  display: grid;
  place-items: center;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.topics span { font-size: 15px; font-weight: 600; color: #EEE; }

/* Ticks list */
.ticks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.ticks li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  color: #D1D1D6;
}
.ticks .gold-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(200, 162, 101, 0.15);
  border: 1px solid var(--border);
  color: var(--gold-1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* Proof Section */
.proof {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.proof li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 20px;
}
.proof__tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-1);
  background: rgba(200, 162, 101, 0.12);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.proof p {
  margin: 0;
  font-size: 14.5px;
  color: #E4E4E7;
  line-height: 1.5;
}

/* Steps Section */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  padding: 16px 18px;
  border-radius: 12px;
}
.steps li i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(200, 162, 101, 0.15);
  border: 1px solid var(--border);
  color: var(--gold-1);
  display: grid;
  place-items: center;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.steps strong { display: block; font-size: 15px; color: #FFF; }
.steps span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* Author section (No human photo, luxury crest badge) */
.author-crest-card {
  background: linear-gradient(180deg, #181820 0%, #0E0E12 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.author-crest-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}
.author-title {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold-1);
  margin-bottom: 4px;
}
.author-sub {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.author-bio {
  font-size: 14.5px;
  color: #D4D4D8;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 24px;
}
.author-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}
.author-stat-box b {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold-1);
}
.author-stat-box span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

/* Footer */
footer {
  padding: 40px 20px;
  text-align: center;
  color: var(--dim);
  font-size: 13px;
  border-top: 1px solid var(--border-subtle);
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 16px;
  overflow-y: auto;
}
.modal[hidden] { display: none !important; }
.modal__box {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #131318;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(200, 162, 101, 0.12);
}
.modal__x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #FFF;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.modal__x:hover { background: rgba(255, 255, 255, 0.18); }
.pill--step {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-1);
  background: rgba(200, 162, 101, 0.12);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.modal__box h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #FFF;
  margin: 0 0 8px;
  line-height: 1.25;
}
.modal__lede { font-size: 13.5px; color: var(--muted); margin: 0 0 22px; line-height: 1.45; }
.modal__box label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #E4E4E7;
  margin-bottom: 6px;
  text-align: left;
}
.modal__box input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: #09090C;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFF;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal__box input:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(200, 162, 101, 0.2);
}
.phone { position: relative; margin-bottom: 16px; }
.phone__pfx {
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--gold-1);
  font-weight: 700;
  font-size: 15px;
  pointer-events: none;
}
.phone input { padding-left: 60px !important; }
.err { display: none; color: var(--danger); font-size: 12px; margin-top: -10px; margin-bottom: 12px; text-align: left; }
.err.show { display: block; }
.modal__safe {
  text-align: center;
  color: var(--dim);
  font-size: 12px;
  margin: 14px 0 0;
}

/* ---------- Mobile Screen Optimization (Above the Fold CTA) ---------- */
@media (max-width: 640px) {
  .stepbar__in {
    padding: 8px 14px;
    font-size: 11.5px;
    gap: 6px;
  }
  .step i {
    width: 19px;
    height: 19px;
    font-size: 10px;
  }
  .step__line {
    width: 14px;
  }
  .hero {
    padding: 16px 0 32px;
  }
  .subline-badge {
    font-size: 10.5px;
    margin-bottom: 8px;
    gap: 6px;
  }
  .subline-badge::before, .subline-badge::after {
    width: 16px;
  }
  .timer {
    padding: 8px 14px;
    font-size: 13.5px;
    margin-bottom: 12px;
    border-radius: 10px;
  }
  .timer b {
    font-size: 15.5px;
  }
  h1 {
    margin: 0 0 12px;
  }
  h1 .hero-main-title {
    font-size: clamp(26px, 8.5vw, 36px);
    margin-bottom: 2px;
  }
  h1 .hero-sub-title {
    font-size: clamp(13px, 4.2vw, 16px);
  }
  .vcard {
    margin-bottom: 14px;
    border-radius: 14px;
  }
  .play {
    width: 56px;
    height: 56px;
  }
  .play svg {
    width: 22px;
    height: 22px;
  }
  .event-bar {
    padding: 9px 12px;
  }
  .event-bar__title {
    font-size: 12px;
  }
  .event-bar__desc {
    font-size: 10.5px;
  }
  .event-bar__badge {
    font-size: 9.5px;
    padding: 4px 8px;
  }
  .cta {
    padding: 15px 18px;
    font-size: 14.5px;
    border-radius: 10px;
  }
  .cta__note {
    font-size: 12px;
    margin-top: 8px;
  }
  .glass-features {
    margin-top: 18px;
    gap: 6px;
  }
  .glass-badge {
    padding: 6px 10px;
    border-radius: 8px;
  }
  .glass-badge span {
    font-size: 11px;
  }
  .glass-badge-icon svg {
    width: 15px;
    height: 15px;
  }
}

