@font-face {
  font-family: "Rock Salt";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/RockSalt-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 300 700;
  font-stretch: 75% 125%;
  font-display: swap;
  src: url("/assets/fonts/Fredoka.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --font-display: "Rock Salt";
  --font-body: "Fredoka";
  --black: #070707;
  --ink: #f8f7ff;
  --muted: #b9b2c7;
  --panel: #121017;
  --panel-high: #1d1727;
  --purple: #8e28ff;
  --violet: #5d1cff;
  --lime: #dfff00;
  --bolt: #ffe100;
  --flame: #ff6a00;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-bright: rgba(223, 255, 0, 0.28);
  --shadow-neon: 0 18px 48px rgba(142, 40, 255, 0.32);
  --shadow-lime: 0 18px 44px rgba(223, 255, 0, 0.22);
  --button-paper-lime: url("/assets/images/button-paper-lime.png");
  --button-paper-lime-pressed: url("/assets/images/button-paper-lime-pressed.png");
  --button-paper-dark: url("/assets/images/button-paper-dark.png");
  --button-paper-dark-cta: url("/assets/images/button-paper-dark-cta.png");
  --max: 1160px;
  font-family: var(--font-body), ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-body), ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  text-rendering: optimizeLegibility;
}

body.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 10%, rgba(223, 255, 0, 0.12), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(142, 40, 255, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(142, 40, 255, 0.26), rgba(255, 106, 0, 0.10) 42%, rgba(7, 7, 7, 0.96) 78%),
    url("/assets/images/roast-menu-background.png") center / cover fixed,
    var(--black);
}

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

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

.brand,
.nav-links,
.nav-cta,
.button-primary,
.button-secondary,
.button-quiet,
.eyebrow,
h1,
h2,
h3,
.trust-chip,
.tag,
.icon-tile,
.style-card strong,
.gender-toggle-button,
.singer-persona-card strong,
.singer-persona-card span,
.seo-card h3,
.feature-card h3,
.step-card h3,
.proof-card h3,
.legal-card h2,
.faq summary {
  font-family: var(--font-display), var(--font-body), ui-rounded, sans-serif;
  font-weight: 400;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--black);
  background: var(--lime);
  font-weight: 900;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(7, 7, 7, 0.68);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 1000;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(223, 255, 0, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--lime);
}

.nav-cta,
.button-primary,
.button-secondary,
.button-quiet {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font: inherit;
  font-family: var(--font-display), var(--font-body), ui-rounded, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  overflow: visible;
  transition: transform 160ms ease, filter 160ms ease;
}

.nav-cta,
.button-primary {
  color: #050505;
  background: var(--button-paper-lime) center / 100% 100% no-repeat;
  filter: drop-shadow(0 13px 22px rgba(0, 0, 0, 0.38)) drop-shadow(0 0 18px rgba(223, 255, 0, 0.20));
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

.nav-cta {
  min-height: 44px;
  font-size: 12px;
  padding: 0 22px;
}

.button-primary,
.button-secondary,
.button-quiet {
  padding: 0 28px;
}

.button-primary {
  min-width: 186px;
  min-height: 62px;
  font-size: 13px;
}

.button-secondary {
  min-width: 168px;
  min-height: 62px;
  color: #ffffff;
  background: var(--button-paper-dark-cta) center / 100% 100% no-repeat;
  font-size: 13px;
  filter: drop-shadow(0 13px 22px rgba(0, 0, 0, 0.42));
  text-shadow: 2px 2px 0 #000000;
}

.nav-cta::before,
.button-primary::before,
.button-secondary::before {
  content: none;
}

.nav-cta:active,
.button-primary:active {
  background-image: var(--button-paper-lime-pressed);
}

.button-quiet {
  height: 46px;
  color: var(--lime);
  background: transparent;
}

.button-primary:hover,
.button-secondary:hover,
.button-quiet:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary:active,
.button-secondary:active,
.button-quiet:active,
.nav-cta:active {
  transform: scale(0.97);
  filter: drop-shadow(0 9px 16px rgba(0, 0, 0, 0.34));
}

.hero {
  min-height: calc(100svh - 66px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, 0.88fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 1000;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 18px rgba(142, 40, 255, 0.85);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
  font-weight: 400;
}

h1 {
  max-width: 820px;
  font-size: 62px;
  text-shadow: 3px 3px 0 rgba(142, 40, 255, 0.72), 6px 6px 0 rgba(0, 0, 0, 0.64);
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 19px;
  line-height: 1.18;
}

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

.hero-copy > p,
.section-lede,
.legal-lede,
.seo-lede {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.hero-copy > p {
  margin-top: 18px;
  max-width: 610px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.trust-chip,
.tag {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 900;
  overflow: visible;
}

.trust-chip {
  color: #ffffff;
  border: 0;
  background: var(--button-paper-dark) center / 100% 100% no-repeat;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.30));
  text-shadow: 1px 1px 0 #000000;
}

.tag {
  color: #050505;
  background: var(--button-paper-lime) center / 100% 100% no-repeat;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.30));
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

.trust-chip::before,
.tag::before {
  content: none;
}

.hero-media {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone-frame {
  position: relative;
  width: min(360px, 82vw);
  aspect-ratio: 393 / 852;
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 36px;
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45), var(--shadow-neon);
  transform: rotate(2deg);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 96px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #050505;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.singer-stack {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(2, 86px);
  gap: 10px;
  transform: rotate(-4deg);
}

.singer-stack img {
  width: 86px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.media-badge {
  position: absolute;
  left: 0;
  top: 92px;
  display: inline-grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 8px;
  color: var(--black);
  background: url("/assets/images/roast-menu-row-hot.png") center / cover;
  box-shadow: var(--shadow-neon);
  font-size: 16px;
  font-weight: 1000;
  text-align: center;
  transform: rotate(-8deg);
}

.section {
  padding: 78px 0;
}

.section.grit-band {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 24%, rgba(223, 255, 0, 0.10), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(142, 40, 255, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #111015, #070707);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
}

.section.black-band {
  color: var(--white);
  background: rgba(7, 7, 7, 0.86);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-lede {
  max-width: 560px;
}

.grit-band .section-lede {
  color: var(--muted);
}

.feature-grid,
.style-grid,
.seo-grid,
.steps-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

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

.style-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.seo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.style-card,
.seo-card,
.step-card,
.proof-card,
.legal-card,
.contact-panel,
.faq details {
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.grit-band .feature-card,
.grit-band .style-card,
.grit-band .seo-card,
.grit-band .step-card,
.grit-band .proof-card,
.legal-card,
.contact-panel,
.faq details {
  border-color: var(--line-dark);
  background: rgba(18, 16, 23, 0.78);
  box-shadow: var(--shadow-neon);
}

.feature-card,
.seo-card,
.step-card,
.proof-card,
.legal-card,
.contact-panel {
  padding: 22px;
}

.feature-card p,
.seo-card p,
.step-card p,
.proof-card p,
.legal-card p,
.contact-panel p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.52;
}

.grit-band .feature-card p,
.grit-band .seo-card p,
.grit-band .step-card p,
.grit-band .proof-card p,
.legal-card p,
.contact-panel p {
  color: var(--muted);
}

.icon-tile {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--black);
  background: var(--lime);
  font-size: 18px;
  font-weight: 1000;
}

.style-card {
  min-height: 132px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.style-card strong {
  font-size: 16px;
}

.style-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.grit-band .style-card span {
  color: var(--muted);
}

.singer-showcase {
  display: grid;
  gap: 22px;
}

.gender-toggle {
  width: min(390px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.82);
  box-shadow: var(--shadow-neon);
}

.gender-toggle-button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-family: var(--font-display), var(--font-body), ui-rounded, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #000000;
}

.gender-toggle-button.is-active {
  color: #050505;
  background: var(--button-paper-lime) center / 100% 100% no-repeat;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

.gender-toggle-button:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.singer-persona-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.singer-persona-grid[hidden] {
  display: none;
}

.singer-persona-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(18, 16, 23, 0.78);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.singer-persona-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.singer-persona-card div {
  position: absolute;
  inset: auto 0 0;
  min-height: 38%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 52px 12px 13px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88) 64%, rgba(0, 0, 0, 0.96));
}

.singer-persona-card strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.02;
  font-weight: 1000;
  overflow-wrap: anywhere;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.78);
  text-transform: uppercase;
}

.singer-persona-card span {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  color: var(--black);
  background: var(--button-paper-lime) center / 100% 100% no-repeat;
  font-size: 10px;
  line-height: 1;
  font-weight: 1000;
  overflow-wrap: anywhere;
}

.violet {
  color: var(--purple);
}

.lime {
  color: var(--lime);
}

.flame {
  color: var(--flame);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.poster-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.poster-strip img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.quote {
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.quote p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.quote strong {
  display: block;
  margin-top: 14px;
  color: var(--lime);
}

.conversion-hero {
  padding: 72px 0 46px;
}

.conversion-hero .hero-grid {
  min-height: auto;
  padding: 0;
}

.conversion-panel {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 7, 7, 0.58);
  box-shadow: var(--shadow-neon);
}

.conversion-panel h2 {
  font-size: 30px;
  line-height: 1.05;
}

.conversion-panel ul,
.legal-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.conversion-panel li,
.legal-card li {
  position: relative;
  margin-top: 12px;
  padding-left: 26px;
  line-height: 1.42;
}

.conversion-panel li::before,
.legal-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(223, 255, 0, 0.48);
}

.landing-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-main {
  padding: 58px 0 86px;
}

.legal-hero {
  max-width: 800px;
  margin-bottom: 30px;
}

.legal-hero h1 {
  font-size: 56px;
}

.legal-lede {
  margin-top: 16px;
}

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

.legal-card h2 {
  font-size: 30px;
  line-height: 1.08;
}

.legal-card a:not(.button-primary):not(.button-secondary):not(.button-quiet):not(.nav-cta),
.contact-panel a:not(.button-primary):not(.button-secondary):not(.button-quiet):not(.nav-cta) {
  color: var(--lime);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.45fr);
  gap: 20px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
}

.contact-method:first-of-type {
  border-top: 0;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 1000;
}

.faq p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.54;
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, 0.60);
}

.footer-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-shell nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: auto;
  font-weight: 800;
}

.footer-shell a:hover {
  color: var(--lime);
}

.fine-print {
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero-grid,
  .conversion-hero .hero-grid,
  .split,
  .section-head,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-media {
    min-height: 500px;
  }

  .feature-grid,
  .seo-grid,
  .steps-grid,
  .quote-row {
    grid-template-columns: 1fr;
  }

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

  .footer-shell nav {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .container,
  .hero-grid,
  .footer-shell {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    gap: 14px;
    font-size: 11px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 38px;
    gap: 28px;
  }

  h1 {
    font-size: 36px;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy > p,
  .section-lede,
  .legal-lede,
  .seo-lede {
    font-size: 16px;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-media {
    min-height: 430px;
  }

  .phone-frame {
    width: min(290px, 82vw);
    border-radius: 30px;
  }

  .phone-frame img {
    border-radius: 22px;
  }

  .media-badge {
    top: 28px;
    width: 88px;
    height: 88px;
    font-size: 13px;
  }

  .singer-stack {
    right: 2px;
    bottom: 18px;
    grid-template-columns: repeat(2, 70px);
    gap: 8px;
  }

  .singer-stack img {
    width: 70px;
  }

  .section {
    padding: 58px 0;
  }

  .style-grid,
  .proof-grid,
  .poster-strip {
    grid-template-columns: 1fr;
  }

  .gender-toggle {
    width: 100%;
  }

  .singer-persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .singer-persona-card div {
    padding: 44px 10px 11px;
  }

  .singer-persona-card strong {
    font-size: 15px;
  }

  .singer-persona-card span {
    font-size: 11px;
  }
}
