:root {
  color-scheme: light dark;
  --page: #eef5f4;
  --surface: #ffffff;
  --surface-soft: #e2eceb;
  --ink: #10242a;
  --muted: #52666b;
  --border: #cbdcda;
  --brand: #2f8f8a;
  --brand-strong: #246f6b;
  --music: #5657e5;
  --music-soft: #e9e9ff;
  --hero: #0f2f38;
  --hero-ink: #f4fbfa;
  --hero-muted: #c5d8d9;
  --shadow: 0 24px 70px rgba(10, 43, 51, 0.13);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 15px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #09191e;
    --surface: #102a31;
    --surface-soft: #15363d;
    --ink: #f1f8f7;
    --muted: #b5c8c9;
    --border: #2b4b51;
    --brand: #6fc9c2;
    --brand-strong: #93e0da;
    --music: #a7a8ff;
    --music-soft: #292a54;
    --hero: #071a20;
    --hero-ink: #f4fbfa;
    --hero-muted: #bdd1d2;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible,
summary:focus-visible {
  border-radius: 6px;
  outline: 3px solid var(--music);
  outline-offset: 4px;
}

.shell {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--hero);
  color: var(--hero-ink);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 140px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #8de0d8;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(64, 145, 139, 0.32), transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(86, 87, 229, 0.3), transparent 35%),
    linear-gradient(145deg, #0f2f38 0%, #153f49 58%, #1d4d4e 100%);
  color: var(--hero-ink);
}

.hero-grid {
  min-height: 680px;
  padding-block: 88px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 108px);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--hero-muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8de0d8;
  content: "";
  box-shadow: 0 0 0 5px rgba(141, 224, 216, 0.12);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9adbd6;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 7vw, 5.9rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.25rem;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--hero-muted);
  font-size: clamp(1.03rem, 2vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: #f4fbfa;
  color: #12343d;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: var(--hero-ink);
}

.phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-wrap::before {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 167, 255, 0.3), transparent 68%);
  content: "";
  filter: blur(8px);
}

.phone {
  position: relative;
  width: min(310px, 78vw);
  min-height: 590px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 46px;
  background: #050713;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.45);
  transform: rotate(2.5deg);
}

.phone-screen {
  min-height: 564px;
  padding: 24px 18px 18px;
  border-radius: 35px;
  background: linear-gradient(170deg, #11133e, #090a20 55%, #151738);
}

.phone-island {
  width: 88px;
  height: 23px;
  margin: -14px auto 22px;
  border-radius: 999px;
  background: #010207;
}

.phone-label {
  color: #a8a9ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.album-art {
  aspect-ratio: 1;
  margin: 14px 0 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 68% 34%, rgba(244, 245, 255, 0.9) 0 5%, transparent 6%),
    radial-gradient(circle at 44% 55%, rgba(149, 152, 255, 0.9) 0 11%, transparent 12%),
    conic-gradient(from 35deg, #3a3ce0, #7b50e7, #1f9ca4, #3a3ce0);
  box-shadow: 0 16px 40px rgba(61, 63, 226, 0.35);
}

.now-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 760;
}

.now-artist {
  margin: 3px 0 18px;
  color: #b7b9d4;
  font-size: 0.78rem;
}

.progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #343753;
}

.progress span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: #a8a9ff;
}

.transport {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #e8e9ff;
  font-size: 1.2rem;
  font-weight: 800;
}

.transport .play {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8e9ff;
  color: #10122f;
  font-size: 1rem;
}

.section {
  padding-block: 96px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:last-child,
.legal-intro,
.muted {
  color: var(--muted);
}

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

.card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--music-soft);
  color: var(--music);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  background: var(--surface-soft);
}

.step-list {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step {
  counter-increment: steps;
  position: relative;
  padding: 60px 26px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.step::before {
  position: absolute;
  top: 22px;
  left: 26px;
  color: var(--music);
  content: "0" counter(steps);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.facts {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.fact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.fact-list strong {
  display: block;
  margin-bottom: 2px;
}

.notice {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--hero);
  color: var(--hero-ink);
}

.notice p {
  color: var(--hero-muted);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.resource {
  display: block;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.resource:hover {
  border-color: var(--music);
}

.resource strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.resource span {
  color: var(--muted);
}

.legal-header {
  padding-block: 78px 60px;
  background:
    radial-gradient(circle at 18% 20%, rgba(64, 145, 139, 0.28), transparent 40%),
    radial-gradient(circle at 86% 12%, rgba(86, 87, 229, 0.26), transparent 34%),
    var(--hero);
  color: var(--hero-ink);
}

.back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--hero-muted);
  font-weight: 720;
  text-decoration: none;
}

.legal-header h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.legal-header .legal-intro,
.legal-header .updated {
  max-width: 720px;
  color: var(--hero-muted);
}

.updated {
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.legal-main {
  width: min(820px, calc(100% - 36px));
  margin-inline: auto;
  padding-block: 56px 90px;
}

.summary {
  margin-bottom: 30px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--music-soft);
  box-shadow: var(--shadow);
}

.summary strong {
  display: block;
  margin-bottom: 5px;
  color: var(--music);
  font-size: 1.12rem;
}

.legal-section {
  padding-block: 26px;
  border-bottom: 1px solid var(--border);
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  margin: 0 0 13px;
  color: var(--muted);
}

.legal-section li + li {
  margin-top: 7px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.quick-grid div {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.quick-grid strong {
  display: block;
  margin-bottom: 4px;
}

.quick-grid span {
  color: var(--muted);
}

.faq-title {
  margin: 38px 0 14px;
  font-size: 1.5rem;
}

details {
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 760;
}

.answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.answer p,
.answer ol,
.answer ul {
  margin: 0 0 10px;
}

.site-footer {
  padding-block: 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 900px) {
  .hero-grid,
  .facts {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 70px;
  }

  .phone-wrap {
    margin-top: 20px;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 122px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links .hide-small {
    display: none;
  }

  .hero-grid {
    min-height: auto;
  }

  .feature-grid,
  .step-list,
  .resource-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 70px;
  }

  .footer-grid {
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
