/* ============================================================
   The Revenant LLC — Landing Pages CSS
   ============================================================ */

/* --- Custom Fonts --- */
@font-face {
  font-family: 'Artifex CF';
  src: url('../assets/fonts/artifex-cf-extralight.otf') format('opentype');
  font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Artifex CF';
  src: url('../assets/fonts/artifex-cf-light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Artifex CF';
  src: url('../assets/fonts/artifex-cf-regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Artifex CF';
  src: url('../assets/fonts/artifex-cf-book.otf') format('opentype');
  font-weight: 450; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Artifex CF';
  src: url('../assets/fonts/artifex-cf-demibold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Artifex CF';
  src: url('../assets/fonts/artifex-cf-extrabold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Artifex CF';
  src: url('../assets/fonts/artifex-cf-heavy.otf') format('opentype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bergen Sans';
  src: url('../assets/fonts/bergen-sans.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* --- Variables --- */
:root {
  --cyan: #14DCD5;
  --cyan-mid: #0DAFBA;
  --cyan-dark: #057388;
  --black: #000000;
  --dark: #060B11;
  --dark-card: #0B1219;
  --dark-border: #142230;
  --white: #FFFFFF;
  --gray: #8899AA;
  --light-gray: #C0CDD8;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Bergen Sans', 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Artifex CF', sans-serif; }

/* --- Navbar --- */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6, 11, 17, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 220, 213, 0.08);
}
.lp-nav img { height: 60px; width: auto; }
.lp-nav-cta {
  background: var(--cyan); color: var(--black);
  padding: 10px 24px; border-radius: 6px;
  font-family: 'Artifex CF', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all 0.3s;
}
.lp-nav-cta:hover {
  background: var(--cyan-mid);
  box-shadow: 0 0 24px rgba(20, 220, 213, 0.3);
}

/* --- World Cup Hero Banner --- */
.wc-hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  position: relative; overflow: hidden;
  padding: 120px 40px 80px;
}
.wc-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(20,220,213,0.07) 0%, transparent 70%),
    linear-gradient(180deg, #020508 0%, #060B11 30%, #0a1620 60%, #060B11 100%);
}
/* Stadium field lines */
.wc-field-lines {
  position: absolute; inset: 0; opacity: 0.035;
  background-image:
    linear-gradient(rgba(20,220,213,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,220,213,0.4) 1px, transparent 1px);
  background-size: 80px 80px;
}
.wc-field-lines::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(20,220,213,0.06);
}
/* Stadium spotlights */
.wc-spotlight {
  position: absolute; pointer-events: none;
  width: 400px; height: 800px;
  background: linear-gradient(180deg, rgba(20,220,213,0.06) 0%, transparent 100%);
  filter: blur(60px);
}
.wc-spotlight-1 {
  top: -200px; left: 10%;
  transform: rotate(-15deg);
  animation: spotlightSweep 8s ease-in-out infinite;
}
.wc-spotlight-2 {
  top: -200px; right: 10%;
  transform: rotate(15deg);
  animation: spotlightSweep 8s ease-in-out 4s infinite;
}
@keyframes spotlightSweep {
  0%, 100% { opacity: 0.3; transform: rotate(-15deg) translateX(0); }
  50%      { opacity: 0.7; transform: rotate(-5deg) translateX(60px); }
}
/* Floating soccer balls */
.wc-ball {
  position: absolute; pointer-events: none;
}
.wc-ball img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(20,220,213,0.15));
}
.wc-ball-1 {
  width: 120px; height: 120px; top: 12%; right: 8%;
  opacity: 0.25;
  animation: floatBall 12s ease-in-out infinite;
}
.wc-ball-2 {
  width: 80px; height: 80px; bottom: 20%; left: 5%;
  opacity: 0.18;
  animation: floatBall 10s ease-in-out 3s infinite;
}
.wc-ball-3 {
  width: 60px; height: 60px; top: 30%; left: 15%;
  opacity: 0.12;
  animation: floatBall 14s ease-in-out 6s infinite;
}
@keyframes floatBall {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-20px) rotate(120deg); }
  66%      { transform: translateY(10px) rotate(240deg); }
}
/* Hero content */
.wc-hero-content {
  position: relative; z-index: 2; max-width: 800px;
}
/* World Cup Logo */
.wc-logo {
  width: 220px; height: auto;
  margin: 0 auto 32px;
  display: block;
  background: rgba(255,255,255,0.92);
  padding: 18px 24px;
  border-radius: 16px;
  filter: drop-shadow(0 0 24px rgba(20,220,213,0.25));
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.wc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(20, 220, 213, 0.08);
  border: 1px solid rgba(20, 220, 213, 0.2);
  font-family: 'Bergen Sans', sans-serif;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 32px;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20,220,213,0.15); }
  50%      { box-shadow: 0 0 20px 4px rgba(20,220,213,0.1); }
}
.wc-title {
  display: flex; flex-direction: column;
  gap: 4px; margin-bottom: 40px;
}
.wc-title-small {
  font-family: 'Bergen Sans', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  color: var(--gray); letter-spacing: 3px;
  text-transform: uppercase; font-weight: 400;
}
.wc-title-big {
  font-family: 'Artifex CF', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800; line-height: 1;
  letter-spacing: -3px; color: var(--white);
}
.wc-title-big .accent {
  color: var(--cyan);
  text-shadow: 0 0 40px rgba(20,220,213,0.3);
}
/* Countdown in hero */
.wc-hero .countdown-boxes {
  position: relative;
  display: flex; justify-content: center;
  gap: 20px; margin-bottom: 36px;
}
.wc-hero .countdown-box {
  background: rgba(11, 18, 25, 0.8);
  border: 1px solid rgba(20, 220, 213, 0.2);
  border-radius: 12px; padding: 20px 28px;
  min-width: 110px; text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.wc-hero .countdown-box:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(20,220,213,0.15);
}
.wc-hero .countdown-box .num {
  font-family: 'Artifex CF', sans-serif;
  font-size: 48px; font-weight: 800;
  color: var(--cyan); line-height: 1;
  animation: numberGlow 2s ease-in-out infinite;
}
@keyframes numberGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(20,220,213,0.2); }
  50%      { text-shadow: 0 0 30px rgba(20,220,213,0.4), 0 0 60px rgba(20,220,213,0.1); }
}
.wc-hero .countdown-box .label {
  font-family: 'Bergen Sans', sans-serif;
  font-size: 11px; color: var(--gray);
  text-transform: uppercase; letter-spacing: 2px;
  margin-top: 8px;
}
.wc-hero-sub {
  font-size: 18px; color: var(--gray);
  line-height: 1.75; margin-bottom: 36px;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.wc-hero-sub strong { color: var(--white); font-weight: 600; }
/* Scroll hint */
.wc-scroll-hint {
  position: absolute; bottom: 32px;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; z-index: 2;
  font-size: 11px; color: var(--gray);
  letter-spacing: 2px; text-transform: uppercase;
  font-family: 'Bergen Sans', sans-serif;
  animation: scrollBounce 2s ease-in-out infinite;
}
.wc-scroll-dot {
  animation: scrollDotMove 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}
@keyframes scrollDotMove {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%      { opacity: 0.3; transform: translateY(4px); }
}
/* Urgency reminder strip */
.wc-reminder {
  padding: 20px 40px;
  background: linear-gradient(90deg, rgba(20,220,213,0.04), rgba(20,220,213,0.08), rgba(20,220,213,0.04));
  border-top: 1px solid rgba(20,220,213,0.1);
  border-bottom: 1px solid rgba(20,220,213,0.1);
}
.wc-reminder-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
  font-size: 15px; color: var(--light-gray);
  text-align: center;
}
.wc-reminder-inner svg { flex-shrink: 0; }
/* Legacy hero support */
.lp-hero-actions {
  display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap;
}
.accent { color: var(--cyan); }

/* --- Buttons --- */
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cyan); color: var(--black);
  padding: 16px 32px; border-radius: 6px;
  font-family: 'Artifex CF', sans-serif;
  font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-cta:hover {
  background: var(--cyan-mid);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(20, 220, 213, 0.35);
}
.btn-cta-whatsapp {
  background: #25D366; color: var(--white);
}
.btn-cta-whatsapp:hover {
  background: #1fb855;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--dark-border); color: var(--white);
  padding: 16px 32px; border-radius: 6px;
  font-family: 'Artifex CF', sans-serif;
  font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: all 0.3s; background: transparent;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* --- Sections Common --- */
.lp-section {
  padding: 100px 40px; position: relative;
}
.lp-section-label {
  font-family: 'Bergen Sans', sans-serif;
  font-size: 11px; color: var(--cyan);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
}
.lp-section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; letter-spacing: -1px;
  line-height: 1.1; max-width: 650px;
}
.lp-section-desc {
  font-size: 17px; color: var(--gray); line-height: 1.75;
  max-width: 620px; margin-top: 16px;
}
.lp-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
}

/* --- FOMO / Problem --- */
.lp-fomo-text {
  font-size: 18px; color: var(--light-gray);
  line-height: 1.8; max-width: 680px; margin-top: 32px;
}
.lp-fomo-text strong { color: var(--white); }
.lp-callout {
  margin-top: 40px; padding: 28px 32px;
  border-left: 3px solid var(--cyan);
  background: rgba(20, 220, 213, 0.04);
  border-radius: 0 8px 8px 0;
  font-size: 17px; font-style: italic;
  color: var(--light-gray); line-height: 1.7;
}

/* --- Tour Demo --- */
.tour-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 40px;
}
.tour-container {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: 0 8px 32px rgba(20, 220, 213, 0.08);
  transition: all 0.4s;
}
.tour-container:hover {
  border-color: var(--cyan-dark);
  box-shadow: 0 8px 40px rgba(20, 220, 213, 0.15);
}
.tour-container iframe {
  width: 100%; height: 420px; border: none; display: block;
}
.tour-label {
  padding: 14px 20px; font-size: 13px; color: var(--gray);
  background: var(--dark-card);
}
.tour-help-card {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 40px 32px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  transition: all 0.4s;
}
.tour-help-card:hover { border-color: var(--cyan-dark); }
.tour-help-icon { margin-bottom: 20px; opacity: 0.8; }
.tour-help-card h4 {
  font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
}
.tour-help-card ul {
  list-style: none; text-align: left;
  display: inline-block;
}
.tour-help-card ul li {
  font-size: 15px; color: var(--light-gray);
  padding: 8px 0; line-height: 1.5;
  border-bottom: 1px solid rgba(20, 220, 213, 0.06);
}
.tour-help-card ul li:last-child { border-bottom: none; }
.tour-help-card ul li strong { color: var(--cyan); }
.tour-help-note {
  margin-top: 24px; font-size: 13px;
  color: var(--gray); line-height: 1.6;
  font-style: italic;
}

/* --- Stats --- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.stat-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px; padding: 32px 24px;
  text-align: center; transition: all 0.4s;
}
.stat-card:hover {
  border-color: var(--cyan-dark);
  transform: translateY(-4px);
}
.stat-number {
  font-family: 'Artifex CF', sans-serif;
  font-size: 48px; font-weight: 800;
  color: var(--cyan); line-height: 1;
}
.stat-label {
  font-size: 14px; font-weight: 600;
  color: var(--white); margin-top: 8px;
}
.stat-desc {
  font-size: 13px; color: var(--gray);
  margin-top: 6px; line-height: 1.5;
}

/* --- Steps --- */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
.step-card {
  text-align: center; padding: 40px 24px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px; transition: all 0.4s;
}
.step-card:hover { border-color: var(--cyan-dark); }
.step-num {
  font-family: 'Artifex CF', sans-serif;
  font-size: 56px; font-weight: 800;
  color: rgba(20, 220, 213, 0.12);
  line-height: 1;
}
.step-card h4 {
  font-size: 18px; font-weight: 700;
  margin: 12px 0 8px; color: var(--white);
}
.step-card p {
  font-size: 14px; color: var(--gray); line-height: 1.65;
}

/* (Countdown is now in the WC hero banner above) */

/* --- Deliverables / Feature Grid (RE, Retail) --- */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}
.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px; padding: 28px 20px;
  transition: all 0.4s;
}
.feature-card:hover {
  border-color: var(--cyan-dark);
  transform: translateY(-3px);
}
.feature-card h4 {
  font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px; color: var(--gray); line-height: 1.6;
}
.feature-card .feature-icon {
  color: var(--cyan); margin-bottom: 14px; opacity: 0.8;
}

/* --- Checklist (Hotel urgency, RE world cup effect) --- */
.wc-checklist {
  list-style: none; margin-top: 32px;
  max-width: 620px;
}
.wc-checklist li {
  padding: 10px 0; font-size: 16px;
  color: var(--light-gray); line-height: 1.6;
  border-bottom: 1px solid rgba(20,220,213,0.06);
  display: flex; align-items: flex-start; gap: 12px;
}
.wc-checklist li:last-child { border-bottom: none; }
.wc-checklist li::before {
  content: ''; flex-shrink: 0;
  width: 20px; height: 20px; margin-top: 2px;
  background: rgba(20,220,213,0.12);
  border: 1px solid rgba(20,220,213,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.wc-checklist li.checked::before {
  background: var(--cyan);
  border-color: var(--cyan);
}

/* --- Clients --- */
.clients-bar {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 40px;
  margin-top: 40px;
}
.clients-bar span {
  font-size: 15px; font-weight: 600;
  color: var(--gray); opacity: 0.6;
  transition: opacity 0.3s;
}
.clients-bar span:hover { opacity: 1; color: var(--cyan); }

/* --- CTA Final --- */
.lp-cta-final {
  text-align: center; padding: 100px 40px;
  position: relative;
}
.lp-cta-final .lp-section-title {
  max-width: 100%; text-align: center; margin: 0 auto;
}
.lp-cta-actions {
  display: flex; justify-content: center;
  gap: 16px; margin-top: 40px; flex-wrap: wrap;
}
.lp-cta-contact {
  margin-top: 32px; font-size: 15px; color: var(--gray);
}
.lp-cta-contact a { color: var(--cyan); transition: opacity 0.3s; }
.lp-cta-contact a:hover { opacity: 0.8; }
.lp-urgency {
  margin-top: 24px; padding: 14px 24px;
  display: inline-block;
  background: rgba(20, 220, 213, 0.06);
  border: 1px solid rgba(20, 220, 213, 0.15);
  border-radius: 100px; font-size: 14px;
  color: var(--cyan); font-weight: 600;
}

/* --- Footer --- */
.lp-footer {
  padding: 48px 40px;
  border-top: 1px solid var(--dark-border);
  text-align: center;
}
.lp-footer img { height: 60px; margin: 0 auto 16px; }
.lp-footer p {
  font-size: 13px; color: var(--gray); line-height: 1.8;
}
.lp-footer a { color: var(--cyan); }

/* --- WhatsApp Floating --- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9999; width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tour-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .wc-ball-3 { display: none; }
}

@media (max-width: 768px) {
  .lp-nav { padding: 10px 20px; }
  .lp-nav img { height: 45px; }
  .lp-nav-cta { display: none; }

  .wc-hero { padding: 100px 20px 60px; min-height: auto; }
  .wc-logo { width: 160px; margin-bottom: 24px; padding: 14px 18px; }
  .wc-title-big { font-size: 40px; letter-spacing: -1px; }
  .wc-title-small { font-size: 13px; }
  .wc-hero .countdown-boxes { gap: 10px; }
  .wc-hero .countdown-box { padding: 14px 16px; min-width: 72px; }
  .wc-hero .countdown-box .num { font-size: 32px; }
  .wc-hero .countdown-box .label { font-size: 9px; }
  .wc-hero-sub { font-size: 15px; }
  .wc-ball-1 { width: 70px; height: 70px; }
  .wc-ball-2 { width: 50px; height: 50px; }
  .wc-ball-3 { display: none; }
  .wc-spotlight { width: 200px; }
  .wc-scroll-hint { display: none; }

  .lp-hero-actions { flex-direction: column; }
  .lp-hero-actions a { width: 100%; justify-content: center; text-align: center; }

  .lp-section { padding: 56px 20px; }
  .lp-section-title { font-size: 24px; }

  .tour-grid { grid-template-columns: 1fr; }
  .tour-container iframe { height: 280px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 36px; }
  .stat-card { padding: 24px 16px; }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 20px 16px; }

  .wc-reminder { padding: 16px 20px; }
  .wc-reminder-inner { font-size: 13px; }

  .lp-cta-final { padding: 56px 20px; }
  .lp-cta-actions { flex-direction: column; align-items: center; }
  .lp-cta-actions a { width: 100%; justify-content: center; text-align: center; }

  .lp-footer { padding: 32px 20px; }

  .whatsapp-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .wc-title-big { font-size: 32px; }
  .wc-hero .countdown-boxes { flex-wrap: wrap; gap: 8px; }
  .wc-hero .countdown-box { min-width: 65px; padding: 12px 14px; }
  .wc-hero .countdown-box .num { font-size: 28px; }
  .wc-badge { font-size: 10px; padding: 6px 14px; }
  .stats-grid { grid-template-columns: 1fr; }
}
