:root {
  --red: #d72638;
  --red-dark: #990f1b;
  --blue: #a2d5f2;
  --cream: #faf3e0;
  --ink: #1c1c1c;
  --white: #fffdf8;
  --muted: #6f6a61;
  --line: rgba(28, 28, 28, .22);
  --display: "Bodoni MT", Didot, Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --page: min(1420px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); font-size: 16px; line-height: 1.5; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.skip-link { position: fixed; z-index: 200; left: 16px; top: -80px; background: var(--ink); color: white; padding: 12px 18px; }
.skip-link:focus { top: 16px; }
.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; }
.section { width: var(--page); margin: 0 auto; padding: 110px 0; position: relative; }
.kicker, .mini-label, .issue-label { font-size: .74rem; line-height: 1.3; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.reveal { opacity: 1; transform: none; }
.js.motion-full .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible, .js.motion-full .reveal.visible { opacity: 1; transform: none; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; min-height: 72px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 max(24px, calc((100vw - 1420px)/2)); background: rgba(250,243,224,.92); background: color-mix(in srgb, var(--cream) 90%, transparent); border-bottom: 1px solid transparent; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); transition: border .2s ease; }
.site-header.scrolled { border-color: var(--line); }
.brand { justify-self: start; display: inline-flex; align-items: baseline; gap: 8px; font-size: .68rem; font-weight: 700; letter-spacing: .14em; }
.brand-word { font-family: var(--display); font-size: 1.7rem; letter-spacing: -.08em; }
.desktop-nav { display: flex; gap: 30px; font-size: .79rem; font-weight: 700; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; height: 1px; background: currentColor; left: 0; right: 100%; bottom: -5px; transition: right .2s; }
.desktop-nav a:hover::after { right: 0; }
.desktop-nav .mobile-contact-link { display: none; }
.header-cta { justify-self: end; display: inline-flex; gap: 22px; font-size: .8rem; font-weight: 700; border-bottom: 1px solid; padding-bottom: 5px; }
.menu-button { display: none; background: transparent; border: 0; text-transform: uppercase; font-size: .75rem; letter-spacing: .12em; }

.hero { min-height: 100vh; min-height: 100svh; padding: 122px max(24px, calc((100vw - 1420px)/2)) 76px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); align-items: center; gap: 6vw; background: var(--blue); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 38vw; aspect-ratio: 1; border: 1px solid rgba(28,28,28,.18); border-radius: 50%; left: -16vw; top: 12%; box-shadow: 0 0 0 6vw rgba(255,255,255,.08), 0 0 0 12vw rgba(255,255,255,.06); }
.hero-copy { position: relative; z-index: 2; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.issue-label { align-self: flex-start; border: 1px solid; border-radius: 99px; padding: 8px 12px; margin-bottom: clamp(34px, 6vh, 80px); }
.hero h1 { font-family: var(--display); font-size: clamp(4.1rem, 8.3vw, 9.2rem); line-height: .82; letter-spacing: -.065em; font-weight: 400; margin: 0 -13vw 46px 0; position: relative; z-index: 3; }
.hero h1 span { display: block; }
.hero h1 span:last-child { color: var(--red); margin-left: 0; }
.typing-card { max-width: 520px; min-height: 106px; display: grid; grid-template-columns: 46px 1fr; gap: 13px; padding: 17px; background: var(--white); border: 1px solid var(--ink); border-radius: 25px 25px 25px 5px; box-shadow: 8px 8px 0 var(--ink); font-size: 1rem; }
.typing-avatar { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: white; font-weight: 700; }
.typing-name { display: block; color: var(--muted); font-size: .72rem; margin-bottom: 7px; }
.typing-card p { display: inline; margin: 0; }
.typing-cursor { display: inline-block; width: 6px; height: 1.05em; vertical-align: -.15em; margin-left: 3px; background: var(--red); animation: blink .75s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.round-link { position: absolute; right: -3vw; bottom: 0; width: 112px; aspect-ratio: 1; border-radius: 50%; border: 1px solid; display: grid; place-content: center; text-align: center; gap: 3px; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; transition: transform .3s, background .3s; }
.round-link strong { font-size: 1.2rem; }
.round-link:hover { transform: rotate(8deg); background: var(--cream); }
.hero-image-wrap { margin: 0; align-self: stretch; min-height: 620px; position: relative; border-left: 1px solid var(--ink); border-right: 1px solid var(--ink); overflow: hidden; }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(28,28,28,.52)); pointer-events: none; }
.hero-image-wrap picture { display: block; width: 100%; height: 100%; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; filter: contrast(1.06); }
.hero-image-wrap figcaption { position: absolute; z-index: 2; bottom: 22px; left: 24px; right: 120px; color: white; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.photo-sticker { position: absolute; z-index: 3; right: 22px; top: 22px; width: 116px; aspect-ratio: 1; border-radius: 50%; display: grid; place-content: center; text-align: center; background: var(--red); color: white; font-family: var(--display); font-size: 2.15rem; transform: rotate(8deg); box-shadow: 0 0 0 6px rgba(255,255,255,.28); }
.photo-sticker small { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.ticker { position: absolute; z-index: 4; left: 0; right: 0; bottom: 0; height: 42px; display: flex; align-items: center; overflow: hidden; background: var(--red); color: white; border-block: 1px solid var(--ink); font-size: .72rem; letter-spacing: .17em; white-space: nowrap; }
.ticker span { min-width: max-content; padding-right: 36px; -webkit-animation: ticker 19s linear infinite; animation: ticker 19s linear infinite; will-change: transform; }
@-webkit-keyframes ticker { to { -webkit-transform: translate3d(-100%,0,0); transform: translate3d(-100%,0,0); } }
@keyframes ticker { to { -webkit-transform: translate3d(-100%,0,0); transform: translate3d(-100%,0,0); } }

.section-number { position: absolute; top: 40px; left: 0; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid; border-radius: 50%; font-size: .72rem; }
.about { display: grid; grid-template-columns: minmax(340px, .8fr) minmax(500px, 1.2fr); gap: 8vw; padding-top: 135px; }
.portrait-card { width: min(100%, 510px); aspect-ratio: 4/5; margin: 0; position: relative; background: var(--ink); padding: 12px; transform: rotate(-2deg); box-shadow: 12px 12px 0 var(--blue); }
.portrait-card img { width: 100%; height: 100%; object-fit: cover; object-position: 45% center; filter: grayscale(1) contrast(1.06); }
.tape { position: absolute; width: 95px; height: 28px; background: rgba(250,243,224,.78); border: 1px solid rgba(28,28,28,.18); }
.tape-one { top: -12px; left: 30%; transform: rotate(3deg); }.tape-two { bottom: -10px; right: 14%; transform: rotate(-5deg); }
.bio-list { list-style: none; padding: 35px 0 0; margin: 0; font-size: clamp(1rem, 1.4vw, 1.25rem); }
.bio-list li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.bio-list li::before { content: "✦"; color: var(--red); margin-right: 12px; }
.about-right { align-self: center; }
.about-right h2, .catalog-manifest h2, .singability h2, .services h2, .studio h2, .faq h2, .contacts h2 { font-family: var(--display); font-weight: 400; letter-spacing: -.05em; }
.about-right h2 { font-size: clamp(4rem, 7.4vw, 8.5rem); line-height: .9; margin: 0 0 36px; }
.about-right h2 em { color: var(--red); font-style: normal; }
.collab-intro { max-width: 560px; font-size: 1.2rem; }
.collab-list { list-style: none; padding: 0; margin: 40px 0 0; border-top: 1px solid; }
.collab-list li { display: grid; grid-template-columns: 42px 1fr; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: clamp(1.05rem, 1.6vw, 1.45rem); }
.collab-list span { color: var(--red); font-size: .7rem; padding-top: .45em; }
.social-strip { grid-column: 1 / -1; margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid; background: var(--white); scroll-margin-top: 108px; }
.social-strip a, .social-strip .social-static { min-height: 72px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; font-weight: 700; border-right: 1px solid; transition: background .2s, color .2s; }
.social-strip > :last-child { border-right: 0; }
.social-strip a:hover { background: var(--red); color: white; }
.social-strip .social-static { cursor: default; }

.catalog { width: 100%; padding: 0; background: var(--red); color: white; }
.catalog-manifest { min-height: 76vh; width: var(--page); margin: auto; display: grid; place-content: center; text-align: center; padding: 100px 5vw; }
.catalog-manifest h2 { max-width: 1100px; font-size: clamp(4rem, 8vw, 9rem); line-height: .93; margin: 28px auto; }
.catalog-manifest h2 span { color: var(--blue); font-style: italic; }
.catalog-manifest p { max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.mini-label { display: inline-block; justify-self: center; border: 1px solid rgba(255,255,255,.75); border-radius: 99px; padding: 7px 12px; }
.catalog-browser { background: var(--cream); color: var(--ink); border-top: 1px solid var(--ink); padding: 90px max(24px, calc((100vw - 1420px)/2)) 120px; }
.catalog-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 55px; align-items: end; }
.catalog-heading h3 { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 4.7rem); font-weight: 400; line-height: 1; letter-spacing: -.04em; max-width: 720px; margin: 0; }
.catalog-controls { justify-self: end; display: grid; gap: 12px; }
.segmented, .voice-tabs { display: flex; border: 1px solid; border-radius: 99px; overflow: hidden; }
.segmented button, .voice-tabs button { min-height: 42px; padding: 0 18px; background: transparent; border: 0; border-right: 1px solid; font-size: .77rem; font-weight: 700; }
.segmented button:last-child, .voice-tabs button:last-child { border-right: 0; }
.segmented button.active { background: var(--red); color: white; }.voice-tabs button.active { background: var(--blue); }
.featured-song { min-height: 330px; display: grid; grid-template-columns: minmax(250px, .7fr) 1.3fr; border: 1px solid; background: var(--white); box-shadow: 10px 10px 0 var(--ink); margin-bottom: 58px; }
.featured-art { position: relative; min-height: 330px; display: grid; place-items: center; background: var(--art-a); overflow: hidden; border-right: 1px solid; }
.featured-art::before { content: ""; width: 60%; aspect-ratio: 1; border: 1px solid; border-radius: 50%; box-shadow: 0 0 0 28px color-mix(in srgb, var(--art-b) 25%, transparent), 0 0 0 56px color-mix(in srgb, var(--art-b) 14%, transparent); }
.featured-art strong { position: absolute; font-family: var(--display); color: var(--art-b); font-size: 8rem; font-weight: 400; }
.featured-copy { padding: clamp(28px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.featured-copy h4 { font-family: var(--display); font-size: clamp(3rem, 6vw, 6.8rem); line-height: .9; letter-spacing: -.05em; font-weight: 400; margin: 0 0 16px; }
.featured-meta { text-transform: uppercase; font-size: .72rem; letter-spacing: .12em; }
.featured-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.play-demo, .select-song { min-height: 48px; border: 1px solid; border-radius: 99px; padding: 0 22px; background: transparent; font-weight: 700; }
.select-song { background: var(--ink); color: white; }
.play-demo.playing { background: var(--blue); }
.song-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.song-card { min-height: 220px; padding: 22px; border: 1px solid; background: var(--white); text-align: left; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.song-card:hover, .song-card.active { transform: translateY(-5px); box-shadow: 6px 6px 0 var(--ink); }
.song-card-top { display: flex; justify-content: space-between; align-items: center; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.song-card .disc { width: 36px; aspect-ratio: 1; border-radius: 50%; background: repeating-radial-gradient(circle, var(--ink) 0 2px, transparent 3px 5px), var(--card-color); }
.song-card h4 { font-family: var(--display); font-size: clamp(1.7rem, 2.6vw, 2.55rem); font-weight: 400; line-height: 1; margin: auto 0 12px; }
.song-card p { margin: 0; color: var(--muted); font-size: .79rem; }

.singability { width: 100%; margin: 0; padding: 110px max(24px, calc((100vw - 1420px)/2)); display: grid; grid-template-columns: 1.1fr .9fr; gap: 7vw; background: var(--blue); }
.singability-copy h2 { max-width: 790px; font-size: clamp(4rem, 7.5vw, 8rem); line-height: .9; margin: 18px 0 30px; }
.singability-copy h2 span { color: var(--red); font-style: italic; }
.singability-copy > p:not(.kicker) { font-size: 1.35rem; max-width: 650px; }
.pill-button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 36px; border: 1px solid; border-radius: 99px; padding: 0 24px; font-weight: 700; }
.pill-button.light { background: var(--cream); }.pill-button.dark { background: var(--ink); color: white; }
.vocal-meter { min-height: 460px; align-self: center; position: relative; border: 1px solid; border-radius: 50% 50% 0 0; overflow: hidden; background: var(--cream); display: grid; place-items: center; }
.vocal-meter::before { content: ""; position: absolute; inset: 12%; border: 1px dashed var(--red); border-radius: 50%; }
.vocal-meter .wave { width: 80%; height: 110px; background: linear-gradient(90deg, transparent 0 4%, var(--red) 4% 5%, transparent 5% 8%, var(--red) 8% 10%, transparent 10% 14%, var(--red) 14% 15%, transparent 15% 19%, var(--red) 19% 23%, transparent 23% 27%, var(--red) 27% 29%, transparent 29% 34%, var(--red) 34% 40%, transparent 40% 45%, var(--red) 45% 48%, transparent 48% 54%, var(--red) 54% 61%, transparent 61% 66%, var(--red) 66% 69%, transparent 69% 75%, var(--red) 75% 79%, transparent 79% 85%, var(--red) 85% 87%, transparent 87% 92%, var(--red) 92% 96%, transparent 96%); clip-path: polygon(0 45%,4% 45%,4% 36%,5% 36%,5% 55%,8% 55%,8% 25%,10% 25%,10% 67%,14% 67%,14% 40%,15% 40%,15% 55%,19% 55%,19% 18%,23% 18%,23% 74%,27% 74%,27% 32%,29% 32%,29% 61%,34% 61%,34% 8%,40% 8%,40% 85%,45% 85%,45% 28%,48% 28%,48% 68%,54% 68%,54% 2%,61% 2%,61% 92%,66% 92%,66% 28%,69% 28%,69% 75%,75% 75%,75% 18%,79% 18%,79% 82%,85% 82%,85% 33%,87% 33%,87% 66%,92% 66%,92% 25%,96% 25%,96% 58%,100% 58%,100% 100%,0 100%); }
.vocal-meter p { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.note { position: absolute; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: white; font-family: var(--display); font-size: .8rem; background: var(--red); }.note-one{left:12%;top:18%}.note-two{right:14%;top:25%}.note-three{right:30%;bottom:20%}
.test-panel { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 7vw; padding-top: 70px; border-top: 1px solid; }
.test-panel.open { display: grid; }
.test-info h3 { font-family: var(--display); font-size: 3rem; line-height: 1; font-weight: 400; }
.test-info li { margin-bottom: 12px; }
.inline-form, .contact-form { display: grid; gap: 18px; }
.inline-form label, .contact-form label { display: grid; gap: 7px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.inline-form input, .contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid; background: transparent; padding: 12px 0; outline: none; border-radius: 0; }
.inline-form input:focus, .contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); }
.form-status { min-height: 24px; margin: 0; color: var(--red-dark); font-size: .86rem; }
.legal-consent { display: flex !important; grid-column: 1 / -1; align-items: flex-start; gap: 10px !important; font-size: .78rem !important; font-weight: 400 !important; letter-spacing: 0 !important; line-height: 1.45; text-transform: none !important; }
.legal-consent input { width: 18px !important; height: 18px; flex: 0 0 18px; margin: 2px 0 0; accent-color: var(--red); }
.legal-consent a { text-decoration: underline; text-underline-offset: 3px; }
.legal-consent a:hover { color: var(--red-dark); }

.services { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; padding-top: 145px; }
.services-title { grid-column: 1 / -1; }.services-title h2 { font-size: clamp(4rem, 8vw, 8rem); line-height: .9; margin: 18px 0 0; }
.price-list article { border-top: 1px solid; padding: 24px 0; display: grid; grid-template-columns: 1fr auto; gap: 8px 25px; }
.price-list article > div { display: grid; grid-template-columns: 35px 1fr; }.price-list article span { color: var(--red); font-size: .72rem; padding-top: 4px; }
.price-list h3 { font-size: 1.2rem; margin: 0; }.price-list strong { font-size: 1.05rem; }.price-list article p { grid-column: 1 / -1; margin: 0 0 0 35px; color: var(--muted); font-size: .88rem; max-width: 560px; }
.footnote { font-size: .8rem; color: var(--muted); }
.full-cycle { position: relative; padding: 38px; background: var(--red); color: white; overflow: hidden; align-self: start; }
.full-cycle > p { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 65px; }
.full-cycle a { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; min-height: 75px; border-top: 1px solid rgba(255,255,255,.55); font-family: var(--display); font-size: clamp(1.7rem, 3vw, 3rem); }
.full-cycle a:last-of-type { border-bottom: 1px solid rgba(255,255,255,.55); }
.full-cycle b { font-family: var(--sans); font-size: 1rem; }

.studio { width: 100%; margin: 0; padding: 110px max(24px, calc((100vw - 1420px)/2)); display: grid; grid-template-columns: 1.1fr .9fr; gap: 5vw; background: var(--ink); color: white; }
.studio-copy h2 { font-size: clamp(3.3rem, 6.5vw, 7.3rem); line-height: .94; margin: 20px 0 50px; }
.studio-name { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 5rem); color: var(--blue); }.studio-name i { display: block; color: var(--red); font-size: .32em; font-family: var(--sans); text-transform: uppercase; letter-spacing: .2em; margin-left: 24%; }
.studio-screen { min-height: 520px; position: relative; display: grid; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,.6); background: var(--blue); color: var(--ink); overflow: hidden; }
.studio-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(28,28,28,.11) 1px,transparent 1px),linear-gradient(90deg,rgba(28,28,28,.11) 1px,transparent 1px); background-size: 42px 42px; }
.play-review { position: relative; z-index: 2; width: 110px; aspect-ratio: 1; border-radius: 50%; border: 1px solid; background: var(--red); color: white; display: grid; place-items: center; box-shadow: 8px 8px 0 var(--ink); transition: transform .25s; }.play-review:hover{transform:scale(1.06)}.play-review span{font-size:2rem;margin-left:5px}
.studio-screen p { position: relative; z-index: 2; margin: 28px 0 0; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.studio-footer { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.3); }
.studio-footer p { margin: 0; font-size: 1.2rem; }.studio-footer strong{color:var(--blue)}

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; align-items: start; }
.faq-title { position: sticky; top: 110px; }.faq-title h2 { font-size: clamp(4rem, 8vw, 8.5rem); line-height: .88; margin: 18px 0 34px; }.faq-title > p:last-child { max-width: 390px; }
.chat { border: 1px solid; background: var(--white); box-shadow: 10px 10px 0 var(--red); }
.chat-head { min-height: 76px; padding: 0 22px; display: grid; grid-template-columns: 12px 1fr auto; gap: 13px; align-items: center; border-bottom: 1px solid; }.online-dot{width:10px;height:10px;background:#21a366;border-radius:50%}.chat-head div{display:grid}.chat-head small{color:var(--muted);font-size:.7rem}.chat-head>span:last-child{font-family:var(--display);font-size:1.5rem}
.chat-feed { min-height: 330px; max-height: 470px; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 12px; background: linear-gradient(rgba(162,213,242,.18),rgba(162,213,242,.18)), var(--cream); }
.message { max-width: 78%; padding: 13px 16px; border: 1px solid; font-size: .9rem; animation: pop .25s ease; }.incoming{align-self:flex-start;background:var(--white);border-radius:18px 18px 18px 3px}.outgoing{align-self:flex-end;background:var(--blue);border-radius:18px 18px 3px 18px}.message.typing{display:flex;gap:4px;align-items:center;width:60px}.message.typing i{width:6px;height:6px;border-radius:50%;background:var(--muted);animation:dots 1s infinite}.message.typing i:nth-child(2){animation-delay:.16s}.message.typing i:nth-child(3){animation-delay:.32s}
@keyframes pop{from{opacity:0;transform:translateY(8px)}}@keyframes dots{50%{transform:translateY(-3px)}}
.quick-questions { padding: 16px 18px; display: flex; gap: 8px; overflow-x: auto; border-top: 1px solid; }
.quick-questions button { flex: 0 0 auto; border: 1px solid; border-radius: 99px; background: var(--white); padding: 8px 12px; font-size: .72rem; }
.chat-form { display: grid; grid-template-columns: 1fr 50px; border-top: 1px solid; }.chat-form input{min-width:0;border:0;background:transparent;padding:17px 20px;outline:none}.chat-form button{border:0;border-left:1px solid;background:var(--red);color:white;font-size:1.4rem}.chat-privacy{grid-column:1/-1;margin:0;padding:9px 18px;border-top:1px solid var(--line);color:var(--muted);font-size:.68rem;line-height:1.4}

.promo { padding-block: 80px 120px; }.promo-ticket { display: grid; grid-template-columns: 150px 1fr; border: 1px solid; box-shadow: 12px 12px 0 var(--blue); transform: rotate(-1deg); background: var(--white); }
.ticket-side { background: var(--red); color: white; display: grid; place-items: center; padding: 30px 15px; border-right: 1px dashed var(--ink); }.ticket-side span{font-family:var(--display);font-size:clamp(1.25rem,2vw,1.8rem);letter-spacing:.08em;writing-mode:vertical-rl;transform:rotate(180deg)}
.ticket-main { padding: clamp(34px, 6vw, 85px); position: relative; }.ticket-main::before,.ticket-main::after{content:"";position:absolute;left:-15px;width:30px;height:30px;border-radius:50%;background:var(--cream);border:1px solid}.ticket-main::before{top:-15px}.ticket-main::after{bottom:-15px}
.ticket-main h2 { font-family: var(--display); font-weight: 400; font-size: clamp(4.2rem, 11vw, 11rem); line-height: .8; letter-spacing: -.06em; margin: 28px 0; color: var(--red); }
.ticket-main > p:not(.kicker) { max-width: 650px; }
.promo-bottom { margin-top: 50px; padding-top: 18px; border-top: 1px dashed; display: flex; justify-content: space-between; align-items: center; gap: 25px; font-size: .75rem; text-transform: uppercase; letter-spacing: .09em; }.promo-bottom button{border:0;border-bottom:1px solid;background:transparent;padding:4px 0;font-weight:700}

.contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: var(--blue); width: 100%; padding: 110px max(24px, calc((100vw - 1420px)/2)); }
.contact-title h2 { font-size: clamp(3.5rem, 6.5vw, 7rem); line-height: .94; margin: 20px 0 0; }.contact-links{display:grid;align-self:end}.contact-links a{min-height:64px;display:flex;align-items:center;justify-content:space-between;border-top:1px solid;font-family:var(--display);font-size:1.8rem}.contact-links a:last-child{border-bottom:1px solid}
.contact-form { grid-column: 1 / -1; margin-top: 45px; grid-template-columns: 1fr 1fr; gap: 30px 55px; padding-top: 45px; border-top: 1px solid; }.contact-form .wide{grid-column:1/-1}.contact-form button{justify-self:start}.contact-form .form-status{align-self:center}
footer { background: var(--red); color: white; padding: 100px max(24px, calc((100vw - 1420px)/2)) 28px; }
.sticky-note { width: min(620px, 92%); min-height: 330px; margin: 0 auto 100px; padding: 70px 55px 40px; position: relative; background: var(--cream); color: var(--ink); transform: rotate(2deg); box-shadow: 18px 18px 0 rgba(28,28,28,.25); display: flex; flex-direction: column; justify-content: center; text-align: center; }.sticky-note p{font-family:var(--display);font-size:clamp(2rem,4.5vw,4rem);line-height:1.05;margin-bottom:35px}.sticky-note small{text-transform:uppercase;letter-spacing:.12em}.pin{position:absolute;top:22px;left:50%;width:20px;height:20px;border-radius:50%;background:var(--red);box-shadow:0 3px 4px rgba(0,0,0,.3)}.note-heart{position:absolute;right:28px;bottom:18px;font-size:3rem;color:var(--red);transform:rotate(-8deg)}
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items:end; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.4); font-size: .7rem; }.footer-bottom span:last-child{text-align:right;opacity:.72}
.legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin: 0 auto 32px; font-size: .76rem; }
.legal-links a, .legal-links button { color: inherit; border: 0; border-bottom: 1px solid rgba(255,255,255,.65); background: transparent; padding: 3px 0; }
.legal-links a:hover, .legal-links button:hover { border-color: white; }

.cookie-banner { position: fixed; z-index: 300; left: 24px; right: 24px; bottom: 24px; width: min(940px, calc(100vw - 48px)); margin-inline: auto; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 22px; border: 1px solid var(--ink); background: var(--cream); color: var(--ink); box-shadow: 10px 10px 0 rgba(28,28,28,.9); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 5px; font-family: var(--display); font-size: 1.35rem; }
.cookie-banner p { margin: 0; max-width: 680px; font-size: .84rem; }
.cookie-banner a { text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 9px; }
.cookie-actions button { min-height: 43px; padding: 0 17px; border: 1px solid var(--ink); border-radius: 999px; font-size: .75rem; font-weight: 700; white-space: nowrap; }
.cookie-secondary { background: transparent; }
.cookie-primary { background: var(--ink); color: white; }

.legal-page { min-height: 100vh; background: var(--cream); }
.legal-header { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px max(24px, calc((100vw - 1040px)/2)); border-bottom: 1px solid var(--line); }
.legal-header .brand { position: static; }
.legal-back { border-bottom: 1px solid; font-size: .8rem; font-weight: 700; }
.legal-document { width: min(1040px, calc(100vw - 48px)); margin: 0 auto; padding: 80px 0 110px; }
.legal-document .kicker { color: var(--red); }
.legal-document h1 { max-width: 900px; margin: 16px 0 28px; font-family: var(--display); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 400; letter-spacing: -.05em; line-height: .94; }
.legal-updated { margin-bottom: 64px; color: var(--muted); font-size: .8rem; }
.legal-content { display: grid; grid-template-columns: 220px 1fr; gap: 34px 70px; }
.legal-content h2 { margin: 0; font-family: var(--display); font-size: 1.55rem; font-weight: 400; line-height: 1.15; }
.legal-content section { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.legal-content section p:last-child, .legal-content section ul:last-child { margin-bottom: 0; }
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 8px; }
.legal-notice { padding: 18px 20px; border: 1px solid var(--red); background: rgba(215,38,56,.06); }
.legal-contact { padding: 25px; background: var(--blue); border: 1px solid var(--ink); }

.song-dialog { width: min(660px, calc(100vw - 32px)); border: 1px solid; padding: 50px; background: var(--cream); color: var(--ink); box-shadow: 12px 12px 0 var(--red); }.song-dialog::backdrop{background:rgba(28,28,28,.72);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.song-dialog h2{font-family:var(--display);font-weight:400;font-size:clamp(3rem,7vw,6rem);line-height:.95;margin:22px 0 34px}.dialog-close{position:absolute;right:18px;top:14px;border:0;background:transparent;font-size:2rem}.song-dialog p:not(.kicker){color:var(--muted);margin-bottom:30px}
.song-request-form { display: grid; gap: 18px; }
.song-request-form label { display: grid; gap: 7px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.song-request-form input:not([type="checkbox"]), .song-request-form textarea { width: 100%; border: 0; border-bottom: 1px solid; border-radius: 0; padding: 12px 0; background: transparent; outline: none; }
.song-request-form input:focus, .song-request-form textarea:focus { border-color: var(--red); }

@media (max-width: 980px) {
  :root { --page: min(100% - 32px, 760px); }
  .desktop-nav { display: none; position: fixed; inset: 72px 0 auto; padding: 38px 24px; background: var(--cream); border-bottom: 1px solid; flex-direction: column; font-family: var(--display); font-size: 2.2rem; }
  .desktop-nav .mobile-contact-link { display: block; }
  .desktop-nav.open { display: flex; }.header-cta{display:none}.menu-button{display:block;justify-self:end}.site-header{grid-template-columns:1fr 1fr}
  .hero { grid-template-columns: 1fr; padding-top: 115px; gap: 42px; }.hero-copy{min-height:520px}.hero h1{margin-right:0;font-size:clamp(4rem,15vw,7.2rem)}.hero h1 span:last-child{margin-left:6vw}.round-link{right:0}.hero-image-wrap{min-height:72svh}
  .about, .services, .faq { grid-template-columns: minmax(0, 1fr); }.about{gap:75px}.portrait-card{margin:auto}.about-right h2{font-size:clamp(4rem,12vw,7.5rem)}.social-strip{grid-template-columns:repeat(2,1fr)}.social-strip > :nth-child(2n){border-right:0}.social-strip > :nth-child(-n+2){border-bottom:1px solid}
  .catalog-heading{grid-template-columns:1fr}.catalog-controls{justify-self:start}.song-grid{grid-template-columns:1fr 1fr}.featured-song{grid-template-columns:.8fr 1.2fr}
  .singability,.studio,.contacts{grid-template-columns:minmax(0,1fr)}.singability>*,.studio>*,.contacts>*,.faq>*{min-width:0;max-width:100%}.vocal-meter{min-height:420px}.test-panel.open{grid-template-columns:minmax(0,1fr)}.studio-footer{grid-column:auto}.studio-screen{min-height:450px}.faq-title{position:static}.contact-form{grid-column:auto}.contact-links{align-self:start}.chat,.quick-questions{min-width:0;max-width:100%}
}

@media (max-width: 620px) {
  .section{padding:82px 0}.hero{padding-inline:16px}.hero-copy{min-height:480px}.hero h1{font-size:clamp(3.45rem,17vw,5.7rem);line-height:.86;margin-bottom:34px}.hero h1 span:last-child{margin-left:0}.issue-label{margin-bottom:42px}.typing-card{font-size:.9rem;grid-template-columns:38px 1fr;padding:14px}.typing-avatar{width:38px;height:38px}.round-link{position:relative;right:auto;bottom:auto;margin-top:36px;width:88px}.hero-image-wrap{min-height:58svh}.photo-sticker{width:90px;font-size:1.65rem}.hero-image-wrap figcaption{right:20px;font-size:.61rem}
  .about{grid-template-columns:minmax(0,1fr);padding-top:115px}.portrait-card{width:calc(100% - 18px)}.about-right h2{font-size:clamp(3.2rem,15vw,5.5rem)}.collab-list li{font-size:1rem}.social-strip{grid-template-columns:1fr}.social-strip a,.social-strip .social-static{border-right:0;border-bottom:1px solid}.social-strip > :last-child{border-bottom:0}
  .catalog-manifest{min-height:70svh;padding-inline:0}.catalog-manifest h2{font-size:clamp(3.4rem,15vw,6rem)}.catalog-browser{padding-inline:16px}.catalog-controls{width:100%}.segmented,.voice-tabs{width:100%}.segmented button,.voice-tabs button{flex:1;padding-inline:8px}.featured-song{grid-template-columns:1fr;box-shadow:6px 6px 0}.featured-art{min-height:250px;border-right:0;border-bottom:1px solid}.featured-copy{padding:28px}.featured-copy h4{font-size:3.5rem}.song-grid{grid-template-columns:1fr}.song-card{min-height:175px}
  .singability,.studio,.contacts{padding:82px 16px}.singability-copy h2,.services h2,.studio-copy h2,.faq-title h2,.contact-title h2{font-size:clamp(3.2rem,14vw,5.5rem)}.singability-copy>p:not(.kicker){font-size:1.05rem}.vocal-meter{min-height:340px}.test-info h3{font-size:2.3rem}
  .services{gap:45px}.price-list article{grid-template-columns:1fr}.price-list article strong{margin-left:35px}.full-cycle{padding:25px}.full-cycle>p{margin-bottom:40px}.full-cycle a{font-size:1.65rem}
  .studio-screen{min-height:360px}.studio-footer{display:grid;gap:22px}.faq{gap:55px}.chat-feed{min-height:300px;padding:16px}.quick-questions{padding-inline:12px}
  .promo-ticket{grid-template-columns:66px 1fr;box-shadow:7px 7px 0}.ticket-side span{font-size:2rem}.ticket-main{padding:42px 25px}.ticket-main h2{font-size:clamp(3.5rem,16vw,5.5rem)}.promo-bottom{align-items:flex-start;flex-direction:column}
  .contact-form{grid-template-columns:1fr}.contact-form .wide{grid-column:auto}.contact-links a{font-size:1.45rem}.sticky-note{min-height:280px;padding:55px 28px 35px}.sticky-note p{font-size:2rem}.footer-bottom{grid-template-columns:1fr;text-align:center}.footer-bottom span:last-child{text-align:center}.song-dialog{padding:42px 25px}
  .cookie-banner{left:12px;right:12px;bottom:12px;width:calc(100vw - 24px);grid-template-columns:1fr;padding:18px;box-shadow:6px 6px 0 rgba(28,28,28,.9)}.cookie-actions{display:grid;grid-template-columns:1fr 1fr}.cookie-actions button{padding-inline:10px}.legal-document{width:calc(100vw - 32px);padding-block:55px 80px}.legal-document h1{font-size:clamp(2.7rem,13vw,4.7rem)}.legal-updated{margin-bottom:42px}.legal-content{grid-template-columns:1fr;gap:12px}.legal-content section{margin-bottom:24px}.legal-header{padding-inline:16px}.legal-header .brand-subtitle{display:none}
}

@media (prefers-reduced-motion: reduce) { html:not(.motion-full){scroll-behavior:auto}html:not(.motion-full) .ticker span,html:not(.motion-full) .typing-cursor,html:not(.motion-full) .message.typing i{animation:none;-webkit-animation:none}html:not(.motion-full) .reveal{opacity:1;transform:none;transition:none} }
.motion-reduced { scroll-behavior: auto; }
.motion-reduced .ticker span, .motion-reduced .typing-cursor, .motion-reduced .message.typing i, .motion-reduced .pitch-disc, .motion-reduced .level-bars i, .motion-reduced .reel-loader-spinner { animation: none; -webkit-animation: none; }
.motion-reduced .reveal { opacity: 1; transform: none; transition: none; }

/* Refinement pass — catalogue-led composition */
.site-header { min-height: 82px; }
.brand { display: grid; align-items: center; gap: 0; letter-spacing: .12em; }
.brand-line { display: flex; align-items: baseline; gap: 8px; line-height: 1; }
.brand-subtitle { margin-top: 5px; font-family: var(--display); font-size: .63rem; font-weight: 400; letter-spacing: .015em; text-transform: none; white-space: nowrap; }
.hero { padding-top: 132px; }
.issue-label { font-family: var(--display); font-size: .82rem; font-weight: 400; letter-spacing: .02em; text-transform: lowercase; border: 0; padding: 0; border-radius: 0; }

.about { display: block; padding-block: 140px 105px; }
.collab-center { width: min(1180px, 100%); margin: 0 auto; text-align: center; }
.collab-center h2 { margin: 20px auto 70px; font-family: var(--display); font-size: clamp(4rem, 9.4vw, 10rem); font-weight: 700; letter-spacing: -.065em; line-height: .78; text-transform: lowercase; }
.collab-center h2 span { display: block; }
.collab-center h2 b { font: inherit; }
.collab-center h2 .word-red { color: var(--red); }
.collab-center h2 .word-blue { color: var(--blue); }
.collab-center h2 em { display: block; margin: .1em 0 .08em; color: var(--red); font-family: var(--sans); font-size: .58em; font-style: normal; font-weight: 700; line-height: .8; }
.collab-pairs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-block: 2px solid var(--ink); text-align: left; }
.collab-pairs span { min-height: 92px; display: flex; align-items: center; padding: 18px clamp(18px, 4vw, 52px); border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(1.25rem, 2.3vw, 2.4rem); font-weight: 700; line-height: 1.06; }
.collab-pairs span:nth-child(odd) { border-right: 1px solid var(--line); }
.collab-pairs span:nth-last-child(-n+2) { border-bottom: 0; }
.about .social-strip { margin-top: 70px; }

.catalog-manifest { min-height: 66vh; }
.catalog-manifest h2 { margin-top: 0; }
.catalog-manifest p { font-family: var(--display); font-size: clamp(1.5rem, 2.2vw, 2.4rem); font-weight: 700; }
.catalog-browser { padding: 0; background: var(--ink); color: white; border-top: 1px solid var(--ink); }
.catalog-opener { width: 100%; min-height: 260px; padding: 55px max(24px, calc((100vw - 1420px)/2)); display: flex; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 80px); border: 0; border-bottom: 1px solid rgba(255,255,255,.25); background: var(--cream); color: var(--ink); }
.catalog-opener span { display: inline-flex; align-items: center; justify-content: center; min-height: 112px; padding: 20px clamp(28px, 7vw, 95px); border: 3px solid var(--ink); border-radius: 999px; font-size: clamp(1.8rem, 5.4vw, 5.2rem); font-weight: 700; letter-spacing: .1em; white-space: nowrap; transition: background .3s, color .3s, transform .3s; }
.catalog-opener i { width: 84px; aspect-ratio: 1; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--red); color: white; font-size: 2rem; font-style: normal; transition: transform .45s; }
.catalog-opener:hover span { background: var(--blue); transform: translateY(-4px); }
.catalog-opener[aria-expanded="true"] i { transform: rotate(180deg); }
.catalog-shell { padding: 82px max(24px, calc((100vw - 1420px)/2)) 120px; }
.catalog-shell.open { display: block; animation: catalogReveal .65s cubic-bezier(.2,.75,.2,1); }
@keyframes catalogReveal { from { opacity: 0; transform: translateY(-24px); } }
.catalog-heading { display: flex; justify-content: space-between; align-items: stretch; gap: 45px; margin-bottom: 42px; }
.catalog-caption { max-width: 260px; margin: 0; color: rgba(255,255,255,.58); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.catalog-caption span { display: block; }
.catalog-controls { justify-self: auto; }
.segmented, .voice-tabs { border-color: rgba(255,255,255,.5); }
.segmented button, .voice-tabs button { color: white; border-color: rgba(255,255,255,.5); }
.segmented button.active { background: var(--red); }
.voice-tabs button.active { background: var(--blue); color: var(--ink); }
.catalog-stage { display: grid; grid-template-columns: minmax(330px, .7fr) minmax(0, 1.3fr); gap: 28px; align-items: stretch; }
.featured-song { min-height: 1106px; grid-template-columns: 1fr; grid-template-rows: minmax(310px, 1fr) auto; margin: 0; background: #121212; color: white; border-color: rgba(255,255,255,.5); box-shadow: none; }
.featured-art { min-height: 340px; border: 0; border-bottom: 1px solid rgba(255,255,255,.45); }
.featured-art::before { border-color: rgba(28,28,28,.85); }
.featured-art.has-cover { background: #080808; cursor: pointer; }
.featured-art.has-cover::before { display: none; }
.featured-cover-image { display: none; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #080808; }
.featured-reel { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #080808; }
.featured-full-audio { display: none; }
.featured-video-shade { position: absolute; z-index: 2; inset: 45% 0 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.72)); pointer-events: none; }
.featured-video-chrome { position: absolute; z-index: 4; left: 18px; right: 18px; bottom: 32px; display: flex; align-items: center; gap: 9px; color: white; pointer-events: none; }
.featured-video-chrome button { min-height: 38px; padding: 0 13px; border: 1px solid rgba(255,255,255,.72); border-radius: 999px; background: rgba(0,0,0,.5); color: white; font-size: .68rem; font-weight: 700; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); pointer-events: auto; }
.featured-video-time { margin-right: auto; padding: 8px 10px; border-radius: 999px; background: rgba(0,0,0,.45); font-size: .66rem; font-variant-numeric: tabular-nums; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.featured-timeline { --progress-ratio: 0; position: absolute; z-index: 5; left: 0; right: 0; bottom: 0; width: 100%; height: 32px; padding: 0; border: 0; background: transparent; cursor: ew-resize; touch-action: none; }
.featured-timeline::before, .featured-timeline span { content: ""; position: absolute; left: 18px; right: 18px; top: 50%; height: 3px; border-radius: 99px; transform: translateY(-50%); }
.featured-timeline::before { background: rgba(255,255,255,.38); }
.featured-timeline span { right: auto; width: calc(100% - 36px); background: var(--red); transform: translateY(-50%) scaleX(var(--progress-ratio)); transform-origin: left center; }
.featured-timeline:focus-visible { outline: 2px solid var(--blue); outline-offset: -3px; }
.featured-copy { padding: 34px; }
.featured-copy h4 { font-size: clamp(2.75rem, 4.7vw, 5rem); overflow-wrap: normal; word-break: normal; hyphens: none; text-wrap: balance; }
.featured-copy > p, .featured-meta { color: rgba(255,255,255,.66); }
.full-demo, .select-song { min-height: 48px; padding: 0 22px; border: 1px solid rgba(255,255,255,.55); border-radius: 99px; background: transparent; color: white; font-weight: 700; }
.full-demo:hover { background: var(--blue); color: var(--ink); border-color: var(--blue); }
.select-song { background: var(--red); border-color: var(--red); }
.song-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; align-content: stretch; }
.song-card { min-height: 210px; background: #121212; color: white; border-color: rgba(255,255,255,.42); }
.song-card:hover, .song-card.active { border-color: var(--blue); box-shadow: 5px 5px 0 var(--blue); }
.song-card-top, .song-card p { color: rgba(255,255,255,.58); }
.song-card h4 { overflow-wrap: normal; word-break: normal; hyphens: none; text-wrap: balance; }
.song-card .disc { background: repeating-radial-gradient(circle, #111 0 2px, transparent 3px 5px), var(--card-color); }
.song-card-cover { display: none; }

.pitch-visual { min-height: 460px; align-self: center; position: relative; overflow: hidden; border: 1px solid var(--ink); background: var(--cream); display: grid; place-items: center; }
.pitch-visual::before { content: ""; position: absolute; inset: 22px; border: 1px solid var(--line); background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 38px 38px; opacity: .7; }
.pitch-disc { position: relative; z-index: 2; width: min(250px, 56%); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: repeating-radial-gradient(circle, #141414 0 5px, #242424 6px 8px); box-shadow: 0 0 0 16px rgba(215,38,56,.9), 0 18px 35px rgba(28,28,28,.28); -webkit-animation: spinDisc 9s linear infinite; animation: spinDisc 9s linear infinite; -webkit-backface-visibility: hidden; backface-visibility: hidden; will-change: transform; }
.pitch-disc::before { content: ""; position: absolute; width: 36%; aspect-ratio: 1; border-radius: 50%; background: var(--blue); border: 7px solid var(--cream); }
.pitch-disc span { position: relative; z-index: 2; color: var(--ink); font-family: var(--display); font-size: 2rem; }
.pitch-disc i { position: absolute; width: 9px; aspect-ratio: 1; border-radius: 50%; background: var(--red); }
@-webkit-keyframes spinDisc { to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }
@keyframes spinDisc { to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }
.level-bars { position: absolute; z-index: 3; left: 7%; right: 7%; bottom: 55px; height: 76px; display: flex; align-items: flex-end; gap: 8px; }
.level-bars i { flex: 1; height: 35%; background: var(--red); -webkit-animation: levelBounce 1.2s ease-in-out infinite alternate; animation: levelBounce 1.2s ease-in-out infinite alternate; -webkit-transform-origin: bottom; transform-origin: bottom; will-change: transform; }
.level-bars i:nth-child(2n) { animation-delay: -.3s; height: 68%; }.level-bars i:nth-child(3n) { animation-delay: -.65s; height: 92%; }.level-bars i:nth-child(4n) { animation-delay: -.9s; height: 52%; }
@-webkit-keyframes levelBounce { to { -webkit-transform: scaleY(.28); transform: scaleY(.28); } }
@keyframes levelBounce { to { -webkit-transform: scaleY(.28); transform: scaleY(.28); } }
.pitch-tags { position: absolute; z-index: 4; top: 22px; left: 22px; right: 22px; display: flex; justify-content: space-between; }
.pitch-tags span { padding: 7px 11px; border: 1px solid var(--ink); border-radius: 99px; background: var(--cream); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.sticky-note-photo { width: min(900px, 96%); margin: 0 auto 100px; position: relative; transform: rotate(-1.2deg); filter: drop-shadow(18px 24px 18px rgba(28,28,28,.25)); }
.sticky-note-photo img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.sticky-note-photo p { position: absolute; z-index: 2; left: 24%; right: 21%; top: 32%; margin: 0; color: var(--ink); font-family: var(--display); font-size: clamp(1.7rem, 4vw, 4rem); font-weight: 700; line-height: 1.1; text-align: center; transform: rotate(.7deg); }
.site-section-paused { display: none !important; }

.closed-catalog-dialog { width: min(720px, calc(100vw - 32px)); border: 1px solid var(--ink); padding: clamp(30px, 6vw, 62px); background: var(--cream); color: var(--ink); box-shadow: 12px 12px 0 var(--blue); }
.closed-catalog-dialog::backdrop { background: rgba(0,0,0,.78); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.closed-catalog-dialog h2 { margin: 20px 0 24px; font-family: var(--display); font-size: clamp(2.6rem, 6vw, 5.5rem); font-weight: 700; line-height: .96; letter-spacing: -.05em; }
.closed-catalog-dialog > p:not(.kicker) { max-width: 560px; color: var(--muted); }
.closed-catalog-dialog form { display: grid; gap: 18px; margin-top: 35px; }
.closed-catalog-dialog label { display: grid; gap: 7px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.closed-catalog-dialog input, .closed-catalog-dialog textarea { width: 100%; border: 0; border-bottom: 1px solid; border-radius: 0; padding: 12px 0; background: transparent; outline: none; }
.closed-catalog-dialog input:focus, .closed-catalog-dialog textarea:focus { border-color: var(--red); }
.closed-dialog-close { position: absolute; right: 18px; top: 12px; border: 0; background: transparent; font-size: 2rem; }
.closed-catalog-dialog.question-request .request-intro { display: none; }
.closed-catalog-dialog.question-request form { margin-top: 0; }

@media (max-width: 980px) {
  .site-header { min-height: 88px; }
  .desktop-nav { inset: 88px 0 auto; }
  .hero { padding-top: 145px; }
  .about { padding-top: 110px; }
  .catalog-opener { min-height: 220px; flex-direction: column; gap: 25px; }
  .catalog-opener i { width: 68px; }
  .catalog-stage { grid-template-columns: 1fr; }
  .featured-song { min-height: 540px; grid-template-columns: .9fr 1.1fr; grid-template-rows: 1fr; }
  .featured-art { min-height: 100%; border-right: 1px solid rgba(255,255,255,.45); border-bottom: 0; }
  .featured-cover-image { display: none; }
}

@media (max-width: 620px) {
  .brand-subtitle { font-size: .55rem; }
  .hero { padding-top: 150px; }
  .collab-center h2 { width: 100%; font-size: clamp(2rem, 10.5vw, 4.5rem); letter-spacing: -.055em; line-height: .86; margin-bottom: 48px; }
  .collab-center h2 span { max-width: 100%; white-space: nowrap; }
  .collab-pairs { grid-template-columns: 1fr; }
  .collab-pairs span { min-height: 72px; border-right: 0 !important; border-bottom: 1px solid var(--line) !important; font-size: 1.35rem; }
  .collab-pairs span:last-child { border-bottom: 0 !important; }
  .catalog-opener { min-height: 190px; padding-inline: 16px; }
  .catalog-opener span { width: 100%; min-height: 82px; padding-inline: 16px; border-width: 2px; font-size: clamp(1.2rem, 7vw, 2rem); letter-spacing: .07em; }
  .catalog-shell { padding: 60px 16px 82px; }
  .catalog-heading { display: grid; gap: 28px; }
  .catalog-controls { width: 100%; }
  .catalog-stage { gap: 18px; }
  .featured-song { display: none; }
  .featured-art { min-height: 260px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.45); }
  .song-grid { grid-template-columns: 1fr; }
  .song-card { min-height: 0; padding: 0; overflow: hidden; }
  .song-card-cover { width: 100%; height: 220px; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.42); background: var(--card-color); }
  .song-card-cover img { width: 100%; height: 100%; display: block; object-fit: cover; }
  .song-card-cover strong { font-family: var(--display); color: var(--ink); font-size: 7rem; font-weight: 400; }
  .song-card-top { padding: 16px 18px 0; }
  .song-card h4 { margin: 32px 18px 12px; font-size: clamp(2.35rem, 11vw, 3.65rem); }
  .song-card p { margin: 0 18px 22px; }
  .pitch-visual { min-height: 360px; }
  .sticky-note-photo { width: calc(100% + 20px); margin-left: -10px; }
  .sticky-note-photo p { left: 21%; right: 18%; top: 31%; font-size: clamp(1.2rem, 6.5vw, 2.1rem); }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-full) .pitch-disc, html:not(.motion-full) .level-bars i { animation: none; -webkit-animation: none; }
}

.dialog-fallback { position: fixed; z-index: 350; inset: 50% auto auto 50%; display: block; max-height: calc(100vh - 32px); overflow: auto; transform: translate(-50%, -50%); }
body.dialog-open::before { content: ""; position: fixed; z-index: 340; inset: 0; background: rgba(0,0,0,.78); }
.legal-contact + .legal-contact { margin-top: 14px; }

/* Interaction refresh */
.hero h1 .hero-role { color: var(--ink); margin-left: 0; }
.hero h1 { margin-top: 0; }

.ticker { display: block; }
.ticker-track { width: max-content; min-width: 200vw; height: 100%; display: flex; align-items: center; -webkit-animation: tickerLoop 24s linear infinite; animation: tickerLoop 24s linear infinite; will-change: transform; }
.ticker-set { min-width: 100vw; display: flex; align-items: center; justify-content: space-around; flex: 0 0 auto; gap: 36px; padding-right: 36px; }
.ticker span { min-width: auto; padding: 0; -webkit-animation: none; animation: none; }
@-webkit-keyframes tickerLoop { to { -webkit-transform: translate3d(-50%,0,0); transform: translate3d(-50%,0,0); } }
@keyframes tickerLoop { to { -webkit-transform: translate3d(-50%,0,0); transform: translate3d(-50%,0,0); } }
.motion-reduced .ticker-track { -webkit-animation: none; animation: none; }

.collab-center h2 em { color: var(--ink); }

.catalog-topbar { min-height: 170px; padding: 34px max(24px, calc((100vw - 1420px)/2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid rgba(255,255,255,.28); background: var(--ink); }
.catalog-topbar > span { font-family: var(--display); font-size: clamp(2.6rem, 6.5vw, 7.2rem); line-height: .85; letter-spacing: -.055em; }
.catalog-topbar button, .catalog-reels-button { min-height: 54px; display: inline-flex; align-items: center; gap: 24px; flex: 0 0 auto; padding: 0 23px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; background: transparent; color: white; font-weight: 700; }
.catalog-reels-button { align-self: center; min-height: 62px; padding-inline: 30px; font-size: .86rem; }
.catalog-topbar button:hover, .catalog-reels-button:hover { background: var(--blue); color: var(--ink); border-color: var(--blue); }
.catalog-topbar i, .catalog-reels-button i { font-size: 1.25rem; font-style: normal; }
.catalog-shell { display: block; padding-top: 58px; }

.range-lab { min-height: 500px; align-self: center; padding: clamp(24px, 4vw, 42px); border: 1px solid var(--ink); background: var(--cream); box-shadow: 10px 10px 0 var(--red); }
.range-lab-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.range-lab-head > span { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.range-lab-head output { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; }
.range-visual { height: 205px; position: relative; overflow: hidden; margin-bottom: 25px; border: 1px solid var(--line); background: var(--blue); }
.range-staff { position: absolute; inset: 20px 0; display: flex; flex-direction: column; justify-content: space-around; }
.range-staff i { display: block; height: 1px; background: rgba(28,28,28,.25); }
.range-path { position: absolute; left: 9%; right: 9%; top: 50%; height: 4px; background: rgba(28,28,28,.25); transform: translateY(-50%); }
.range-path::before { content: ""; position: absolute; left: 0; right: 0; top: -31px; height: 62px; background: repeating-linear-gradient(90deg, transparent 0 22px, rgba(28,28,28,.16) 23px 24px); }
.range-path span { position: absolute; top: -5px; height: 14px; border-radius: 99px; background: var(--red); box-shadow: 0 0 0 7px rgba(215,38,56,.14); }
.range-point { position: absolute; top: 50%; min-width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--cream); font-family: var(--display); font-size: .9rem; transform: translate(-50%,-50%); transition: left .18s ease; }
.range-point-high { background: var(--ink); color: white; }
.range-control { display: grid; gap: 7px; margin-top: 15px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.range-control input { width: 100%; accent-color: var(--red); cursor: ew-resize; }
.range-hint { min-height: 42px; margin: 20px 0 0; color: var(--muted); font-size: .83rem; }

.idea-note { width: min(780px, 94%); margin: 0 auto 90px; text-align: center; }
.idea-note > .kicker { margin-bottom: 24px; }
.idea-card { width: 100%; min-height: 340px; position: relative; display: grid; place-items: center; align-content: center; gap: 38px; padding: clamp(45px, 8vw, 90px); border: 1px solid var(--ink); background: var(--cream); color: var(--ink); box-shadow: 16px 16px 0 rgba(28,28,28,.28); transform: rotate(-1.4deg); transition: transform .28s ease, box-shadow .28s ease; }
.idea-card::before { content: ""; position: absolute; top: 20px; left: 50%; width: 18px; height: 18px; border-radius: 50%; background: var(--red); box-shadow: 0 4px 8px rgba(0,0,0,.32); }
.idea-card:hover { transform: rotate(.5deg) translateY(-5px); box-shadow: 20px 22px 0 rgba(28,28,28,.23); }
.idea-card > span { font-family: var(--display); font-size: clamp(2.1rem, 5vw, 4.8rem); font-weight: 700; line-height: 1.05; }
.idea-card small { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.idea-card.changing > span { -webkit-animation: noteChange .36s ease; animation: noteChange .36s ease; }
@keyframes noteChange { 50% { opacity: 0; transform: translateY(8px) rotate(-1deg); } }
.idea-counter { display: flex; justify-content: center; gap: 8px; margin-top: 30px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }

body.reels-open { overflow: hidden; }
.reels-dialog { width: 100vw; max-width: none; height: 100vh; height: 100dvh; max-height: none; margin: 0; padding: 0; border: 0; background: #080808; color: white; overflow: hidden; }
.reels-dialog::backdrop { background: #080808; }
.reels-dialog.dialog-fallback { inset: 0; width: 100vw; height: 100vh; margin: 0; transform: none; }
.reels-close { position: fixed; z-index: 20; top: max(18px, env(safe-area-inset-top)); right: max(18px, env(safe-area-inset-right)); width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; background: rgba(0,0,0,.38); color: white; font-size: 2rem; line-height: 1; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.reels-progress { position: fixed; z-index: 20; top: max(27px, env(safe-area-inset-top)); left: max(22px, env(safe-area-inset-left)); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.reels-feed { width: min(500px, 100vw); height: 100%; margin: 0 auto; overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain; scroll-snap-type: y mandatory; scrollbar-width: none; background: #111; }
.reels-feed::-webkit-scrollbar { display: none; }
.reel-slide { min-height: 100%; height: 100%; position: relative; overflow: hidden; scroll-snap-align: start; scroll-snap-stop: always; background: #111; }
.reel-media { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(145deg, var(--reel-accent), #0c0c0c 62%); background: radial-gradient(circle at 65% 22%, var(--reel-accent), transparent 28%), linear-gradient(145deg, color-mix(in srgb, var(--reel-accent) 78%, #111), #0c0c0c 62%); }
.reel-media::before, .reel-media::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; -webkit-animation: reelOrbit 8s linear infinite; animation: reelOrbit 8s linear infinite; }
.reel-media::before { width: 78%; aspect-ratio: 1; left: -27%; top: 9%; box-shadow: 0 0 0 45px rgba(255,255,255,.035), 0 0 0 90px rgba(255,255,255,.025); }
.reel-media::after { width: 42%; aspect-ratio: 1; right: -13%; top: 32%; animation-direction: reverse; animation-duration: 6s; }
@keyframes reelOrbit { to { transform: rotate(360deg); } }
.reel-pulse { position: absolute; left: 8%; right: 8%; top: 42%; height: 95px; display: flex; align-items: center; gap: 8px; }
.reel-pulse i { flex: 1; height: 22%; border-radius: 99px; background: rgba(255,255,255,.85); transform-origin: center; -webkit-animation: reelPulse .85s ease-in-out infinite alternate; animation: reelPulse .85s ease-in-out infinite alternate; }
.reel-pulse i:nth-child(2n) { height: 72%; animation-delay: -.2s; }.reel-pulse i:nth-child(3n) { height: 42%; animation-delay: -.5s; }.reel-pulse i:nth-child(4n) { height: 92%; animation-delay: -.7s; }
@keyframes reelPulse { to { transform: scaleY(.24); opacity: .55; } }
.reel-slide.is-paused .reel-media::before, .reel-slide.is-paused .reel-media::after, .reel-slide.is-paused .reel-pulse i, .motion-reduced .reel-media::before, .motion-reduced .reel-media::after, .motion-reduced .reel-pulse i { -webkit-animation-play-state: paused; animation-play-state: paused; }
.reel-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.full-demo-audio { display: none; }
video, audio { -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }
.reel-slide.has-video .reel-video { display: block; }
.reel-slide.has-video .reel-pulse, .reel-slide.has-video .reel-placeholder, .reel-slide.has-video .reel-media::before, .reel-slide.has-video .reel-media::after { display: none; }
.reel-loader { position: absolute; z-index: 5; inset: 0; display: grid; place-items: center; padding: 28px; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)); pointer-events: none; }
.reel-loader[hidden], .reel-loader-actions[hidden] { display: none; }
.reel-loader-card { width: min(360px, 100%); padding: 20px; border: 1px solid rgba(255,255,255,.55); border-radius: 22px; background: rgba(8,8,8,.72); color: white; text-align: center; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); pointer-events: auto; }
.reel-loader-spinner { width: 28px; height: 28px; display: block; margin: 0 auto 13px; border: 2px solid rgba(255,255,255,.3); border-top-color: white; border-radius: 50%; -webkit-animation: reelLoaderSpin .8s linear infinite; animation: reelLoaderSpin .8s linear infinite; }
.reel-loader-copy { margin: 0; font-size: .82rem; line-height: 1.45; }
.reel-loader-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.reel-loader-actions button { min-height: 38px; padding: 0 14px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; background: transparent; color: white; font-size: .7rem; font-weight: 700; }
.reel-loader-actions .reel-retry { background: white; color: var(--ink); }
@-webkit-keyframes reelLoaderSpin { to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }
@keyframes reelLoaderSpin { to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }
.reel-slide.has-video.full-missing .reel-placeholder { display: block; padding: 18px; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; background: rgba(0,0,0,.5); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.reel-overlay { position: absolute; z-index: 4; inset: 0; display: flex; align-items: flex-end; padding: 34px clamp(132px, 29vw, 158px) max(34px, env(safe-area-inset-bottom)) 28px; background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.82)); pointer-events: none; }
.reel-copy { width: 100%; min-width: 0; max-width: 100%; overflow-wrap: break-word; pointer-events: auto; }
.reel-copy .reel-label { margin-bottom: 11px; font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; }
.reel-copy h3 { max-width: 100%; margin: 0 0 8px; font-family: var(--display); font-size: clamp(2.7rem, 8vw, 5.2rem); font-weight: 400; line-height: .9; letter-spacing: -.05em; overflow-wrap: normal; word-break: normal; hyphens: none; text-wrap: balance; }
.reel-copy > p:not(.reel-label) { margin: 0; color: rgba(255,255,255,.74); font-size: .82rem; }
.reel-full-progress { position: absolute; z-index: 7; left: max(20px, env(safe-area-inset-left)); right: max(20px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); display: none; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px; color: white; font-size: .68rem; font-variant-numeric: tabular-nums; }
.reel-slide.full-mode .reel-full-progress { display: grid; }
.reel-full-range { width: 100%; margin: 0; accent-color: var(--red); cursor: ew-resize; touch-action: none; }
.reel-full-range:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.reel-slide.full-mode .reel-overlay { padding-bottom: calc(max(34px, env(safe-area-inset-bottom)) + 56px); }
.reel-slide.full-mode .reel-actions { bottom: calc(max(34px, env(safe-area-inset-bottom)) + 56px); }
.reel-actions { position: absolute; z-index: 6; right: max(16px, env(safe-area-inset-right)); bottom: max(34px, env(safe-area-inset-bottom)); display: grid; justify-items: end; gap: 12px; }
.reel-actions button { width: 54px; min-height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(0,0,0,.38); color: white; font-size: 1.15rem; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.reel-actions .reel-full { width: auto; min-width: 54px; max-width: 124px; padding: 0 15px; border-radius: 999px; font-size: .68rem; font-weight: 700; white-space: nowrap; }
.reel-actions .reel-contact { background: var(--red); border-color: var(--red); }
.reel-placeholder { position: absolute; z-index: 3; top: 25%; left: 50%; width: 74%; transform: translateX(-50%); color: rgba(255,255,255,.72); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-align: center; text-transform: uppercase; }
.reel-slide.full-mode .reel-placeholder { color: white; }
.reel-zone { position: fixed; z-index: 10; top: 0; width: calc((100vw - 500px) / 2); height: 100vh; height: 100dvh; border: 0; background: transparent; opacity: 0; }
.reel-zone-prev { left: 0; cursor: n-resize; }.reel-zone-next { right: 0; cursor: s-resize; }

@media (max-width: 980px) {
  .catalog-topbar { min-height: 135px; }
  .catalog-topbar > span { font-size: clamp(2.6rem, 7.5vw, 5rem); }
}

@media (max-width: 620px) {
  .hero h1 { font-size: clamp(3.15rem, 15.5vw, 5.25rem); }
  .catalog-topbar { min-height: 160px; display: grid; justify-items: start; padding: 30px 16px; }
  .catalog-topbar > span { font-size: clamp(2.55rem, 13vw, 4.1rem); }
  .catalog-topbar button { min-height: 46px; }
  .catalog-reels-button { width: 100%; min-height: 50px; justify-content: space-between; }
  .catalog-shell { padding-top: 42px; }
  .range-lab { min-height: 0; padding: 20px 18px; box-shadow: 6px 6px 0 var(--red); }
  .range-lab-head { display: flex; align-items: baseline; gap: 8px; }
  .range-lab-head > span { flex: 1 1 auto; min-width: 0; white-space: nowrap; font-size: clamp(.52rem, 2.45vw, .68rem); letter-spacing: .055em; }
  .range-lab-head output { flex: 0 0 auto; white-space: nowrap; font-size: clamp(2rem, 10.8vw, 3.35rem); letter-spacing: -.04em; }
  .range-visual { height: 180px; }
  .idea-card { min-height: 300px; padding: 55px 25px 36px; box-shadow: 8px 9px 0 rgba(28,28,28,.28); }
  .idea-card > span { font-size: clamp(2rem, 10vw, 3.1rem); }
  .reels-feed { width: 100vw; }
  .reel-zone { display: none; }
  .reel-overlay { padding-left: 20px; padding-right: clamp(144px, 38vw, 158px); }
  .reel-copy h3 { font-size: clamp(2.55rem, 12vw, 4rem); line-height: .9; }
  .reel-actions { right: max(14px, env(safe-area-inset-right)); gap: 10px; }
  .reel-actions button { width: 50px; min-height: 50px; }
  .reel-actions .reel-full { max-width: 116px; padding-inline: 13px; font-size: .64rem; }
  .reels-close { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-full) .ticker-track, html:not(.motion-full) .reel-media::before, html:not(.motion-full) .reel-media::after, html:not(.motion-full) .reel-pulse i, html:not(.motion-full) .reel-loader-spinner { -webkit-animation: none; animation: none; }
}

/* Publication readiness */
:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
button:disabled {
  cursor: wait;
  opacity: .62;
}
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.form-status[data-state="success"] { color: #176b38; }
.form-status[data-state="error"] { color: var(--red-dark); }
.form-status[data-state="pending"] { color: var(--muted); }
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.error-card { width: min(760px, 100%); padding: clamp(34px, 8vw, 88px); border: 1px solid var(--ink); background: var(--cream); box-shadow: 12px 12px 0 var(--red); }
.error-card h1 { margin: 16px 0 24px; font-family: var(--display); font-size: clamp(3rem, 10vw, 7rem); font-weight: 400; line-height: .9; letter-spacing: -.05em; }
.error-card .pill-button { margin-top: 24px; }

@media (max-width: 420px) {
  :root { --page: calc(100vw - 28px); }
  .site-header { padding-inline: 14px; }
  .brand-line { gap: 6px; }
  .brand-subtitle { max-width: 190px; overflow: hidden; text-overflow: ellipsis; font-size: .5rem; }
  .hero { padding-inline: 14px; }
  .hero h1 { font-size: clamp(3rem, 15.2vw, 4.1rem); }
  .typing-card { min-width: 0; box-shadow: 5px 5px 0 var(--ink); }
  .typing-card > div { min-width: 0; }
  .collab-center h2 { font-size: clamp(1.72rem, 9.25vw, 2.45rem); letter-spacing: -.065em; }
  .collab-pairs span { padding-inline: 14px; font-size: 1.2rem; }
  .catalog-manifest h2 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .catalog-manifest p { font-size: 1.25rem; }
  .segmented button, .voice-tabs button { min-width: 0; padding-inline: 5px; font-size: clamp(.63rem, 3vw, .74rem); }
  .song-card-cover { height: 205px; }
  .song-card h4 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .range-lab-head { align-items: flex-start; flex-direction: column; }
  .range-lab-head > span { white-space: normal; }
  .promo-ticket { grid-template-columns: 54px minmax(0, 1fr); transform: none; }
  .ticket-main { min-width: 0; padding-inline: 18px; }
  .ticket-main h2 { font-size: clamp(2.8rem, 14.5vw, 4rem); }
  .song-dialog, .closed-catalog-dialog { width: calc(100vw - 20px); padding: 42px 20px 30px; box-shadow: 6px 6px 0 var(--red); }
  .closed-catalog-dialog { box-shadow: 6px 6px 0 var(--blue); }
  .reel-overlay { padding-left: 16px; padding-right: 116px; }
  .reel-copy h3 { font-size: clamp(2.05rem, 10.6vw, 3rem); }
  .reel-actions { right: max(10px, env(safe-area-inset-right)); }
  .reel-actions button { width: 46px; min-height: 46px; }
  .reel-actions .reel-full { max-width: 102px; padding-inline: 10px; font-size: .58rem; }
}
