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

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

:root {
  --black:      #0a0a0a;
  --black-2:    #111111;
  --black-3:    #1a1a1a;
  --black-4:    #222222;
  --gold:       #c9a84c;
  --gold-light: #f5d76e;
  --gold-dark:  #8B6914;
  --gold-dim:   rgba(201,168,76,0.15);
  --gold-glow:  rgba(201,168,76,0.4);
  --white:      #ffffff;
  --gray:       #888888;
  --gray-light: #cccccc;
  --danger:     #e74c3c;
  --radius:     6px;
  --radius-lg:  12px;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overscroll-behavior: none;
}

/* ── PARTICLES BACKGROUND ── */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── LIVE BADGE ── */
.live-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.25rem auto 0;
  width: fit-content;
  animation: fadeInDown 0.6s ease both;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #e74c3c;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

/* ── PROGRESS STEPS ── */
.steps-wrap {
  padding: 1.5rem 1.5rem 0;
  max-width: 420px;
  margin: 0 auto;
  animation: fadeInDown 0.6s ease 0.1s both;
}

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}

.step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #333;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
  transition: all 0.4s ease;
  font-family: 'Cinzel', serif;
}

.step.active .step-dot {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 20px var(--gold-glow);
}

.step.done .step-dot {
  border-color: var(--gold-dark);
  background: var(--gold-dim);
  color: var(--gold);
}

.step-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #444;
  text-align: center;
  white-space: nowrap;
}

.step.active .step-label { color: var(--gold); }
.step.done .step-label { color: var(--gold-dark); }

.step-line {
  height: 1.5px;
  flex: 1;
  background: #222;
  margin-bottom: 1.4rem;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.step-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
  border-radius: 2px;
  opacity: 0;
}

.step-line.active-line::after {
  animation: lineLoad 3s ease-in-out infinite;
}

.step-line.done {
  background: var(--gold-dark);
}

.step-line.done::after { display: none; }

@keyframes lineLoad {
  0%   { width: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  75%  { width: 100%; opacity: 1; }
  90%  { width: 100%; opacity: 0; }
  100% { width: 0%;   opacity: 0; }
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 2rem 1.5rem 0.75rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(201,168,76,0.2);
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 400px;
  margin: 0 auto;
}

/* ── SOCIAL PROOF TICKER ── */
.proof-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem 1.5rem 1rem;
  margin: 0 auto;
  max-width: 560px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.proof-number {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.proof-label {
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.proof-divider {
  width: 1px;
  height: 30px;
  background: #333;
}

/* ── FORM CARD ── */
.optin-section {
  padding: 0 1.25rem 2rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.7s ease 0.35s both;
}

.optin-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: 0 0 40px rgba(201,168,76,0.06), inset 0 1px 0 rgba(201,168,76,0.1);
}

.card-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.card-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.card-header p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

.field { margin-bottom: 1rem; }

.field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.field input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  background: var(--black-3);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  min-height: 52px;
}

.field input::placeholder { color: #444; }
.field input:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.field input.error { border-color: var(--danger); }

.error-msg {
  display: none;
  background: rgba(231,76,60,0.1);
  border: 1px solid rgba(231,76,60,0.3);
  border-radius: var(--radius);
  color: #e74c3c;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.65rem 1rem;
  margin-top: 0.75rem;
}

.toast {
  display: none;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.85rem;
  text-align: center;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
}
.toast.visible { display: block; }

.privacy {
  text-align: center;
  font-size: 0.7rem;
  color: #444;
  margin-top: 1rem;
  line-height: 1.5;
}

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

/* ── BUTTONS ── */
.btn-primary {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  background-size: 200% 200%;
  color: var(--black);
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 56px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  animation: btnGlow 2.5s ease-in-out infinite;
  transition: transform 0.1s;
}

.btn-primary:active { transform: scale(0.99); }
.btn-primary:disabled { opacity: 0.4; animation: none; }

@keyframes btnGlow {
  0%   { box-shadow: 0 0 10px rgba(201,168,76,0.3); background-position: 0% 50%; }
  50%  { box-shadow: 0 0 25px rgba(201,168,76,0.6), 0 0 50px rgba(201,168,76,0.2); background-position: 100% 50%; }
  100% { box-shadow: 0 0 10px rgba(201,168,76,0.3); background-position: 0% 50%; }
}

.btn-wrap { position: relative; margin-top: 0.5rem; }
.btn-wrap .btn-primary { margin-top: 0; }

.btn-secondary {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.03em;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
  margin-top: 0.75rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:active { background: var(--gold-dim); }

/* ── VIDEO SECTION ── */
.video-section {
  display: none;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.5s ease both;
}

.video-section.visible { display: block; }

.video-intro {
  text-align: center;
  padding: 2rem 1.5rem 1.25rem;
  max-width: 560px;
  margin: 0 auto;
}

.video-intro h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}

.video-intro p {
  font-size: 0.875rem;
  color: var(--gray-light);
  line-height: 1.65;
}

.viewer-count {
  display: none;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.75rem;
  letter-spacing: 0.01em;
  animation: viewerPulse 2s ease-in-out infinite;
}

@keyframes viewerPulse {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-2px); }
}

.video-player-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  cursor: pointer;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.video-thumbnail {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.video-player-wrap:hover .video-thumbnail { opacity: 0.85; }

.play-btn-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(201,168,76,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-player-wrap:hover .play-btn-overlay {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 50px rgba(201,168,76,0.7);
}

.play-arrow {
  width: 0; height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid var(--black);
  margin-left: 5px;
}

.play-label {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
  white-space: nowrap;
  pointer-events: none;
}

.video-player-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  display: none;
}

/* ── VIDEO PROGRESS BAR ── */
#videoProgressBar {
  display: none;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}

#progressFill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transition: width 1s linear;
  box-shadow: 0 0 8px var(--gold-glow);
}

.done-row {
  padding: 1.25rem 1.25rem 0;
  max-width: 520px;
  margin: 0 auto;
}

/* ── CONFIRM BOX ── */
.confirm-box {
  display: none;
  margin: 1rem 1.25rem 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.confirm-box p {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.confirm-box span {
  font-size: 0.8rem;
  color: var(--gray);
  display: block;
  margin-bottom: 1.25rem;
}

/* ── CTA SECTION ── */
.cta-section {
  display: none;
  padding: 0 1.25rem 3rem;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.5s ease both;
}

.cta-section.visible { display: block; }

.cta-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto 1.75rem;
}

.cta-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.cta-section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.cta-section > p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 40px rgba(201,168,76,0.06), inset 0 1px 0 rgba(201,168,76,0.1);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-box p {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid #1a1a1a;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.7rem;
  color: #333;
  position: relative;
  z-index: 1;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes viewerPulse {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-3px); }
}

@keyframes btnGlow {
  0%   { box-shadow: 0 0 10px rgba(201,168,76,0.3); }
  50%  { box-shadow: 0 0 25px rgba(201,168,76,0.7), 0 0 50px rgba(201,168,76,0.3); }
  100% { box-shadow: 0 0 10px rgba(201,168,76,0.3); }
}

/* ── EXIT POPUP ── */
#exitPopup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  padding: 1.5rem;
  overflow-y: auto;
}

#exitPopup .popup-inner {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  max-width: 360px;
  width: 100%;
  text-align: center;
  margin: 15vh auto 0;
}

#exitPopup h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

#exitPopup p {
  font-size: 0.875rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .video-player-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 1.25rem;
    border: 1px solid rgba(201,168,76,0.2);
  }
  .video-intro { padding: 2rem 2rem 1.5rem; }
  .done-row { padding: 1.5rem 1.25rem 0; }
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 0 0 1.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  padding: 1rem 1.5rem 1.25rem;
}

.testimonials-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

.testimonials-track-wrap {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.testimonial-card > div:last-child,
.testimonial-inner {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.testimonial-card > div:last-child::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 16px;
  font-size: 5rem;
  color: rgba(201,168,76,0.1);
  font-family: 'Cinzel', serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(201,168,76,0.3);
}

.testimonial-name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--gray-light);
  line-height: 1.75;
  font-style: italic;
  text-align: center;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 1.25rem 0 0;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── DISCLAIMER ── */
.disclaimer {
  text-align: center;
  font-size: 0.65rem;
  color: #3a3a3a;
  line-height: 1.6;
  padding: 1rem 1.5rem;
  max-width: 560px;
  margin: 1.5rem auto 0;
  border-top: 1px solid #1a1a1a;
}

/* ── COUNTDOWN ── */
.countdown-wrap {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  margin-top: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.countdown-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.countdown-timer {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-shadow: 0 0 30px rgba(201,168,76,0.4);
  animation: timerPulse 1s ease-in-out infinite;
}

.countdown-sub {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.6rem;
  letter-spacing: 0.02em;
}

@keyframes timerPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.85; }
}

/* ── FEATURES SECTION ── */
.features-section {
  padding: 0 1.25rem 1.5rem;
  max-width: 520px;
  margin: 2rem auto 0;
}

.features-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.features-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.3s;
  animation: fadeInUp 0.5s ease both;
}

.feature-card:hover {
  border-color: rgba(201,168,76,0.45);
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-img-phone {
  object-fit: contain;
  padding: 4px;
}

.feature-content {
  flex: 1;
}

.feature-name {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.feature-desc {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ── FEATURE TICKER ── */
.ticker-wrap {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  min-width: 240px;
  max-width: 240px;
  flex-shrink: 0;
}

.ticker-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--black-3);
}

.ticker-img-phone {
  object-fit: contain;
  padding: 3px;
}

.ticker-content { flex: 1; }

.ticker-name {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.ticker-desc {
  font-size: 0.7rem;
  color: var(--gray);
  line-height: 1.5;
}

.bfm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 8px;
  object-fit: unset;
}
