/* ============================================
   MerchSkipper — Light theme
   Maritime navy + coral + teal + signal yellow
   ============================================ */

:root {
  --navy: #0a2540;
  --navy-soft: #1a3556;
  --coral: #ff6b35;
  --teal: #00a3a3;
  --yellow: #ffc107;
  --cream: #fdf9f3;
  --gray-100: #f4f6f9;
  --gray-200: #e7ebf2;
  --gray-500: #6b7891;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 720px; }

/* ============= NAV ============= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo strong { font-weight: 900; }
.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--coral);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 0.6; }
.btn-nav {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.15s;
}
.btn-nav:hover { background: var(--navy-soft); opacity: 1 !important; }

/* ============= HERO ============= */
.hero {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.accent { color: var(--coral); }
.hero-sub {
  font-size: 19px;
  color: var(--navy-soft);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  border: 1.5px solid var(--gray-200);
  transition: border-color 0.15s, transform 0.15s;
}
.btn-secondary:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-200);
  max-width: 540px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.3;
}

/* ============= PHONE DEMO ============= */
.hero-demo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone {
  width: 280px;
  height: 560px;
  background: var(--navy);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--navy);
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff, var(--cream));
  border-radius: 30px;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.scan-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.scan-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
}
.scan-step.active { opacity: 1; }
.qr-mock {
  width: 160px;
  height: 160px;
  background:
    repeating-linear-gradient(0deg, var(--navy) 0 8px, transparent 8px 16px),
    repeating-linear-gradient(90deg, var(--navy) 0 8px, transparent 8px 16px);
  background-color: var(--white);
  border-radius: 12px;
  margin-bottom: 24px;
  border: 8px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
  position: relative;
}
.qr-mock::before, .qr-mock::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 6px solid var(--navy);
  background: var(--white);
}
.qr-mock::before { top: -2px; left: -2px; }
.qr-mock::after { top: -2px; right: -2px; }
.scan-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
}
.check-icon {
  width: 100px;
  height: 100px;
  color: var(--teal);
  margin-bottom: 24px;
}
.shirt-mock {
  width: 140px;
  height: 140px;
  margin-bottom: 16px;
}
.shipping-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 4px;
}
.shipping-eta {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.ship-btn {
  background: var(--coral);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
}

/* ============= SECTIONS ============= */
.section {
  padding: 100px 0;
}
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-cta {
  background: linear-gradient(135deg, var(--coral) 0%, #ff8c54 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--gray-100);
  border-radius: 100px;
}
.kicker-coral { background: rgba(255, 107, 53, 0.12); color: var(--coral); }
.kicker-teal { background: rgba(0, 163, 163, 0.12); color: var(--teal); }
.kicker-yellow { background: rgba(255, 193, 7, 0.18); color: #b88a00; }
.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section h2 em {
  font-style: italic;
  color: var(--coral);
}
.section-sub {
  font-size: 18px;
  color: var(--navy-soft);
  max-width: 600px;
  margin: 0 auto;
}
.section-header-light h2 { color: var(--white); }
.section-sub-light {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ============= STEPS ============= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--coral);
  margin-bottom: 16px;
}
.step-icon {
  width: 56px;
  height: 56px;
  color: var(--navy);
  margin-bottom: 20px;
}
.step h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--navy);
}
.step p {
  font-size: 15px;
  color: var(--navy-soft);
  line-height: 1.6;
}

/* ============= SETLIST DEMO ============= */
.setlist-demo {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto 40px;
  border: 1px solid var(--gray-200);
}
.setlist-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.setlist-time::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.setlist-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.track-active {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid var(--coral);
}
.track-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}
.track-status {
  font-size: 13px;
  color: var(--navy-soft);
  font-weight: 500;
}
.drop-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.drop-card.drop-active::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
  pointer-events: none;
}
.drop-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.drop-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}
.drop-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.drop-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--coral);
}
.setlist-upcoming {
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.upcoming-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 16px;
  font-size: 14px;
  align-items: center;
  color: var(--navy-soft);
}
.upcoming-time { font-weight: 700; color: var(--navy); }
.upcoming-track { font-weight: 600; }
.upcoming-drop { color: var(--gray-500); font-size: 13px; }

.drop-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.feature h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--navy);
}
.feature p {
  font-size: 14px;
  color: var(--navy-soft);
  line-height: 1.5;
}

/* ============= SPLIT LAYOUT ============= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.split-reverse .split-visual { order: 1; }
.split-content h2 { text-align: left; }
.split-content p {
  font-size: 17px;
  color: var(--navy-soft);
  margin-bottom: 16px;
  line-height: 1.7;
}
.callout {
  background: var(--white);
  border-left: 4px solid var(--teal);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 15px !important;
  margin-top: 24px !important;
}
.check-list {
  list-style: none;
  margin-top: 24px;
}
.check-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 15px;
  color: var(--navy-soft);
  border-bottom: 1px solid var(--gray-200);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}
.map-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.map-label {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 12px;
  font-weight: 500;
}

/* ============= SHIRT GRID ============= */
.shirt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.shirt-card {
  background: var(--white);
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}
.shirt-card:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: var(--shadow-md);
}
.shirt-card:nth-child(2):hover { transform: translateY(-4px) rotate(1deg); }
.shirt-design {
  text-align: center;
  padding: 24px;
}
.shirt-city {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.shirt-date {
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.shirt-show {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============= PARTNER GRID ============= */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 60px;
}
.partner-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.partner-card:hover {
  background: rgba(255, 255, 255, 0.10);
}
.partner-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 12px;
}
.partner-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.patent-badge {
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 900px;
  margin: 0 auto;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.7;
}
.patent-badge strong { color: var(--yellow); display: block; margin-bottom: 6px; font-size: 16px; }

/* ============= CTA ============= */
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}
.btn-cta {
  display: inline-block;
  background: var(--white);
  color: var(--coral);
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 17px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-md);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.cta-foot {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

/* ============= FOOTER ============= */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.footer .logo { color: var(--white); }
.footer .logo-icon { color: var(--coral); }
.footer-tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}
.footer-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col strong {
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.footer-col a, .footer-col span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }

/* ============= RESPONSIVE ============= */
@media (max-width: 920px) {
  .hero-container { grid-template-columns: 1fr; gap: 50px; }
  .hero-demo { order: -1; }
  .phone { transform: scale(0.85); }
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn-nav) { display: none; }
  .steps { grid-template-columns: 1fr; }
  .setlist-track { grid-template-columns: 1fr; }
  .upcoming-row { grid-template-columns: 80px 1fr; }
  .upcoming-row .upcoming-drop { grid-column: 1 / -1; padding-left: 96px; margin-top: -8px; }
  .drop-features { grid-template-columns: 1fr; }
  .split, .split-reverse { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse .split-visual { order: 0; }
  .partner-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; max-width: none; }
  .stat { display: flex; align-items: baseline; gap: 12px; }
  .stat-num { margin-bottom: 0; }
  .stat-label br { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 0 60px; }
  .section { padding: 60px 0; }
  .footer-right { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta a { text-align: center; }
}
