/* Shared presentation system: homepage, live results, phrase and song pages. */
:root {
  --bg:#fff;
  --surface:#fff;
  --text:#0b0b0b;
  --muted:#52617b;
  --line:#e5eaf2;
  --blue:#0768ff;
  --soft:#f1f6ff;
  --shadow:0 8px 28px rgba(25,52,95,.06);
  --radius:18px;
  --max:1180px;
  --space-1:8px;
  --space-2:16px;
  --space-3:24px;
  --space-4:32px;
  --space-5:48px;
  --space-6:64px
}

* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.5
}
button,input {
  font:inherit
}
a {
  color:inherit
}
button,a,input {
   -webkit-tap-highlight-color:transparent
}
button,a {
  touch-action:manipulation
}
.wrap {
  width:min(var(--max),calc(100% - 64px));
  margin-inline:auto
}
h1,h2,h3 {
  letter-spacing:-.045em;
  line-height:1.08
}
h1 {
  font-weight:850
}
p {
  color:var(--muted)
}
[hidden] {
  display:none!important
}
mark {
  color:var(--blue);
  background:#e2eeff;
  border-radius:3px;
  padding:0 .08em
}
svg {
  stroke-linecap:round;
  stroke-linejoin:round
}
.ui-icon {
  width:20px;
  height:20px;
  flex:none;
  vertical-align:-4px;
  color:var(--blue)
}
:focus-visible {
  outline:3px solid var(--blue);
  outline-offset:4px
}
a,button {
  transition:background .18s,border-color .18s,box-shadow .18s,transform .18s
}
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0
}

.top {
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--line)
}
.nav {
  height:76px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px
}
.brand {
  display:inline-flex;
  justify-self:start;
  flex-direction:column;
  justify-content:center;
  min-height:44px;
  text-decoration:none
}
.brand-logo {
  position:relative;
  display:block;
  width:148px;
  height:49px
}
.brand-logo img {
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:contain
}
.brand-logo-dark {
  display:none!important
}
.nav-actions {
  justify-self:end;
  display:flex;
  align-items:center;
  gap:12px
}
.theme-toggle {
  display:inline-grid;
  place-items:center;
  width:38px;
  height:38px;
  padding:0;
  border:1px solid var(--line);
  border-radius:11px;
  background:var(--surface);
  color:var(--muted);
  cursor:pointer
}
.theme-toggle:hover {
  color:var(--blue);
  border-color:#b8d2ff
}
.theme-icon {
  display:grid;
  place-items:center
}
.theme-icon .ui-icon {
  width:18px;
  height:18px;
  color:currentColor
}
.theme-icon-moon {
  display:none
}

/* Theme change reveals the real NEW page snapshot over the OLD one.
   There is no opaque color sheet, so text/cards/icons remain visible and
   switch color exactly as the reveal reaches them. */
::view-transition-old(root),
::view-transition-new(root) {
  animation:none;
  mix-blend-mode:normal
}
::view-transition-old(root) {
  z-index:1
}
::view-transition-new(root) {
  z-index:2;
  clip-path:circle(0 at var(--theme-reveal-x,50%) var(--theme-reveal-y,50%))
}

.navlinks {
  display:flex;
  gap:28px
}
.navlinks a,.footer-links a {
  display:inline-flex;
  align-items:center;
  min-height:44px;
  text-decoration:none;
  font-size:14px;
  font-weight:520;
  color:#43516a
}
.navlinks a:hover,.footer-links a:hover {
  color:var(--blue)
}
.menu-toggle {
  display:none;
  width:44px;
  height:44px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:12px;
  justify-self:end;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  cursor:pointer
}
.menu-toggle span,.menu-toggle:before,.menu-toggle:after {
  content:"";
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  border-radius:2px
}
.menu-toggle span {
  margin:4px 0
}
.menu-toggle[aria-expanded=true] span {
  opacity:0
}
.menu-toggle[aria-expanded=true]:before {
  transform:translateY(6px) rotate(45deg)
}
.menu-toggle[aria-expanded=true]:after {
  transform:translateY(-6px) rotate(-45deg)
}
.mobile-menu {
  display:none
}
.mobile-menu.is-open {
  display:block;
  border-top:1px solid var(--line)
}
.mobile-menu .wrap {
  display:grid;
  padding-block:8px 16px
}
.mobile-menu a {
  padding:12px 0;
  text-decoration:none;
  color:var(--muted);
  min-height:48px
}

.eyebrow,.home-section-label {
  color:var(--muted);
  font-size:11px;
  font-weight:750;
  letter-spacing:.12em;
  text-transform:uppercase
}
.muted {
  color:var(--muted)
}
.searchbox {
  display:flex;
  gap:8px;
  align-items:center;
  width:min(780px,100%);
  margin:28px auto 0;
  padding:7px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
  min-height:66px
}
.searchbox:focus-within {
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(7,104,255,.1),var(--shadow)
}
.searchbox>.ui-icon {
  margin-left:15px;
  color:var(--muted)
}
.searchbox input {
  border:0;
  background:transparent;
  outline:0;
  flex:1;
  min-width:0;
  padding:12px 6px;
  color:var(--text);
  font-size:16px
}
.searchbox input::placeholder {
  color:#697994
}
.searchbox button,.primary-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 26px;
  border:0;
  border-radius:13px;
  background:var(--blue);
  color:#fff;
  font-weight:650;
  font-size:14px;
  text-decoration:none;
  cursor:pointer;
  gap:8px
}
.searchbox button:hover,.primary-btn:hover {
  background:#0057db;
  box-shadow:0 5px 14px rgba(7,104,255,.18)
}
.searchbox .search-clear {
  padding:0;
  min-width:44px;
  min-height:44px;
  background:transparent;
  color:var(--muted);
  box-shadow:none
}
.search-clear .ui-icon {
  color:inherit
}
.examples {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:12px;
  font-size:12px;
  color:var(--muted)
}
.chip,.pill {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:8px 13px;
  min-height:44px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-size:12px;
  text-decoration:none;
  color:var(--muted)
}
button.chip {
  cursor:pointer
}
.chip:hover {
  border-color:#b8d2ff
}
.chip.blue,.pill.blue {
  background:var(--soft);
  border-color:transparent;
  color:var(--blue)
}
span.chip {
  min-height:32px;
  padding:5px 10px
}
.crumbs {
  padding-top:20px;
  font-size:12px;
  color:var(--muted)
}
.crumbs a {
  display:inline-flex;
  align-items:center;
  min-height:44px;
  text-decoration:none
}

.home-hero {
  position:relative;
  text-align:center;
  padding:64px 0 28px;
  background:radial-gradient(ellipse at center,#f5f9ff,transparent 72%)
}
.home-hero-inner {
  position:relative
}
.home-hero h1 {
  position:relative;
  margin:0 auto;
  max-width:900px;
  font-size:clamp(54px,5.3vw,76px);
  line-height:.98;
  letter-spacing:-.06em
}
.home-hero h1 span {
  display:block;
  color:var(--blue)
}
.home-subtitle {
  position:relative;
  margin:20px auto 0;
  max-width:680px;
  font-size:17px;
  line-height:1.55
}
.home-note {
  --note-x:0px;
  --note-y:0px;
  --note-rot:0deg;
  position:absolute;
  z-index:1;
  width:190px;
  max-width:190px;
  padding:6px 8px;
  border:0;
  border-radius:10px;
  background:transparent;
  color:#8fa0ba;
  font:600 14px/1.32 Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  letter-spacing:-.01em;
  text-align:left;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  cursor:pointer;
  transform:translate3d(var(--note-x),var(--note-y),0) rotate(var(--note-rot));
  transition:opacity .2s,color .18s,background .18s,transform .22s cubic-bezier(.2,.75,.25,1);
  will-change:transform
}
.home-note:hover {
  color:var(--blue);
  background:rgba(7,104,255,.055)
}
.home-note.is-changing {
  opacity:0
}

.n1 {
  left:0;
  top:28px;
  --note-rot:-4deg
}
.n2 {
  left:-2px;
  top:118px;
  --note-rot:-2deg
}
.n3 {
  left:6px;
  top:192px;
  --note-rot:-3deg
}
.n4 {
  right:0;
  top:24px;
  --note-rot:3deg;
  text-align:right
}
.n5 {
  right:2px;
  top:112px;
  --note-rot:-2deg;
  color:var(--blue);
  text-align:right
}
.n6 {
  right:6px;
  top:188px;
  --note-rot:3deg;
  text-align:right
}
.home-search {
  position:relative;
  width:min(820px,100%);
  min-height:70px;
  margin-top:28px;
  border-color:rgba(7,104,255,.3);
  box-shadow:0 14px 38px rgba(7,104,255,.12),0 0 0 1px rgba(7,104,255,.04)
}
.home-search:focus-within {
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(7,104,255,.1),0 16px 42px rgba(7,104,255,.15)
}
.home-search>button[type="submit"] {
  min-width:104px
}
.searchbox .voice-button {
  position:relative;
  min-width:44px;
  width:44px;
  min-height:44px;
  padding:0;
  background:transparent;
  color:var(--blue);
  box-shadow:none
}
.searchbox .voice-button:hover {
  background:var(--soft);
  box-shadow:none
}
.searchbox .voice-button .ui-icon {
  color:inherit
}
.searchbox .voice-button.is-listening {
  background:var(--soft);
  box-shadow:0 0 0 4px rgba(7,104,255,.1)
}
.searchbox .voice-button.is-listening:after {
  content:"";
  position:absolute;
  right:5px;
  top:5px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#ff4d5d
}

.voice-status {
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:100;
  max-width:min(380px,calc(100vw - 32px));
  padding:11px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--surface);
  color:var(--text);
  box-shadow:0 12px 34px rgba(16,35,65,.16);
  font-size:13px;
  line-height:1.4;
  text-align:left
}
.voice-status[hidden] {
  display:none!important
}

.home-examples {
  position:relative
}
.home-flow-section {
  padding:20px 0 24px
}
.home-flow {
  display:grid;
  grid-template-columns:1fr .85fr 20px 1.15fr 20px .8fr;
  align-items:start;
  gap:20px;
  padding:28px;
  background:#f6f9fe;
  border-radius:var(--radius)
}
.home-flow-intro h2 {
  font-size:28px;
  line-height:1.08;
  margin:8px 0 14px
}
.home-flow-intro p {
  font-size:13px;
  max-width:230px;
  margin:0
}
.home-flow-step {
  min-width:0
}
.home-step-head {
  display:grid;
  gap:12px;
  margin-bottom:12px
}
.home-step-head strong {
  font-size:14px;
  line-height:1.4
}
.home-step-num {
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#e4eeff;
  color:var(--blue);
  font-size:13px;
  font-weight:700
}
.home-demo-query,.home-demo-quote {
  background:#fff;
  padding:12px;
  border-radius:12px;
  box-shadow:var(--shadow);
  font-size:13px
}
.home-demo-query {
  display:flex;
  align-items:center;
  gap:8px
}
.home-demo-query svg {
  flex:none;
  color:var(--muted)
}
.home-demo-quote {
  border:1px solid #dfebff;
  font-size:15px
}
.home-demo-quote strong {
  color:var(--blue)
}
.home-step-caption {
  font-size:12px;
  margin:12px 0 0
}
.home-flow-arrow {
  color:var(--muted);
  padding-top:66px
}
.home-demo-song {
  display:grid;
  grid-template-columns:56px 1fr;
  gap:10px;
  align-items:center;
  font-size:14px
}
.home-demo-song small {
  display:block;
  font-size:11px;
  color:var(--muted)
}
.home-demo-link {
  display:block;
  color:var(--blue);
  font-size:12px;
  margin-top:8px
}
.home-demo-cover {
  width:56px;
  height:56px;
  border-radius:10px;
  background:linear-gradient(145deg,#0b1823,#233952)
}
.home-features-section {
  padding:0 0 24px
}
.home-section-label {
  margin:0 0 12px
}
.home-features {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px
}
.home-feature {
  padding:20px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:0 3px 14px rgba(25,52,95,.025)
}
.home-feature-icon {
  color:var(--blue);
  margin-bottom:14px
}
.home-feature-icon svg {
  width:24px;
  height:24px
}
.home-feature strong {
  font-size:14px
}
.home-feature p {
  margin:6px 0 0;
  font-size:13px
}

.home-popular-section {
  padding:8px 0 34px
}
.home-section-heading {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:16px
}
.home-section-heading h2 {
  margin:0;
  font-size:30px
}
.home-section-heading p {
  margin:5px 0 0;
  font-size:13px
}
.home-section-more {
  display:inline-flex;
  align-items:center;
  min-height:44px;
  color:var(--blue);
  font-size:13px;
  font-weight:650;
  text-decoration:none;
  white-space:nowrap
}
.home-popular-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px
}
.home-popular-card {
  display:grid;
  grid-template-columns:62px minmax(0,1fr) 18px;
  gap:12px;
  align-items:center;
  min-height:88px;
  padding:10px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--surface);
  text-decoration:none;
  box-shadow:0 3px 14px rgba(25,52,95,.025)
}
.home-popular-card:hover {
  border-color:#b8d2ff;
  transform:translateY(-1px);
  box-shadow:var(--shadow)
}
.home-popular-thumb {
  width:62px;
  height:62px;
  object-fit:cover;
  border-radius:10px;
  background:var(--soft)
}
.home-popular-copy {
  min-width:0
}
.home-popular-copy strong {
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:14px
}
.home-popular-copy small {
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:11px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.home-popular-query {
  display:block;
  margin-top:5px;
  color:var(--muted);
  font-size:11px;
  line-height:1.35;
  overflow:hidden;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2
}
.home-popular-arrow {
  color:var(--blue);
  font-weight:700
}

.home-seo-section {
  padding:34px 0 26px;
  border-top:1px solid var(--line)
}
.home-practice-grid {
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  gap:48px;
  align-items:start
}
.home-practice-copy h2,
.home-benefits h2,
.home-situations h2,
.home-editorial h2 {
  margin:0;
  font-size:clamp(28px,3vw,38px)
}
.home-practice-copy p {
  margin:16px 0 0;
  max-width:650px;
  font-size:15px;
  line-height:1.7
}
.home-practice-examples {
  display:grid;
  gap:10px
}
.home-practice-label {
  margin:0 0 2px;
  color:var(--muted);
  font-size:11px;
  font-weight:750;
  letter-spacing:.12em;
  text-transform:uppercase
}
.home-practice-example {
  display:grid;
  grid-template-columns:30px minmax(0,1fr) minmax(120px,.7fr) 16px;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--surface);
  text-decoration:none
}
.home-practice-example:hover {
  border-color:#b8d2ff;
  box-shadow:var(--shadow)
}
.home-practice-icon {
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--soft);
  color:var(--blue)
}
.home-practice-icon .ui-icon {
  width:16px;
  height:16px
}
.home-practice-query {
  min-width:0
}
.home-practice-query small,
.home-practice-song small {
  display:block;
  color:var(--muted);
  font-size:10px
}
.home-practice-query strong,
.home-practice-song strong {
  display:block;
  margin-top:2px;
  font-size:13px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.home-practice-arrow {
  color:var(--blue)
}

.home-benefits {
  margin-top:34px
}
.home-benefits>p,
.home-situations>p {
  margin:7px 0 16px;
  font-size:13px
}
.home-benefit-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px
}
.home-benefit-card {
  padding:20px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--surface)
}
.home-benefit-card .ui-icon {
  width:26px;
  height:26px;
  margin-bottom:14px
}
.home-benefit-card strong {
  display:block;
  font-size:15px
}
.home-benefit-card p {
  margin:7px 0 0;
  font-size:13px;
  line-height:1.55
}

.home-situations {
  margin-top:32px
}
.home-faq-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 14px
}
.home-faq-item {
  border:1px solid var(--line);
  border-radius:10px;
  background:var(--surface);
  overflow:hidden
}
.home-faq-item summary {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:46px;
  padding:0 14px;
  cursor:pointer;
  font-size:13px;
  font-weight:550;
  list-style:none
}
.home-faq-item summary::-webkit-details-marker {
  display:none
}
.home-faq-item summary:after {
  content:"⌄";
  flex:none;
  color:var(--blue);
  font-size:16px;
  transition:transform .18s ease
}
.home-faq-item[open] summary:after {
  transform:rotate(180deg)
}
.home-faq-item p {
  margin:0;
  padding:0 14px 14px;
  font-size:13px;
  line-height:1.55
}

.home-editorial {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  margin-top:34px;
  padding-top:30px;
  border-top:1px solid var(--line)
}
.home-editorial p {
  margin:12px 0 0;
  font-size:14px;
  line-height:1.7
}

.home-banner-section {
  padding-bottom:24px
}
.home-banner {
  position:relative;
  padding:28px 36px;
  background:#091821;
  color:#fff;
  border-radius:var(--radius)
}
.home-banner h2 {
  font-size:clamp(32px,3.8vw,48px);
  max-width:720px;
  margin:0;
  line-height:1.06;
  font-weight:550
}
.home-banner h2 span {
  display:block;
  color:#2581ff;
  font-weight:800
}
.home-banner p {
  color:#b5c3d2;
  margin:8px 0 0;
  font-size:20px
}
.home-banner-note {
  position:absolute;
  right:5%;
  top:40px;
  font:italic 24px/1.5 Georgia,serif;
  color:#b5c3d2;
  white-space:pre-line;
  transform:rotate(-6deg)
}

.home-search-results {
  width:min(1080px,100%);
  margin:28px auto 0;
  text-align:left
}
.search-stage {
  scroll-margin-top:100px
}
.search-active .home-flow-section,.search-active .home-features-section,.search-active .home-popular-section,.search-active .home-seo-section,.search-active .home-banner-section,.search-active .home-note,.search-active .home-hero h1,.search-active .home-subtitle {
  display:none
}
.search-active .home-hero {
  padding-top:24px;
  padding-bottom:48px;
  background:#fff
}
.search-active .home-search {
  margin-top:0
}
.search-active .home-examples {
  display:none
}
.search-active .phrase-head,.search-active .phrase-results,.search-active .phrase-retry,.search-active .song-top,.search-active .song-content-section,.search-active .song-retry {
  display:none
}
.live-results-head {
  margin:0 0 24px
}
.live-results-head h2 {
  font-size:clamp(34px,4vw,48px);
  margin:8px 0 12px
}
.live-results-head h2 b {
  color:var(--blue)
}
.live-results-head p {
  margin:0;
  font-size:16px;
  max-width:660px
}
.live-featured,.phrase-result-card {
  display:grid;
  grid-template-columns:132px minmax(0,1fr);
  gap:26px;
  padding:26px 0 24px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  text-decoration:none;
  align-items:start
}
.live-featured-cover,.phrase-cover,.song-cover-v2 {
  position:relative;
  aspect-ratio:1;
  border-radius:16px;
  background:radial-gradient(circle at 75% 15%,#22487a,transparent 60%),linear-gradient(145deg,#0b1823,#173553);
  overflow:hidden
}
.live-featured-cover,.phrase-cover {
  width:132px;
  height:132px;
  grid-row:1/3
}
.live-featured-cover:before,.phrase-cover:before,.song-cover-v2:before {
  content:none
}
.live-featured-cover:after,.phrase-cover:after,.song-cover-v2:after {
  content:"";
  position:absolute;
  inset:13%;
  background:url('/assets/brand/icon-cover.png') center / contain no-repeat
}
.live-featured-main {
  min-width:0;
  display:block
}
.live-featured-main h3,.phrase-result-main h2 {
  margin:6px 0;
  font-size:26px;
  line-height:1.12
}
.live-featured-artist,.phrase-artist {
  display:block;
  color:var(--muted);
  font-size:16px
}
.live-featured-phrase,.phrase-excerpt {
  display:block;
  font-size:clamp(30px,3.7vw,48px);
  line-height:1.16;
  margin-top:16px;
  padding:0;
  color:var(--text);
  font-weight:680;
  letter-spacing:-.045em;
  overflow-wrap:anywhere
}
.live-match-chips,.phrase-match-row {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-top:16px
}
.phrase-match-row>span:first-child {
  font-size:12px;
  color:var(--muted)
}
.live-featured-action {
  grid-column:2;
  justify-self:start;
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0;
  border-radius:0;
  background:transparent;
  color:var(--blue);
  font-size:14px;
  font-weight:650
}
.live-featured:hover,.phrase-result-card.primary {
  border-color:#aac8ff
}
.live-other-title {
  font-size:22px;
  font-weight:750;
  margin:32px 0 16px;
  letter-spacing:-.025em
}
.live-results-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:0 28px;
  border-top:1px solid var(--line)
}
.live-result {
  display:grid;
  grid-template-columns:32px minmax(0,1fr) 16px;
  gap:14px;
  align-items:start;
  padding:14px 2px;
  border:0;
  border-bottom:1px solid var(--line);
  text-decoration:none;
  background:#fff
}
.live-result:hover {
  background:#fbfdff
}
.live-result-rank {
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  background:var(--soft);
  border-radius:9px;
  font-size:12px;
  color:var(--blue);
  font-weight:700
}
.live-result-copy {
  min-width:0
}
.live-result-copy strong {
  display:block;
  font-size:19px;
  line-height:1.25;
  overflow-wrap:anywhere
}
.live-result-copy span {
  display:block;
  font-size:13px;
  color:var(--muted);
  margin-top:3px
}
.live-result-copy .live-result-fragment {
  font-size:14px;
  line-height:1.38;
  margin-top:6px;
  color:#33415b;
  overflow-wrap:anywhere
}
.live-result-arrow {
  color:var(--blue)
}
.empty {
  padding:40px;
  background:var(--soft);
  border-radius:var(--radius);
  color:var(--muted)
}
.empty h2 {
  color:var(--text);
  font-size:36px;
  margin:12px 0
}
.empty p {
  max-width:680px;
  margin:0;
  font-size:16px
}
.empty ul {
  padding-left:20px;
  line-height:1.9;
  margin-bottom:0
}
.notice {
  background:#fff7ed;
  color:#8f4710;
  padding:16px;
  border-radius:12px;
  margin-top:16px
}
.versions {
  padding-left:20px;
  color:var(--muted);
  font-size:14px
}

.phrase-page,.song-page {
  padding-bottom:32px
}
.phrase-search,.song-search {
  margin-top:16px
}
.phrase-head {
  padding:30px 0 16px
}
.phrase-head h1 {
  font-size:clamp(36px,4.4vw,58px);
  margin:12px 0;
  overflow-wrap:anywhere
}
.phrase-head .phrase-query {
  color:var(--blue)
}
.phrase-head .answer {
  max-width:760px;
  font-size:16px;
  margin:0
}
.phrase-head .pill {
  border:0;
  background:transparent;
  padding:0;
  min-height:0;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.12em;
  font-weight:700;
  color:var(--muted)
}
.phrase-result-list {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:0 28px
}
.phrase-result-card.primary {
  grid-column:1/-1
}
.phrase-result-main {
  min-width:0
}
.phrase-result-actions {
  grid-column:2;
  justify-self:start
}
.phrase-result-card:not(.primary) {
  grid-template-columns:64px minmax(0,1fr);
  gap:16px;
  padding:14px 0;
  border:0;
  border-bottom:1px solid var(--line);
  border-radius:0;
  box-shadow:none
}
.phrase-result-card:not(.primary) .phrase-cover {
  width:64px;
  height:64px;
  border-radius:10px
}
.phrase-result-card:not(.primary) .phrase-cover:after {
  opacity:.75
}
.phrase-result-card:not(.primary) h2 {
  font-size:20px
}
.phrase-result-card:not(.primary) .phrase-excerpt {
  font-size:16px;
  line-height:1.35;
  margin-top:8px;
  font-weight:500;
  letter-spacing:-.015em
}
.phrase-related {
  margin-top:20px
}
.phrase-related summary {
  min-height:44px;
  cursor:pointer;
  color:var(--muted);
  font-size:13px
}
.phrase-links {
  display:flex;
  gap:8px;
  flex-wrap:wrap
}
.phrase-links a {
  min-height:44px;
  display:inline-flex;
  align-items:center;
  border:1px solid var(--line);
  border-radius:999px;
  text-decoration:none;
  padding:8px 12px;
  font-size:12px;
  color:var(--muted)
}
.phrase-retry,.song-retry {
  margin-top:32px
}
.closing {
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  padding:24px 28px;
  background:#f6f9fe;
  border-radius:var(--radius)
}
.closing h2 {
  font-size:24px;
  margin:0 0 8px
}
.closing p {
  font-size:14px;
  margin:0
}
.closing>a {
  display:inline-flex;
  align-items:center;
  min-height:48px;
  color:var(--blue);
  font-weight:650;
  text-decoration:none
}

.song-top {
  padding-top:24px
}
.song-hero-v2 {
  display:grid;
  grid-template-columns:minmax(0,1.2fr) 220px minmax(0,.8fr);
  gap:32px;
  align-items:center;
  padding-top:32px
}
.song-title-block h1 {
  font-size:clamp(38px,4.8vw,62px);
  margin:12px 0 8px;
  overflow-wrap:anywhere
}
.song-title-main {
  display:block
}
.song-title-artist {
  display:block;
  font-size:20px;
  line-height:1.3;
  font-weight:500;
  margin-top:8px
}
.song-title-block .primary-btn {
  margin-top:24px
}
.song-cover-v2 {
  width:220px;
  height:220px;
  box-shadow:var(--shadow)
}
.song-cover-v2:before {
  font-size:132px
}
.handnote {
  font:italic 20px/1.5 Georgia,serif;
  color:#8294b3
}
.song-found-note p {
  font-size:14px;
  margin-top:18px
}
.song-match-editorial {
  display:block;
  max-width:920px;
  padding:28px 0 32px;
  margin-top:0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  scroll-margin-top:100px
}
.query-context {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:baseline;
  font-size:14px;
  color:var(--muted);
  margin-bottom:18px
}
.query-context strong {
  color:var(--blue);
  font-size:clamp(22px,2.5vw,30px);
  font-weight:700;
  letter-spacing:-.025em
}
.song-match-editorial h2 {
  font-size:11px;
  margin:0 0 12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em
}
.song-match-editorial blockquote {
  margin:0;
  font-size:clamp(34px,4.5vw,58px);
  line-height:1.12;
  font-weight:700;
  letter-spacing:-.05em;
  overflow-wrap:anywhere
}
.song-match-editorial .song-content-note {
  margin:16px 0 0;
  font-size:13px
}
.song-meta h2 {
  font-size:15px
}
.song-meta dl {
  margin:0;
  display:grid;
  gap:8px;
  font-size:14px
}
.song-meta dt {
  color:var(--muted);
  margin-top:10px
}
.song-meta dd {
  margin:0;
  font-weight:600
}
.song-content-section {
  padding-top:24px
}
.song-content-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:48px
}
.song-content-panel h2 {
  font-size:24px;
  margin:0 0 16px
}
.song-content-panel p {
  font-size:15px;
  margin:0 0 12px
}
.match-chips {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px
}
.song-related-v2 {
  display:grid
}
.song-related-v2 a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:48px;
  padding:12px 0;
  border-bottom:1px solid var(--line);
  text-decoration:none;
  font-size:14px;
  color:var(--muted)
}
.song-related-v2 a span:first-child {
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0
}
.song-related-v2 a:hover {
  color:var(--blue)
}
.song-versions {
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid var(--line)
}
.song-versions h2 {
  font-size:22px
}
.footer {
  padding:28px 0 32px;
  border-top:1px solid var(--line);
  background:#fff
}
.footer-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px
}
.footer .brand-logo {
  width:132px
}
.footer-copy {
  font-size:12px;
  margin:12px 0 0
}
.footer-links {
  display:flex;
  gap:24px;
  align-items:center;
  flex-wrap:wrap
}
.footer-links>span {
  font-size:12px;
  color:var(--muted)
}

@media(min-width:1600px) {
  .home-hero h1 {
  font-size:76px
}

}


html[data-theme="dark"] {
  --bg:#08111c;
  --surface:#0d1927;
  --text:#f5f7fb;
  --muted:#aab6c8;
  --line:#26364a;
  --blue:#3f8cff;
  --soft:#10294a;
  --shadow:0 10px 30px rgba(0,0,0,.2)
}
html[data-theme="dark"] body {
  background:var(--bg)
}
html[data-theme="dark"] .top {
  background:rgba(8,17,28,.96)
}
html[data-theme="dark"] .navlinks a,
html[data-theme="dark"] .footer-links a {
  color:#c0cad8
}
html[data-theme="dark"] .brand-logo-light {
  display:none!important
}
html[data-theme="dark"] .brand-logo-dark {
  display:block!important
}
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .chip,
html[data-theme="dark"] .pill,
html[data-theme="dark"] .home-feature,
html[data-theme="dark"] .home-popular-card,
html[data-theme="dark"] .home-practice-example,
html[data-theme="dark"] .home-benefit-card,
html[data-theme="dark"] .home-faq-item,
html[data-theme="dark"] .home-demo-query,
html[data-theme="dark"] .home-demo-quote,
html[data-theme="dark"] .live-result {
  background:var(--surface)
}
html[data-theme="dark"] .menu-toggle span,
html[data-theme="dark"] .menu-toggle:before,
html[data-theme="dark"] .menu-toggle:after {
  background:var(--text)
}
html[data-theme="dark"] .theme-icon-sun {
  display:none
}
html[data-theme="dark"] .theme-icon-moon {
  display:grid
}
html[data-theme="dark"] .home-hero {
  background:radial-gradient(ellipse at center,#10233b,transparent 72%)
}
html[data-theme="dark"] .home-note {
  color:#8ea3c0
}
html[data-theme="dark"] .home-note:hover {
  background:rgba(63,140,255,.09)
}
html[data-theme="dark"] .home-note:hover {
  color:#6da6ff
}
html[data-theme="dark"] .home-flow,
html[data-theme="dark"] .closing {
  background:#0c1826
}
html[data-theme="dark"] .home-flow-step:before {
  background:#2b405a
}
html[data-theme="dark"] .searchbox input::placeholder {
  color:#8191a8
}

html[data-theme="dark"] .home-step-num {
  background:#15345d
}
html[data-theme="dark"] .home-demo-quote {
  border-color:#27466b
}
html[data-theme="dark"] .home-feature {
  box-shadow:0 3px 14px rgba(0,0,0,.12)
}
html[data-theme="dark"] .home-banner {
  background:#050b12;
  border:1px solid #1a2b3e
}
html[data-theme="dark"] .search-active .home-hero,
html[data-theme="dark"] .footer {
  background:var(--bg)
}
html[data-theme="dark"] .live-result:hover {
  background:#102033
}
html[data-theme="dark"] .live-result-copy .live-result-fragment {
  color:#c6d0de
}
html[data-theme="dark"] mark {
  color:#7db1ff;
  background:#16345c
}
html[data-theme="dark"] .notice {
  background:#352414;
  color:#ffd2a8
}
html[data-theme="dark"] .handnote {
  color:#8fa2bf
}
html[data-theme="dark"] .home-search {
  border-color:rgba(63,140,255,.48);
  box-shadow:0 14px 42px rgba(0,0,0,.24),0 0 0 1px rgba(63,140,255,.08)
}
html[data-theme="dark"] .home-search:focus-within {
  box-shadow:0 0 0 4px rgba(63,140,255,.13),0 16px 46px rgba(0,0,0,.3)
}
html[data-theme="dark"] .home-popular-card:hover,
html[data-theme="dark"] .home-practice-example:hover {
  border-color:#365d91;
  box-shadow:0 10px 28px rgba(0,0,0,.18)
}
html[data-theme="dark"] .home-popular-thumb {
  background:#102033
}

@media(max-width:1100px) {
  .home-note {
  display:none
}
.home-flow {
  grid-template-columns:1fr 1fr 20px 1.1fr 20px 1fr;
  gap:14px;
  padding:24px
}
.home-flow-intro h2 {
  font-size:26px
}
.home-banner-note {
  display:none
}
.song-hero-v2 {
  grid-template-columns:1fr 200px;
  gap:28px
}
.song-cover-v2 {
  width:200px;
  height:200px
}
.song-found-note {
  grid-column:1/-1;
  display:flex;
  align-items:baseline;
  gap:24px
}
.song-found-note .handnote {
  font-size:17px
}
.song-found-note p {
  margin:0
}
.home-feature {
  padding:16px
}
.home-feature strong {
  font-size:13px
}

}

@media(max-width:900px) {
  .home-popular-grid {
  grid-template-columns:repeat(2,minmax(0,1fr))
}
.home-practice-grid {
  grid-template-columns:1fr;
  gap:28px
}
.home-benefit-grid {
  grid-template-columns:1fr
}
  .nav {
  grid-template-columns:1fr auto;
  height:72px
}
.navlinks {
  display:none
}
.nav-actions {
  gap:8px
}
.menu-toggle {
  display:flex
}
.home-flow {
  grid-template-columns:1fr;
  gap:0;
  padding:22px
}
.home-flow-intro {
  margin-bottom:24px
}
.home-flow-intro p {
  max-width:none
}
.home-flow-step {
  position:relative;
  padding-left:44px;
  padding-bottom:16px
}
.home-flow-step:last-child {
  padding-bottom:0
}
.home-step-head {
  display:flex;
  gap:14px;
  margin-left:-44px
}
.home-flow-step:before {
  content:"";
  position:absolute;
  left:15px;
  top:35px;
  bottom:0;
  width:1px;
  background:#d3def0
}
.home-flow-step:last-child:before {
  display:none
}
.home-flow-arrow {
  display:none
}
.home-features {
  gap:10px
}
.home-feature p {
  font-size:12px
}
.live-featured,.phrase-result-card {
  grid-template-columns:140px minmax(0,1fr);
  gap:24px
}
.live-featured-cover,.phrase-cover {
  width:140px;
  height:140px
}
.song-match-editorial {
  grid-template-columns:minmax(0,1fr) 180px;
  gap:32px
}

}

@media(max-width:700px) {
  .home-popular-section {
  padding-bottom:26px
}
.home-section-heading {
  display:block;
  margin-bottom:12px
}
.home-section-heading h2 {
  font-size:26px
}
.home-section-more {
  margin-top:5px;
  min-height:36px
}
.home-popular-grid {
  grid-template-columns:none;
  grid-template-rows:repeat(2,auto);
  grid-auto-flow:column;
  grid-auto-columns:minmax(260px,82vw);
  gap:8px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:0 2px 8px;
  margin-inline:-2px;
  scroll-snap-type:x mandatory;
  scroll-padding-inline:2px;
  overscroll-behavior-inline:contain;
  scrollbar-width:none
}
.home-popular-grid::-webkit-scrollbar {
  display:none
}
.home-popular-card {
  grid-template-columns:52px minmax(0,1fr) 18px;
  min-height:72px;
  scroll-snap-align:start
}
.home-popular-thumb {
  width:52px;
  height:52px
}
.home-seo-section {
  padding-top:26px
}
.home-practice-grid {
  gap:24px
}
.home-practice-examples {
  margin-top:6px
}
.home-practice-copy h2,
.home-benefits h2,
.home-situations h2,
.home-editorial h2 {
  font-size:28px
}
.home-practice-copy p {
  font-size:14px;
  line-height:1.6
}
.home-practice-example {
  grid-template-columns:30px minmax(0,1fr) 16px
}
.home-practice-song {
  grid-column:2;
  margin-top:-5px
}
.home-benefits {
  margin-top:28px
}
.home-benefit-card {
  padding:16px
}
.home-faq-grid {
  grid-template-columns:1fr
}
.home-editorial {
  grid-template-columns:1fr;
  gap:22px;
  margin-top:28px;
  padding-top:26px
}
  .wrap {
  width:calc(100% - 32px)
}
.nav {
  height:68px
}
.brand-logo {
  width:126px
}

.footer .brand-logo {
  width:122px
}
.home-hero {
  padding:40px 0 24px;
  text-align:left
}
.home-hero h1 {
  font-size:clamp(36px,10.2vw,54px);
  line-height:1.02
}
.home-subtitle {
  font-size:15px;
  margin-top:18px
}
.home-subtitle br {
  display:none
}
.searchbox {
  min-height:58px;
  padding:5px;
  gap:4px;
  border-radius:16px
}
.searchbox>.ui-icon {
  width:18px;
  height:18px;
  margin-left:9px
}
.searchbox input {
  font-size:16px;
  padding:10px 4px
}
.searchbox button {
  min-height:46px;
  padding:0 16px;
  font-size:13px;
  border-radius:11px
}
.searchbox .search-clear,
.searchbox .voice-button {
  min-width:44px;
  width:44px
}
.home-search {
  min-height:60px
}
.voice-status {
  right:16px;
  bottom:16px;
  font-size:12px
}
.examples {
  justify-content:flex-start;
  gap:7px
}
.chip {
  font-size:12px;
  padding:8px 10px
}
.home-flow-section {
  padding-top:12px
}
.home-flow {
  background:transparent;
  padding:10px 0
}
.home-flow-intro {
  margin-bottom:12px
}
.home-flow-intro h2,.home-flow-intro p {
  display:none
}
.home-step-head strong {
  font-size:14px
}
.home-demo-query,.home-demo-quote {
  padding:10px 12px;
  border:1px solid var(--line)
}
.home-step-head {
  margin-bottom:8px
}
.home-step-caption {
  margin-top:7px;
  font-size:11px;
  line-height:1.35
}
.home-demo-song {
  grid-template-columns:48px 1fr
}
.home-demo-cover {
  width:48px;
  height:48px
}
.home-features {
  grid-template-columns:1fr;
  gap:8px
}
.home-feature {
  display:grid;
  grid-template-columns:24px 1fr;
  column-gap:14px;
  padding:14px 16px
}
.home-feature-icon {
  grid-row:1/3;
  margin:0;
  align-self:center
}
.home-feature strong {
  font-size:14px
}
.home-feature p {
  margin:2px 0 0;
  font-size:12px
}
.home-banner {
  padding:24px
}
.home-banner h2 {
  font-size:30px
}
.home-banner p {
  font-size:15px;
  max-width:260px
}
.home-search-results {
  margin-top:24px
}
.search-active .home-hero {
  padding-top:20px
}
.live-results-head h2 {
  font-size:34px;
  line-height:1.05
}
.live-results-head p {
  font-size:14px
}
.live-featured,.phrase-result-card {
  grid-template-columns:64px minmax(0,1fr);
  gap:16px;
  padding:18px 0
}
.live-featured-cover,.phrase-cover {
  width:64px;
  height:64px;
  grid-row:auto;
  border-radius:12px
}
.live-featured-cover:before,.phrase-cover:before {
  font-size:50px
}
.live-featured-cover:after,.phrase-cover:after {
  display:block
}
.live-featured-main,.phrase-result-main {
  display:contents
}
.live-featured-main .eyebrow,.phrase-result-main .eyebrow {
  grid-column:2;
  grid-row:1;
  align-self:start;
  font-size:10px
}
.live-featured-main h3,.phrase-result-main h2 {
  grid-column:2;
  grid-row:1;
  margin:22px 0 0;
  align-self:center;
  font-size:22px
}
.live-featured-artist,.phrase-artist {
  grid-column:2;
  grid-row:2;
  font-size:14px;
  margin-top:-10px
}
.live-featured-phrase,.phrase-excerpt {
  grid-column:1/-1;
  margin-top:8px;
  font-size:30px;
  line-height:1.12
}
.live-match-chips,.phrase-match-row {
  grid-column:1/-1;
  margin-top:0
}
.live-featured-action,.phrase-result-actions {
  grid-column:1/-1;
  justify-self:stretch
}
.phrase-result-actions .primary-btn {
  width:100%
}
.live-results-grid,.phrase-result-list {
  grid-template-columns:1fr;
  gap:12px
}
.live-result {
  padding:12px 2px;
  gap:12px
}
.live-result-copy strong {
  font-size:18px
}
.live-result-copy span {
  font-size:13px
}
.live-result-copy .live-result-fragment {
  font-size:15px
}
.live-other-title {
  font-size:22px;
  margin-top:28px
}
.phrase-head {
  padding:28px 0 24px
}
.phrase-head h1 {
  font-size:36px
}
.phrase-head .answer {
  font-size:15px
}
.phrase-result-card:not(.primary) h2 {
  font-size:22px
}
.phrase-related {
  grid-column:1/-1;
  margin-top:0
}
.phrase-related .phrase-links {
  margin-top:8px
}
.empty {
  padding:28px 24px
}
.empty h2 {
  font-size:32px
}
.empty p,.empty ul {
  font-size:14px
}
.song-top {
  padding-top:24px
}
.song-hero-v2 {
  grid-template-columns:minmax(0,1fr) 104px;
  gap:16px;
  align-items:start
}
.song-title-block h1 {
  font-size:34px;
  line-height:1.05;
  margin-top:8px
}
.song-title-artist {
  font-size:17px
}
.song-cover-v2 {
  width:104px;
  height:104px;
  margin-top:24px;
  border-radius:14px
}
.song-cover-v2:before {
  font-size:66px
}
.song-cover-v2:after {
  font-size:9px
}
.song-title-block .primary-btn {
  margin-top:16px;
  font-size:12px;
  padding:0 14px;
  min-height:44px
}
.song-found-note {
  display:block
}
.song-found-note .handnote {
  font-size:17px;
  transform:none
}
.song-found-note p {
  display:none
}
.song-match-editorial {
  grid-template-columns:1fr;
  gap:0;
  padding:20px 0 24px;
  margin-top:0
}
.query-context {
  margin-bottom:20px
}
.song-match-editorial blockquote {
  font-size:36px;
  line-height:1.1
}
.song-match-editorial h2 {
  font-size:16px
}
.song-meta {
  padding-top:20px;
  border-top:1px solid var(--line)
}
.song-meta dl {
  grid-template-columns:90px 1fr;
  gap:8px 16px
}
.song-meta dt {
  margin:0
}
.song-content-section {
  padding-top:24px
}
.song-content-grid {
  grid-template-columns:1fr;
  gap:28px
}
.song-content-panel h2 {
  font-size:22px
}
.song-content-panel p {
  font-size:14px
}
.closing {
  grid-template-columns:1fr;
  gap:12px;
  padding:24px
}
.closing h2 {
  font-size:22px
}
.closing>a {
  justify-self:start
}
.footer-inner {
  display:block
}
.footer-links {
  margin-top:20px;
  gap:8px 20px
}
.footer-links a {
  font-size:12px
}
.footer-copy {
  font-size:12px
}
.song-page,.phrase-page {
  padding-bottom:24px
}

}

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

}
