:root {
  color-scheme: light;
  --bg: #f7fffd;
  --bg-2: #f1f4ff;
  --text: #19333b;
  --muted: #63747a;
  --line: rgba(25, 51, 59, .12);
  --glass: rgba(255, 255, 255, .68);
  --glass-strong: rgba(255, 255, 255, .86);
  --cyan: #39d9d9;
  --cyan-2: #10b8c4;
  --pink: #ff8bd1;
  --yellow: #ffe97a;
  --mint: #a9ffe6;
  --violet: #b8a5ff;
  --shadow: 0 28px 80px rgba(16, 184, 196, .22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(57, 217, 217, .36), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(255, 139, 209, .28), transparent 30rem),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(25, 51, 59, .18) 1px, transparent 0);
  background-size: 20px 20px;
  z-index: 1;
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  pointer-events: none;
  translate: -50% -50%;
  background: radial-gradient(circle, rgba(57, 217, 217, .24), transparent 66%);
  filter: blur(4px);
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  max-width: var(--max);
  margin: 16px auto 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  box-shadow: 0 16px 50px rgba(25, 51, 59, .08);
  backdrop-filter: blur(20px) saturate(145%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: white;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 12px 28px rgba(57, 217, 217, .36);
}

.brand-text {
  font-size: 1.12rem;
}

.nav {
  display: flex;
  gap: 8px;
  color: rgba(25, 51, 59, .76);
  font-weight: 800;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: .25s ease;
}

.nav a:hover {
  background: rgba(57, 217, 217, .16);
  color: var(--text);
  transform: translateY(-1px);
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 12px 26px rgba(255, 139, 209, .28);
}

.hero {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 82px 20px 64px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bubble {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(.3px);
  background: rgba(255, 255, 255, .54);
  border: 1px solid rgba(255, 255, 255, .75);
  animation: float 7s ease-in-out infinite;
}

.bubble-1 { width: 110px; height: 110px; left: 4%; top: 16%; }
.bubble-2 { width: 66px; height: 66px; right: 7%; top: 19%; animation-delay: -2s; }
.bubble-3 { width: 92px; height: 92px; left: 46%; bottom: 4%; animation-delay: -4s; }

.star {
  position: absolute;
  color: var(--pink);
  font-size: 34px;
  animation: twinkle 2.4s ease-in-out infinite;
}

.star-1 { left: 43%; top: 14%; }
.star-2 { right: 3%; top: 47%; animation-delay: -.8s; }
.star-3 { left: 7%; bottom: 14%; animation-delay: -1.4s; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-2);
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .78rem;
}

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

h1 {
  max-width: 100%;
  margin-bottom: 22px;
  padding-bottom: .16em;
  font-size: clamp(3rem, 6.15vw, 6rem);
  line-height: 1.02;
  letter-spacing: -.075em;
}

h1 span {
  display: block;
  max-width: 100%;
  padding-right: .1em;
  padding-bottom: .12em;
  white-space: nowrap;
  background: linear-gradient(135deg, #19333b, #0aaeb7 52%, #ff78c9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 em {
  display: block;
  margin-top: 16px;
  font-family: "Pacifico", cursive;
  color: var(--pink);
  font-size: clamp(1.55rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-style: normal;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan), var(--pink));
  box-shadow: 0 18px 44px rgba(57, 217, 217, .34);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(16px);
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-stats div {
  min-width: 136px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .52);
  backdrop-filter: blur(18px);
}

.mini-stats strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}

.mini-stats span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.idol-card {
  position: relative;
  width: min(420px, 88vw);
  aspect-ratio: 1 / 1.15;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 44px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 233, 122, .5), transparent 28%),
    radial-gradient(circle at 70% 18%, rgba(255, 139, 209, .38), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(169,255,230,.52));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(140%);
  animation: cardFloat 5s ease-in-out infinite;
  overflow: hidden;
}

.idol-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px dashed rgba(16, 184, 196, .25);
  border-radius: 34px;
}

.equalizer {
  position: absolute;
  left: 26px;
  top: 28px;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 38px;
}

.equalizer i {
  display: block;
  width: 7px;
  height: 14px;
  border-radius: 999px;
  background: var(--cyan-2);
  animation: equalize .8s ease-in-out infinite alternate;
}

.equalizer i:nth-child(2) { animation-delay: .1s; height: 24px; }
.equalizer i:nth-child(3) { animation-delay: .2s; height: 34px; background: var(--pink); }
.equalizer i:nth-child(4) { animation-delay: .3s; height: 18px; }
.equalizer i:nth-child(5) { animation-delay: .4s; height: 28px; background: var(--pink); }
.equalizer i:nth-child(6) { animation-delay: .5s; height: 20px; }

.miku-avatar {
  position: absolute;
  inset: 75px 38px 30px;
}

.head {
  position: absolute;
  left: 50%;
  top: 52px;
  width: 150px;
  height: 142px;
  translate: -50% 0;
  border-radius: 48% 48% 44% 44%;
  background: #ffe8dd;
  box-shadow: inset 0 -14px 0 rgba(255, 139, 209, .08);
  z-index: 4;
}

/* ears */
.head::before,
.head::after {
  content: "";
  position: absolute;
  top: 52px;
  width: 24px;
  height: 32px;
  border-radius: 999px;
  background: #ffd8cd;
  z-index: -1;
}

.head::before { left: -13px; }
.head::after { right: -13px; }

.bangs {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 176px;
  height: 88px;
  translate: -50% 0;
  border-radius: 64px 64px 24px 24px;
  background: linear-gradient(135deg, #13c1c4, #85fff0);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 82% 48%, 66% 76%, 50% 44%, 32% 80%, 18% 49%, 0 64%);
  z-index: 6;
}

.eye {
  position: absolute;
  top: 78px;
  width: 22px;
  height: 30px;
  border-radius: 999px;
  background: #17353d;
}

.eye::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: white;
}

.eye-left { left: 39px; }
.eye-right { right: 39px; }

.mouth {
  position: absolute;
  left: 50%;
  top: 112px;
  width: 26px;
  height: 13px;
  translate: -50% 0;
  border-bottom: 4px solid #ff79b7;
  border-radius: 0 0 999px 999px;
}

.blush {
  position: absolute;
  top: 104px;
  width: 28px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 139, 209, .52);
  filter: blur(.2px);
}

.blush-left { left: 18px; rotate: 8deg; }
.blush-right { right: 18px; rotate: -8deg; }

.twintail {
  position: absolute;
  top: 30px;
  width: 98px;
  height: 260px;
  border-radius: 999px 999px 34px 34px;
  background: linear-gradient(180deg, #0fb8c0, #79fff1 55%, rgba(121,255,241,.18));
  z-index: 2;
  transform-origin: top center;
  animation: hairSwing 3.4s ease-in-out infinite;
}

.twintail.left {
  left: 28px;
  rotate: 15deg;
}

.twintail.right {
  right: 28px;
  rotate: -15deg;
  animation-delay: -1.2s;
}

.body {
  position: absolute;
  left: 50%;
  top: 182px;
  width: 140px;
  height: 140px;
  translate: -50% 0;
  border-radius: 34px 34px 44px 44px;
  background: linear-gradient(135deg, #273d48, #17232d);
  z-index: 3;
}

.body::before,
.body::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 34px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe8dd, #ffcfc2);
}

.body::before { left: -24px; rotate: 18deg; }
.body::after { right: -24px; rotate: -18deg; }

.tie {
  position: absolute;
  left: 50%;
  top: 198px;
  width: 34px;
  height: 92px;
  translate: -50% 0;
  background: linear-gradient(180deg, var(--cyan), #0d9ca8);
  clip-path: polygon(50% 0, 100% 20%, 70% 100%, 50% 82%, 30% 100%, 0 20%);
  z-index: 5;
}

.floating-tag {
  position: absolute;
  z-index: 7;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #17353d;
  background: rgba(255,255,255,.62);
  box-shadow: 0 12px 30px rgba(25, 51, 59, .1);
  backdrop-filter: blur(14px);
  font-weight: 900;
  animation: tagFloat 4s ease-in-out infinite;
}

.tag-a { left: 18px; bottom: 92px; }
.tag-b { right: 18px; top: 92px; animation-delay: -1.1s; }
.tag-c { right: 55px; bottom: 38px; animation-delay: -2.2s; }

.section {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 20px;
}

.soft-panel {
  padding: 48px 20px;
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-card,
.timeline article,
.join-card,
.slide {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: 0 18px 54px rgba(25, 51, 59, .08);
  backdrop-filter: blur(18px) saturate(140%);
}

.feature-card {
  min-height: 255px;
  padding: 26px;
  border-radius: var(--radius-lg);
  transition: transform .24s ease, box-shadow .24s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(16, 184, 196, .16);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 22px;
  font-size: 1.7rem;
  background: linear-gradient(135deg, rgba(57, 217, 217, .26), rgba(255, 139, 209, .22));
}

.feature-card h3,
.timeline h3,
.slide h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}

.feature-card p,
.timeline p,
.slide p,
.join-card p {
  color: var(--muted);
  line-height: 1.65;
}

.carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.carousel-track {
  position: relative;
  min-height: 510px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: .96fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.98);
  transition: .4s ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.poster {
  position: relative;
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.44), 0 22px 54px rgba(25, 51, 59, .12);
}

.poster::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  animation: posterPulse 3.2s ease-in-out infinite;
}

.poster::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(255,255,255,.42);
  border-radius: 24px;
}

.poster-a { background: linear-gradient(135deg, #16bdc7, #9afced 52%, #ff86ca); }
.poster-b { background: linear-gradient(135deg, #ff8bd1, #b8a5ff 52%, #39d9d9); }
.poster-c { background: linear-gradient(135deg, #1a3541, #16bdc7 48%, #ffe97a); }

.poster-face {
  position: relative;
  z-index: 2;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  font-weight: 900;
  text-shadow: 0 10px 24px rgba(25, 51, 59, .18);
}

.poster-sparkle {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 3;
  font-size: 4rem;
  animation: twinkle 2s ease-in-out infinite;
}

.slide-copy {
  max-width: 430px;
}

.slide-copy h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.carousel-btn {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan-2), var(--pink));
  box-shadow: 0 18px 40px rgba(57, 217, 217, .26);
  transition: transform .2s ease;
  z-index: 5;
}

.carousel-btn:hover {
  transform: scale(1.08);
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(25, 51, 59, .2);
  transition: .24s ease;
}

.carousel-dots button.is-active {
  width: 34px;
  background: var(--cyan-2);
}

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

.timeline article {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.timeline time {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 20px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan-2), var(--pink));
}

.join-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 233, 122, .35), transparent 24rem),
    var(--glass-strong);
}

.signup {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.signup label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 900;
}

.signup input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 16px;
  color: var(--text);
  outline: none;
  background: rgba(255, 255, 255, .7);
  transition: .22s ease;
}

.signup input:focus {
  border-color: rgba(16, 184, 196, .72);
  box-shadow: 0 0 0 5px rgba(57, 217, 217, .14);
}

.footer {
  position: relative;
  z-index: 3;
  padding: 34px 20px 44px;
  text-align: center;
  color: var(--muted);
}

.footer p {
  margin-bottom: 6px;
}

.tiny {
  font-size: .84rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.night {
  --bg: #10202a;
  --bg-2: #1b1732;
  --text: #efffff;
  --muted: #bdd1d4;
  --line: rgba(255,255,255,.16);
  --glass: rgba(18, 33, 42, .58);
  --glass-strong: rgba(18, 33, 42, .78);
  --shadow: 0 28px 90px rgba(0, 0, 0, .28);
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-22px) translateX(8px); }
}

@keyframes twinkle {
  0%, 100% { opacity: .42; transform: scale(.88) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(10deg); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes equalize {
  to { transform: scaleY(1.7); }
}

@keyframes hairSwing {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-5px); }
}

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

@keyframes posterPulse {
  0%, 100% { transform: scale(.75); opacity: .45; }
  50% { transform: scale(1.2); opacity: .22; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    margin-inline: 10px;
  }

  .nav {
    display: none;
  }

  .hero,
  .slide,
  .join-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
    text-align: center;
  }

  .hero-text,
  .section-heading,
  .slide-copy {
    margin-inline: auto;
  }

  .hero-actions,
  .mini-stats {
    justify-content: center;
  }

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

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

  .carousel-btn {
    display: none;
  }

  .carousel-track {
    min-height: 720px;
  }

  .poster {
    min-height: 340px;
  }

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

@media (max-width: 560px) {
  .brand-text {
    display: none;
  }

  .site-header {
    border-radius: 24px;
  }

  .hero {
    padding-inline: 16px;
  }

  .section {
    padding: 62px 16px;
  }

  .mini-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mini-stats div {
    min-width: 0;
  }

  .idol-card {
    border-radius: 34px;
  }

  .miku-avatar {
    inset-inline: 18px;
  }

  .twintail.left {
    left: 4px;
  }

  .twintail.right {
    right: 4px;
  }

  .slide {
    padding: 18px;
    border-radius: 28px;
  }

  .carousel-track {
    min-height: 660px;
  }
}


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

.news-card,
.resource-card,
.info-note {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: 0 18px 54px rgba(25, 51, 59, .08);
  backdrop-filter: blur(18px) saturate(140%);
}

.news-card,
.resource-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.news-card time {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan-2);
  font-weight: 900;
  font-size: .86rem;
}

.info-note {
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: var(--muted);
  line-height: 1.65;
}

.legal-list {
  display: grid;
  gap: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-list strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
  font-weight: 900;
}

@media (max-width: 920px) {
  .news-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
}


@media (min-width: 921px) {
  .hero-copy {
    min-width: 0;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 760px;
  }
}
@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.55rem, 13vw, 4.8rem);
    letter-spacing: -.065em;
  }
}


/* final title overflow fix */
@media (max-width: 1100px) and (min-width: 921px) {
  h1 {
    font-size: clamp(2.8rem, 5.55vw, 5.25rem);
    line-height: 1.04;
  }
}

@media (max-width: 560px) {
  h1 span {
    white-space: normal;
  }
}


/* descender anti-crop */
.hero-copy {
  overflow: visible;
}

.hero-copy h1,
.hero-copy h1 span,
.hero-copy h1 em {
  overflow: visible;
}
