/* ── Alaska Hip-Hop Landing — Aurora Borealis Dark Theme ── */
:root {
  --bg:        #06060c;
  --bg-card:   #0d0d18;
  --bg-card2:  #11111e;
  --teal:      #2dd4bf;
  --teal-dim:  rgba(45, 212, 191, 0.12);
  --teal-glow: rgba(45, 212, 191, 0.06);
  --purple:    #a78bfa;
  --purple-dim:rgba(167, 139, 250, 0.10);
  --green:     #34d399;
  --green-dim: rgba(52, 211, 153, 0.10);
  --cream:     #f0ece4;
  --text:      #c8c4bc;
  --text-dim:  rgba(200, 196, 188, 0.55);
  --text-muted:rgba(200, 196, 188, 0.28);
  --border:    rgba(45, 212, 191, 0.10);
  --border2:   rgba(167, 139, 250, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(45, 212, 191, 0.25); color: var(--cream); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal-dim); border-radius: 3px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  background: rgba(6, 6, 12, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--cream); letter-spacing: -0.4px;
}
.nav-logo span { color: var(--teal); }
.nav-cta {
  font-size: 13px; font-weight: 600;
  color: var(--bg); background: var(--teal);
  padding: 8px 20px; border-radius: 100px;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 32px 100px;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_198552/d42c1e6f-9e68-4fe5-89e4-3905346ed2f4.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,6,12,0.92) 0%, rgba(6,6,12,0.60) 60%, rgba(6,6,12,0.40) 100%);
  z-index: 1;
}
.hero .hero-inner { position: relative; z-index: 2; }
.hero .hero-glow { z-index: 2; }
.hero-glow {
  position: absolute; pointer-events: none;
}
.hero-glow-teal {
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(45,212,191,0.07) 0%, transparent 65%);
}
.hero-glow-purple {
  width: 500px; height: 500px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(167,139,250,0.05) 0%, transparent 65%);
}
.hero-glow-green {
  width: 300px; height: 300px;
  top: 50%; left: 40%;
  background: radial-gradient(circle, rgba(52,211,153,0.04) 0%, transparent 65%);
}
.hero-inner {
  position: relative;
  max-width: 800px; margin: 0 auto;
}
.hero-text {}
.hero-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow::before {
  content: ''; width: 20px; height: 1px; background: var(--teal);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -1.2px; color: var(--cream);
  margin-bottom: 24px;
}
.hero-headline em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: 17px; color: var(--text-dim);
  line-height: 1.75; font-weight: 300;
  max-width: 460px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  color: var(--bg); background: var(--teal);
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: #5eead4; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--text-dim); background: transparent;
  padding: 14px 24px; border-radius: 100px;
  text-decoration: none; border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(45,212,191,0.25); }
.hero-img-wrap {
  position: relative;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
}
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(6,6,12,0.6) 100%);
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
  background: rgba(6,6,12,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-img-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52,211,153,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}
.hero-img-badge p {
  font-size: 12px; color: var(--text-dim); line-height: 1.4;
}
.hero-img-badge strong { color: var(--cream); font-weight: 600; }

/* ── SECTION SHARED ── */
.section { padding: 100px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.6px; color: var(--cream);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px; color: var(--text-dim);
  max-width: 560px; font-weight: 300;
  margin-bottom: 64px;
}
.section-header { margin-bottom: 64px; }

/* ── ABOUT ── */
.about { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-body { font-size: 16px; color: var(--text-dim); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.about-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.about-points li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.about-points li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.about-right { display: flex; flex-direction: column; gap: 20px; }
.about-stat-card {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 36px;
}
.about-stat-number {
  font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800;
  color: var(--teal); letter-spacing: -1px; margin-bottom: 8px;
}
.about-stat-label { font-size: 14px; color: var(--text-dim); line-height: 1.6; font-weight: 300; }

/* ── PRICING TARGET LABEL ── */
.pricing-target {
  font-size: 12px; color: var(--text-muted); font-weight: 500;
  margin-bottom: 20px; margin-top: -8px; font-style: italic;
}

/* ── WHO THIS IS FOR ── */
.audience { background: var(--bg-card); }
.audience-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.audience-left {}
.audience-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--purple);
  background: var(--purple-dim); border: 1px solid var(--border2);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.audience-tag-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--purple);
}
.audience-desc {
  font-size: 16px; color: var(--text-dim); line-height: 1.8;
  font-weight: 300; margin-bottom: 36px;
}
.audience-signals { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.audience-signals li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text);
}
.audience-signals li::before {
  content: '→'; color: var(--teal); font-weight: 700;
  margin-top: 1px; flex-shrink: 0;
}
.audience-right {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
}
.audience-right-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 24px;
}
.audience-artist-name {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--cream);
  letter-spacing: -0.4px; margin-bottom: 4px;
}
.audience-artist-type {
  font-size: 13px; color: var(--teal); font-weight: 600;
  margin-bottom: 32px;
}
.audience-stats { display: flex; flex-direction: column; gap: 20px; }
.audience-stat {
  display: flex; justify-content: space-between;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.audience-stat:last-child { border-bottom: none; padding-bottom: 0; }
.audience-stat-label { font-size: 13px; color: var(--text-muted); }
.audience-stat-value { font-size: 14px; font-weight: 700; color: var(--cream); }

/* ── SERVICES ── */
.services { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 32px;
  transition: border-color 0.2s, background 0.2s;
}
.service-card:hover { border-color: rgba(45,212,191,0.25); background: var(--bg-card2); }
.service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-icon-teal { background: var(--teal-dim); }
.service-icon-purple { background: var(--purple-dim); }
.service-icon-green { background: var(--green-dim); }
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--cream);
  margin-bottom: 12px; letter-spacing: -0.2px;
}
.service-card p {
  font-size: 14px; color: var(--text-dim); line-height: 1.7;
  margin-bottom: 20px; font-weight: 300;
}
.service-includes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.service-include {
  font-size: 13px; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.service-include::before { content: '✓'; color: var(--teal); font-weight: 700; }
.service-one-liner {
  font-size: 13px; font-weight: 600; color: var(--teal);
  font-style: italic;
}
.services-cta {
  text-align: center; margin-top: 64px;
  font-size: 15px; color: var(--text-dim);
}
.services-cta strong { color: var(--text); }

/* ── PRICING ── */
.pricing {}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px 32px;
}
.pricing-card-featured {
  background: var(--bg-card2);
  border-color: rgba(45,212,191,0.30);
  box-shadow: 0 0 40px rgba(45,212,191,0.05);
}
.pricing-tier {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
}
.pricing-tier-featured { color: var(--teal); }
.pricing-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--cream);
  letter-spacing: -0.3px; margin-bottom: 8px;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 20px;
}
.pricing-price .amount {
  font-family: 'Syne', sans-serif;
  font-size: 40px; font-weight: 800; color: var(--cream);
  letter-spacing: -1px;
}
.pricing-price .period { font-size: 14px; color: var(--text-muted); }
.pricing-desc {
  font-size: 14px; color: var(--text-dim); line-height: 1.7;
  margin-bottom: 28px; font-weight: 300;
}
.pricing-divider {
  height: 1px; background: var(--border); margin-bottom: 28px;
}
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li {
  font-size: 14px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; }
.pricing-cta {
  display: block; text-align: center;
  font-size: 14px; font-weight: 700;
  color: var(--bg); background: var(--teal);
  padding: 13px; border-radius: 100px;
  text-decoration: none; transition: all 0.2s;
  letter-spacing: 0.02em;
}
.pricing-cta:hover { background: #5eead4; }
.pricing-cta-outline {
  display: block; text-align: center;
  font-size: 14px; font-weight: 600;
  color: var(--text); background: transparent;
  padding: 13px; border-radius: 100px;
  border: 1px solid var(--border);
  text-decoration: none; transition: all 0.2s;
}
.pricing-cta-outline:hover { border-color: rgba(45,212,191,0.3); }
.pricing-featured-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--bg); background: var(--teal);
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 16px;
}
.pricing-note {
  text-align: center; margin-top: 40px;
  font-size: 13px; color: var(--text-muted);
}

/* ── THE DIFFERENCE ── */
.difference { background: var(--bg-card); }
.difference-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.diff-card {}
.diff-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 20px;
}
.diff-icon-teal { background: var(--teal-dim); }
.diff-icon-purple { background: var(--purple-dim); }
.diff-icon-green { background: var(--green-dim); }
.diff-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--cream);
  margin-bottom: 12px; letter-spacing: -0.2px;
}
.diff-card p {
  font-size: 14px; color: var(--text-dim); line-height: 1.7;
  font-weight: 300;
}

/* ── CONTACT ── */
.contact {}
.contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.8px; color: var(--cream);
  margin-bottom: 16px;
}
.contact-sub {
  font-size: 17px; color: var(--text-dim); font-weight: 300;
  margin-bottom: 48px; line-height: 1.7;
}
.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  color: var(--cream); font-size: 15px; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  color: var(--cream); font-size: 15px; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s; appearance: none;
}
.form-group select:focus { outline: none; border-color: rgba(45,212,191,0.4); }
.form-group select option { background: var(--bg-card); color: var(--text); }
  outline: none; border-color: rgba(45,212,191,0.4);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; margin-top: 8px;
  font-size: 15px; font-weight: 700;
  color: var(--bg); background: var(--teal);
  padding: 15px; border: none; border-radius: 100px;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em;
  font-family: 'DM Sans', sans-serif;
}
.form-submit:hover { background: #5eead4; transform: translateY(-1px); }
.contact-divider { margin: 40px 0; display: flex; align-items: center; gap: 16px; }
.contact-divider::before, .contact-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.contact-divider span { font-size: 13px; color: var(--text-muted); }
.contact-calendly {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--cream);
  background: var(--bg-card2); border: 1px solid var(--border);
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; transition: all 0.2s;
}
.contact-calendly:hover { border-color: rgba(45,212,191,0.3); }

/* ── FOOTER ── */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 800; color: var(--cream);
}
.footer-logo span { color: var(--teal); }
.footer-tagline { font-size: 12px; color: var(--text-muted); }
.footer-link { font-size: 12px; color: var(--text-muted); text-decoration: none; }
.footer-link:hover { color: var(--teal); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { max-width: 100%; }
  .audience-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .difference-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 120px 20px 80px; }
  .section { padding: 80px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}