@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("/fonts/dm-sans-latin.woff2") format("woff2");
}
:root {
  color-scheme: dark;
  --paper: #131a19;
  --ink: #ecf1f0;
  --muted: #aab5b3;
  --line: #ffffff1a;
  --mint: #4ad1a3;
  --green: #45c89b;
  --sans: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 8px;
  border-radius: 3px;
}
.page {
  max-width: 1600px;
  margin: auto;
  padding: 0 5.7vw;
}
.masthead {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 35px;
  font-weight: 650;
  letter-spacing: -1.8px;
  text-decoration: none;
}
.wordmark svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}
.wordmark-dot {
  margin-left: -12px;
  color: var(--green);
}
.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px #45c89b15;
}
main {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  position: relative;
}
.hero {
  padding: 80px 0 66px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.17em;
  font-weight: 600;
}
.short-rule {
  width: 24px;
  height: 1px;
  background: var(--green);
}
h1 {
  font-size: clamp(76px, 7.7vw, 118px);
  font-weight: 450;
  letter-spacing: -0.075em;
  line-height: 0.98;
  margin: 33px 0 28px;
}
h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.075em;
  color: var(--green);
}
.intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  letter-spacing: -0.01em;
  margin: 0;
}
.mobile-break {
  display: none;
}
.release-note {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-top: 34px;
}
.release-label {
  font-size: 12px;
  font-weight: 500;
  background: var(--green);
  color: var(--paper);
  padding: 13px 21px;
  border-radius: 5px;
}
.release-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}
.release-platform svg {
  stroke: currentColor;
  stroke-width: 1.4;
}
.voice-art {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  align-self: stretch;
  isolation: isolate;
}
.voice-disc {
  height: clamp(230px, 26vw, 380px);
  width: clamp(230px, 26vw, 380px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 36% 26%,
    #254c40 0,
    #1d352d 50%,
    #182620 100%
  );
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 45px #4ad1a315,
    0 25px 50px -35px #4ad1a320;
  position: relative;
}
.voice-disc:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23000' opacity='.09' filter='url(%23n)' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid #4ad1a32a;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 88%;
  aspect-ratio: 1;
}
.orbit-two {
  width: 105%;
  border-color: #4ad1a31a;
}
.orbit-three {
  width: 122%;
  border-color: #4ad1a30a;
}
.wave {
  display: flex;
  gap: 9px;
  align-items: center;
  height: 112px;
}
.wave i {
  width: 9px;
  border-radius: 9px;
  background: var(--green);
  height: 32%;
  animation: breathe 5s ease-in-out infinite;
}
.wave i:nth-child(2),
.wave i:nth-child(8) {
  height: 49%;
  animation-delay: -0.6s;
}
.wave i:nth-child(3),
.wave i:nth-child(7) {
  height: 73%;
  animation-delay: -1.1s;
}
.wave i:nth-child(4),
.wave i:nth-child(6) {
  height: 56%;
  animation-delay: -1.7s;
}
.wave i:nth-child(5) {
  height: 100%;
  animation-delay: -2.2s;
}
.art-note {
  position: absolute;
  top: calc(50% + 116px);
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  background: #25342e;
  padding: 16px 18px;
  box-shadow: 0 6px 25px #00000030;
  border: 1px solid #4ad1a32b;
  border-radius: 6px;
  white-space: nowrap;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.art-note span {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #4ad1a3;
}
.art-caption {
  position: absolute;
  bottom: 52px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.details {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding: 32px 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.details p {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.definition-name {
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
}
.pronunciation {
  font-family: Georgia, "Times New Roman", serif;
  margin-left: 9px;
  font-size: 14px;
}
.promise {
  padding-right: 38px;
}
.edition {
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.9;
  color: var(--muted);
}
footer {
  padding: 21px 0 27px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  color: var(--muted);
}
@keyframes breathe {
  0%,
  100% {
    transform: scaleY(0.85);
  }
  50% {
    transform: scaleY(1.08);
  }
}
@media (min-width: 1600px) {
  .page {
    padding: 0 90px;
  }
}
@media (max-width: 1000px) {
  .hero {
    padding: 64px 0;
  }
  .voice-disc {
    width: 260px;
    height: 260px;
  }
  .art-note {
    top: calc(50% + 94px);
    font-size: 16px;
  }
  .art-caption {
    bottom: 45px;
  }
  .wave {
    transform: scale(0.85);
  }
  .promise {
    padding: 0;
  }
  .orbit-three {
    display: none;
  }
}
@media (max-width: 700px) {
  .page {
    padding: 0 7vw;
    overflow: hidden;
  }
  .masthead {
    height: 86px;
  }
  .wordmark {
    font-size: 30px;
  }
  .wordmark svg {
    width: 27px;
  }
  .availability {
    font-size: 10px;
    max-width: 130px;
    line-height: 1.5;
  }
  .status-dot {
    flex-shrink: 0;
  }
  main {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 47px 0 15px;
  }
  .eyebrow {
    font-size: 9px;
  }
  h1 {
    font-size: clamp(64px, 16vw, 105px);
    margin: 28px 0 23px;
  }
  .intro {
    font-size: 14px;
  }
  .mobile-break {
    display: block;
  }
  .release-note {
    margin-top: 25px;
  }
  .voice-art {
    height: 355px;
    margin: 0 -4vw;
  }
  .voice-disc {
    width: 235px;
    height: 235px;
  }
  .orbit-one {
    width: 285px;
  }
  .orbit-two {
    width: 333px;
  }
  .art-note {
    font-size: 16px;
    top: calc(50% + 76px);
    padding: 13px 16px;
  }
  .art-caption {
    bottom: 8px;
  }
  .details {
    margin-top: 21px;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 25px 0;
    gap: 17px;
  }
  .definition {
    grid-column: 1;
  }
  .promise {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .edition {
    grid-column: 2;
    grid-row: 1;
    font-size: 8px;
  }
  footer {
    font-size: 9px;
    flex-wrap: wrap;
    line-height: 1.5;
  }
  footer span:nth-child(2) {
    order: 3;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wave i {
    animation: none;
  }
}

.promise strong { color: var(--ink); font-weight: 500; }

footer a { color: inherit; text-underline-offset: 3px; }
