:root {
  color-scheme: dark;
  --bg: #070814;
  --panel: #101827;
  --panel-2: #0d1321;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f3fbff;
  --muted: rgba(243, 251, 255, 0.64);
  --soft: rgba(243, 251, 255, 0.42);
  --cyan: #36dbff;
  --blue: #3b74ff;
  --purple: #b64cff;
  --green: #32e66d;
  --red: #ff454f;
  --yellow: #ffe12d;
  --orange: #ff9f38;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --page-background:
    radial-gradient(circle at 18% 12%, rgba(54, 219, 255, 0.082) 0%, rgba(54, 219, 255, 0.047) 24rem, rgba(54, 219, 255, 0.018) 34rem, transparent 48rem),
    linear-gradient(180deg, #0a0b1b 0%, var(--bg) 42%, #050711 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #0a0b1b;
  background: var(--page-background);
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: #0a0b1b;
  background: var(--page-background);
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  padding-top: calc(14px + env(safe-area-inset-top, 0px));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 0 22px rgba(54, 219, 255, 0.22);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 999px;
}

nav a {
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(270px, 27vw, 360px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  min-height: calc(100vh - 70px);
  padding: 42px 0 72px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 8%;
  right: max(-34vw, -520px);
  width: min(86vw, 1180px);
  height: min(86vw, 1180px);
  pointer-events: none;
  background: radial-gradient(ellipse 50% 48% at 50% 50%, rgba(182, 76, 255, 0.12) 0%, rgba(182, 76, 255, 0.075) 26%, rgba(182, 76, 255, 0.038) 52%, rgba(182, 76, 255, 0.014) 72%, transparent 90%);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 740px;
  min-width: 0;
}

.hero-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 28px;
  box-shadow: 0 22px 70px rgba(54, 219, 255, 0.22);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(50px, 7.2vw, 82px);
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: visible;
}

.line-keep {
  white-space: nowrap;
}

.lead {
  max-width: 520px;
  margin-bottom: 30px;
  font-size: clamp(21px, 3vw, 31px);
  line-height: 1.12;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border: 0;
  color: white;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(54, 219, 255, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  color: var(--text);
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 9px 16px 10px 13px;
  color: #fff;
  text-decoration: none;
  background: #05070c;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.app-store-badge:hover {
  border-color: rgba(54, 219, 255, 0.42);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(54, 219, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.apple-mark {
  display: inline-flex;
  width: 27px;
  height: 32px;
}

.apple-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.app-store-badge span:last-child {
  display: grid;
  gap: 0;
}

.app-store-badge small,
.app-store-badge strong {
  line-height: 1;
}

.app-store-badge small {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
}

.app-store-badge strong {
  margin-top: 3px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.phone-preview {
  position: relative;
  width: clamp(270px, 27vw, 360px);
  aspect-ratio: 1206 / 2622;
  margin-inline: auto;
  overflow: hidden;
  border-radius: clamp(30px, 3vw, 42px);
  background: #07101e;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.52),
    0 0 80px rgba(54, 219, 255, 0.10),
    inset 0 0 0 8px rgba(255, 255, 255, 0.035);
}

.phone-preview.real-shot {
  transform: translateY(10px);
}

.phone-preview.real-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.05));
  mix-blend-mode: screen;
}

.phone-preview.real-shot::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  pointer-events: none;
  border-radius: calc(clamp(30px, 3vw, 42px) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.phone-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-top {
  position: absolute;
  top: 18px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.phone-top span {
  width: 42px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.chart-stage {
  position: absolute;
  inset: 0 0 76px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-top: 74px;
}

.song-pill {
  position: absolute;
  top: 70px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  width: 62%;
  padding: 12px 18px;
  text-align: center;
  border-radius: 999px;
  background: rgba(27, 62, 103, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 44px rgba(54, 219, 255, 0.10);
}

.song-pill strong,
.song-pill span,
.song-pill em {
  display: block;
  white-space: nowrap;
}

.song-pill strong {
  color: var(--cyan);
  font-size: 20px;
}

.song-pill span,
.song-pill em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-size: 12px;
}

.lane {
  min-height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.lane-green { background: rgba(24, 222, 87, 0.08); }
.lane-red { background: rgba(255, 45, 74, 0.07); }
.lane-yellow { background: rgba(255, 225, 45, 0.06); }
.lane-blue { background: rgba(59, 116, 255, 0.10); }
.lane-orange { background: rgba(255, 159, 56, 0.07); }

.measure-line,
.strike-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
}

.measure-line.one { top: 31%; }
.measure-line.two { top: 63%; }

.strike-line {
  bottom: 72px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(54, 219, 255, 0.5);
}

.note {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 30px currentColor;
}

.n1 {
  color: var(--green);
  left: 11%;
  bottom: 86px;
  background: rgba(50, 230, 109, 0.22);
}

.n2 {
  color: var(--blue);
  left: 48%;
  bottom: 98px;
  background: rgba(59, 116, 255, 0.25);
}

.n3 {
  color: var(--orange);
  right: 9%;
  bottom: 84px;
  background: rgba(255, 159, 56, 0.22);
}

.toolbar-preview {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 86px;
  padding: 14px;
  background: rgba(8, 24, 44, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.toolbar-preview span {
  padding: 9px 12px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan);
  background: rgba(54, 219, 255, 0.10);
}

.section {
  padding: 76px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 26px;
}

.features-heading {
  max-width: 920px;
}

.section h2,
.legal-hero h1 {
  color: var(--text);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.section p,
.legal-hero p,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

code {
  padding: 0.1em 0.35em;
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(54, 219, 255, 0.10);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-grid article,
.legal-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-color: var(--feature-border);
}

.feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--feature-glow);
  opacity: 0.95;
  pointer-events: none;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid var(--feature-border);
  pointer-events: none;
}

.feature-grid article > * {
  position: relative;
  z-index: 1;
}

.feature-import {
  --feature-color: var(--green);
  --feature-border: rgba(50, 230, 109, 0.34);
  --feature-icon-bg: rgba(50, 230, 109, 0.18);
  --feature-icon-shadow: rgba(50, 230, 109, 0.24);
  --feature-glow:
    radial-gradient(circle at 20% 10%, rgba(50, 230, 109, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(50, 230, 109, 0.11), transparent 58%);
}

.feature-notes {
  --feature-color: var(--cyan);
  --feature-border: rgba(54, 219, 255, 0.34);
  --feature-icon-bg: rgba(54, 219, 255, 0.18);
  --feature-icon-shadow: rgba(54, 219, 255, 0.24);
  --feature-glow:
    radial-gradient(circle at 20% 10%, rgba(54, 219, 255, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(54, 219, 255, 0.11), transparent 58%);
}

.feature-tempo {
  --feature-color: var(--purple);
  --feature-border: rgba(182, 76, 255, 0.36);
  --feature-icon-bg: rgba(182, 76, 255, 0.18);
  --feature-icon-shadow: rgba(182, 76, 255, 0.26);
  --feature-glow:
    radial-gradient(circle at 20% 10%, rgba(182, 76, 255, 0.30), transparent 42%),
    linear-gradient(145deg, rgba(182, 76, 255, 0.12), transparent 58%);
}

.feature-export {
  --feature-color: var(--orange);
  --feature-border: rgba(255, 159, 56, 0.34);
  --feature-icon-bg: rgba(255, 159, 56, 0.18);
  --feature-icon-shadow: rgba(255, 159, 56, 0.24);
  --feature-glow:
    radial-gradient(circle at 20% 10%, rgba(255, 159, 56, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(255, 159, 56, 0.11), transparent 58%);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: var(--feature-color);
  font-size: 24px;
  font-weight: 900;
  background:
    linear-gradient(180deg, var(--feature-icon-bg), rgba(255, 255, 255, 0.045));
  box-shadow:
    0 0 28px var(--feature-icon-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.feature-grid h3,
.legal-card h2,
.legal-card h3 {
  color: var(--text);
}

.showcase-section {
  position: relative;
  isolation: isolate;
}

.showcase-section::before {
  content: "";
  position: absolute;
  top: -170px;
  left: 50%;
  width: max(180vw, 2200px);
  height: 1220px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  filter: blur(28px);
  background:
    radial-gradient(ellipse 720px 560px at 38% 42%, rgba(54, 219, 255, 0.092) 0%, rgba(54, 219, 255, 0.066) 22%, rgba(54, 219, 255, 0.040) 42%, rgba(54, 219, 255, 0.020) 62%, rgba(54, 219, 255, 0.008) 78%, transparent 94%),
    radial-gradient(ellipse 740px 570px at 62% 38%, rgba(255, 159, 56, 0.060) 0%, rgba(182, 76, 255, 0.048) 24%, rgba(182, 76, 255, 0.028) 46%, rgba(182, 76, 255, 0.014) 66%, rgba(182, 76, 255, 0.006) 80%, transparent 94%);
}

.showcase-section::after {
  content: "";
  position: absolute;
  top: 520px;
  left: 50%;
  width: max(180vw, 2200px);
  height: 1150px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  filter: blur(34px);
  background:
    radial-gradient(ellipse 780px 590px at 37% 52%, rgba(50, 230, 109, 0.048) 0%, rgba(50, 230, 109, 0.031) 24%, rgba(50, 230, 109, 0.018) 46%, rgba(50, 230, 109, 0.008) 66%, rgba(50, 230, 109, 0.003) 82%, transparent 96%),
    radial-gradient(ellipse 820px 620px at 66% 38%, rgba(255, 159, 56, 0.052) 0%, rgba(255, 159, 56, 0.034) 24%, rgba(255, 159, 56, 0.019) 46%, rgba(255, 159, 56, 0.009) 66%, rgba(255, 159, 56, 0.003) 82%, transparent 96%);
}

.showcase-section > * {
  position: relative;
  z-index: 1;
}

.showcase-wide,
.shot-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(54, 219, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.showcase-wide {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.38fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  margin-bottom: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
}

.showcase-copy {
  max-width: 390px;
}

.showcase-kicker,
.shot-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-copy h3,
.shot-copy h3 {
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: 0;
}

.showcase-copy h3 {
  font-size: clamp(28px, 4vw, 42px);
}

.showcase-copy p,
.shot-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.wide-shot {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #080b14;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.34),
    0 0 64px rgba(54, 219, 255, 0.10);
}

.wide-shot img,
.shot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-frame img {
  object-position: center top;
}

.shot-note-types .shot-frame img {
  object-position: center 90%;
}

.shot-options .shot-frame img {
  object-position: center 10%;
}

.shot-section-select .shot-frame img {
  object-position: center 74%;
}

.showcase-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.shot-card {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  border-radius: 18px;
}

.shot-card:nth-child(-n + 2) {
  display: grid;
  grid-column: span 3;
  grid-template-columns: minmax(150px, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
}

.shot-frame {
  position: relative;
  overflow: hidden;
  height: 360px;
  margin: 12px 12px 0;
  border-radius: 16px;
  background: #070914;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.shot-card:nth-child(-n + 2) .shot-frame {
  height: calc(100% - 24px);
  min-height: 430px;
  margin: 12px 0 12px 12px;
}

.shot-card:nth-child(-n + 2) .shot-copy {
  align-self: center;
  padding: 24px;
}

.shot-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, 0.20));
}

.shot-copy {
  padding: 17px 16px 18px;
}

.shot-copy h3 {
  font-size: 19px;
}

.shot-copy p {
  font-size: 14px;
}

.accent-orange {
  border-color: rgba(255, 159, 56, 0.24);
  background:
    radial-gradient(circle at 32% 0%, rgba(255, 159, 56, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.accent-purple {
  border-color: rgba(182, 76, 255, 0.24);
  background:
    radial-gradient(circle at 32% 0%, rgba(182, 76, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.accent-green {
  border-color: rgba(50, 230, 109, 0.22);
  background:
    radial-gradient(circle at 32% 0%, rgba(50, 230, 109, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.accent-cyan {
  border-color: rgba(54, 219, 255, 0.24);
  background:
    radial-gradient(circle at 32% 0%, rgba(54, 219, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.accent-yellow {
  border-color: rgba(255, 225, 45, 0.22);
  background:
    radial-gradient(circle at 32% 0%, rgba(255, 225, 45, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.accent-orange .shot-copy span,
.accent-yellow .shot-copy span {
  color: var(--orange);
}

.accent-purple .shot-copy span {
  color: var(--purple);
}

.accent-green .shot-copy span {
  color: var(--green);
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.split > div {
  max-width: 690px;
}

.faq-section .section-heading {
  max-width: 840px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.faq-grid .faq-item {
  width: 100%;
  margin: 0;
}

.support-faq-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(54, 219, 255, 0.15);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(54, 219, 255, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.032));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.faq-item:nth-child(4n + 2) {
  border-color: rgba(182, 76, 255, 0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(182, 76, 255, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.032));
}

.faq-item:nth-child(4n + 3) {
  border-color: rgba(50, 230, 109, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(50, 230, 109, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.032));
}

.faq-item:nth-child(4n + 4) {
  border-color: rgba(255, 159, 56, 0.17);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 159, 56, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.032));
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(54, 219, 255, 0.56);
}

.faq-item:nth-child(4n + 2) summary::before {
  background: var(--purple);
  box-shadow: 0 0 20px rgba(182, 76, 255, 0.54);
}

.faq-item:nth-child(4n + 3) summary::before {
  background: var(--green);
  box-shadow: 0 0 20px rgba(50, 230, 109, 0.48);
}

.faq-item:nth-child(4n + 4) summary::before {
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 159, 56, 0.48);
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(54, 219, 255, 0.11);
  border: 1px solid rgba(54, 219, 255, 0.22);
  font-size: 18px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item div {
  padding: 0 22px 22px 46px;
}

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

.faq-item p + p {
  margin-top: 12px;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 52px;
  color: var(--soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer p {
  margin-bottom: 8px;
}

footer a,
.legal-card a {
  color: var(--cyan);
}

.legal-page {
  padding: 50px 0 90px;
}

.legal-hero {
  max-width: 760px;
  padding: 54px 0 26px;
}

.legal-card {
  padding: clamp(22px, 4vw, 42px);
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 24px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: start;
}

.contact-card .button {
  margin-top: 8px;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .app-store-badge {
    justify-content: center;
  }

  .phone-preview {
    width: min(420px, 86vw);
  }

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

  .showcase-wide {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    max-width: 680px;
  }

  .showcase-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .shot-card,
  .shot-card:nth-child(-n + 2) {
    display: flex;
    grid-column: auto;
  }

  .shot-card:nth-child(-n + 2) .shot-frame {
    height: 430px;
    min-height: 0;
    margin: 12px 12px 0;
  }

  .shot-card:nth-child(-n + 2) .shot-copy {
    padding: 17px 16px 18px;
  }

  .shot-tempo .shot-frame img {
    object-position: center 56%;
  }

  .shot-settings .shot-frame img {
    object-position: center 42%;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 24px, 1120px);
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  nav a {
    flex: 1;
    text-align: center;
  }

  main,
  footer {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(38px, 12.4vw, 48px);
  }

  .hero-icon {
    width: 82px;
    height: 82px;
  }

  .button {
    width: 100%;
  }

  .app-store-badge {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .features-heading .line-keep {
    white-space: normal;
  }

  .showcase-wide {
    padding: 18px;
  }

  .showcase-cards {
    grid-template-columns: 1fr;
  }

  .shot-frame {
    width: min(320px, 100%);
    height: 430px;
    margin-inline: auto;
  }

  .shot-card:nth-child(-n + 2) .shot-frame {
    width: min(320px, 100%);
    height: 430px;
    min-height: 0;
    margin-inline: auto;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 18px 52px 18px 18px;
    font-size: 16px;
  }

  .faq-item div {
    padding: 0 18px 18px 38px;
  }

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

  .section {
    padding: 54px 0;
  }

  .song-pill {
    width: 72%;
  }

  .song-pill strong {
    font-size: 17px;
  }

  .toolbar-preview span {
    font-size: 11px;
    padding-inline: 9px;
  }
}
