@property --cycle {
  syntax: '<color>';
  inherits: true;
  initial-value: #3D5AFE;
}

:root {
  color-scheme: light;
  --page: #FFFFFF;
  --weave: url("/main/asset/weave.svg?v=d650ec432d");
  --ring-alpha: 1;
  --hero-w: min(48vw, 960px, calc((100dvh - 96px) * 726 / 700));
  --card: #FFFFFF;
  --raised: #FFFFFF;
  --heading: #1C2F50;
  --text: #1C2F50;
  --muted: #717171;
  --accent: #3D5AFE;
  --focus: #3D5AFE;
  --line: rgba(28, 47, 80, .15);
  --field-bg: #FFFFFF;
  --field-text: #212529;
  --field-line: #949494;
  --placeholder: #717171;
  --shadow: 0 3px 10px 0 rgba(28, 47, 80, .08);

  --nav-bg: #FFFFFF;
  --nav-stuck: #FFFFFF;
  --nav-link: rgba(0, 0, 0, .7);
  --nav-link-stuck: rgba(28, 47, 80, .7);
  --mark-halo: #FFFFFF;
  --btn-bg: #0B1020;
  --btn-ink: #FFFFFF;
  --note: #3D5AFE;
  --note-ink: #FFFFFF;

  --bottom-bg: #FFFFFF;
  --bottom-text: #404A63;

  --fs-display1: min(80px, calc(1.625rem + 4.5vw));
  --fs-display5: min(48px, calc(1.425rem + 2.1vw));
  --fs-h2: min(32px, calc(1.325rem + .9vw));
  --fs-h3: min(28px, calc(1.3rem + .6vw));
  --fs-h4: min(24px, calc(1.275rem + .3vw));
  --head-font: Poppins, system-ui, sans-serif;
  --body-font: Roboto, system-ui, sans-serif;
  --mono-font: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page: #191918;
  --weave: url("/main/asset/weave-dark.svg?v=d64ee8bde9");
  --ring-alpha: 1;
  --cycle: #9BE8C0;
  --card: #191918;
  --raised: #191918;
  --heading: #FFFFFF;
  --text: #FFFFFF;
  --muted: #CCCCCC;
  --accent: #7ADAD5;
  --focus: #7ADAD5;
  --line: rgba(255, 255, 255, .15);
  --shadow: 0 3px 12px 0 rgba(0, 0, 0, .3);
  --field-bg: #191918;
  --field-text: #FFFFFF;
  --field-line: #979797;
  --placeholder: #B4B4B4;
  --nav-bg: #191918;
  --nav-stuck: #191918;
  --nav-link: #FFFFFF;
  --nav-link-stuck: #FFFFFF;
  --mark-halo: rgba(0, 0, 0, .85);
  --plankton-larva: #F5DC8C;
  --plankton-spore-1: #C6F1EE;
  --plankton-spore-2: #7ADAD5;
  --plankton-neon-1: #9BE8C0;
  --plankton-neon-2: #F6A9D5;
  --plankton-neon-3: #9CDFF0;
  --plankton-cell: rgba(228, 238, 243, .012);
  --plankton-edge: rgba(228, 238, 243, .04);
  --btn-bg: #F3F5F9;
  --btn-ink: #0B1020;
  --note: #7ADAD5;
  --note-ink: #0B1020;
  --bottom-bg: #191918;
  --bottom-text: #C4CBD8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font: 400 16px/24px var(--body-font);
  color: var(--text);
  background: var(--page) var(--weave);
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--head-font);
  font-weight: 600;
  line-height: 1.4;
  color: var(--heading);
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1100;
  padding: 10px 16px;
  font: 500 15px/24px var(--body-font);
  color: var(--btn-ink);
  background: var(--btn-bg);
  border-radius: 6px;
  transform: translateY(-200%);
}

.skip:focus-visible {
  transform: none;
}

.life {
  position: fixed;
  inset: 0;
  z-index: 0;
  inline-size: 100%;
  block-size: 100%;
  opacity: 0;
  pointer-events: none;
}

.life[data-on] {
  opacity: 1;
}

main {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.wrap {
  width: 100%;
  margin-inline: auto;
  padding-inline: 12px;
}

@media (min-width: 576px) {
  .wrap {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .wrap {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .wrap {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .wrap {
    max-width: 1140px;
  }
}

.cols {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}

.cols > * {
  flex: 0 0 100%;
  max-width: 100%;
  padding-inline: 12px;
}

@media (min-width: 992px) {
  .cols > .lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}

.sec--page {
  padding-block: 48px 0;
  scroll-margin-top: 20px;
  background: var(--page) var(--weave);
  background-position: 0 var(--weave-y, 0px);
}

.reach {
  padding-bottom: 48px;
}

.split {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  font: 400 11px/16px var(--mono-font);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.split::before,
.split::after {
  content: "";
  flex: 1 1 0;
  height: 1px;
  background: var(--line);
}

#contact {
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 36px;
  font: 500 15px/22.5px var(--body-font);
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 800px;
  transition: background-color .5s, color .5s, border-color .5s, box-shadow .5s;
}

.btn--fill {
  color: var(--btn-ink);
  background: var(--btn-bg);
  border-color: var(--btn-bg);
}

.btn--line {
  color: var(--btn-bg);
  background: transparent;
  border-color: var(--btn-bg);
}

.btn--line:hover {
  color: var(--btn-ink);
  background: var(--btn-bg);
  border-color: var(--btn-bg);
}

.btn--square {
  border-radius: 6px;
}

.btn--block {
  display: flex;
  width: 100%;
}

.card {
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.ico {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cycle {
  animation: cycle 9s linear infinite;
}

@keyframes cycle {
  0%,
  100% {
    --cycle: #3D5AFE;
  }

  16.667% {
    --cycle: #2F80ED;
  }

  33.333% {
    --cycle: #8FA6E8;
  }

  50% {
    --cycle: #E6008C;
  }

  66.667% {
    --cycle: #00B85C;
  }

  83.333% {
    --cycle: #E0A100;
  }
}

:root[data-theme="dark"] .cycle {
  animation-name: cycle-dark;
}

@keyframes cycle-dark {
  0%,
  100% {
    --cycle: #9BE8C0;
  }

  16.667% {
    --cycle: #9CDFF0;
  }

  33.333% {
    --cycle: #7ADAD5;
  }

  50% {
    --cycle: #C6F1EE;
  }

  66.667% {
    --cycle: #F5DC8C;
  }

  83.333% {
    --cycle: #F6A9D5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  padding: 8px 0;
  background: transparent;
  transition: padding .5s, background-color .5s, box-shadow .5s;
}

.top.is-stuck {
  padding: 0;
  background: var(--nav-stuck);
  box-shadow: var(--shadow);
}

.bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 12px;
}

.home {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-left: -8px;
  padding: 0 8px;
  font: 600 13px/19.5px var(--body-font);
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--nav-link);
  transition: color .3s;
}

.home-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  color: var(--nav-link);
  transition: color .3s;
}

.home-icon .ico {
  width: 24px;
  height: 24px;
}

.top.is-stuck .home {
  color: var(--nav-link-stuck);
}

.top .home:hover,
.home-icon:hover {
  color: var(--accent);
}

.top a:focus-visible {
  box-shadow: 0 0 0 6px var(--page);
}

.mode {
  position: fixed;
  top: min(calc(var(--hero-w) * .67), calc(100dvh - 164px));
  right: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  padding: 0;
  color: var(--btn-ink);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bg);
  border-radius: 6px 0 0 6px;
}

.mode .ico {
  width: 21px;
  height: 21px;
}

.mode .moon,
:root[data-theme="dark"] .mode .sun {
  display: none;
}

:root[data-theme="dark"] .mode .moon {
  display: block;
}

.hero {
  --art-w: var(--hero-w);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: max(calc(var(--art-w) * 700 / 726), 100vh);
  min-height: max(calc(var(--art-w) * 700 / 726), 100dvh);
  overflow: hidden;
  contain: paint;
}

.hero > .wrap {
  position: relative;
  z-index: 1;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-inline: -12px;
}

.hero-copy {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  padding-inline: 12px;
}

.hero-copy {
  order: 1;
}

.hero-art {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  inline-size: var(--art-w);
  aspect-ratio: 726 / 700;
  pointer-events: none;
}

.hero-art svg {
  display: block;
  inline-size: 100%;
  block-size: auto;
  overflow: visible;
}

.hero-ring {
  fill: var(--cycle);
  stroke: var(--cycle);
  stroke-width: 21.5;
  stroke-linejoin: round;
  opacity: var(--ring-alpha);
}

.hero-blob {
  fill: var(--note);
}

.hero-frame {
  position: relative;
}

.hero-film {
  position: absolute;
  inset: 0;
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  -webkit-mask: url("/main/asset/hero-mask.svg?v=ecacba606b") 0 0 / 100% 100% no-repeat;
  mask: url("/main/asset/hero-mask.svg?v=ecacba606b") 0 0 / 100% 100% no-repeat;
}

.sky-row {
  --sky-x: max(12px, 4.5%);
  position: absolute;
  top: max(8px, 2.5%);
  left: var(--sky-x);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  min-block-size: 26px;
  max-inline-size: calc(81% - var(--sky-x));
}

.sky {
  background: rgba(255, 255, 255, .88);
  background: color-mix(in srgb, var(--page) 88%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 800px;
}

:root[data-theme="dark"] .sky {
  background: rgba(25, 25, 24, .88);
  background: color-mix(in srgb, var(--page) 88%, transparent);
}

@supports not ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
  .sky,
  :root[data-theme="dark"] .sky {
    background: var(--page);
  }
}

.sky {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-inline-size: 0;
  min-height: 0;
  padding: 5px 10px;
  font: 500 13px/16px var(--body-font);
  color: var(--text);
}

.logo-chip {
  display: flex;
  flex: none;
  color: var(--accent);
}

.logo-chip svg {
  inline-size: 20.47px;
  block-size: 16px;
  fill: currentColor;
}

.sky[hidden] {
  display: none;
}

.sky .ico {
  width: 18px;
  height: 18px;
  margin-block: -1px;
}

.sky-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.greet {
  display: block;
  font: 600 16px/22.4px var(--head-font);
  color: var(--muted);
}

.name {
  display: block;
  margin-bottom: 8px;
  font: 600 var(--fs-display1)/1.2 var(--head-font);
  color: var(--heading);
}

.hero .lede {
  margin-bottom: 16px;
  font: 400 16px/25px var(--body-font);
  color: var(--muted);
}

.soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-block-size: 44px;
  padding: 0 26px;
  border: 1.5px solid transparent;
  border-radius: 5px;
  font: 600 16px/1 "Nunito", sans-serif;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.soc .brand {
  flex: none;
  inline-size: 20px;
  block-size: 20px;
  fill: currentColor;
}

.soc--li {
  background: #0A66C2;
}

.soc--ig {
  background: linear-gradient(135deg, #833AB4, #C13584 55%, #D62976);
  background-origin: border-box;
}

.soc--music {
  color: var(--note-ink);
  background: var(--note);
  border-color: var(--note);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 8px;
}

@media (min-width: 992px) {
  .hero-copy {
    order: 2;
    flex-basis: 46%;
    max-width: 46%;
    margin-left: 8.3333%;
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding: calc(var(--art-w) * 650 / 726) 0 40px;
  }

  .hero h1 {
    text-align: right;
  }

  .hero .lede {
    text-align: center;
  }

  .hero .actions {
    justify-content: center;
  }
}

.ab-box {
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.ab-copy {
  padding: 48px;
}

.ab-title {
  margin-bottom: 8px;
  font: 600 var(--fs-display5)/1.2 var(--head-font);
  color: var(--heading);
}

.ab-text {
  margin-bottom: 16px;
  font: 400 16px/26px var(--body-font);
  color: var(--muted);
}

.ab-motto {
  font-style: italic;
}

:root {
  --reach-bad: #C71F1F;
}

:root[data-theme="dark"] {
  --reach-bad: #FF8F87;
}

.reach-card {
  position: relative;
  padding: 32px 40px;
  background: var(--card);
  border-left: 4px solid var(--cycle);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.reach-kicker {
  font: 600 16px/22.4px var(--head-font);
  color: var(--muted);
}

.reach-card-h {
  margin-bottom: 8px;
  font: 600 var(--fs-h3)/1.4 var(--head-font);
  color: var(--heading);
}

.reach-card-text {
  margin-bottom: 16px;
  font: 400 16px/26px var(--body-font);
  color: var(--muted);
}

.reach-card-text strong {
  font-weight: 600;
  color: var(--heading);
  overflow-wrap: anywhere;
}

.reach-note {
  margin-bottom: 16px;
  font: 400 16px/25px var(--body-font);
  color: var(--text);
}

.reach-bad {
  color: var(--reach-bad);
}

.reach-link {
  display: inline-flex;
  align-items: center;
  min-block-size: 44px;
  margin-block: calc((26px - 44px) / 2);
  vertical-align: top;
  font-weight: 600;
  color: var(--accent);
  transition: color .5s;
}

.reach-link:hover {
  color: var(--heading);
}

.reach-done {
  margin-bottom: 8px;
  font: 400 16px/25px var(--body-font);
  color: var(--text);
}

.reach-done strong {
  font-weight: 600;
  color: var(--heading);
}

.reach-done .btn {
  margin-top: 16px;
}

.reach-done:focus,
#problem:focus {
  outline: none;
}

.reach-form {
  position: relative;
  display: flex;
  flex-direction: column;
}

.reach-form[hidden] {
  display: none;
}

.reach-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 992px) {
  .reach-pair {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 24px;
  }
}

.fld {
  position: relative;
  margin-bottom: 15px;
}

.fld input,
.fld textarea {
  display: block;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 19px 12px 3px 20px;
  font: 400 16px/24px var(--body-font);
  color: var(--field-text);
  background: var(--field-bg);
  border: 0;
  border-bottom: 1px solid var(--field-line);
  border-radius: 0;
  appearance: none;
  transition: border-color .5s;
}

.fld textarea {
  height: 206px;
  min-height: 206px;
  padding: 22px 12px 6px 20px;
  resize: vertical;
}

.fld input::placeholder,
.fld textarea::placeholder {
  color: transparent;
}

.fld label {
  position: absolute;
  top: 12px;
  left: 20px;
  right: 12px;
  overflow: hidden;
  font: 400 16px/24px var(--body-font);
  color: var(--placeholder);
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  transform-origin: 0 0;
  transition: transform .2s ease-out, color .2s ease-out;
}

.fld--area label {
  top: 6px;
}

.fld input:focus + label,
.fld input:not(:placeholder-shown) + label,
.fld textarea:focus + label,
.fld textarea:not(:placeholder-shown) + label {
  color: var(--muted);
  transform: translateY(-9.75px) scale(.8);
}

.fld--area textarea:focus + label,
.fld--area textarea:not(:placeholder-shown) + label {
  transform: translateY(-3px) scale(.8);
}

.fld input:focus,
.fld textarea:focus {
  border-bottom-color: var(--accent);
}

.fld input:focus-visible,
.fld textarea:focus-visible {
  outline-offset: 0;
}

.fld [aria-invalid="true"] {
  border-bottom-color: var(--reach-bad);
}

.err {
  margin: 4px 0 0 20px;
  font: 400 14px/21px var(--body-font);
  color: var(--reach-bad);
}

.reach-trap {
  position: absolute;
  inset-inline-start: -10000px;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
}

.reach-send {
  margin: 8px 0 0;
}

.reach-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0;
}

.reach-actions .btn {
  flex: 1 1 180px;
}

.reach-again {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 4px;
  margin-top: 8px;
  font: 400 16px/26px var(--body-font);
  color: var(--muted);
}

.reach-plain {
  min-height: 44px;
  padding: 0 4px;
  font: 600 16px/26px var(--body-font);
  color: var(--btn-bg);
  background: none;
  border: 0;
  border-radius: 6px;
  transition: color .5s;
}

.reach-plain:hover {
  color: var(--accent);
}

.reach-plain:disabled {
  color: var(--muted);
  cursor: default;
}

.reach-status {
  font: 400 16px/26px var(--body-font);
  color: var(--text);
}

.reach-status:empty {
  display: none;
}

.reach .btn:disabled {
  cursor: default;
  opacity: .65;
}

.foot {
  position: relative;
  z-index: 1;
}

.bottom {
  padding: 20px 0 16px;
  background: var(--bottom-bg) var(--weave);
  background-position: 0 var(--weave-y, 0px);
}

.bottom > .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 16px;
}

.build {
  min-block-size: 1.6em;
  margin: 0;
  font: 400 11px/1.6 var(--mono-font);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bottom-text);
}

.foot-login {
  display: inline-flex;
  align-items: center;
  min-block-size: 44px;
  margin: -13.2px -8px;
  padding: 0 8px;
  font: 400 11px/1.6 var(--mono-font);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.foot-login:hover,
.foot-login:focus-visible {
  color: var(--heading);
  text-decoration: underline;
}

:root[data-theme] .build {
  min-inline-size: calc(31ch + 3.1em);
}

:root:not([data-theme]) .build {
  display: none;
}

.update {
  position: fixed;
  right: 0;
  bottom: 16px;
  left: 0;
  z-index: 1150;
  display: flex;
  align-items: center;
  gap: 12px;
  inline-size: max-content;
  max-inline-size: calc(100vw - 32px);
  margin-inline: auto;
  padding: 6px 6px 6px 16px;
  font: 500 16px/24px var(--body-font);
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 800px;
  box-shadow: var(--shadow);
}

.update:empty {
  opacity: 0;
  pointer-events: none;
}

.update span {
  white-space: nowrap;
}

.update button {
  min-block-size: 44px;
  padding: 0 18px;
  font: 600 16px/1 var(--body-font);
  color: var(--note-ink);
  background: var(--note);
  border: 0;
  border-radius: 800px;
  cursor: pointer;
}

.copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  font: 400 11px/1.6 var(--mono-font);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bottom-text);
}

@media (max-width: 599px) {
  .copy {
    letter-spacing: .06em;
  }
}

@media (max-width: 340px) {
  .copy {
    letter-spacing: .02em;
  }
}

@media (max-width: 575.98px) {
  .ab-copy,
  .reach-card {
    padding: 24px;
  }
}

.reach-card:has(#verify-form:not([hidden]), #done:not([hidden])) > .reach-card-text {
  display: none;
}

:root:not([data-theme]) .mode {
  display: none;
}

@media (max-width: 991.98px) {
  :root {
    --hero-w: min(96vw, 480px);
  }
}

main > .wrap.split {
  padding: 0 12px;
}

@media (max-width: 991.98px) {
  .sec--page {
    padding-block: 24px 0;
    scroll-margin-top: 44px;
  }

  .reach {
    padding-bottom: 24px;
  }

  .split {
    margin-top: 24px;
  }
}

@media (max-width: 991.98px) {
  .hero .actions {
    gap: 12px;
  }

  .hero .soc {
    padding-inline: 20px;
  }
}

@media (max-width: 575.98px) {
  .reach-done .btn {
    max-inline-size: 100%;
    padding-inline: 24px;
    white-space: normal;
  }

  .reach-card {
    padding-block: 20px;
  }

  .reach-card-text {
    margin-bottom: 12px;
  }

  .fld {
    margin-bottom: 12px;
  }

  .bottom {
    padding: 14px 0;
  }
}

@media (max-width: 539.98px) {
  .hero .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 118px));
    justify-content: center;
    gap: 8px;
  }

  .hero .soc {
    gap: 6px;
    padding-inline: 6px;
  }

  .hero .soc--music {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero .actions {
    gap: 12px;
  }

  .hero .soc {
    padding-inline: 18px;
  }
}

@media (max-width: 359.98px), (max-width: 575.98px) and (max-height: 699.98px) {
  .hero {
    padding: calc(var(--art-w) * 630 / 726) 0 16px;
  }

  .hero .name {
    margin-bottom: 4px;
  }

  .hero .lede {
    margin-bottom: 8px;
  }

  .hero .actions {
    margin-top: 8px;
    padding-top: 0;
  }
}
