/* ShortSpot — Chilean video service brand */
:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: #222222;
  --text: #f0ede6;
  --text-2: #888888;
  --accent: #FF3D00;
  --accent-2: #FF6B35;
  --accent-glow: rgba(255, 61, 0, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -0.5px; }
.nav-tag { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; background: var(--accent-glow); padding: 4px 10px; border-radius: 4px; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,61,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow { margin-bottom: 28px; }
.pill { background: var(--surface-2); border: 1px solid var(--border); padding: 8px 20px; border-radius: 100px; font-size: 14px; color: var(--text-2); font-weight: 500; }
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 900px;
  margin-bottom: 28px;
}
.highlight { color: var(--accent); }
.hero-sub { font-size: clamp(16px, 2vw, 20px); color: var(--text-2); max-width: 580px; margin-bottom: 48px; line-height: 1.7; font-weight: 300; }
.hero-cta-row { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.price-tag { display: flex; align-items: baseline; gap: 6px; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; color: var(--text); }
.price-period { font-size: 18px; color: var(--text-2); font-weight: 400; }
.hero-features { display: flex; align-items: center; gap: 12px; color: var(--text-2); font-size: 14px; flex-wrap: wrap; justify-content: center; }
.sep { color: var(--border); }
.hero-scroll-hint { position: absolute; bottom: 40px; color: var(--text-2); opacity: 0.4; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* SOCIAL PROOF */
.social-proof { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 40px; }
.sp-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 40px; align-items: center; flex-wrap: wrap; justify-content: center; }
.sp-stat { text-align: center; flex: 1; min-width: 200px; }
.sp-number { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; color: var(--accent); }
.sp-label { display: block; font-size: 13px; color: var(--text-2); margin-top: 4px; line-height: 1.5; }
.sp-divider { width: 1px; height: 60px; background: var(--border); }

/* FEATURES */
.features { padding: 100px 40px; }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -1px; }
.features-header p { color: var(--text-2); margin-top: 12px; font-size: 18px; }
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--accent); }
.feature-icon { color: var(--accent); margin-bottom: 20px; }
.feature-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.feature-card p { color: var(--text-2); font-size: 15px; line-height: 1.6; }

/* DELIVERY */
.delivery { background: var(--surface); border-top: 1px solid var(--border); padding: 100px 40px; }
.delivery-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.delivery-label { display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.delivery-text h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
.delivery-text p { color: var(--text-2); font-size: 17px; line-height: 1.7; }
.delivery-steps { display: flex; flex-direction: column; gap: 32px; }
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: var(--accent); min-width: 32px; padding-top: 4px; }
.step h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--text-2); font-size: 14px; line-height: 1.6; }

/* PRICING */
.pricing { padding: 100px 40px; text-align: center; }
.pricing-inner { max-width: 600px; margin: 0 auto; }
.pricing-label { display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 24px; }
.price-hero { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 20px; }
.price-main { font-family: 'Space Grotesk', sans-serif; font-size: clamp(48px, 8vw, 96px); font-weight: 900; letter-spacing: -3px; }
.price-sub { font-size: 24px; color: var(--text-2); font-weight: 300; }
.price-desc { color: var(--text-2); font-size: 18px; margin-bottom: 40px; }
.price-includes { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
.include-item { display: flex; gap: 12px; font-size: 16px; color: var(--text); align-items: center; }
.check { color: var(--accent); font-weight: 700; font-size: 18px; min-width: 20px; }
.pricing-note { background: var(--surface); border: 1px solid var(--border); padding: 20px 24px; border-radius: 12px; color: var(--text-2); font-size: 14px; }

/* MANIFESTO */
.manifesto { background: var(--surface); border-top: 1px solid var(--border); padding: 100px 40px; }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -1px; margin-bottom: 40px; text-align: center; }
.manifesto-text { margin-bottom: 48px; }
.manifesto-text p { font-size: 18px; line-height: 1.8; color: var(--text-2); margin-bottom: 24px; }
.manifesto-cta { font-size: 20px !important; color: var(--text) !important; font-weight: 500; }
.manifesto-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.manifesto-tags span { background: var(--surface-2); border: 1px solid var(--border); padding: 8px 18px; border-radius: 100px; font-size: 14px; color: var(--text-2); }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 60px 40px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 32px; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; }
.footer-tag { display: block; color: var(--text-2); font-size: 14px; margin-top: 6px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); flex-wrap: wrap; gap: 8px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .hero { padding: 100px 20px 80px; }
  .social-proof { padding: 32px 20px; }
  .sp-divider { display: none; }
  .sp-inner { gap: 24px; }
  .features { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .delivery { padding: 60px 20px; }
  .delivery-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing { padding: 60px 20px; }
  .manifesto { padding: 60px 20px; }
  .footer { padding: 40px 20px 24px; }
  .footer-bottom { flex-direction: column; }
}
