:root {
  --ink: #090b10;
  --ink-2: #101720;
  --paper: #fff7e8;
  --muted: rgba(255, 247, 232, .72);
  --line: rgba(255, 247, 232, .14);
  --gold: #f1bd57;
  --coral: #ff6f61;
  --teal: #64d6c3;
  --blue: #7fa7ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  margin: 0;
}

body::before {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 111, 97, .18), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(100, 214, 195, .16), transparent 28%);
  content: "";
  height: 100vh;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

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

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(9, 11, 16, .82);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  border-radius: 8px;
  color: #16100a;
  display: inline-flex;
  font-size: .78rem;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.brand-logo,
.footer-logo {
  background: var(--ink-2);
  border: 1px solid rgba(241, 189, 87, .42);
  border-radius: 12px;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
}

.brand-logo {
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
  height: 44px;
  width: 44px;
}

.nav-links {
  align-items: center;
  background: rgba(255, 247, 232, .06);
  border: 1px solid rgba(255, 247, 232, .1);
  border-radius: 999px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  padding: 5px;
}

.nav-links a,
.topbar-action {
  color: var(--muted);
  font-size: .92rem;
}

.nav-links a {
  border-radius: 999px;
  padding: 8px 12px;
  transition: background .18s ease, color .18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(241, 189, 87, .14);
  color: var(--paper);
}

.topbar-action {
  background: linear-gradient(135deg, rgba(241, 189, 87, .16), rgba(255, 111, 97, .12));
  border: 1px solid rgba(241, 189, 87, .5);
  border-radius: 999px;
  color: var(--paper);
  font-weight: 900;
  padding: 10px 16px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(9, 11, 16, .92) 0%, rgba(9, 11, 16, .72) 48%, rgba(9, 11, 16, .42) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1900&q=82") center / cover no-repeat;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .86fr);
  min-height: calc(100vh - 69px);
  padding: clamp(58px, 9vw, 122px) clamp(20px, 5vw, 72px) 52px;
}

.hero-copy {
  align-self: center;
  max-width: 920px;
}

.eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09rem;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: #fffaf0;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .88;
  margin-bottom: 24px;
  max-width: 1000px;
}

h2 {
  color: #fffaf0;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  font-weight: 930;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  color: #fffaf0;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hero-text,
.section-heading p,
article p,
.legal-note,
.beta-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero-text {
  max-width: 660px;
}

.hero-actions,
.beta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-width: 162px;
  padding: 14px 20px;
}

.primary-action {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: #14100a;
}

.secondary-action {
  background: rgba(255, 247, 232, .08);
  border: 1px solid var(--line);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust span {
  background: rgba(255, 247, 232, .08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .82rem;
  padding: 8px 12px;
}

.dashboard-mockup {
  align-self: center;
  background:
    linear-gradient(160deg, rgba(16, 23, 32, .94), rgba(19, 14, 18, .94)),
    linear-gradient(135deg, rgba(241, 189, 87, .2), rgba(100, 214, 195, .08));
  border: 1px solid rgba(255, 247, 232, .2);
  border-radius: 18px;
  box-shadow: 0 38px 120px rgba(0, 0, 0, .46);
  overflow: hidden;
  padding: 18px;
}

.mockup-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  padding: 0 0 16px;
}

.mockup-toolbar span {
  background: var(--coral);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.mockup-toolbar span:nth-child(2) {
  background: var(--gold);
}

.mockup-toolbar span:nth-child(3) {
  background: var(--teal);
}

.mockup-toolbar strong {
  margin-left: auto;
}

.mockup-hero-card {
  align-items: center;
  background: linear-gradient(135deg, rgba(241, 189, 87, .18), rgba(127, 167, 255, .12));
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 18px 0;
  padding: 18px;
}

.mockup-hero-card small,
.track-row small,
.insight-grid small {
  color: rgba(255, 247, 232, .62);
}

.mockup-hero-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin: 4px 0 0;
}

.energy-pill {
  background: rgba(100, 214, 195, .14);
  border: 1px solid rgba(100, 214, 195, .38);
  border-radius: 999px;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 900;
  padding: 9px 12px;
  white-space: nowrap;
}

.deck-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: 170px 1fr;
}

.record-visual {
  aspect-ratio: 1;
  background:
    radial-gradient(circle, #f2bd57 0 13%, #241512 14% 19%, transparent 20%),
    repeating-radial-gradient(circle, rgba(255,255,255,.08) 0 1px, transparent 2px 8px),
    radial-gradient(circle at 35% 28%, #343845, #07080d 72%);
  border-radius: 50%;
  box-shadow: inset 0 0 32px rgba(0,0,0,.6), 0 20px 44px rgba(0,0,0,.36);
  display: grid;
  place-items: center;
}

.record-label {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: #15100a;
  display: inline-flex;
  font-weight: 950;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.track-stack {
  display: grid;
  gap: 10px;
}

.track-row {
  align-items: center;
  background: rgba(255, 247, 232, .06);
  border: 1px solid rgba(255, 247, 232, .1);
  border-radius: 12px;
  display: flex;
  gap: 12px;
  padding: 12px;
}

.track-row.active {
  background: rgba(255, 111, 97, .14);
  border-color: rgba(255, 111, 97, .34);
}

.track-row > span {
  color: var(--gold);
  font-weight: 900;
}

.insight-grid,
.proof-strip,
.feature-grid,
.price-grid,
.launch-grid,
.audience-grid,
.flow-grid,
.competitor-grid {
  display: grid;
  gap: 16px;
}

.insight-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.insight-grid div {
  background: rgba(255, 247, 232, .06);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.insight-grid span {
  color: #fffaf0;
  display: block;
  font-weight: 950;
  margin-bottom: 4px;
}

.proof-strip {
  background: #f1bd57;
  color: #14100a;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px clamp(20px, 5vw, 72px);
}

.proof-strip div {
  border-right: 1px solid rgba(20, 16, 10, .22);
  padding-right: 22px;
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 950;
  margin-bottom: 4px;
}

.proof-strip span {
  color: rgba(20, 16, 10, .72);
  line-height: 1.45;
}

.section {
  padding: 86px clamp(20px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 32px;
  max-width: 960px;
}

.section-heading.split {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, .7fr);
  max-width: none;
}

.audience-section {
  background: #0d1017;
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-card {
  background:
    linear-gradient(135deg, rgba(241, 189, 87, .28), rgba(255, 111, 97, .14)),
    #111820;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 360px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.audience-card::before {
  background: linear-gradient(180deg, rgba(9, 11, 16, .1), rgba(9, 11, 16, .92));
  content: "";
  inset: 0;
  position: absolute;
}

.audience-card > * {
  position: relative;
}

.audience-card span {
  background: rgba(255, 247, 232, .12);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-size: .8rem;
  font-weight: 900;
  margin-bottom: 160px;
  padding: 8px 12px;
}

.audience-card.dj {
  background-image:
    linear-gradient(135deg, rgba(241, 189, 87, .18), rgba(255, 111, 97, .12)),
    url("https://images.unsplash.com/photo-1571330735066-03aaa9429d89?auto=format&fit=crop&w=900&q=80");
}

.audience-card.collector {
  background-image:
    linear-gradient(135deg, rgba(100, 214, 195, .16), rgba(241, 189, 87, .12)),
    url("https://images.unsplash.com/photo-1603048588665-791ca8aea617?auto=format&fit=crop&w=900&q=80");
}

.audience-card.academy {
  background-image:
    linear-gradient(135deg, rgba(127, 167, 255, .16), rgba(255, 111, 97, .12)),
    url("https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=900&q=80");
}

.product-section,
.pricing-section {
  background: var(--ink);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid article,
.flow-grid article,
.competitor-grid article,
.price-grid article {
  background: rgba(255, 247, 232, .055);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.feature-grid article:nth-child(2n),
.flow-grid article:nth-child(2) {
  background: rgba(100, 214, 195, .07);
}

.feature-grid article:nth-child(3n),
.flow-grid article:nth-child(3) {
  background: rgba(255, 111, 97, .08);
}

.feature-number {
  color: var(--gold);
  display: block;
  font-weight: 950;
  margin-bottom: 18px;
}

.flow-section {
  background: linear-gradient(135deg, #121b22, #160f12);
}

.flow-grid,
.competitor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-grid small {
  color: var(--teal);
  font-weight: 950;
}

.market-section {
  background: #101720;
}

.competitor-grid article strong {
  color: var(--gold);
  display: block;
  line-height: 1.5;
}

.price-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.price-grid article {
  display: flex;
  flex-direction: column;
  min-height: 285px;
}

.price-grid strong {
  color: var(--gold);
  display: block;
  font-size: 1.85rem;
  margin-bottom: 12px;
}

.audience {
  color: var(--teal);
  font-size: .82rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.price-grid .highlighted {
  background: linear-gradient(160deg, rgba(241, 189, 87, .18), rgba(255, 111, 97, .1));
  border-color: rgba(241, 189, 87, .72);
  transform: translateY(-10px);
}

.price-grid a {
  background: var(--paper);
  border-radius: 999px;
  color: #14100a;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: auto;
  padding: 11px 14px;
}

.legal-note {
  margin: 26px 0 0;
  max-width: 900px;
}

.beta-section {
  background:
    linear-gradient(90deg, rgba(9, 11, 16, .88), rgba(9, 11, 16, .58)),
    url("https://images.unsplash.com/photo-1521337581100-8ca9a73a5f79?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.beta-card {
  align-items: center;
  background: rgba(9, 11, 16, .78);
  border: 1px solid rgba(255, 247, 232, .2);
  border-radius: 22px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(24px, 5vw, 54px);
}

.beta-card h2,
.beta-card p {
  max-width: 820px;
}

.site-footer {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(16, 23, 32, .98), rgba(9, 11, 16, .98));
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 32px clamp(20px, 5vw, 72px);
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 14px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #fffaf0;
  font-size: 1.2rem;
  font-weight: 950;
  margin-bottom: 4px;
}

.footer-brand span,
.footer-copy {
  color: var(--muted);
}

.footer-logo {
  border-radius: 16px;
  height: 58px;
  width: 58px;
}

.footer-contact {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact > a {
  color: var(--gold);
  font-weight: 900;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.social-links a {
  background: rgba(255, 247, 232, .08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper);
  font-size: .86rem;
  font-weight: 900;
  padding: 8px 11px;
}

.footer-copy {
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
}

.page-hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(9, 11, 16, .92), rgba(9, 11, 16, .56)),
    url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  min-height: 560px;
  padding: clamp(70px, 11vw, 132px) clamp(20px, 5vw, 72px) 54px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6.8vw, 6.4rem);
  max-width: 1040px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 760px;
}

.checklist-hero {
  background:
    linear-gradient(90deg, rgba(9, 11, 16, .9), rgba(9, 11, 16, .48)),
    url("https://images.unsplash.com/photo-1603048588665-791ca8aea617?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
}

.page-note,
.form-frame,
.form-side,
.day-card {
  background: rgba(255, 247, 232, .06);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.page-note {
  padding: 22px;
}

.page-note strong,
.page-note span {
  display: block;
}

.page-note strong {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.page-note span,
.privacy-note {
  color: var(--muted);
  line-height: 1.65;
}

.form-section {
  background: #0d1017;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  padding: 72px clamp(20px, 5vw, 72px);
}

.form-frame {
  min-height: 860px;
  overflow: hidden;
}

.form-frame iframe {
  background: #fff;
  border: 0;
  height: 100%;
  min-height: 860px;
  width: 100%;
}

.form-side {
  align-self: start;
  padding: 28px;
  position: sticky;
  top: 94px;
}

.check-list,
.day-card ul {
  color: var(--muted);
  line-height: 1.65;
  margin: 18px 0 0;
  padding-left: 18px;
}

.check-list li,
.day-card li {
  margin-bottom: 10px;
}

.privacy-note {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 20px;
}

.privacy-note a {
  color: var(--gold);
}

.checklist-page {
  background: #0d1017;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 72px clamp(20px, 5vw, 72px);
}

.day-card {
  padding: 26px;
}

.day-card span {
  color: var(--teal);
  display: block;
  font-weight: 950;
  margin-bottom: 12px;
}

.day-card h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
}

.compact-cta {
  padding-top: 0;
}

@media (max-width: 1180px) {
  .hero,
  .section-heading.split,
  .beta-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .feature-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-mockup {
    align-self: auto;
  }
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    border-radius: 18px;
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .deck-layout,
  .feature-grid,
  .price-grid,
  .insight-grid,
  .proof-strip,
  .audience-grid,
  .flow-grid,
  .competitor-grid,
  .page-hero,
  .form-section,
  .checklist-page {
    grid-template-columns: 1fr;
  }

  .form-side {
    position: static;
  }

  .proof-strip div {
    border-bottom: 1px solid rgba(20, 16, 10, .22);
    border-right: 0;
    padding: 0 0 16px;
  }

  .proof-strip div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .audience-card span {
    margin-bottom: 130px;
  }

  .price-grid .highlighted {
    transform: none;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.7rem, 17vw, 4.3rem);
  }

  .mockup-hero-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }
}
