/* ============================================
   REAL LUXURY MEDIA — Signature Trailers LP
   Black bg, Playfair Display + Inter
   Matching realluxurymedia.com design language
   ============================================ */

:root {
  --black: #0a0a0a;
  --dark: #111;
  --gray-dark: #1a1a1a;
  --gray: #888;
  --gray-light: #aaa;
  --white: #fff;
  --off-white: #e8e8e8;
  --accent: #c9a84c;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --container: 1100px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--off-white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   NAV
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo {
  height: 30px;
  width: auto;
  opacity: 0.9;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 20px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 100%;
  background: radial-gradient(
    ellipse 45% 70% at 50% 0%,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.12) 20%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.02) 65%,
    transparent 90%
  );
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h1 em {
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* VSL */
.vsl-wrap {
  max-width: 680px;
  margin: 0 auto 32px;
}

.vsl-placeholder {
  aspect-ratio: 16 / 9;
  background: var(--gray-dark);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid #222;
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
}

.vsl-placeholder span {
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-buttons {
  margin-bottom: 40px;
}

/* Trusted */
.trusted-line {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 20px;
}

/* Logo Scroll */
.logo-scroll {
  overflow: hidden;
  padding: 30px 0;
  margin-bottom: 16px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-scroll-track {
  display: flex;
  gap: 64px;
  animation: scroll 25s linear infinite;
  width: max-content;
}

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

.scroll-logo {
  flex-shrink: 0;
  height: 38px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.scroll-logo:hover {
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ============================================
   EXAMPLES
   ============================================ */
.examples {
  padding: 72px 0 120px;
}

.examples h2,
.what-you-get h2,
.form-section h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 700px;
  margin: 0 auto 64px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.example-card {
  display: flex;
  flex-direction: column;
}

.video-wrap {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 vertical */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--gray-dark);
  margin-bottom: 24px;
}

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

.testimonial {
  padding: 0 4px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--off-white);
  margin-bottom: 16px;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-meta strong {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
}

.testimonial-meta span {
  font-size: 13px;
  color: var(--gray);
}

/* ============================================
   WHAT YOU GET
   ============================================ */
.what-you-get {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.what-you-get .bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.what-you-get .bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.what-you-get .container {
  position: relative;
  z-index: 1;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 48px auto;
  text-align: left;
}

.benefit {
  background: rgba(30,30,30,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
}

.benefit p {
  font-size: 17px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.7;
}

.closer-card {
  max-width: 960px;
  margin: 48px auto 0;
  background: rgba(30,30,30,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.15), 0 0 60px rgba(255,255,255,0.1), 0 0 140px rgba(255,255,255,0.06);
  animation: glow-pulse 3s ease-in-out infinite;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.closer {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
  padding: 60px 0 120px;
}

.form-card {
  background: #181818;
  border-radius: 12px;
  padding: 64px 56px;
  max-width: 760px;
  margin: 0 auto;
}

.form-card h2 {
  text-align: left;
}

.form-intro {
  text-align: left;
  margin-bottom: 40px;
}

.form-intro p {
  font-size: 16px;
  color: var(--gray-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.apply-form {
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid #333;
  border-radius: 4px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

.btn-submit {
  width: 100%;
  font-size: 15px;
  padding: 18px;
  margin-top: 8px;
  letter-spacing: 1px;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0;
  text-align: center;
}

.footer-logo {
  height: 28px;
  width: auto;
  margin: 0 auto 16px;
  opacity: 0.5;
}

.footer p {
  font-size: 13px;
  color: #444;
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255,255,255,0.15), 0 0 60px rgba(255,255,255,0.1), 0 0 140px rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
  }
  50% {
    box-shadow: 0 0 30px rgba(255,255,255,0.25), 0 0 80px rgba(255,255,255,0.15), 0 0 160px rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
  }
}

/* ============================================
   MOBILE BOTTOM BAR (hidden on desktop)
   ============================================ */
.mobile-bottom-bar {
  display: none;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 44px; }
  .examples-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero { padding: 24px 0 40px; }

  /* Nav: non-sticky on mobile, logo centered */
  .site-nav {
    position: relative;
    padding: 12px 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
  }
  .nav-inner {
    justify-content: center;
  }
  /* Hide buttons from top nav on mobile */
  .nav-inner .nav-buttons {
    display: none;
  }
  
  .nav-logo .logo { height: 32px; }

  /* Sticky bottom CTA bar */
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .mobile-bottom-bar .btn-sm {
    text-align: center;
    padding: 12px 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-bottom-bar .btn-secondary { flex: 35; }
  .mobile-bottom-bar .btn-primary { flex: 65; }
  body { padding-bottom: 80px; }

  .examples { padding: 40px 0 80px; }
  .what-you-get, .form-section { padding: 80px 0; }
  .examples h2, .what-you-get h2, .form-section h2 { font-size: 32px; }
  .section-sub { font-size: 15px; }

  .examples-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 48px;
  }

  .form-row { grid-template-columns: 1fr; }

  .closer { font-size: 19px; }
  .benefit p { font-size: 16px; }
  .benefits { grid-template-columns: 1fr; }
  .closer-card { flex-direction: column; text-align: center; padding: 32px 24px; }
  .closer-card .btn { width: 100%; }
  .form-card { padding: 32px 24px; }
  .form-row { gap: 12px; margin-bottom: 10px; }
  .form-group { gap: 4px; margin-bottom: 10px; }
  .form-group input,
  .form-group textarea { padding: 12px; }
}

@media (max-width: 480px) {
  h1 { font-size: 30px; }
  .container { padding: 0 20px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; }
}
