:root {
  color-scheme: dark;
  --background: #070a0f;
  --background-soft: #0b1018;
  --card: #111827;
  --card-elevated: #171d2c;
  --border: #253045;
  --border-strong: #33425e;
  --text: #f6f7fb;
  --secondary: #c6ccdc;
  --muted: #8690a8;
  --teal: #24d8d2;
  --pink: #ff3f9b;
  --gold: #d7fb42;
  --purple: #8c63ff;
  --ink: #071014;
  --max-width: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(140, 99, 255, 0.2) 0, rgba(7, 10, 15, 0) 18rem),
    var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

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

code {
  border: 1px solid rgba(198, 204, 220, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary);
  font-size: 0.88em;
  padding: 0.1rem 0.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: fit-content;
  color: var(--text);
  font-weight: 900;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: var(--secondary);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.site-footer nav a,
.secondary-link {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-footer nav a:hover,
.secondary-link:hover {
  color: var(--teal);
}

.nav-cta,
.secondary-link {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 800;
  padding: 0.78rem 1rem;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.secondary-link:hover {
  border-color: rgba(36, 216, 210, 0.7);
  background: rgba(36, 216, 210, 0.09);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 29rem);
  align-items: center;
  gap: 4rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 4.2rem 0 5rem;
}

.hero-copy {
  max-width: 42rem;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.4rem;
  color: var(--text);
  font-size: 5.25rem;
  font-weight: 950;
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: 2.65rem;
  font-weight: 950;
  line-height: 1;
}

h3 {
  margin-bottom: 0.8rem;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: var(--secondary);
  font-size: 1.25rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.app-store-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 12.5rem;
  min-height: 4rem;
  border: 1px solid rgba(36, 216, 210, 0.9);
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--ink);
  padding: 0.72rem 1.2rem;
  box-shadow: 0 1rem 2.5rem rgba(36, 216, 210, 0.2);
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.app-store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.2rem 3rem rgba(36, 216, 210, 0.28);
}

.button-kicker {
  font-size: 0.76rem;
  line-height: 1.1;
}

.button-label {
  font-size: 1.45rem;
  line-height: 1.15;
}

.phone-stage {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
}

.phone-shell {
  width: min(100%, 24rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2.2rem;
  background:
    linear-gradient(135deg, rgba(255, 63, 155, 0.28), transparent 28%),
    linear-gradient(315deg, rgba(36, 216, 210, 0.24), transparent 24%),
    #05070b;
  padding: 0.75rem;
  box-shadow:
    0 2.2rem 5.5rem rgba(0, 0, 0, 0.55),
    0 0 0 0.5rem rgba(255, 255, 255, 0.03);
}

.phone-screen {
  overflow: hidden;
  min-height: 37rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.65rem;
  background: var(--background);
  padding: 1rem;
}

.phone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-logo {
  width: 2.3rem;
  height: 1.9rem;
  object-fit: contain;
}

.profile-card,
.search-card,
.show-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.profile-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.profile-label,
.profile-name,
.profile-count span,
.show-card p {
  margin: 0;
}

.profile-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-name {
  margin-top: 0.25rem;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 950;
}

.profile-count {
  display: grid;
  place-items: center;
  min-width: 4.3rem;
  min-height: 4.3rem;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--ink);
}

.profile-count strong {
  font-size: 1.45rem;
  line-height: 1;
}

.profile-count span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.85rem 0;
  padding: 0.85rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.search-card strong {
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  padding: 0.5rem 0.72rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.show-list {
  display: grid;
  gap: 0.75rem;
}

.show-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem;
}

.artist-dot {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
}

.dot-teal {
  background: linear-gradient(135deg, var(--teal), var(--purple));
}

.dot-pink {
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.dot-gold {
  background: linear-gradient(135deg, var(--gold), var(--teal));
}

.show-card h2 {
  overflow: hidden;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.show-card p {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.rating {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  width: min(78%, 18rem);
  margin-top: 1.1rem;
}

.signal-strip span {
  height: 0.35rem;
  border-radius: 999px;
  background: var(--border-strong);
}

.signal-strip span:nth-child(1) {
  background: var(--teal);
}

.signal-strip span:nth-child(2) {
  background: var(--pink);
}

.signal-strip span:nth-child(3) {
  background: var(--gold);
}

.signal-strip span:nth-child(4) {
  background: var(--purple);
}

.feature-band,
.workflow-section,
.cta-section,
.legal-page {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.feature-band {
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2.5rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.section-heading p {
  grid-column: 1;
}

.section-heading h2 {
  grid-column: 1 / -1;
  max-width: 42rem;
}

.section-heading.compact {
  display: block;
  max-width: 43rem;
}

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

.feature-card,
.workflow-step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1.2rem;
}

.feature-index {
  display: inline-flex;
  margin-bottom: 1.7rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
}

.feature-card p,
.workflow-step p,
.cta-section p,
.legal-content p,
.legal-content li {
  margin-bottom: 0;
  color: var(--secondary);
  line-height: 1.65;
}

.workflow-section {
  padding: 4.5rem 0 3rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.workflow-step span {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--card-elevated);
  color: var(--teal);
  font-weight: 950;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(36, 216, 210, 0.16), transparent 36%),
    linear-gradient(315deg, rgba(255, 63, 155, 0.16), transparent 34%),
    var(--card);
  padding: 2rem;
}

.cta-section div {
  max-width: 42rem;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 3rem 0 2rem;
  color: var(--muted);
}

.footer-brand {
  color: var(--secondary);
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  font-weight: 800;
}

.legal-page {
  padding: 4rem 0 3rem;
}

.legal-hero {
  max-width: 45rem;
  margin-bottom: 2rem;
}

.legal-hero h1 {
  font-size: 3.4rem;
  line-height: 1;
}

.legal-hero p {
  color: var(--secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-content {
  display: grid;
  gap: 1rem;
  max-width: 50rem;
}

.legal-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1.4rem;
}

.legal-panel h2 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal-panel a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-panel p + p,
.legal-panel p + ul,
.legal-panel ul + p {
  margin-top: 0.85rem;
}

.legal-content li + li {
  margin-top: 0.5rem;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding-top: 2.6rem;
  }

  .phone-shell {
    width: min(100%, 22rem);
  }

  .phone-screen {
    min-height: 31rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.2rem;
  }

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

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .feature-band,
  .workflow-section,
  .cta-section,
  .legal-page,
  .site-footer {
    width: calc(100% - 2rem);
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    gap: 2rem;
    padding: 1.7rem 0 3.2rem;
  }

  .hero-copy,
  .hero-lede,
  .hero-actions {
    max-width: 23rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .app-store-button,
  .secondary-link {
    width: 100%;
  }

  .secondary-link {
    text-align: center;
  }

  .phone-shell {
    width: min(100%, 19.5rem);
    border-radius: 1.8rem;
  }

  .phone-screen {
    min-height: 27.5rem;
    border-radius: 1.3rem;
    padding: 0.75rem;
  }

  .profile-name {
    font-size: 1.05rem;
  }

  .profile-count {
    min-width: 3.7rem;
    min-height: 3.7rem;
  }

  .show-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .rating {
    display: none;
  }

  .feature-band,
  .workflow-section,
  .legal-page {
    padding-top: 3rem;
  }

  .section-heading,
  .feature-grid,
  .workflow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 1.25rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 1.8rem;
    height: 1.8rem;
  }

  .site-nav {
    gap: 0.85rem;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.15rem;
  }

  .phone-shell {
    width: min(100%, 18rem);
  }

  .phone-screen {
    min-height: 26rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
