/* ===========================================
   JGT Records — Landing Page
   Tokens: negro base, magenta neón, cian eléctrico, ámbar cálido
=========================================== */

:root {
  --bg: #0A0A0D;
  --bg-alt: #0D0710;
  --card: #16151B;
  --card-border: rgba(255,255,255,0.08);
  --text: #F2F2F4;
  --text-dim: #C9C9D3;
  --text-mute: #8A8A94;
  --magenta: #FF2E93;
  --cyan: #2EE6FF;
  --amber: #FFB450;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Typography helpers ---------- */

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

.eyebrow-line {
  position: relative;
  padding-left: 52px;
}

.eyebrow-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
}

.eyebrow-center {
  padding-left: 0;
  text-align: center;
}
.eyebrow-center::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.section-title.center { text-align: center; }

.section-lead {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.6;
}

.section-lead.center { max-width: 620px; margin: 0 auto; text-align: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn svg { width: 20px; height: 20px; }

.btn-primary {
  background: linear-gradient(135deg, var(--magenta), #FF6B2E);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255,46,147,0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255,46,147,0.45); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-lg { padding: 20px 42px; font-size: 18px; }

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--magenta);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.text-link:hover { border-color: var(--magenta); }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10,10,13,0.85);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: var(--card-border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.2px;
}

.nav-brand em { font-style: normal; color: var(--magenta); }

.bolt-icon { width: 16px; height: 27px; fill: var(--cyan); }

.nav-links {
  display: flex;
  gap: 34px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dim);
}

.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--magenta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 100px;
  transition: transform 0.2s ease;
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) saturate(1.1);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,13,0.55) 0%, rgba(10,10,13,0.35) 35%, rgba(10,10,13,0.92) 92%, #0A0A0D 100%),
    linear-gradient(90deg, rgba(10,10,13,0.75) 0%, rgba(10,10,13,0.1) 50%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 15% 85%, rgba(255,46,147,0.28), transparent 60%),
    radial-gradient(ellipse 600px 500px at 90% 15%, rgba(46,230,255,0.18), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px 110px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(46,230,255,0.9);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -1.5px;
  margin-bottom: 26px;
  max-width: 780px;
}

.hero-title .accent {
  color: var(--magenta);
  text-shadow: 0 0 50px rgba(255,46,147,0.5);
}

.hero-sub {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 20px;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: var(--cyan);
  animation: scrollCue 1.8s ease infinite;
}

@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 20px; }
}

/* ---------- Sections ---------- */

.section, .hero {
  scroll-margin-top: 84px;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* ---------- Feature grid ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,46,147,0.35);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(255,46,147,0.18), rgba(46,230,255,0.12));
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: 15px;
  background: var(--cyan);
  border-radius: 4px;
  opacity: 0.85;
}

.icon-mic::after { background: var(--cyan); border-radius: 4px; }
.icon-mix::after { background: var(--magenta); border-radius: 50%; }
.icon-team::after { background: var(--amber); border-radius: 4px; transform: rotate(45deg); }

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ---------- Split (Juan section) ---------- */

.container-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.ring-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.ring-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  pointer-events: none;
}

.ring-frame::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 6px solid var(--amber);
  opacity: 0.5;
  filter: blur(1px);
  box-shadow: 0 0 60px rgba(255,180,80,0.4);
  z-index: 1;
  pointer-events: none;
}

.ring-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.role-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--magenta);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.bio-text {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 560px;
}

.collab-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 28px 0 14px;
}

.collab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin-bottom: 28px;
}

.collab-tag {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  padding: 8px 16px;
  border-radius: 100px;
}

/* ---------- Services ---------- */

.service-list {
  margin-top: 56px;
  border-top: 1px solid var(--card-border);
}

.service-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--card-border);
  transition: padding-left 0.25s ease;
}

.service-row:hover { padding-left: 12px; }

.service-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--cyan);
}

.service-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 10px;
}

.service-body p {
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 620px;
  line-height: 1.6;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.gallery-item.span-2 {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* ---------- CTA section ---------- */

.cta-section {
  text-align: center;
  background:
    radial-gradient(ellipse 700px 500px at 50% 0%, rgba(255,46,147,0.16), transparent 60%),
    var(--bg);
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section .btn-lg { margin-top: 12px; }

.social-row {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  border-color: rgba(46,230,255,0.4);
  transform: translateY(-2px);
}

.social-link svg { width: 20px; height: 20px; fill: var(--text); }

/* ---------- Footer ---------- */

.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--card-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
}

.footer-brand em { font-style: normal; color: var(--magenta); }
.footer-brand .bolt-icon { width: 14px; height: 24px; }

.footer-tag, .footer-copy {
  color: var(--text-mute);
  font-size: 14px;
}

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), #FF6B2E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255,46,147,0.45);
  animation: waPulse 2.8s ease infinite;
}

.wa-float svg { width: 28px; height: 28px; fill: #fff; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(255,46,147,0.45); }
  50% { box-shadow: 0 10px 30px rgba(255,46,147,0.45), 0 0 0 10px rgba(255,46,147,0.12); }
}

/* ===========================================
   Responsive
=========================================== */

@media (max-width: 980px) {
  .container-split { grid-template-columns: 1fr; gap: 44px; }
  .ring-frame { max-width: 420px; margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item.span-2 { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(10,10,13,0.98);
    padding: 24px 32px 32px;
    gap: 22px;
    border-bottom: 1px solid var(--card-border);
  }

  .nav.open .nav-cta {
    display: inline-flex;
    position: fixed;
    top: 260px;
    left: 32px;
  }

  .section { padding: 80px 0; }
  .hero-content { padding-bottom: 70px; }
  .service-row { grid-template-columns: 1fr; gap: 10px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item.span-2 { grid-column: span 1; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
